-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecode_tool.cpp
75 lines (69 loc) · 1.87 KB
/
decode_tool.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include <iostream>
#include <fstream>
#include <string>
#include <unistd.h>
#include <vector>
#include "Decoder.h"
#include "PrintSourceCode.h"
#include "TypeDef.h"
void usage( void )
{
std::cerr << "decode_tool -a <IPT traced file> -m <maps_file>" << std::endl;
}
int main( int argc, char *argv[] )
{
std::string aux_file_path;
std::string data_file_path;
std::string maps_file_path;
while ( true ) {
switch ( getopt( argc, argv, "a:d:m:p" ) )
{
case 'a':
{
aux_file_path = optarg;
continue;
}
case 'd':
{
data_file_path = optarg;
continue;
}
case 'm':
{
maps_file_path = optarg;
continue;
}
default:
{
break;
}
}
break;
}
if ( maps_file_path.empty() || aux_file_path.empty() ) {
std::cerr << "maps_file_path is empty" << std::endl;
usage();
}
std::vector<raw_file> *_raw_file_list = new std::vector<raw_file>;
std::ifstream ifs( maps_file_path );
if ( !ifs.is_open() ) {
std::cerr << maps_file_path << " open failed" << std::endl;
return -1;
}
uint64_t file_count;
ifs >> file_count;
for ( uint64_t i = 0; i < file_count; ++ i ) {
std::string path;
uint64_t base;
uint64_t end;
ifs >> path >> base >> end;
_raw_file_list->push_back( { path, base, end } );
}
std::string bin_file = _raw_file_list->at(0).path;
PrintSourceCode *psc = new PrintSourceCode( bin_file );
//Decoder( *aux, aux_size, bin_path, *raw_file_list, *psc )
Decoder *d = new Decoder( nullptr, 0, bin_file, _raw_file_list, psc );
d->SetDecoderByFile( aux_file_path );
d->Decode();
return 0;
}