-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbkdecmd.cpp
370 lines (310 loc) · 11.7 KB
/
bkdecmd.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
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
// bkdecmd.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include "pch.h"
#include <clocale>
#include "BKParseImage.h"
#include "BKImage.h"
#include "StringUtil.h"
//////////////////////////////////////////////////////////////////////
// Preliminary function declarations
int wmain_impl(std::vector<std::wstring>& wargs);
void PrintWelcome();
void PrintUsage();
bool ParseCommandLine(std::vector<std::wstring>& wargs);
bool DoDiskInfo();
bool DoDiskList();
bool DoDiskListRecursive();
bool DoDiskListForMax();
bool DoDiskExtractFile();
bool DoDiskAddFile();
bool DoDiskDeleteFile();
//////////////////////////////////////////////////////////////////////
// Globals
#ifdef _MSC_VER
#define OPTIONCHAR L'/'
#define OPTIONSTR L"/"
#else
#define OPTIONCHAR L'-'
#define OPTIONSTR L"-"
#endif
std::wstring g_sCommand;
std::wstring g_sImageFileName;
fs::path g_pathImageFileName;
std::wstring g_sFileName;
fs::path g_pathFileName;
bool g_okCalcSHA1 = false;
enum CommandRequirements
{
CMDR_PARAM_FILENAME = 4, // Need FileName parameter
//CMDR_PARAM_PARTITION = 8, // Need Partition number parameter
CMDR_IMAGEFILERW = 32, // Image file should be writable (not read-only)
};
struct CommandInfo
{
const wchar_t* command;
bool (*commandImpl)(); // Function implementing the option
int requirements; // Command requirements, see CommandRequirements enum
}
static g_CommandInfos[] =
{
{ L"i", DoDiskInfo, 0 },
{ L"l", DoDiskList, 0 },
{ L"lr", DoDiskListRecursive, 0 },
{ L"lm", DoDiskListForMax, 0 },
{ L"e", DoDiskExtractFile, CMDR_PARAM_FILENAME },
{ L"a", DoDiskAddFile, CMDR_PARAM_FILENAME | CMDR_IMAGEFILERW },
{ L"d", DoDiskDeleteFile, CMDR_PARAM_FILENAME | CMDR_IMAGEFILERW },
};
static const int g_CommandInfos_count = (int)(sizeof(g_CommandInfos) / sizeof(CommandInfo));
CommandInfo* g_pCommand = nullptr;
CBKParseImage g_ParserImage;
CBKImage g_BKImage;
PARSE_RESULT g_sParseResult;
//////////////////////////////////////////////////////////////////////
void PrintWelcome()
{
std::wcout << L"Утилита работы с дисками БК BKDEcmd на основе кода BKDE [" << __DATE__ << " " << __TIME__ << "]";
std::wcout << std::endl;
}
void PrintUsage()
{
std::wcout << std::endl << L"Использование:" << std::endl
<< L" Команды для работы с образами дисков:" << std::endl
<< L" bkdecmd l <ImageFile> - показать содержимое корневой директории" << std::endl
<< L" bkdecmd lr <ImageFile> - показать содержимое диска рекурсивным обходом директорий" << std::endl
<< L" bkdecmd lm <ImageFile> - показать содержимое диска в RAR-подобном формате" << std::endl
<< L" bkdecmd e <ImageFile> <FileName> - извлечь файл" << std::endl
<< L" bkdecmd a <ImageFile> <FileName> - добавить файл" << std::endl
<< L" bkdecmd d <ImageFile> <FileName> - удалить файл" << std::endl
<< L" Опции:" << std::endl
<< L" " << OPTIONSTR << L"sha1 Вычислять и показывать для файлов хэш SHA1" << std::endl;
}
bool ParseCommandLine(std::vector<std::wstring>& wargs)
{
for (auto warg : wargs)
{
const wchar_t* arg = warg.c_str();
if (arg[0] == OPTIONCHAR)
{
if (wcscmp(arg + 1, L"sha1") == 0)
{
g_okCalcSHA1 = true;
}
else
{
std::wcout << L"Неизвестная опция: " << arg << std::endl;
return false;
}
}
else
{
if (g_sCommand.empty())
g_sCommand = arg;
else if (g_sImageFileName.empty())
g_sImageFileName = arg;
else if (g_sFileName.empty())
g_sFileName = arg;
else
{
std::wcout << L"Неизвестный параметр: " << arg << std::endl;
return false;
}
}
}
// Parsed options validation
if (g_sCommand.empty())
{
std::wcout << L"Не указана команда." << std::endl;
return false;
}
CommandInfo* pcinfo = nullptr;
for (int i = 0; i < g_CommandInfos_count; i++)
{
if (wcscmp(g_sCommand.c_str(), g_CommandInfos[i].command) == 0)
{
pcinfo = g_CommandInfos + i;
break;
}
}
if (pcinfo == nullptr)
{
std::wcout << L"Неизвестная команда: " << g_sCommand << std::endl;
return false;
}
g_pCommand = pcinfo;
std::wcout << L"Команда: " << g_sCommand << std::endl;
// More pre-checks based on command requirements
if (g_sImageFileName.empty())
{
std::wcout << L"Файл образа не указан." << std::endl;
return false;
}
#ifdef _MSC_VER
g_pathImageFileName = fs::path(g_sImageFileName);
#else
g_pathImageFileName = fs::path(strUtil::wstringToString(g_sImageFileName));
#endif
if ((pcinfo->requirements & CMDR_PARAM_FILENAME) != 0 && g_sFileName.empty())
{
std::wcout << L"Ожидалось имя файла." << std::endl;
return false;
}
//if ((pcinfo->requirements & CMDR_IMAGEFILERW) != 0 && g_diskimage.IsReadOnly())
//{
// std::wcout << L"Cannot perform the operation: disk image file is read-only." << std::endl;
// return false;
//}
if (!g_sFileName.empty())
{
#ifdef _MSC_VER
g_pathFileName = fs::path(g_sFileName);
#else
g_pathFileName = fs::path(strUtil::wstringToString(g_sFileName));
#endif
}
return true;
}
#ifdef _MSC_VER
int wmain(int argc, wchar_t* argv[])
{
// Console output mode
_setmode(_fileno(stdout), _O_U16TEXT);
std::vector<std::wstring> wargs;
for (int argn = 1; argn < argc; argn++)
{
wargs.push_back(std::wstring(argv[argn]));
}
return wmain_impl(wargs);
}
#else
int main(int argc, char* argv[])
{
// Console output mode
std::setlocale(LC_ALL, "");
std::wcout.imbue(std::locale(""));
std::vector<std::wstring> wargs;
std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>> converter;
for (int argn = 1; argn < argc; argn++)
{
std::wstring warg = converter.from_bytes(argv[argn]);
wargs.push_back(warg);
}
return wmain_impl(wargs);
}
#endif
int wmain_impl(std::vector<std::wstring>& wargs)
{
PrintWelcome();
if (!ParseCommandLine(wargs))
{
PrintUsage();
return 255;
}
if (!fs::is_regular_file(g_pathImageFileName))
{
std::wcout << L"Файл образа диска не найден: " << g_sImageFileName << std::endl;
return 255;
}
std::wcout << L"Образ диска: " << g_sImageFileName << std::endl;
// Подключение к файлу образа
g_sParseResult = g_ParserImage.ParseImage(g_pathImageFileName, 0);
if (g_sParseResult.imageOSType == IMAGE_TYPE::ERROR_NOIMAGE)
{
std::wcout << L"Какая-то ошибка при чтении файла образа, либо он повреждён, либо недоступен по чтению, из-за блокирования другой программой." << std::endl;
return 255;
}
if (g_sParseResult.imageOSType == IMAGE_TYPE::UNKNOWN)
{
std::wcout << L"Неопознанная файловая система образа." << std::endl;
return 255;
}
// теперь, если образ опознался, надо создать объект, соответствующий файловой системе
g_BKImage.ClearImgVector();
g_BKImage.SetCalcSHA1(g_okCalcSHA1);
uint32_t flg = g_BKImage.Open(g_sParseResult);
if (flg == 0)
{
std::wcout << L"Недостаточно памяти!" << std::endl;
return 255;
}
std::wcout << L"Формат: " << g_BKImage.GetImgFormatName() << L" ";
std::wcout << L"Размер: " << g_BKImage.GetImgSize() << L" ";
//std::wcout << L"Свободно: " << g_BKImage.GetImageFreeSpace() << L" ";
std::wcout << L"Режим: " << (g_BKImage.GetImageOpenStatus() ? L"RO" : L"RW") << std::endl;
if (g_okCalcSHA1)
{
if (!g_BKImage.PrintImageSHA1())
return 255;
}
std::wcout << std::endl;
// Main task
bool result = g_pCommand->commandImpl();
g_BKImage.Close();
if (result)
std::wcout << std::endl << L"Done." << std::endl;
return result ? 0 : 255;
}
//////////////////////////////////////////////////////////////////////
bool DoDiskInfo()
{
g_BKImage.PrintImageInfo();
return true;
}
bool DoDiskList()
{
// Читаем и печатаем список файлов в корневой директории
return g_BKImage.PrintCurrentDirectory();
}
bool DoDiskListRecursive()
{
// Читаем и печатаем список файлов в корневой директории с обходом под-директорий
return g_BKImage.PrintCurrentDirectory(0, true);
}
bool DoDiskListForMax()
{
// Читаем и печатаем список файлов в корневой директории с обходом под-директорий
g_BKImage.SetListingFormat(LISTING_FORMAT::RAR_LIKE);
return g_BKImage.PrintCurrentDirectory(0, true);
}
bool DoDiskExtractFile()
{
//TODO: Если имя извлекаемого файла указано с '/', то нужно сначала спуститься до заданной директории
return g_BKImage.FindAndExtractFile(g_sFileName);
}
bool DoDiskAddFile()
{
// Проверяем, есть ли у нас такой файл/директория
if (fs::is_directory(g_sFileName)) // это директория
{
std::wcout << L"Добавление директорий пока не реализовано." << std::endl;
return false;
}
if (!fs::is_regular_file(g_sFileName))
{
std::wcout << L"Добавляемый файл не найден: " << g_sFileName << std::endl;
return false;
}
// Сначала поищем файл/директорию с таким именем
auto fr = g_BKImage.FindRecordByName(g_sFileName);
if (fr != nullptr)
{
std::wcout << L"Уже существует файл или директория с таким именем: " << g_sFileName << std::endl;
return false;
}
//TODO: Если существующий объект это файл и мы добавляем файл, можно предлагать перезаписать
ADDOP_RESULT ret;
ret = g_BKImage.AddFile(g_sFileName);
if (ret.nError != ADD_ERROR::OK_NOERROR)
{
std::wstring serror = g_AddOpErrorStr[(int)ret.nError];
std::wcout << L"Не удалось добавить файл, ошибка: " << serror << std::endl;
return false;
}
std::wcout << L"Файл добавлен: " << g_sFileName << std::endl;
return true;
}
bool DoDiskDeleteFile()
{
//TODO: Если имя удаляемого файла указано с '/', то нужно сначала спуститься до заданной директории
return g_BKImage.FindAndDeleteFile(g_sFileName);
}