My favorites | Sign in
Project Home Downloads Source
Checkout   Browse   Changes    
 
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
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
#include "Core.h"
//#BLITZ_APPROVE

#ifdef PLATFORM_POSIX
#include <sys/types.h>
#include <utime.h>
#endif//PLATFORM_POSIX

#ifdef PLATFORM_WIN32
#define DLLFILENAME "Kernel32.dll"
#define DLIMODULE UnicodeWin32
#define DLIHEADER <Core/Kernel32W.dli>
#include <Core/dli_source.h>

#define DLLFILENAME "Mpr.dll"
#define DLIMODULE UnicodeWin32Net
#define DLIHEADER <Core/Mpr32W.dli>
#include <Core/dli_source.h>

#define Ptr Ptr_
#define byte byte_
#define CY win32_CY_

#include <winnls.h>
#include <winnetwk.h>

#include <wincon.h>
#include <shlobj.h>

#undef Ptr
#undef byte
#undef CY

#endif

NAMESPACE_UPP

static int sDirSep(int c) {
return c == '/' || c == '\\' ? c : 0;
}

static bool strecmp0(const char *p, const char *s) {
while(*p) {
if(*p == '*') {
while(*p == '*') p++;
do
if(ToUpper(*p) == ToUpper(*s) && strecmp0(p, s)) return true;
while(*s++);
return false;
}
if(*p == '?') {
if(*s == '\0') return false;
}
else
if(ToUpper(*p) != ToUpper(*s)) return false;
s++;
p++;
}
return *s == '\0';
}

bool PatternMatch(const char *p, const char *s) {
const char *q;
q = strchr(p, '.');
if(q) {
if(q[1] == '\0') {
if(strchr(s, '.')) return false;
String h(p, q);
return strecmp0(h, s);
}
else
if(q[1] == '*' && q[2] == '\0') {
String h(p, q);
return strecmp0(h, s) || strecmp0(p, s);
}
}
return strecmp0(p, s);
}

bool PatternMatchMulti(const char *p, const char *s) {
String pt;
while(*p) {
if(*p == ';' || *p == ',' || *p == ' ') {
if(PatternMatch(pt, s)) return true;
p++;
while(*p == ';' || *p == ',' || *p == ' ') p++;
pt.Clear();
}
else
pt.Cat(*p++);
}
return pt.IsEmpty() ? false : PatternMatch(pt, s);
}

const char *GetFileNamePos(const char *fileName) {
const char *s = fileName;
const char *fname = s;
char c;
while((c = *s++) != '\0')
#ifdef PLATFORM_WIN32
if(c == '\\' || c == ':' || c == '/')
#else
if(c == '/')
#endif
fname = s;
return fname;
}

const char *GetFileExtPos(const char *fileName) {
fileName = GetFileNamePos(fileName);
const char *ext = strrchr(fileName, '.');
return ext ? ext : fileName + strlen(fileName);
}

bool HasFileExt(const char *path) {
return *GetFileExtPos(path);
}

bool HasWildcards(const char *fileName) {
return strchr(fileName, '*') || strchr(fileName, '?');
}

bool IsFullPath(const char *r) {
#ifdef PLATFORM_WIN32
return *r && r[1] && (r[1] == ':' || r[0] == '\\' && r[1] == '\\' || r[0] == '/' && r[1] == '/');
#endif
#ifdef PLATFORM_POSIX
return *r == '/';
#endif
}

String GetFileDirectory(const char *fileName) {
return String(fileName, (int)(GetFileNamePos(fileName) - fileName));
}

String GetFileFolder(const char *fileName) {
const char *s = GetFileNamePos(fileName);
#ifdef PLATFORM_WIN32
if(s - fileName == 3 && fileName[1] == ':')
return String(fileName, 3);
#endif
#ifdef PLATFORM_POSIX
if(s - fileName == 1 && s[0] == '/')
return "/";
#endif
if(s > fileName)
return String(fileName, (int)(s - fileName) - 1);
return Null;
}

String GetFileTitle(const char *fileName) {
fileName = GetFileNamePos(fileName);
const char *ext = GetFileExtPos(fileName);
if(*ext)
return String(fileName, (int)(ext - fileName));
else
return fileName;
}

String GetFileExt(const char *fileName) {
return GetFileExtPos(fileName);
}

String GetFileName(const char *fileName) {
return GetFileNamePos(fileName);
}

String AppendFileName(const String& path, const char *fileName) {
String result = path;
if(result.GetLength() && *result.Last() != DIR_SEP && *fileName != DIR_SEP)
result += DIR_SEP;
result += fileName;
return result;
}

#ifdef PLATFORM_WIN32
bool PathIsEqual(const char *p1, const char *p2)
{
return ToLower(NormalizePath(p1)) == ToLower(NormalizePath(p2));
}
#endif

#ifdef PLATFORM_POSIX
bool PathIsEqual(const char *p1, const char *p2)
{
return NormalizePath(p1) == NormalizePath(p2);
}
#endif

#ifndef PLATFORM_WINCE
String GetCurrentDirectory() {
#if defined(PLATFORM_WIN32)
if(IsWinNT()) {
wchar h[MAX_PATH];
UnicodeWin32().GetCurrentDirectoryW(MAX_PATH, h);
return FromSystemCharsetW(h);
}
else {
char h[MAX_PATH];
::GetCurrentDirectory(MAX_PATH, h);
return FromSystemCharset(h);
}
#elif defined(PLATFORM_POSIX)
char h[1024];
return getcwd(h, 1024) ? FromSystemCharset(h) : String();
#else
#error GetCurrentDirectory not implemented for this platform, comment this line to get Null
return Null;
#endif//PLATFORM
}
#endif

#ifdef PLATFORM_POSIX
bool SetCurrentDirectory(const char *path)
{
return chdir(path) == 0;
}
#endif

#if defined(PLATFORM_WIN32) && !defined(PLATFORM_WINCE)

String GetTempPath()
{
if(IsWinNT()) {
wchar h[MAX_PATH];
UnicodeWin32().GetTempPathW(MAX_PATH, h);
return FromSystemCharsetW(h);
}
else {
char h[MAX_PATH];
::GetTempPath(MAX_PATH, h);
return FromSystemCharset(h);
}
}

#endif

#ifdef PLATFORM_POSIX

String GetTempPath()
{
return FromSystemCharset(P_tmpdir);
}

#endif

#ifndef PLATFORM_WINCE
String GetTempFileName(const char *prefix) {
Uuid id = Uuid::Create();
return AppendFileName(GetTempPath(), String(prefix) + Format(id) + ".tmp");
}
#endif

String FromUnixName(const char* fn, const char* stop = NULL) {
String s;
char c;
while(fn != stop && (c = *fn++))
s += (c == '/' ? '\\' : c);
return s;
}

String ToUnixName(const char* fn, const char* stop = NULL) {
String s;
char c;
while(fn != stop && (c = *fn++))
s += (c == '\\' ? '/' : c);
return s;
}

#ifndef PLATFORM_WINCE
String GetFullPath(const char *file) {
#ifdef PLATFORM_WIN32
if(IsWinNT()) {
String ufn = FromUnixName(file);
wchar h[MAX_PATH];
UnicodeWin32().GetFullPathNameW(ToSystemCharsetW(ufn), MAX_PATH, h, 0);
return FromSystemCharsetW(h);
}
else {
String ufn = FromUnixName(file);
char h[MAX_PATH];
GetFullPathName(ToSystemCharset(ufn), MAX_PATH, h, 0);
return FromSystemCharset(h);
}
#else
return NormalizePath(file);
#endif
}
#endif

String GetFileOnPath(const char* file, const char* paths, bool current, const char *curdir) {
String ufn = NativePath(file);
if(IsFullPath(ufn))
return ufn;
String fn;
#ifdef PLATFORM_WINCE
if(current && curdir && FileExists(fn = NormalizePath(ufn, curdir)))
;
#else
String cd = curdir;
if(!curdir)
cd = GetCurrentDirectory();
if(current && FileExists(fn = NormalizePath(ufn, cd)))
;
#endif
else if(paths)
{
fn = Null;
while(*paths) {
const char* start = paths;
#ifdef PLATFORM_WIN32
while(*paths && *paths != ';')
paths++;
#else
while(*paths && *paths != ';' && *paths != ':')
paths++;
#endif
String dir(start, (int)(paths - start));
if(!dir.IsEmpty()) {
#ifdef PLATFORM_WINCE
dir = NormalizePath(AppendFileName(NativePath(dir), ufn));
#else
dir = NormalizePath(AppendFileName(NativePath(dir), ufn), cd);
#endif
if(FileExists(dir)) {
fn = dir;
break;
}
}
if(*paths)
paths++;
}
}
return fn;
}

String WinPath(const char *p) {
String r;
while(*p) {
r.Cat(*p == '/' ? '\\' : *p);
p++;
}
return r;
}

String UnixPath(const char *p) {
String r;
while(*p) {
r.Cat(*p == '\\' ? '/' : *p);
p++;
}
return r;
}

String AppendExt(const char* fn, const char* ext) {
String result = NativePath(fn);
if(!HasFileExt(fn))
result += ext;
return result;
}

String ForceExt(const char* fn, const char* ext) {
return NativePath(String(fn, GetFileExtPos(fn))) + ext;
}

#ifdef PLATFORM_WIN32

void FindFile::Init()
{
if(IsWinNT()) {
w = new WIN32_FIND_DATAW;
a = NULL;
}
else {
a = new WIN32_FIND_DATA;
w = NULL;
}
}

FindFile::~FindFile()
{
Close();
delete a;
delete w;
}

FindFile::FindFile()
{
Init();
handle = INVALID_HANDLE_VALUE;
}

FindFile::FindFile(const char *name) {
Init();
handle = INVALID_HANDLE_VALUE;
Search(name);
}

bool FindFile::Search(const char *name) {
pattern = GetFileName(name);
path = NormalizePath(GetFileDirectory(name));
Close();
if(w)
handle = UnicodeWin32().FindFirstFileW(ToSystemCharsetW(name), w);
else
handle = FindFirstFile(ToSystemCharset(name), a);
if(handle == INVALID_HANDLE_VALUE)
return false;
if(!PatternMatch(pattern, GetName()))
return Next();
return true;
}

static bool sGetSymLinkPath0(const char *linkpath, String *path)
{
bool ret = false;
HRESULT hres;
IShellLink* psl;
IPersistFile* ppf;
CoInitialize(NULL);
hres = CoCreateInstance(CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, IID_IShellLink,
(PVOID *) &psl);
if(SUCCEEDED(hres)) {
hres = psl->QueryInterface(IID_IPersistFile, (PVOID *) &ppf);
if(SUCCEEDED(hres)) {
hres = ppf->Load(ToSystemCharsetW(linkpath), STGM_READ);
if(SUCCEEDED(hres))
if(path) {
char fileW[_MAX_PATH] = {0};
psl->GetPath(fileW, _MAX_PATH, NULL, 0);
*path = FromSystemCharset(fileW);
}
else
ret = true;
ppf->Release();
}
psl->Release();
}
CoUninitialize();
return ret;
}

bool FindFile::IsSymLink() const
{
String name = GetName();
if(GetFileExt(name) != ".lnk")
return false;
return sGetSymLinkPath0(AppendFileName(path, name), NULL);
}

bool FindFile::IsExecutable() const
{
return !IsDirectory() && ToLower(GetName()).EndsWith(".exe");
}

void FindFile::Close() {
if(handle != INVALID_HANDLE_VALUE) FindClose(handle);
handle = INVALID_HANDLE_VALUE;
}

bool FindFile::Next0() {
if(w) {
if(!UnicodeWin32().FindNextFileW(handle, w)) {
Close();
return false;
}
}
else {
if(!FindNextFile(handle, a)) {
Close();
return false;
}
}
return true;
}

bool FindFile::Next()
{
for(;;) {
if(!Next0())
return false;
if(PatternMatch(pattern, GetName()))
return true;
}
}

dword FindFile::GetAttributes() const
{
return w ? w->dwFileAttributes : a->dwFileAttributes;
}

String FindFile::GetName() const
{
return w ? FromSystemCharsetW(w->cFileName) : FromSystemCharset(a->cFileName);
}

int64 FindFile::GetLength() const
{
if(w)
return (int64)w->nFileSizeLow | ((int64)w->nFileSizeHigh << 32);
else
return (int64)a->nFileSizeLow | ((int64)a->nFileSizeHigh << 32);
}

FileTime FindFile::GetCreationTime() const
{
return w ? w->ftCreationTime : a->ftCreationTime;
}

FileTime FindFile::GetLastAccessTime() const
{
return w ? w->ftLastAccessTime : a->ftLastAccessTime;
}

FileTime FindFile::GetLastWriteTime() const
{
return w ? w->ftLastWriteTime : a->ftLastWriteTime;
}

bool FindFile::IsDirectory() const
{
return w ? w->dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY
: a->dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY;
}


bool FindFile::IsFolder() const {
if(w)
return IsDirectory()
&& !(w->cFileName[0] == '.' && w->cFileName[1] == 0)
&& !(w->cFileName[0] == '.' && w->cFileName[1] == '.' && w->cFileName[2] == 0);
else
return IsDirectory()
&& !(a->cFileName[0] == '.' && a->cFileName[1] == 0)
&& !(a->cFileName[0] == '.' && a->cFileName[1] == '.' && a->cFileName[2] == 0);
}

bool FindFile::IsArchive() const
{
return w ? w->dwFileAttributes & FILE_ATTRIBUTE_ARCHIVE
: a->dwFileAttributes & FILE_ATTRIBUTE_ARCHIVE;
}

bool FindFile::IsCompressed() const
{
return w ? w->dwFileAttributes & FILE_ATTRIBUTE_COMPRESSED
: a->dwFileAttributes & FILE_ATTRIBUTE_COMPRESSED;
}

bool FindFile::IsHidden() const
{
return w ? w->dwFileAttributes & FILE_ATTRIBUTE_HIDDEN
: a->dwFileAttributes & FILE_ATTRIBUTE_HIDDEN;
}

bool FindFile::IsReadOnly() const
{
return w ? w->dwFileAttributes & FILE_ATTRIBUTE_READONLY
: a->dwFileAttributes & FILE_ATTRIBUTE_READONLY;
}

bool FindFile::IsSystem() const
{
return w ? w->dwFileAttributes & FILE_ATTRIBUTE_SYSTEM
: a->dwFileAttributes & FILE_ATTRIBUTE_SYSTEM;
}

bool FindFile::IsTemporary() const
{
return w ? w->dwFileAttributes & FILE_ATTRIBUTE_TEMPORARY
: a->dwFileAttributes & FILE_ATTRIBUTE_TEMPORARY;
}

String NormalizePath(const char *path, const char *currdir)
{
String join_path;
if(!IsFullPath(path))
path = join_path = AppendFileName(currdir, path);
String out;
if(*path && path[1] == ':') {
out << path[0] << ":\\";
path += 3;
}
else
if(path[0] == '\\' && path[1] == '\\') {
out = "\\\\";
path += 2;
}
else
if(sDirSep(*path)) {
if(*currdir)
out << *currdir << ':';
out.Cat(DIR_SEP);
path++;
}
int outstart = out.GetLength();
while(*path) {
if(sDirSep(*path)) {
while(sDirSep(*path))
path++;
if(*path == '\0')
break;
if(out.IsEmpty() || *out.Last() != DIR_SEP)
out.Cat(DIR_SEP);
}
const char *b = path;
while(*path && !sDirSep(*path))
path++;
if(path - b == 1 && *b == '.')
; //no-op
else if(path - b == 2 && *b == '.' && b[1] == '.') {
const char *ob = ~out + outstart, *oe = out.End();
if(oe - 1 > ob && oe[-1] == DIR_SEP)
oe--;
while(oe > ob && oe[-1] != DIR_SEP)
oe--;
out.Trim((int)(oe - out.Begin()));
}
else
out.Cat(b, (int)(path - b));
}
return out;
}

#endif

#ifdef PLATFORM_POSIX

void FindFile::Close() {
if(dir) {
closedir(dir);
dir = NULL;
}
}

bool FindFile::IsFolder() const {
return IsDirectory()
&& !(name[0] == '.' && name[1] == '\0')
&& !(name[0] == '.' && name[1] == '.' && name[2] == '\0');
}

struct stat& FindFile::Stat() const {
if(!statis) {
statis = true;
if(file)
stat(ToSystemCharset(AppendFileName(path, name)), &statf);
}
return statf;
}

bool FindFile::IsSymLink() const
{
if(file) {
struct stat stf;
lstat(AppendFileName(path, name), &stf);
return S_ISLNK(stf.st_mode);
}
return false;
}

bool FindFile::IsExecutable() const
{
return !IsDirectory() && ((S_IXUSR|S_IXGRP|S_IXOTH) & GetMode());
}

bool FindFile::Next() {
file = false;
if(!dir) return false;
statis = false;
for(;;) {
struct dirent *e = readdir(dir);
if(!e) {
name.Clear();
file = false;
Close();
return false;
}
name = FromSystemCharset(e->d_name);
if(PatternMatch(pattern, name)) {
file = true;
return true;
}
}
}

bool FindFile::Search(const char *fn) {
Close();
path = NormalizePath(GetFileDirectory(fn));
statis = false;
file = false;
if(HasWildcards(fn)) {
pattern = GetFileName(fn);
dir = opendir(ToSystemCharset(path));
return Next();
}
else {
name = GetFileName(fn);
if(stat(ToSystemCharset(fn), &statf)) return false;
statis = true;
file = true;
return true;
}
}

FindFile::FindFile(const char *fn) {
dir = NULL;
Search(fn);
}

String NormalizePath(const char *path, const char *currdir) {
Vector<String> si = Split(path, CharFilterTextTest(sDirSep));
Vector<String> p;
int i = 0;
String out;
if(path[0] == '~') {
out = GetHomeDirectory();
i++;
}
else
if(sDirSep(path[0]))
out = (sDirSep(path[1]) ? "//" : "/");
else {
out = (sDirSep(currdir[0]) && sDirSep(currdir[1]) ? "//" : "/");
p = Split(currdir, CharFilterTextTest(sDirSep));
}
for(; i < si.GetCount(); i++) {
String s = si[i];
if(s != "." && !s.IsEmpty())
if(s[0] == '.' && s[1] == '.') {
if(!p.IsEmpty()) p.Drop();
}
else
p.Add(s);
}
out.Cat(Join(p, DIR_SEPS));
return out;
}

#endif//PLATFORM_POSIX

String FindFile::GetPath() const
{
return AppendFileName(path, GetName());
}

bool FileExists(const char *name) {
FindFile ff(name);
return ff && ff.IsFile();
}

int64 GetFileLength(const char *name) {
FindFile ff(name);
return ff ? ff.GetLength() : -1;
}

bool DirectoryExists(const char *name) {
#if defined(PLATFORM_WIN32)
if(name[0] && name[1] == ':' && name[2] == '\\' && name[3] == 0 &&
GetDriveType(name) != DRIVE_NO_ROOT_DIR)
return true;
#endif
FindFile ff(name);
return ff && ff.IsDirectory();
}

String NormalizePath(const char *path) {
#ifdef PLATFORM_WINCE
return NormalizePath(path, "");
#else
return NormalizePath(path, GetCurrentDirectory());
#endif
}

bool FileCopy(const char *oldname, const char *newname)
{
#if defined(PLATFORM_WIN32)
if(IsWinNT())
return UnicodeWin32().CopyFileW(ToSystemCharsetW(oldname), ToSystemCharsetW(newname), false);
else
return CopyFile(ToSystemCharset(oldname), ToSystemCharset(newname), false);
#elif defined(PLATFORM_POSIX)
FileIn fi(oldname);
if(!fi.IsOpen())
return false;
FileOut fo(newname);
if(!fo.IsOpen())
return false;
CopyStream(fo, fi, fi.GetLeft());
fi.Close();
fo.Close();
if(fo.IsError())
{
unlink(newname);
return false;
}
FileSetTime(newname, FileGetTime(oldname));
return true;
#else
#error
#endif//PLATFORM
}

bool FileMove(const char *oldname, const char *newname)
{
#if defined(PLATFORM_WIN32)
if(IsWinNT())
return !!UnicodeWin32().MoveFileW(ToSystemCharsetW(oldname), ToSystemCharsetW(newname));
else
return !!MoveFile(ToSystemCharset(oldname), ToSystemCharset(newname));
#elif defined(PLATFORM_POSIX)
return !rename(ToSystemCharset(oldname), ToSystemCharset(newname));
#else
#error
#endif//PLATFORM
}

bool FileDelete(const char *filename)
{
#if defined(PLATFORM_WIN32)
if(IsWinNT())
return !!UnicodeWin32().DeleteFileW(ToSystemCharsetW(filename));
else
return !!DeleteFile(ToSystemCharset(filename));
#elif defined(PLATFORM_POSIX)
return !unlink(ToSystemCharset(filename));
#else
#error
#endif//PLATFORM
}

bool DirectoryDelete(const char *dirname)
{
#if defined(PLATFORM_WIN32)
if(IsWinNT())
return !!UnicodeWin32().RemoveDirectoryW(ToSystemCharsetW(dirname));
else
return !!RemoveDirectory(ToSystemCharset(dirname));
#elif defined(PLATFORM_POSIX)
return !rmdir(ToSystemCharset(dirname));
#else
#error
#endif//PLATFORM
}

#ifdef PLATFORM_WIN32
int Compare_FileTime(const FileTime& fa, const FileTime& fb)
{
return CompareFileTime(&fa, &fb);
}
#endif

Time FileGetTime(const char *filename)
{
#if defined(PLATFORM_WIN32)
HANDLE handle;
if(IsWinNT())
handle = UnicodeWin32().CreateFileW(ToSystemCharsetW(filename), GENERIC_READ,
FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
else
handle = CreateFile(ToSystemCharset(filename), GENERIC_READ,
FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
if(handle == INVALID_HANDLE_VALUE)
return Null;
FileTime ft;
bool res = GetFileTime(handle, 0, 0, &ft);
CloseHandle(handle);
return res ? Time(ft) : Time(Null);
#elif defined(PLATFORM_POSIX)
struct stat st;
if(stat(ToSystemCharset(filename), &st))
return Null;
return Time(st.st_mtime);
#else
#error
#endif//PLATFORM
}

FileTime GetFileTime(const char *filename)
{
#if defined(PLATFORM_WIN32)
HANDLE handle;
if(IsWinNT())
handle = UnicodeWin32().CreateFileW(ToSystemCharsetW(filename), GENERIC_READ,
FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
else
handle = CreateFile(ToSystemCharset(filename), GENERIC_READ,
FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
FileTime ft0;
memset(&ft0, 0, sizeof(ft0));
if(handle == INVALID_HANDLE_VALUE)
return ft0;
FileTime ft;
bool res = GetFileTime(handle, 0, 0, &ft);
CloseHandle(handle);
return res ? ft : ft0;
#elif defined(PLATFORM_POSIX)
struct stat st;
if(stat(ToSystemCharset(filename), &st))
return 0;
return st.st_mtime;
#else
#error
#endif//PLATFORM
}

bool SetFileTime(const char *filename, FileTime ft)
{
#if defined(PLATFORM_WIN32)
HANDLE handle;
if(IsWinNT())
handle = UnicodeWin32().CreateFileW(ToSystemCharsetW(filename), GENERIC_READ | GENERIC_WRITE,
FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
OPEN_EXISTING, 0, NULL);
else
handle = CreateFile(ToSystemCharset(filename), GENERIC_READ | GENERIC_WRITE,
FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
OPEN_EXISTING, 0, NULL);
if(handle == INVALID_HANDLE_VALUE)
return false;
bool res = SetFileTime(handle, 0, 0, &ft);
CloseHandle(handle);
return res;
#elif defined(PLATFORM_POSIX)
struct utimbuf ub;
ub.actime = ub.modtime = ft;
return !utime(ToSystemCharset(filename), &ub);
#else
#error
#endif//PLATFORM
}

bool FileSetTime(const char *filename, Time time)
{
return SetFileTime(filename, TimeToFileTime(time));
}

FileTime TimeToFileTime(Time time)
{
#ifdef PLATFORM_WIN32
SYSTEMTIME tm;
Zero(tm);
tm.wYear = time.year;
tm.wMonth = time.month;
tm.wDay = time.day;
tm.wHour = time.hour;
tm.wMinute = time.minute;
tm.wSecond = time.second;
FileTime ftl, ftg;
SystemTimeToFileTime(&tm, &ftl);
LocalFileTimeToFileTime(&ftl, &ftg);
return ftg;
#endif
#ifdef PLATFORM_POSIX
struct tm t;
t.tm_sec = time.second;
t.tm_min = time.minute;
t.tm_hour = time.hour;
t.tm_mday = time.day;
t.tm_mon = time.month - 1;
t.tm_year = time.year - 1900;
return mktime(&t);
#endif
}

#ifdef PLATFORM_POSIX
bool DirectoryCreate(const char *path, int mode)
{
return ::mkdir(ToSystemCharset(path), mode) == 0;
}

bool RealizePath(const String& file, int mode)
{
return RealizeDirectory(GetFileFolder(file), mode);
}
#else
bool DirectoryCreate(const char *path)
{
if(IsWinNT())
return !!UnicodeWin32().CreateDirectoryW(ToSystemCharsetW(path), 0);
else
return !!CreateDirectory(ToSystemCharset(path), 0);
}

bool RealizePath(const String& file)
{
return RealizeDirectory(GetFileFolder(file));
}
#endif

#ifdef PLATFORM_WIN32
#define DIR_MIN 3 //!! wrong! what about \a\b\c ?
#endif

#ifdef PLATFORM_POSIX
#define DIR_MIN 1
#endif

#ifdef PLATFORM_POSIX
bool RealizeDirectory(const String& d, int mode)
#else
bool RealizeDirectory(const String& d)
#endif
{
String dir = NormalizePath(d);
Vector<String> p;
while(dir.GetLength() > DIR_MIN) {
p.Add(dir);
dir = GetFileFolder(dir);
}
for(int i = p.GetCount() - 1; i >= 0; i--)
if(!DirectoryExists(p[i]))
#ifdef POSIX
if(!DirectoryCreate(p[i], mode))
#else
if(!DirectoryCreate(p[i]))
#endif
return false;
return true;
}

bool DeleteFolderDeep(const char *dir)
{
{
FindFile ff(AppendFileName(dir, "*.*"));
while(ff) {
String name = ff.GetName();
String p = AppendFileName(dir, name);
if(ff.IsFile())
FileDelete(p);
else
if(ff.IsFolder())
DeleteFolderDeep(p);
ff.Next();
}
}
return DirectoryDelete(dir);
}

String GetSymLinkPath(const char *linkpath)
{
#ifdef PLATFORM_WIN32
String path;
sGetSymLinkPath0(linkpath, &path);
return path;
#else
char buff[_MAX_PATH + 1];
int len = readlink(linkpath, buff, _MAX_PATH);
if(len > 0 && len < _MAX_PATH)
return String(buff, len);
return Null;
#endif
}

FileSystemInfo::FileInfo::FileInfo()
: length(Null), read_only(false), is_directory(false)
, is_folder(false), is_file(false), is_symlink(false), is_archive(false)
, is_compressed(false), is_hidden(false), is_read_only(false), is_system(false)
, is_temporary(false), root_style(ROOT_NO_ROOT_DIR)
{}

GLOBAL_VAR(FileSystemInfo, StdFileSystemInfo)

int FileSystemInfo::GetStyle() const
{
#ifdef PLATFORM_WIN32
return STYLE_WIN32;
#endif
#ifdef PLATFORM_POSIX
return STYLE_POSIX;
#endif
}

Array<FileSystemInfo::FileInfo> FileSystemInfo::Find(String mask, int max_count, bool unmounted) const
{
Array<FileInfo> fi;
if(IsNull(mask))
{ // root
#ifdef PLATFORM_WINCE
FileInfo& f = fi.Add();
f.filename = "\\";
f.root_style = ROOT_FIXED;
#elif defined(PLATFORM_WIN32)
char drive[4] = "?:\\";
for(int c = 'A'; c <= 'Z'; c++) {
*drive = c;
int n = GetDriveType(drive);
if(n == DRIVE_NO_ROOT_DIR)
continue;
FileInfo& f = fi.Add();
f.filename = drive;
char name[256], system[256];
DWORD d;
if(c != 'A' && c != 'B' && n != DRIVE_REMOTE && n != DRIVE_UNKNOWN) {
bool b = GetVolumeInformation(drive, name, 256, &d, &d, &d, system, 256);
if(b) {
if(*name) f.root_desc << " " << FromSystemCharset(name);
}
else if(n == DRIVE_REMOVABLE || n == DRIVE_CDROM) {
if(unmounted) {
f.root_desc = t_("Empty drive");
} else {
fi.Drop();
continue;
}
}
}
switch(n)
{
default:
case DRIVE_UNKNOWN: f.root_style = ROOT_UNKNOWN; break;
case DRIVE_NO_ROOT_DIR: f.root_style = ROOT_NO_ROOT_DIR; break;
case DRIVE_REMOVABLE: f.root_style = ROOT_REMOVABLE; break;
case DRIVE_FIXED: f.root_style = ROOT_FIXED; break;
case DRIVE_REMOTE: f.root_style = ROOT_REMOTE; break;
case DRIVE_CDROM: f.root_style = ROOT_CDROM; break;
case DRIVE_RAMDISK: f.root_style = ROOT_RAMDISK; break;
}
}

#elif defined(PLATFORM_POSIX)
FileInfo& f = fi.Add();
f.filename = "/";
f.root_style = ROOT_FIXED;
#endif
}
else
{
FindFile ff;
if(ff.Search(mask))
do
{
FileInfo& f = fi.Add();
f.filename = ff.GetName();
#ifndef PLATFORM_POSIX
f.is_archive = ff.IsArchive();
f.is_compressed = ff.IsCompressed();
f.is_hidden = ff.IsHidden();
f.is_system = ff.IsSystem();
f.is_temporary = ff.IsTemporary();
#endif
f.is_read_only = ff.IsReadOnly();
f.length = ff.GetLength();
#ifdef PLATFORM_POSIX
f.creation_time = ff.GetLastChangeTime();
f.unix_mode = ff.GetMode();
#endif
f.last_access_time = ff.GetLastAccessTime();
f.last_write_time = ff.GetLastWriteTime();
#ifdef PLATFORM_WIN32
f.creation_time = ff.GetCreationTime();
f.unix_mode = 0;
#endif
f.read_only = ff.IsReadOnly();
f.is_directory = ff.IsDirectory();
f.is_folder = ff.IsFolder();
f.is_file = ff.IsFile();
#ifdef PLATFORM_POSIX
f.is_symlink = ff.IsSymLink();
#endif
}
while(ff.Next() && fi.GetCount() < max_count);
}
return fi;
}

bool FileSystemInfo::CreateFolder(String path, String& error) const
{
if(UPP::DirectoryCreate(path))
return true;
error = GetErrorMessage(GetLastError());
return false;
}

bool FileSystemInfo::FolderExists(String path) const
{
if(IsNull(path))
return true;
if(path.Find('*') >= 0 || path.Find('?') >= 0)
return false;
Array<FileInfo> fi = Find(path, 1);
return !fi.IsEmpty() && fi[0].is_directory;
}

END_UPP_NAMESPACE

Change log

r4457 by cxl on Jan 21, 2012   Diff
*uppsrc: Fixed many GCC warnings
Go to: 
Project members, sign in to write a code review

Older revisions

r4451 by cxl on Jan 20, 2012   Diff
Core: FindFile::GetPath - POSIX
support
r4449 by cxl on Jan 20, 2012   Diff
Core: FindFile::GetPath
r4325 by unodgs on Dec 18, 2011   Diff
Core: Added unmounted parameter to
FileSystemInfo::Find to allow
including registered drives with no
content (like cdrom)
All revisions of this file

File info

Size: 25634 bytes, 1184 lines

File properties

svn:eol-style
native
Powered by Google Project Hosting