X-Git-Url: https://git.siccegge.de//index.cgi?p=frida%2Ffrida.git;a=blobdiff_plain;f=src%2Fmain.cxx;h=9e25c20597b8f9df0ae5cdb81b9e063d3ae6341d;hp=b23eb8860d1841551e2ce43a145f2d2ec09e4498;hb=82b40a653fb3a1d349e32679340f276d5c61d269;hpb=26c4bd3156495d5c6d18e51b06c19e8c6eea62d0 diff --git a/src/main.cxx b/src/main.cxx index b23eb88..9e25c20 100644 --- a/src/main.cxx +++ b/src/main.cxx @@ -1,29 +1,96 @@ -#include "include.hxx" +#include "disassembler/llvm/include_llvm.hxx" -#include #include #include +#if QT_VERSION > QT_VERSION_CHECK(5, 2, 0) +#define ARGPARSE +#endif + +#ifdef ARGPARSE +#include +#endif #include +#include +#include -#include "Binary.hxx" -#include "gui/Mainwindow.hxx" +#include "log4cxx/logger.h" +#include "log4cxx/basicconfigurator.h" -using std::cout; -using std::cin; -using std::cerr; +#include "gui/Mainwindow.hxx" +#include "core/InformationManager.hxx" +#include "core/Settings.hxx" +#include "disassembler/llvm/LLVMDisassembler.hxx" +#include "Config.hxx" int main(int argc, char** argv) { - llvm::InitializeAllTargetInfos(); - llvm::InitializeAllTargetMCs(); - llvm::InitializeAllAsmParsers(); - llvm::InitializeAllDisassemblers(); + QApplication app(argc, argv); + + log4cxx::BasicConfigurator::configure(); + log4cxx::LoggerPtr _logger(log4cxx::Logger::getLogger("main")); + +#ifdef ARGPARSE + QCommandLineParser parser; +#endif + + QApplication::setApplicationName("frida"); + QApplication::setApplicationVersion("0.2+"); + QApplication::addLibraryPath(CONFIG_LIBDIR "/frida/plugins/Interpreter"); + qRegisterMetaType >("QVector"); +#ifdef ARGPARSE + parser.addHelpOption(); + parser.addVersionOption(); + + QCommandLineOption loglevelOption("loglevel", "Control verbosity of logging", "FATAL|ERROR|WARN|INFO|DEBUG|TRACE"); + loglevelOption.setDefaultValue("INFO"); + parser.addOption(loglevelOption); + + parser.addPositionalArgument("filename", QCoreApplication::translate("main", "File to disassemble.")); + + parser.process(app); +#endif + + log4cxx::LevelPtr level = log4cxx::Level::getInfo(); +#ifdef ARGPARSE + if (parser.value(loglevelOption) != "") { + std::string levelstring = parser.value(loglevelOption).toStdString(); + if (levelstring == "FATAL") + level = log4cxx::Level::getFatal(); + if (levelstring == "ERROR") + level = log4cxx::Level::getError(); + if (levelstring == "WARN") + level = log4cxx::Level::getWarn(); + if (levelstring == "INFO") + level = log4cxx::Level::getInfo(); + if (levelstring == "DEBUG") + level = log4cxx::Level::getDebug(); + if (levelstring == "TRACE") + level = log4cxx::Level::getTrace(); + } +#endif + log4cxx::Logger::getRootLogger()->setLevel(level); + + Settings settings; + InformationManager iman; + + LOG4CXX_DEBUG(_logger, "Initializing LLVM"); + llvm::InitializeAllTargetInfos(); + llvm::InitializeAllTargetMCs(); + llvm::InitializeAllAsmParsers(); + llvm::InitializeAllDisassemblers(); - QApplication app(argc, argv); + LOG4CXX_DEBUG(_logger, "Initializing Qt"); - Mainwindow m; - m.show(); + std::string filename = ""; +#ifdef ARGPARSE + if (! parser.positionalArguments().isEmpty()) { + filename = parser.positionalArguments().at(0).toStdString(); + } +#endif - return app.exec(); + Mainwindow m(&iman); + m.show(); + iman.reset(filename); + return app.exec(); }