#include "views/view_strings.hpp" #include #include #include #include #include using namespace std::literals::string_literals; namespace hex { ViewStrings::ViewStrings() : View("hex.view.strings.name") { EventManager::subscribe(this, [this]() { this->m_foundStrings.clear(); }); this->m_filter.reserve(0xFFFF); std::memset(this->m_filter.data(), 0x00, this->m_filter.capacity()); } ViewStrings::~ViewStrings() { EventManager::unsubscribe(this); } std::string readString(const FoundString &foundString) { std::string string(foundString.size + 1, '\0'); SharedData::currentProvider->read(foundString.offset, string.data(), foundString.size); return string; } void ViewStrings::createStringContextMenu(const FoundString &foundString) { if (ImGui::TableGetColumnFlags(2) == ImGuiTableColumnFlags_IsHovered && ImGui::IsMouseReleased(1) && ImGui::IsItemHovered()) { ImGui::OpenPopup("StringContextMenu"); this->m_selectedString = readString(foundString); } if (ImGui::BeginPopup("StringContextMenu")) { if (ImGui::MenuItem("hex.view.strings.copy"_lang)) { ImGui::SetClipboardText(this->m_selectedString.c_str()); } ImGui::Separator(); if (ImGui::MenuItem("hex.view.strings.demangle"_lang)) { this->m_demangledName = llvm::demangle(this->m_selectedString); if (!this->m_demangledName.empty()) View::doLater([]{ ImGui::OpenPopup("hex.view.strings.demangle.name"_lang); }); } ImGui::EndPopup(); } } void ViewStrings::searchStrings() { this->m_foundStrings.clear(); this->m_filterIndices.clear(); this->m_searching = true; std::thread([this] { auto provider = SharedData::currentProvider; std::vector buffer(1024, 0x00); u32 foundCharacters = 0; for (u64 offset = 0; offset < provider->getSize(); offset += buffer.size()) { size_t readSize = std::min(u64(buffer.size()), provider->getSize() - offset); provider->readRelative(offset, buffer.data(), readSize); for (u32 i = 0; i < readSize; i++) { if (buffer[i] >= ' ' && buffer[i] <= '~' && offset < provider->getSize() - 1) foundCharacters++; else { if (foundCharacters >= this->m_minimumLength) { FoundString foundString = { offset + i - foundCharacters + provider->getBaseAddress(), foundCharacters }; this->m_foundStrings.push_back(foundString); this->m_filterIndices.push_back(this->m_foundStrings.size() - 1); } foundCharacters = 0; } } } this->m_searching = false; }).detach(); } void ViewStrings::drawContent() { auto provider = SharedData::currentProvider; if (ImGui::Begin(View::toWindowName("hex.view.strings.name").c_str(), &this->getWindowOpenState(), ImGuiWindowFlags_NoCollapse)) { if (provider != nullptr && provider->isReadable()) { ImGui::Disabled([this]{ if (ImGui::InputInt("hex.view.strings.min_length"_lang, &this->m_minimumLength, 1, 0)) this->m_foundStrings.clear(); ImGui::InputText("hex.view.strings.filter"_lang, this->m_filter.data(), this->m_filter.capacity(), ImGuiInputTextFlags_CallbackEdit, [](ImGuiInputTextCallbackData *data) { auto &view = *static_cast(data->UserData); view.m_filter.resize(data->BufTextLen); view.m_filterIndices.clear(); for (u64 i = 0; i < view.m_foundStrings.size(); i++) { if (readString(view.m_foundStrings[i]).find(data->Buf) != std::string::npos) view.m_filterIndices.push_back(i); } return 0; }, this); if (ImGui::Button("hex.view.strings.extract"_lang)) this->searchStrings(); }, this->m_searching); if (this->m_searching) { ImGui::SameLine(); ImGui::TextSpinner("hex.view.strings.searching"_lang); } ImGui::Separator(); ImGui::NewLine(); if (ImGui::BeginTable("##strings", 3, ImGuiTableFlags_Borders | ImGuiTableFlags_Resizable | ImGuiTableFlags_Sortable | ImGuiTableFlags_Reorderable | ImGuiTableFlags_RowBg | ImGuiTableFlags_ScrollY)) { ImGui::TableSetupScrollFreeze(0, 1); ImGui::TableSetupColumn("hex.view.strings.offset"_lang, 0, -1, ImGui::GetID("offset")); ImGui::TableSetupColumn("hex.view.strings.size"_lang, 0, -1, ImGui::GetID("size")); ImGui::TableSetupColumn("hex.view.strings.string"_lang, 0, -1, ImGui::GetID("string")); auto sortSpecs = ImGui::TableGetSortSpecs(); if (sortSpecs->SpecsDirty) { std::sort(this->m_foundStrings.begin(), this->m_foundStrings.end(), [&sortSpecs](FoundString &left, FoundString &right) -> bool { if (sortSpecs->Specs->ColumnUserID == ImGui::GetID("offset")) { if (sortSpecs->Specs->SortDirection == ImGuiSortDirection_Ascending) return left.offset > right.offset; else return left.offset < right.offset; } else if (sortSpecs->Specs->ColumnUserID == ImGui::GetID("size")) { if (sortSpecs->Specs->SortDirection == ImGuiSortDirection_Ascending) return left.size > right.size; else return left.size < right.size; } else if (sortSpecs->Specs->ColumnUserID == ImGui::GetID("string")) { if (sortSpecs->Specs->SortDirection == ImGuiSortDirection_Ascending) return readString(left) > readString(right); else return readString(left) < readString(right); } return false; }); sortSpecs->SpecsDirty = false; } ImGui::TableHeadersRow(); ImGuiListClipper clipper; clipper.Begin(this->m_filterIndices.size()); while (clipper.Step()) { for (u64 i = clipper.DisplayStart; i < clipper.DisplayEnd; i++) { auto &foundString = this->m_foundStrings[this->m_filterIndices[i]]; auto string = readString(foundString); ImGui::TableNextRow(); ImGui::TableNextColumn(); if (ImGui::Selectable(("##StringLine"s + std::to_string(i)).c_str(), false, ImGuiSelectableFlags_SpanAllColumns)) { EventManager::post(Region { foundString.offset, foundString.size }); } ImGui::PushID(i + 1); createStringContextMenu(foundString); ImGui::PopID(); ImGui::SameLine(); ImGui::Text("0x%08lx : 0x%08lx", foundString.offset, foundString.offset + foundString.size); ImGui::TableNextColumn(); ImGui::Text("0x%04lx", foundString.size); ImGui::TableNextColumn(); ImGui::Text("%s", string.c_str()); } } clipper.End(); ImGui::EndTable(); } } } ImGui::End(); if (ImGui::BeginPopup("hex.view.strings.demangle.title"_lang)) { if (ImGui::BeginChild("##scrolling", ImVec2(500, 150))) { ImGui::TextUnformatted("hex.view.strings.demangle.title"_lang); ImGui::Separator(); ImGui::TextWrapped("%s", this->m_demangledName.c_str()); ImGui::NewLine(); if (ImGui::Button("hex.view.strings.demangle.copy"_lang)) ImGui::SetClipboardText(this->m_demangledName.c_str()); } ImGui::EndChild(); ImGui::EndPopup(); } } void ViewStrings::drawMenu() { } }