X-Git-Url: https://git.siccegge.de//index.cgi?p=frida%2Ffrida.git;a=blobdiff_plain;f=src%2Fcore%2FInformationManager.hxx;h=ddba5a3f8e4080f49b4f8cedbd6a51cd47c9a1f5;hp=bb37a1e9a69ee9965b82a031b4e8d7bb9853d3f8;hb=HEAD;hpb=546b89382dd61b664c216ad7668ec783f0ad094c diff --git a/src/core/InformationManager.hxx b/src/core/InformationManager.hxx index bb37a1e..ddba5a3 100644 --- a/src/core/InformationManager.hxx +++ b/src/core/InformationManager.hxx @@ -2,14 +2,17 @@ #define INCLUDE__InformationManager_hxx #include -#include #include #include #include #include +#include +#include "qt.hxx" #include "disassembler/Disassembler.hxx" +#include "core/events/NewFunctionEvent.hxx" + class Interpreter; class Function; @@ -24,60 +27,61 @@ class QString; class QTemporaryFile; class QPluginLoader; -using boost::signals2::connection; - -class InformationManager { +class InformationManager : public QObject { +#ifndef SWIG + Q_OBJECT +signals: +#else +public: +#endif + void renameFunctionEvent(RenameFunctionEvent* event); + void newFunctionEvent(NewFunctionEvent event); + void changeCommentEvent(ChangeCommentEvent* event); + void resetEvent(); public: InformationManager(); ~InformationManager(); + // Start working on a fresh binary void reset(const std::string& filename); + + // Load a saved binary void load(const std::string& filename); + + // Save current state to disk void save(const std::string& filename); Disassembler* getDisassembler() { return disassembler.get(); } - // Rename Function - typedef std::function RenameFunctionHandler; - connection registerRenameFunctionEvent(RenameFunctionHandler h) - { return renameFunctionSignal.connect(h); } - void dispatch(RenameFunctionEvent* event) - { renameFunctionSignal(event); } - - // New Function - typedef std::function NewFunctionHandler; - connection registerNewFunctionEvent(NewFunctionHandler h) - { return newFunctionSignal.connect(h); } - void dispatch(NewFunctionEvent* event) - { newFunctionSignal(event); } - - // Change Comment - typedef std::function ChangeCommentHandler; - connection registerChangeCommentEvent(ChangeCommentHandler h) - { return changeCommentSignal.connect(h); } - void dispatch(ChangeCommentEvent* event) - { changeCommentSignal(event); } - - connection connect_reset_signal(std::function f) - { return reset_signal.connect(f); } + // Accessors + /* Used by the disassembler to determine whether to use unsafe + * heuristics for finding an entry point + */ + bool hasFunctions() const {return functions.size() != 0;} + + uint64_t getEntryAddress() {return disassembler->entryAddress();} Function* getFunction(uint64_t address); - bool hasFunctions() const {return functions.size() != 0;} std::map::const_iterator beginFunctions(); std::map::const_iterator endFunctions(); BasicBlock* getBasicBlock(uint64_t address); - bool hasBasicBlocks() const {return blocks.size() != 0;} std::map::const_iterator beginBasicBlocks(); std::map::const_iterator endBasicBlocks(); + std::pair< + std::multimap::const_iterator, + std::multimap::const_iterator> + getComments(uint64_t address); + std::multimap::const_iterator beginComments(); + std::multimap::const_iterator endComments(); + Interpreter* getInterpreter(const std::string& name); bool hasInterpreters() const {return interpreters.size() != 0;} std::map::const_iterator beginInterpreters(); std::map::const_iterator endInterpreters(); - /* Protocoll: * * Users may allocate new Data containers with the new*() @@ -104,18 +108,12 @@ public: Comment* newLocalComment(uint64_t address, Function* f); void finishFunction(Function* f); void finishBasicBlock(BasicBlock* b); - void finnishComment(Comment* c); + void finishComment(Comment* c); void deleteFunction(Function* f); void deleteBasicBlock(BasicBlock* b); void deleteComment(Comment* c); private: - boost::signals2::signal renameFunctionSignal; - boost::signals2::signal newFunctionSignal; - boost::signals2::signal changeCommentSignal; - - boost::signals2::signal reset_signal; - std::unique_ptr disassembler; std::map interpreters; @@ -127,6 +125,7 @@ private: std::unique_ptr tmpfile; std::vector plugins; + QThread disassemblerThread; log4cxx::LoggerPtr logger; };