2020-11-10 21:31:04 +01:00
|
|
|
#include "views/view_pattern.hpp"
|
|
|
|
|
2020-11-17 02:31:51 +01:00
|
|
|
#include "lang/preprocessor.hpp"
|
|
|
|
#include "lang/parser.hpp"
|
|
|
|
#include "lang/lexer.hpp"
|
|
|
|
#include "lang/validator.hpp"
|
2020-11-19 11:36:52 +01:00
|
|
|
#include "lang/evaluator.hpp"
|
2020-11-30 00:03:12 +01:00
|
|
|
|
|
|
|
#include "helpers/project_file_handler.hpp"
|
2020-11-28 21:55:52 +01:00
|
|
|
#include "helpers/utils.hpp"
|
2020-11-10 21:31:04 +01:00
|
|
|
|
2020-11-21 14:39:16 +01:00
|
|
|
#include <magic.h>
|
|
|
|
|
2020-11-10 21:31:04 +01:00
|
|
|
namespace hex {
|
|
|
|
|
2020-11-20 18:24:59 +01:00
|
|
|
static const TextEditor::LanguageDefinition& PatternLanguage() {
|
|
|
|
static bool initialized = false;
|
|
|
|
static TextEditor::LanguageDefinition langDef;
|
|
|
|
if (!initialized) {
|
|
|
|
static const char* const keywords[] = {
|
2020-11-20 21:29:28 +01:00
|
|
|
"using", "struct", "union", "enum", "bitfield"
|
2020-11-20 18:24:59 +01:00
|
|
|
};
|
|
|
|
for (auto& k : keywords)
|
|
|
|
langDef.mKeywords.insert(k);
|
|
|
|
|
2020-11-20 22:21:59 +01:00
|
|
|
static std::pair<const char* const, size_t> builtInTypes[] = {
|
|
|
|
{ "u8", 1 }, { "u16", 2 }, { "u32", 4 }, { "u64", 8 }, { "u128", 16 },
|
|
|
|
{ "s8", 1 }, { "s16", 2 }, { "s32", 4 }, { "s64", 8 }, { "s128", 16 },
|
|
|
|
{ "float", 4 }, { "double", 8 }, { "padding", 1 }
|
2020-11-20 18:24:59 +01:00
|
|
|
};
|
2020-11-20 22:21:59 +01:00
|
|
|
for (const auto &[name, size] : builtInTypes) {
|
2020-11-20 18:24:59 +01:00
|
|
|
TextEditor::Identifier id;
|
2020-11-20 22:21:59 +01:00
|
|
|
id.mDeclaration = std::to_string(size);
|
|
|
|
id.mDeclaration += size == 1 ? " byte" : " bytes";
|
|
|
|
langDef.mIdentifiers.insert(std::make_pair(std::string(name), id));
|
2020-11-20 18:24:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
langDef.mTokenize = [](const char * inBegin, const char * inEnd, const char *& outBegin, const char *& outEnd, TextEditor::PaletteIndex & paletteIndex) -> bool {
|
|
|
|
paletteIndex = TextEditor::PaletteIndex::Max;
|
|
|
|
|
|
|
|
while (inBegin < inEnd && isascii(*inBegin) && isblank(*inBegin))
|
|
|
|
inBegin++;
|
|
|
|
|
|
|
|
if (inBegin == inEnd) {
|
|
|
|
outBegin = inEnd;
|
|
|
|
outEnd = inEnd;
|
|
|
|
paletteIndex = TextEditor::PaletteIndex::Default;
|
|
|
|
}
|
|
|
|
else if (TokenizeCStyleIdentifier(inBegin, inEnd, outBegin, outEnd))
|
|
|
|
paletteIndex = TextEditor::PaletteIndex::Identifier;
|
|
|
|
else if (TokenizeCStyleNumber(inBegin, inEnd, outBegin, outEnd))
|
|
|
|
paletteIndex = TextEditor::PaletteIndex::Number;
|
2020-11-27 14:18:28 +01:00
|
|
|
else if (TokenizeCStyleCharacterLiteral(inBegin, inEnd, outBegin, outEnd))
|
|
|
|
paletteIndex = TextEditor::PaletteIndex::CharLiteral;
|
2020-11-20 18:24:59 +01:00
|
|
|
|
|
|
|
return paletteIndex != TextEditor::PaletteIndex::Max;
|
|
|
|
};
|
|
|
|
|
|
|
|
langDef.mCommentStart = "/*";
|
|
|
|
langDef.mCommentEnd = "*/";
|
|
|
|
langDef.mSingleLineComment = "//";
|
|
|
|
|
|
|
|
langDef.mCaseSensitive = true;
|
|
|
|
langDef.mAutoIndentation = true;
|
|
|
|
langDef.mPreprocChar = '#';
|
|
|
|
|
|
|
|
langDef.mName = "Pattern Language";
|
|
|
|
|
|
|
|
initialized = true;
|
|
|
|
}
|
|
|
|
return langDef;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-19 11:36:52 +01:00
|
|
|
ViewPattern::ViewPattern(prv::Provider* &dataProvider, std::vector<lang::PatternData*> &patternData)
|
2020-11-23 23:57:19 +01:00
|
|
|
: View("Pattern"), m_dataProvider(dataProvider), m_patternData(patternData) {
|
2020-11-13 14:35:52 +01:00
|
|
|
|
2020-11-20 18:24:59 +01:00
|
|
|
this->m_textEditor.SetLanguageDefinition(PatternLanguage());
|
|
|
|
this->m_textEditor.SetShowWhitespaces(false);
|
2020-11-21 14:39:16 +01:00
|
|
|
|
2020-11-30 00:03:12 +01:00
|
|
|
View::subscribeEvent(Events::ProjectFileStore, [this](const void*) {
|
|
|
|
ProjectFile::setPattern(this->m_textEditor.GetText());
|
|
|
|
});
|
|
|
|
|
|
|
|
View::subscribeEvent(Events::ProjectFileLoad, [this](const void*) {
|
|
|
|
this->m_textEditor.SetText(ProjectFile::getPattern());
|
|
|
|
this->parsePattern(this->m_textEditor.GetText().data());
|
|
|
|
});
|
|
|
|
|
2020-12-01 16:41:38 +01:00
|
|
|
View::subscribeEvent(Events::AppendPatternLanguageCode, [this](const void *userData) {
|
|
|
|
const char *code = static_cast<const char*>(userData);
|
|
|
|
|
|
|
|
this->m_textEditor.InsertText("\n");
|
|
|
|
this->m_textEditor.InsertText(code);
|
|
|
|
});
|
|
|
|
|
2020-11-27 13:44:52 +01:00
|
|
|
View::subscribeEvent(Events::FileLoaded, [this](const void* userData) {
|
2020-11-30 00:03:12 +01:00
|
|
|
if (!this->m_textEditor.GetText().empty())
|
|
|
|
return;
|
2020-11-21 14:39:16 +01:00
|
|
|
|
2020-11-30 00:03:12 +01:00
|
|
|
lang::Preprocessor preprocessor;
|
2020-11-21 14:39:16 +01:00
|
|
|
std::string magicFiles;
|
|
|
|
|
|
|
|
std::error_code error;
|
|
|
|
for (const auto &entry : std::filesystem::directory_iterator("magic", error)) {
|
|
|
|
if (entry.is_regular_file() && entry.path().extension() == ".mgc")
|
|
|
|
magicFiles += entry.path().string() + MAGIC_PATH_SEPARATOR;
|
|
|
|
}
|
|
|
|
|
2020-11-27 13:44:52 +01:00
|
|
|
std::vector<u8> buffer(std::min(this->m_dataProvider->getSize(), size_t(0xFFFF)), 0x00);
|
2020-11-21 14:39:16 +01:00
|
|
|
this->m_dataProvider->read(0, buffer.data(), buffer.size());
|
|
|
|
|
|
|
|
std::string mimeType;
|
|
|
|
|
|
|
|
magic_t cookie = magic_open(MAGIC_MIME_TYPE);
|
|
|
|
if (magic_load(cookie, magicFiles.c_str()) != -1)
|
|
|
|
mimeType = magic_buffer(cookie, buffer.data(), buffer.size());
|
|
|
|
|
|
|
|
magic_close(cookie);
|
|
|
|
|
|
|
|
bool foundCorrectType = false;
|
|
|
|
preprocessor.addPragmaHandler("MIME", [&mimeType, &foundCorrectType](std::string value) {
|
|
|
|
if (value == mimeType) {
|
|
|
|
foundCorrectType = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return !std::all_of(value.begin(), value.end(), isspace) && !value.ends_with('\n') && !value.ends_with('\r');
|
|
|
|
});
|
2020-11-27 21:20:23 +01:00
|
|
|
preprocessor.addDefaultPragmaHandlers();
|
2020-11-21 14:39:16 +01:00
|
|
|
|
|
|
|
|
2020-11-23 00:12:33 +01:00
|
|
|
std::error_code errorCode;
|
|
|
|
for (auto &entry : std::filesystem::directory_iterator("patterns", errorCode)) {
|
2020-11-21 14:39:16 +01:00
|
|
|
if (!entry.is_regular_file())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
FILE *file = fopen(entry.path().string().c_str(), "r");
|
|
|
|
|
|
|
|
if (file == nullptr)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
fseek(file, 0, SEEK_END);
|
|
|
|
size_t size = ftell(file);
|
|
|
|
rewind(file);
|
|
|
|
|
|
|
|
std::vector<char> buffer( size + 1, 0x00);
|
|
|
|
fread(buffer.data(), 1, size, file);
|
|
|
|
fclose(file);
|
|
|
|
|
|
|
|
preprocessor.preprocess(buffer.data());
|
|
|
|
|
|
|
|
if (foundCorrectType) {
|
|
|
|
this->m_possiblePatternFile = entry.path();
|
|
|
|
ImGui::OpenPopup("Accept Pattern");
|
|
|
|
ImGui::SetNextWindowSize(ImVec2(200, 100));
|
2020-11-22 23:06:17 +01:00
|
|
|
break;
|
2020-11-21 14:39:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2020-11-10 21:31:04 +01:00
|
|
|
}
|
2020-11-20 18:24:59 +01:00
|
|
|
|
2020-11-10 21:31:04 +01:00
|
|
|
ViewPattern::~ViewPattern() {
|
2020-11-30 00:03:12 +01:00
|
|
|
View::unsubscribeEvent(Events::ProjectFileStore);
|
|
|
|
View::unsubscribeEvent(Events::ProjectFileLoad);
|
2020-11-10 21:31:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ViewPattern::createMenu() {
|
|
|
|
if (ImGui::BeginMenu("File")) {
|
|
|
|
if (ImGui::MenuItem("Load pattern...")) {
|
2020-11-17 15:38:24 +01:00
|
|
|
View::doLater([]{ ImGui::OpenPopup("Open Hex Pattern"); });
|
2020-11-10 21:31:04 +01:00
|
|
|
}
|
|
|
|
ImGui::EndMenu();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ViewPattern::createView() {
|
2020-11-23 23:57:19 +01:00
|
|
|
if (ImGui::Begin("Pattern", &this->getWindowOpenState(), ImGuiWindowFlags_None | ImGuiWindowFlags_NoCollapse)) {
|
2020-11-21 00:12:58 +01:00
|
|
|
if (this->m_dataProvider != nullptr && this->m_dataProvider->isAvailable()) {
|
|
|
|
this->m_textEditor.Render("Pattern");
|
2020-11-20 20:26:19 +01:00
|
|
|
|
2020-11-21 00:12:58 +01:00
|
|
|
if (this->m_textEditor.IsTextChanged()) {
|
|
|
|
this->parsePattern(this->m_textEditor.GetText().data());
|
|
|
|
}
|
2020-11-20 20:26:19 +01:00
|
|
|
}
|
2020-11-11 10:47:02 +01:00
|
|
|
}
|
2020-11-10 21:31:04 +01:00
|
|
|
ImGui::End();
|
2020-11-12 21:20:51 +01:00
|
|
|
|
2020-11-17 15:38:24 +01:00
|
|
|
if (this->m_fileBrowser.showFileDialog("Open Hex Pattern", imgui_addons::ImGuiFileBrowser::DialogMode::OPEN, ImVec2(0, 0), ".hexpat")) {
|
2020-11-21 14:39:16 +01:00
|
|
|
this->loadPatternFile(this->m_fileBrowser.selected_path);
|
|
|
|
}
|
2020-11-12 21:20:51 +01:00
|
|
|
|
2020-11-21 20:19:33 +01:00
|
|
|
if (ImGui::BeginPopupModal("Accept Pattern", nullptr, ImGuiWindowFlags_NoResize)) {
|
2020-11-21 14:39:16 +01:00
|
|
|
ImGui::TextUnformatted("A pattern compatible with this data type has been found:");
|
|
|
|
ImGui::Text("%ls", this->m_possiblePatternFile.filename().c_str());
|
|
|
|
ImGui::NewLine();
|
|
|
|
ImGui::Text("Do you want to load it?");
|
|
|
|
ImGui::NewLine();
|
2020-11-12 21:20:51 +01:00
|
|
|
|
2020-11-21 14:39:16 +01:00
|
|
|
if (ImGui::Button("Yes", ImVec2(40, 20))) {
|
|
|
|
this->loadPatternFile(this->m_possiblePatternFile.string());
|
|
|
|
ImGui::CloseCurrentPopup();
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button("No", ImVec2(40, 20))) {
|
|
|
|
ImGui::CloseCurrentPopup();
|
|
|
|
}
|
2020-11-12 21:20:51 +01:00
|
|
|
|
2020-11-21 14:39:16 +01:00
|
|
|
ImGui::EndPopup();
|
|
|
|
}
|
|
|
|
}
|
2020-11-20 18:24:59 +01:00
|
|
|
|
2020-11-12 21:20:51 +01:00
|
|
|
|
2020-11-21 14:39:16 +01:00
|
|
|
void ViewPattern::loadPatternFile(std::string path) {
|
|
|
|
FILE *file = fopen(path.c_str(), "rb");
|
2020-11-12 21:20:51 +01:00
|
|
|
|
2020-11-21 14:39:16 +01:00
|
|
|
if (file != nullptr) {
|
|
|
|
char *buffer;
|
|
|
|
fseek(file, 0, SEEK_END);
|
|
|
|
size_t size = ftell(file);
|
|
|
|
rewind(file);
|
2020-11-12 21:20:51 +01:00
|
|
|
|
2020-11-21 14:39:16 +01:00
|
|
|
buffer = new char[size + 1];
|
2020-11-20 18:24:59 +01:00
|
|
|
|
2020-11-21 14:39:16 +01:00
|
|
|
fread(buffer, size, 1, file);
|
|
|
|
buffer[size] = 0x00;
|
|
|
|
|
|
|
|
|
|
|
|
fclose(file);
|
|
|
|
|
|
|
|
this->parsePattern(buffer);
|
|
|
|
this->m_textEditor.SetText(buffer);
|
|
|
|
|
|
|
|
delete[] buffer;
|
2020-11-12 21:20:51 +01:00
|
|
|
}
|
2020-11-10 21:31:04 +01:00
|
|
|
}
|
|
|
|
|
2020-11-14 14:42:21 +01:00
|
|
|
void ViewPattern::clearPatternData() {
|
|
|
|
for (auto &data : this->m_patternData)
|
|
|
|
delete data;
|
2020-11-13 12:07:05 +01:00
|
|
|
|
2020-11-14 14:42:21 +01:00
|
|
|
this->m_patternData.clear();
|
2020-11-19 11:36:52 +01:00
|
|
|
lang::PatternData::resetPalette();
|
2020-11-10 21:31:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<std::derived_from<lang::ASTNode> T>
|
|
|
|
static std::vector<T*> findNodes(const lang::ASTNode::Type type, const std::vector<lang::ASTNode*> &nodes) {
|
|
|
|
std::vector<T*> result;
|
|
|
|
|
|
|
|
for (const auto & node : nodes)
|
|
|
|
if (node->getType() == type)
|
|
|
|
result.push_back(static_cast<T*>(node));
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ViewPattern::parsePattern(char *buffer) {
|
2020-11-14 14:42:21 +01:00
|
|
|
this->clearPatternData();
|
2020-11-27 21:20:23 +01:00
|
|
|
this->m_textEditor.SetErrorMarkers({ });
|
2020-11-15 00:46:18 +01:00
|
|
|
this->postEvent(Events::PatternChanged);
|
2020-11-10 21:31:04 +01:00
|
|
|
|
2020-11-22 16:22:02 +01:00
|
|
|
hex::lang::Preprocessor preprocessor;
|
|
|
|
std::endian dataEndianess = std::endian::native;
|
|
|
|
|
|
|
|
preprocessor.addPragmaHandler("endian", [&dataEndianess](std::string value) {
|
|
|
|
if (value == "big") {
|
|
|
|
dataEndianess = std::endian::big;
|
|
|
|
return true;
|
|
|
|
} else if (value == "little") {
|
|
|
|
dataEndianess = std::endian::little;
|
|
|
|
return true;
|
|
|
|
} else if (value == "native") {
|
|
|
|
dataEndianess = std::endian::native;
|
|
|
|
return true;
|
|
|
|
} else
|
|
|
|
return false;
|
|
|
|
});
|
2020-11-27 21:20:23 +01:00
|
|
|
preprocessor.addDefaultPragmaHandlers();
|
2020-11-21 14:39:16 +01:00
|
|
|
|
2020-11-17 02:31:51 +01:00
|
|
|
auto [preprocessingResult, preprocesedCode] = preprocessor.preprocess(buffer);
|
2020-11-27 21:20:23 +01:00
|
|
|
if (preprocessingResult.failed()) {
|
|
|
|
this->m_textEditor.SetErrorMarkers({ preprocessor.getError() });
|
2020-11-17 02:31:51 +01:00
|
|
|
return;
|
2020-11-27 21:20:23 +01:00
|
|
|
}
|
2020-11-10 21:31:04 +01:00
|
|
|
|
2020-11-22 16:22:02 +01:00
|
|
|
hex::lang::Lexer lexer;
|
2020-11-17 02:31:51 +01:00
|
|
|
auto [lexResult, tokens] = lexer.lex(preprocesedCode);
|
2020-11-10 21:31:04 +01:00
|
|
|
if (lexResult.failed()) {
|
2020-11-27 21:20:23 +01:00
|
|
|
this->m_textEditor.SetErrorMarkers({ lexer.getError() });
|
2020-11-10 21:31:04 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-11-22 16:22:02 +01:00
|
|
|
hex::lang::Parser parser;
|
2020-11-10 21:31:04 +01:00
|
|
|
auto [parseResult, ast] = parser.parse(tokens);
|
|
|
|
if (parseResult.failed()) {
|
2020-11-27 21:20:23 +01:00
|
|
|
this->m_textEditor.SetErrorMarkers({ parser.getError() });
|
2020-11-10 21:31:04 +01:00
|
|
|
return;
|
2020-11-16 22:54:39 +01:00
|
|
|
}
|
|
|
|
|
2020-11-19 11:36:52 +01:00
|
|
|
hex::ScopeExit deleteAst([&ast]{ for(auto &node : ast) delete node; });
|
|
|
|
|
2020-11-22 16:22:02 +01:00
|
|
|
hex::lang::Validator validator;
|
2020-11-16 22:54:39 +01:00
|
|
|
auto validatorResult = validator.validate(ast);
|
|
|
|
if (!validatorResult) {
|
2020-11-27 21:20:23 +01:00
|
|
|
this->m_textEditor.SetErrorMarkers({ validator.getError() });
|
2020-11-16 22:54:39 +01:00
|
|
|
return;
|
2020-11-10 21:31:04 +01:00
|
|
|
}
|
|
|
|
|
2020-11-22 16:22:02 +01:00
|
|
|
hex::lang::Evaluator evaluator(this->m_dataProvider, dataEndianess);
|
2020-11-19 11:36:52 +01:00
|
|
|
auto [evaluateResult, patternData] = evaluator.evaluate(ast);
|
|
|
|
if (evaluateResult.failed()) {
|
2020-11-27 21:20:23 +01:00
|
|
|
this->m_textEditor.SetErrorMarkers({ evaluator.getError() });
|
2020-11-19 11:36:52 +01:00
|
|
|
return;
|
2020-11-10 21:31:04 +01:00
|
|
|
}
|
2020-11-19 11:36:52 +01:00
|
|
|
this->m_patternData = patternData;
|
2020-11-10 21:31:04 +01:00
|
|
|
|
2020-11-15 00:46:18 +01:00
|
|
|
this->postEvent(Events::PatternChanged);
|
2020-11-10 21:31:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|