-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
198 lines (184 loc) · 3.93 KB
/
Copy pathmain.cpp
File metadata and controls
198 lines (184 loc) · 3.93 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
#define __USE_MINGW_ANSI_STDIO 1
#include <stdio.h>
#include <fcntl.h>
#include <stdexcept>
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <tchar.h>
#include <locale.h>
#include "tstring.h"
#include "reader.h"
#include "detector.h"
#include "journal.h"
void help()
{
printf("Firebird files dump utility.\n"
"Usage: fbdump [options] <file name>\n"
"Options:\n"
"\t-i\tNext parameter is a file (optional, useful if the file name starts with '-')\n"
// "\t-d\tNext parameter is a database connection string\n"
// "\t-u\tNext parameter is an user name\n"
// "\t-p\tNext parameter is a password\n"
"\t-?,-h\tThis text\n"
"\t-v\tDump more data\n"
"\nExample: fbdump -v db_abc.journal-0000001\n"
"\nOptions may be combined.\n"
"Example: fbdump -iv db_abc.journal-0000001\n"
);
}
bool verbose = false;
int _tmain(int argc, _TCHAR* argv[])
{
struct CPHolder
{
UINT oldCP;
CPHolder()
{
oldCP = GetConsoleOutputCP();
if (!SetConsoleOutputCP(CP_UTF8))
printf("Set console output to UTF-8 failed. Error %lu\n", GetLastError());
}
~CPHolder()
{
SetConsoleOutputCP(oldCP);
}
} cpHolder;
try
{
// Recognize command-line options
tstring fileName;
tstring database;
tstring userName;
tstring password;
FileType fileType = FileType::Unknown;
for (int i = 1; i < argc; ++i)
{
_TCHAR* arg = argv[i];
if (*arg == '-')
{
while (*(++arg))
{
switch (*arg)
{
case _TEXT('?'):
case _TEXT('h'):
{
//help(); will be printed later
break;
}
case _TEXT('d'):
{
if (!database.empty())
{
throw std::invalid_argument("Database option is used twice");
}
if (++i >= argc)
{
throw std::out_of_range("Database name is missing");
}
database = argv[i];
break;
}
case _TEXT('i'):
{
if (!fileName.empty())
{
throw std::invalid_argument("Input file option is used twice");
}
if (++i >= argc)
{
throw std::out_of_range("File name is missing");
}
fileName = argv[i];
break;
}
case _TEXT('p'):
{
if (!password.empty())
{
throw std::invalid_argument("Password option is used twice");
}
if (++i >= argc)
{
throw std::out_of_range("Password is missing");
}
password = argv[i];
break;
}
case _TEXT('u'):
{
if (!userName.empty())
{
throw std::invalid_argument("User name option is used twice");
}
if (++i >= argc)
{
throw std::out_of_range("User name is missing");
}
userName = argv[i];
break;
}
case _TEXT('v'):
{
verbose = true;
break;
}
default:
throw std::invalid_argument(std::string("Unrecognized option ") + char(*arg));
}
}
}
else
{
if (!fileName.empty())
{
throw std::invalid_argument("Input file option is used twice");
}
fileName = argv[i];
}
}
// If no file name provided - show help
if (fileName.empty())
{
help();
return 0;
}
struct FileHolder
{
int f;
FileHolder(const tstring& name, int flags)
{
f = _topen(name.c_str(), flags);
if (f == -1)
{
throw std::runtime_error(std::string("Unable to open file \"") + to_string(name) + "\": " + strerror(errno));
}
}
~FileHolder()
{
close(f);
}
};
Reader file(fileName, O_RDONLY | O_BINARY);
if (fileType == FileType::Unknown)
{
file.readBuffer();
fileType = detectFileType(file);
}
switch (fileType)
{
case FileType::Journal:
Journal::dumpIt(file);
break;
case FileType::Unknown:
printf("Unable to determine type of file \"%s\", perhaps it is damaged.\n", to_string(fileName).c_str());
return 1;
}
}
catch (const std::exception& ex)
{
fprintf(stderr, "%s\n", ex.what());
return 1;
}
return 0;
}