2017-04-01 11:20:13 +00:00
2017-03-29 10:18:37 +00:00
# include "mainwindow.h"
# include "newfiledialog.h"
2017-04-01 11:20:13 +00:00
# include "optionsdialog.h"
2017-03-29 10:18:37 +00:00
# include <QApplication>
2017-04-01 11:20:13 +00:00
# include <QCommandLineParser>
2017-03-30 21:48:36 +00:00
# include <QTextCodec>
2017-03-31 01:45:59 +00:00
# include <QMessageBox>
2017-03-29 10:18:37 +00:00
int main ( int argc , char * argv [ ] )
{
QApplication a ( argc , argv ) ;
2017-04-03 00:18:09 +00:00
a . setOrganizationName ( " iaito " ) ;
a . setApplicationName ( " iaito " ) ;
2017-03-29 10:18:37 +00:00
a . setApplicationVersion ( APP_VERSION ) ;
2017-03-30 21:48:36 +00:00
// Set QString codec to UTF-8
QTextCodec : : setCodecForLocale ( QTextCodec : : codecForName ( " UTF-8 " ) ) ;
# if QT_VERSION < QT_VERSION_CHECK(5,0,0)
QTextCodec : : setCodecForCStrings ( QTextCodec : : codecForName ( " UTF-8 " ) ) ;
QTextCodec : : setCodecForTr ( QTextCodec : : codecForName ( " UTF-8 " ) ) ;
# endif
2017-04-01 11:20:13 +00:00
2017-05-13 18:09:36 +00:00
QCommandLineParser cmd_parser ;
cmd_parser . setApplicationDescription ( " A Qt and C++ GUI for radare2 reverse engineering framework " ) ;
cmd_parser . addHelpOption ( ) ;
cmd_parser . addVersionOption ( ) ;
cmd_parser . addPositionalArgument ( " filename " , QObject : : tr ( " Filename to open. " ) ) ;
2017-04-28 13:09:40 +00:00
2017-05-13 18:09:36 +00:00
QCommandLineOption anal_option ( { " A " , " anal " } ,
2017-06-03 12:27:23 +00:00
QObject : : tr ( " Automatically start analysis. Needs filename to be specified. May be a value between 0 and 4. " ) ,
QObject : : tr ( " level " ) ) ;
2017-05-13 18:09:36 +00:00
cmd_parser . addOption ( anal_option ) ;
2017-04-28 13:09:40 +00:00
2017-05-13 18:09:36 +00:00
cmd_parser . process ( a ) ;
2017-04-01 11:20:13 +00:00
2017-05-13 18:09:36 +00:00
QStringList args = cmd_parser . positionalArguments ( ) ;
2017-04-01 11:20:13 +00:00
2017-03-31 01:45:59 +00:00
// Check r2 version
QString r2version = r_core_version ( ) ;
QString localVersion = " " R2_GITTAP ;
2017-04-09 19:55:06 +00:00
if ( r2version ! = localVersion )
2017-03-31 01:45:59 +00:00
{
QMessageBox msg ;
msg . setIcon ( QMessageBox : : Critical ) ;
msg . setWindowIcon ( QIcon ( " :/new/prefix1/img/logo-small.png " ) ) ;
msg . setStandardButtons ( QMessageBox : : Yes | QMessageBox : : No ) ;
msg . setWindowTitle ( " Version mismatch! " ) ;
msg . setText ( QString ( " The version used to compile iaito (%1) does not match the binary version of radare2 (%2). This could result in unexpected behaviour. Are you sure you want to continue? " ) . arg ( localVersion , r2version ) ) ;
2017-04-09 19:55:06 +00:00
if ( msg . exec ( ) = = QMessageBox : : No )
2017-03-31 01:45:59 +00:00
return 1 ;
}
2017-04-28 13:09:40 +00:00
2017-05-13 18:09:36 +00:00
bool anal_level_specified = false ;
int anal_level = 0 ;
2017-04-28 13:09:40 +00:00
2017-05-13 18:09:36 +00:00
if ( cmd_parser . isSet ( anal_option ) )
2017-04-28 13:09:40 +00:00
{
2017-05-13 18:09:36 +00:00
anal_level = cmd_parser . value ( anal_option ) . toInt ( & anal_level_specified ) ;
2017-04-28 13:09:40 +00:00
2017-05-13 18:09:36 +00:00
if ( ! anal_level_specified | | anal_level < 0 | | anal_level > 4 )
2017-04-28 13:09:40 +00:00
{
printf ( " %s \n " , QObject : : tr ( " Invalid Analysis Level. May be a value between 0 and 4. " ) . toLocal8Bit ( ) . constData ( ) ) ;
return 1 ;
}
}
2017-04-09 19:55:06 +00:00
if ( args . empty ( ) )
2017-04-01 11:20:13 +00:00
{
2017-05-13 18:09:36 +00:00
if ( anal_level_specified )
2017-04-28 13:09:40 +00:00
{
printf ( " %s \n " , QObject : : tr ( " Filename must be specified to start analysis automatically. " ) . toLocal8Bit ( ) . constData ( ) ) ;
return 1 ;
}
2017-04-01 11:20:13 +00:00
NewFileDialog * n = new NewFileDialog ( ) ;
n - > setAttribute ( Qt : : WA_DeleteOnClose ) ;
2017-04-01 11:33:16 +00:00
n - > show ( ) ;
2017-04-01 11:20:13 +00:00
}
else // filename specified as positional argument
{
2017-05-13 18:09:36 +00:00
MainWindow * main = new MainWindow ( ) ;
main - > openFile ( args [ 0 ] , anal_level_specified ? anal_level : - 1 ) ;
2017-04-01 11:20:13 +00:00
}
2017-03-29 10:18:37 +00:00
return a . exec ( ) ;
}