forked from TheOfficialFloW/VitaShell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
io_process.c
734 lines (572 loc) · 19.5 KB
/
io_process.c
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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
/*
VitaShell
Copyright (C) 2015-2018, TheFloW
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "main.h"
#include "io_process.h"
#include "archive.h"
#include "file.h"
#include "message_dialog.h"
#include "uncommon_dialog.h"
#include "language.h"
#include "utils.h"
static uint64_t current_value = 0;
int cancelHandler() {
return (updateMessageDialog() != MESSAGE_DIALOG_RESULT_RUNNING);
}
void SetProgress(uint64_t value, uint64_t max) {
current_value = value;
}
static int update_thread(SceSize args_size, UpdateArguments *args) {
uint64_t previous_value = current_value;
SceUInt64 cur_micros = 0, delta_micros = 0, last_micros = 0;
double kbs = 0.0;
while (current_value < args->max && isMessageDialogRunning()) {
// Show KB/s
if (args->show_kbs) {
cur_micros = sceKernelGetProcessTimeWide();
if (cur_micros >= (last_micros + 1000 * 1000)) {
delta_micros = cur_micros - last_micros;
last_micros = cur_micros;
kbs = (double)(current_value - previous_value) / 1024.0;
previous_value = current_value;
if (kbs > 0) {
char msg[32];
sprintf(msg, "%.0f KB/s", kbs);
sceMsgDialogProgressBarSetInfo(SCE_MSG_DIALOG_PROGRESSBAR_TARGET_BAR_DEFAULT, (SceChar8 *)msg);
}
}
}
double progress = (double)((100.0 * (double)current_value) / (double)args->max);
sceMsgDialogProgressBarSetValue(SCE_MSG_DIALOG_PROGRESSBAR_TARGET_BAR_DEFAULT, (uint32_t)progress);
sceKernelDelayThread(COUNTUP_WAIT);
}
return sceKernelExitDeleteThread(0);
}
SceUID createStartUpdateThread(uint64_t max, int show_kbs) {
current_value = 0;
UpdateArguments args;
args.max = max;
args.show_kbs = show_kbs;
SceUID thid = sceKernelCreateThread("update_thread", (SceKernelThreadEntry)update_thread, 0xBF, 0x4000, 0, 0, NULL);
if (thid >= 0)
sceKernelStartThread(thid, sizeof(UpdateArguments), &args);
return thid;
}
int delete_thread(SceSize args_size, DeleteArguments *args) {
SceUID thid = -1;
// Lock power timers
powerLock();
// Set progress to 0%
sceMsgDialogProgressBarSetValue(SCE_MSG_DIALOG_PROGRESSBAR_TARGET_BAR_DEFAULT, 0);
sceKernelDelayThread(DIALOG_WAIT); // Needed to see the percentage
FileListEntry *file_entry = fileListGetNthEntry(args->file_list, args->index);
int count = 0;
FileListEntry *head = NULL;
FileListEntry *mark_entry_one = NULL;
if (fileListFindEntry(args->mark_list, file_entry->name)) { // On marked entry
count = args->mark_list->length;
head = args->mark_list->head;
} else {
count = 1;
mark_entry_one = fileListCopyEntry(file_entry);
head = mark_entry_one;
}
char path[MAX_PATH_LENGTH];
FileListEntry *mark_entry = NULL;
// Get paths info
uint64_t total = 0;
uint32_t folders = 0, files = 0;
mark_entry = head;
int i;
for (i = 0; i < count; i++) {
snprintf(path, MAX_PATH_LENGTH, "%s%s", args->file_list->path, mark_entry->name);
getPathInfo(path, NULL, &folders, &files, NULL);
mark_entry = mark_entry->next;
}
total = folders + files;
// Update thread
thid = createStartUpdateThread(total, 0);
// Remove process
uint64_t value = 0;
mark_entry = head;
for (i = 0; i < count; i++) {
snprintf(path, MAX_PATH_LENGTH, "%s%s", args->file_list->path, mark_entry->name);
FileProcessParam param;
param.value = &value;
param.max = total;
param.SetProgress = SetProgress;
param.cancelHandler = cancelHandler;
int res = removePath(path, ¶m);
if (res <= 0) {
closeWaitDialog();
setDialogStep(DIALOG_STEP_CANCELED);
errorDialog(res);
goto EXIT;
}
mark_entry = mark_entry->next;
}
// Set progress to 100%
sceMsgDialogProgressBarSetValue(SCE_MSG_DIALOG_PROGRESSBAR_TARGET_BAR_DEFAULT, 100);
sceKernelDelayThread(COUNTUP_WAIT);
// Close
sceMsgDialogClose();
setDialogStep(DIALOG_STEP_DELETED);
EXIT:
if (mark_entry_one)
free(mark_entry_one);
if (thid >= 0)
sceKernelWaitThreadEnd(thid, NULL, NULL);
// Unlock power timers
powerUnlock();
return sceKernelExitDeleteThread(0);
}
int copy_thread(SceSize args_size, CopyArguments *args) {
SceUID thid = -1;
// Lock power timers
powerLock();
// Set progress to 0%
sceMsgDialogProgressBarSetValue(SCE_MSG_DIALOG_PROGRESSBAR_TARGET_BAR_DEFAULT, 0);
sceKernelDelayThread(DIALOG_WAIT); // Needed to see the percentage
char path[MAX_PATH_LENGTH], src_path[MAX_PATH_LENGTH], dst_path[MAX_PATH_LENGTH];
FileListEntry *copy_entry = NULL;
// Check if src and dst are in the same partition when moving
int diff_partition = 0;
if (args->copy_mode == COPY_MODE_MOVE) {
char *p = strchr(args->file_list->path, ':');
char *q = strchr(args->copy_list->path, ':');
if (p && q) {
*p = '\0';
*q = '\0';
if (strcasecmp(args->file_list->path, args->copy_list->path) != 0) {
diff_partition = 1;
}
*q = ':';
*p = ':';
}
}
if (args->copy_mode == COPY_MODE_MOVE && !diff_partition) { // Move
// Update thread
thid = createStartUpdateThread(args->copy_list->length, 0);
copy_entry = args->copy_list->head;
int i;
for (i = 0; i < args->copy_list->length; i++) {
snprintf(src_path, MAX_PATH_LENGTH, "%s%s", args->copy_list->path, copy_entry->name);
snprintf(dst_path, MAX_PATH_LENGTH, "%s%s", args->file_list->path, copy_entry->name);
int res = movePath(src_path, dst_path, MOVE_INTEGRATE | MOVE_REPLACE, NULL);
if (res < 0) {
closeWaitDialog();
errorDialog(res);
goto EXIT;
}
SetProgress(i + 1, args->copy_list->length);
if (cancelHandler()) {
closeWaitDialog();
setDialogStep(DIALOG_STEP_CANCELED);
goto EXIT;
}
copy_entry = copy_entry->next;
}
// Set progress to 100%
sceMsgDialogProgressBarSetValue(SCE_MSG_DIALOG_PROGRESSBAR_TARGET_BAR_DEFAULT, 100);
sceKernelDelayThread(COUNTUP_WAIT);
// Close
sceMsgDialogClose();
setDialogStep(DIALOG_STEP_MOVED);
} else { // Copy
// Open archive, because when you copy from an archive, you leave the archive to paste
if (args->copy_mode == COPY_MODE_EXTRACT) {
int res = archiveOpen(args->archive_path);
if (res < 0) {
closeWaitDialog();
errorDialog(res);
goto EXIT_ARCHIVE_OPEN;
}
}
// Get src paths info
uint64_t total = 0, size = 0;
uint32_t folders = 0, files = 0;
copy_entry = args->copy_list->head;
int i;
for (i = 0; i < args->copy_list->length; i++) {
snprintf(src_path, MAX_PATH_LENGTH, "%s%s", args->copy_list->path, copy_entry->name);
if (args->copy_mode == COPY_MODE_EXTRACT) {
getArchivePathInfo(src_path, &size, &folders, &files, NULL);
} else {
getPathInfo(src_path, &size, &folders, &files, NULL);
}
copy_entry = copy_entry->next;
}
total = size + folders * DIRECTORY_SIZE;
if (args->copy_mode == COPY_MODE_MOVE)
total += files + folders;
// Check memory card free space
if (checkMemoryCardFreeSpace(args->file_list->path, size))
goto EXIT;
// Update thread
thid = createStartUpdateThread(total, 1);
// Copy process
uint64_t value = 0;
copy_entry = args->copy_list->head;
for (i = 0; i < args->copy_list->length; i++) {
snprintf(src_path, MAX_PATH_LENGTH, "%s%s", args->copy_list->path, copy_entry->name);
snprintf(dst_path, MAX_PATH_LENGTH, "%s%s", args->file_list->path, copy_entry->name);
FileProcessParam param;
param.value = &value;
param.max = total;
param.SetProgress = SetProgress;
param.cancelHandler = cancelHandler;
if (args->copy_mode == COPY_MODE_EXTRACT) {
int res = extractArchivePath(src_path, dst_path, ¶m);
if (res <= 0) {
closeWaitDialog();
setDialogStep(DIALOG_STEP_CANCELED);
errorDialog(res);
goto EXIT;
}
} else {
int res = copyPath(src_path, dst_path, ¶m);
if (res <= 0) {
closeWaitDialog();
setDialogStep(DIALOG_STEP_CANCELED);
errorDialog(res);
goto EXIT;
}
}
copy_entry = copy_entry->next;
}
// Remove src when moving between partitions
if (args->copy_mode == COPY_MODE_MOVE) {
copy_entry = args->copy_list->head;
for (i = 0; i < args->copy_list->length; i++) {
snprintf(path, MAX_PATH_LENGTH, "%s%s", args->copy_list->path, copy_entry->name);
FileProcessParam param;
param.value = &value;
param.max = total;
param.SetProgress = SetProgress;
param.cancelHandler = cancelHandler;
int res = removePath(path, ¶m);
if (res <= 0) {
closeWaitDialog();
setDialogStep(DIALOG_STEP_CANCELED);
errorDialog(res);
goto EXIT;
}
copy_entry = copy_entry->next;
}
}
// Set progress to 100%
sceMsgDialogProgressBarSetValue(SCE_MSG_DIALOG_PROGRESSBAR_TARGET_BAR_DEFAULT, 100);
sceKernelDelayThread(COUNTUP_WAIT);
// Close
sceMsgDialogClose();
if (args->copy_mode == COPY_MODE_NORMAL)
setDialogStep(DIALOG_STEP_COPIED);
else
setDialogStep(DIALOG_STEP_MOVED);
}
EXIT:
// Close archive
if (args->copy_mode == COPY_MODE_EXTRACT)
archiveClose();
EXIT_ARCHIVE_OPEN:
if (thid >= 0)
sceKernelWaitThreadEnd(thid, NULL, NULL);
// Unlock power timers
powerUnlock();
return sceKernelExitDeleteThread(0);
}
static int mediaPathHandler(const char *path) {
// Avoid export-ception
if (strncasecmp(path, "ux0:music/", 10) == 0 ||
strncasecmp(path, "ux0:video/", 10) == 0 ||
strncasecmp(path, "ux0:picture/", 12) == 0) {
return 1;
}
// The files allowed
int type = getFileType(path);
switch (type) {
case FILE_TYPE_BMP:
case FILE_TYPE_JPEG:
case FILE_TYPE_PNG:
case FILE_TYPE_MP3:
case FILE_TYPE_MP4:
return 0;
}
// Folders are allowed too
SceIoStat stat;
memset(&stat, 0, sizeof(SceIoStat));
if (sceIoGetstat(path, &stat) >= 0 && SCE_S_ISDIR(stat.st_mode)) {
return 0;
}
// Ignore the rest
return 1;
}
static void musicExportProgress(void *data, int progress) {
uint32_t *args = (uint32_t *)data;
uint32_t *value = (uint32_t *)args[1];
uint32_t old_value = *value;
*value = (uint32_t)(((float)progress / 100.0f) * (float)args[0]);
FileProcessParam *param = (FileProcessParam *)args[2];
if (param) {
if (param->value)
(*param->value) += (*value - old_value);
if (param->SetProgress)
param->SetProgress(param->value ? *param->value : 0, param->max);
}
}
static int exportMedia(char *path, uint32_t *songs, uint32_t *videos, uint32_t *pictures, FileProcessParam *process_param) {
static char buf[64 * 1024];
char out[MAX_PATH_LENGTH];
SceIoStat stat;
memset(&stat, 0, sizeof(SceIoStat));
int res = sceIoGetstat(path, &stat);
if (res < 0)
return res;
int type = getFileType(path);
if (type == FILE_TYPE_BMP || type == FILE_TYPE_JPEG || type == FILE_TYPE_PNG) {
PhotoExportParam param;
memset(¶m, 0, sizeof(PhotoExportParam));
param.version = 0x03150021;
res = scePhotoExportFromFile(path, ¶m, buf, process_param ? process_param->cancelHandler : NULL,
NULL, out, MAX_PATH_LENGTH);
if (res < 0)
return (res == 0x80101A0B) ? 0 : res;
if (process_param) {
if (process_param->value)
(*process_param->value) += stat.st_size;
if (process_param->SetProgress)
process_param->SetProgress(process_param->value ? *process_param->value : 0, process_param->max);
}
(*pictures)++;
} else if (type == FILE_TYPE_MP3) {
uint32_t value = 0;
uint32_t args[3];
args[0] = (uint32_t)stat.st_size;
args[1] = (uint32_t)&value;
args[2] = (uint32_t)process_param;
MusicExportParam param;
memset(¶m, 0, sizeof(MusicExportParam));
res = sceMusicExportFromFile(path, ¶m, buf, process_param ? process_param->cancelHandler : NULL,
musicExportProgress, &args, out, MAX_PATH_LENGTH);
if (res < 0)
return (res == 0x8010530A) ? 0 : res;
(*songs)++;
} else if (type == FILE_TYPE_MP4) {
VideoExportInputParam in_param;
memset(&in_param, 0, sizeof(VideoExportInputParam));
strncpy(in_param.path, path, MAX_PATH_LENGTH-1);
in_param.path[MAX_PATH_LENGTH-1] = '\0';
VideoExportOutputParam out_param;
memset(&out_param, 0, sizeof(VideoExportOutputParam));
res = sceVideoExportFromFile(&in_param, 1, buf, process_param ? process_param->cancelHandler : NULL,
NULL, NULL, 0, &out_param);
if (res < 0)
return (res == 0x8010540A) ? 0 : res;
if (process_param) {
if (process_param->value)
(*process_param->value) += stat.st_size;
if (process_param->SetProgress)
process_param->SetProgress(process_param->value ? *process_param->value : 0, process_param->max);
}
(*videos)++;
}
return 1;
}
int exportPath(char *path, uint32_t *songs, uint32_t *videos, uint32_t *pictures, FileProcessParam *param) {
SceUID dfd = sceIoDopen(path);
if (dfd >= 0) {
int res = 0;
do {
SceIoDirent dir;
memset(&dir, 0, sizeof(SceIoDirent));
res = sceIoDread(dfd, &dir);
if (res > 0) {
char *new_path = malloc(strlen(path) + strlen(dir.d_name) + 2);
snprintf(new_path, MAX_PATH_LENGTH, "%s%s%s", path, hasEndSlash(path) ? "" : "/", dir.d_name);
if (SCE_S_ISDIR(dir.d_stat.st_mode)) {
int ret = exportPath(new_path, songs, videos, pictures, param);
if (ret <= 0) {
free(new_path);
sceIoDclose(dfd);
return ret;
}
} else {
if (mediaPathHandler(new_path)) {
free(new_path);
continue;
}
int ret = exportMedia(new_path, songs, videos, pictures, param);
if (ret <= 0) {
free(new_path);
sceIoDclose(dfd);
return ret;
}
}
free(new_path);
}
} while (res > 0);
sceIoDclose(dfd);
} else {
if (mediaPathHandler(path))
return 1;
int ret = exportMedia(path, songs, videos, pictures, param);
if (ret <= 0)
return ret;
}
return 1;
}
int export_thread(SceSize args_size, ExportArguments *args) {
SceUID thid = -1;
// Lock power timers
powerLock();
// Set progress to 0%
sceMsgDialogProgressBarSetValue(SCE_MSG_DIALOG_PROGRESSBAR_TARGET_BAR_DEFAULT, 0);
sceKernelDelayThread(DIALOG_WAIT); // Needed to see the percentage
FileListEntry *file_entry = fileListGetNthEntry(args->file_list, args->index);
int count = 0;
FileListEntry *head = NULL;
FileListEntry *mark_entry_one = NULL;
if (fileListFindEntry(args->mark_list, file_entry->name)) { // On marked entry
count = args->mark_list->length;
head = args->mark_list->head;
} else {
count = 1;
mark_entry_one = fileListCopyEntry(file_entry);
head = mark_entry_one;
}
char path[MAX_PATH_LENGTH];
FileListEntry *mark_entry = NULL;
// Get paths info
uint64_t size = 0;
uint32_t files = 0;
mark_entry = head;
int i;
for (i = 0; i < count; i++) {
snprintf(path, MAX_PATH_LENGTH, "%s%s", args->file_list->path, mark_entry->name);
getPathInfo(path, &size, NULL, &files, mediaPathHandler);
mark_entry = mark_entry->next;
}
// No media files
if (size == 0) {
closeWaitDialog();
infoDialog(language_container[EXPORT_NO_MEDIA]);
goto EXIT;
}
// Check memory card free space
if (checkMemoryCardFreeSpace("ux0:", size))
goto EXIT;
// Update thread
thid = createStartUpdateThread(size, 0);
// Export process
uint64_t value = 0;
uint32_t songs = 0, videos = 0, pictures = 0;
mark_entry = head;
for (i = 0; i < count; i++) {
snprintf(path, MAX_PATH_LENGTH, "%s%s", args->file_list->path, mark_entry->name);
FileProcessParam param;
param.value = &value;
param.max = size;
param.SetProgress = SetProgress;
param.cancelHandler = cancelHandler;
int res = exportPath(path, &songs, &videos, &pictures, ¶m);
if (res <= 0) {
closeWaitDialog();
setDialogStep(DIALOG_STEP_CANCELED);
errorDialog(res);
goto EXIT;
}
mark_entry = mark_entry->next;
}
// Set progress to 100%
sceMsgDialogProgressBarSetValue(SCE_MSG_DIALOG_PROGRESSBAR_TARGET_BAR_DEFAULT, 100);
sceKernelDelayThread(COUNTUP_WAIT);
// Close
closeWaitDialog();
// Info
if (songs > 0 && videos > 0 && pictures > 0) {
infoDialog(language_container[EXPORT_SONGS_VIDEOS_PICTURES_INFO], songs, videos, pictures);
} else if (songs > 0 && videos > 0) {
infoDialog(language_container[EXPORT_SONGS_VIDEOS_INFO], songs, videos);
} else if (songs > 0 && pictures > 0) {
infoDialog(language_container[EXPORT_SONGS_PICTURES_INFO], songs, pictures);
} else if (videos > 0 && pictures > 0) {
infoDialog(language_container[EXPORT_VIDEOS_PICTURES_INFO], videos, pictures);
} else if (songs > 0) {
infoDialog(language_container[EXPORT_SONGS_INFO], songs);
} else if (videos > 0) {
infoDialog(language_container[EXPORT_VIDEOS_INFO], videos);
} else if (pictures > 0) {
infoDialog(language_container[EXPORT_PICTURES_INFO], pictures);
}
EXIT:
if (mark_entry_one)
free(mark_entry_one);
if (thid >= 0)
sceKernelWaitThreadEnd(thid, NULL, NULL);
// Unlock power timers
powerUnlock();
return sceKernelExitDeleteThread(0);
}
int hash_thread(SceSize args_size, HashArguments *args) {
SceUID thid = -1;
// Lock power timers
powerLock();
// Set progress to 0%
sceMsgDialogProgressBarSetValue(SCE_MSG_DIALOG_PROGRESSBAR_TARGET_BAR_DEFAULT, 0);
sceKernelDelayThread(DIALOG_WAIT); // Needed to see the percentage
uint64_t max = (uint64_t)(getFileSize(args->file_path) / TRANSFER_SIZE);
// SHA1 process
uint64_t value = 0;
// Spin off a thread to update the progress dialog
thid = createStartUpdateThread(max, 0);
FileProcessParam param;
param.value = &value;
param.max = max;
param.SetProgress = SetProgress;
param.cancelHandler = cancelHandler;
uint8_t sha1out[20];
int res = getFileSha1(args->file_path, sha1out, ¶m);
if (res <= 0) {
// SHA1 Didn't complete successfully, or was canceled
closeWaitDialog();
setDialogStep(DIALOG_STEP_CANCELED);
errorDialog(res);
goto EXIT;
}
// Since we hit here, we're done. Set progress to 100%
sceMsgDialogProgressBarSetValue(SCE_MSG_DIALOG_PROGRESSBAR_TARGET_BAR_DEFAULT, 100);
sceKernelDelayThread(COUNTUP_WAIT);
// Close
closeWaitDialog();
char sha1msg[42];
memset(sha1msg, 0, sizeof(sha1msg));
// Construct SHA1 sum string
int i;
for (i = 0; i < 20; i++) {
char string[4];
sprintf(string, "%02X", sha1out[i]);
strcat(sha1msg, string);
if (i == 9)
strcat(sha1msg, "\n");
}
sha1msg[41] = '\0';
infoDialog(sha1msg);
EXIT:
// Ensure the update thread ends gracefully
if (thid >= 0)
sceKernelWaitThreadEnd(thid, NULL, NULL);
powerUnlock();
// Kill current thread
return sceKernelExitDeleteThread(0);
}