-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFileSystemUtils.cpp
More file actions
1321 lines (1105 loc) · 34.2 KB
/
FileSystemUtils.cpp
File metadata and controls
1321 lines (1105 loc) · 34.2 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
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
#include "Base.h"
#include "FileSystemUtils.h"
#include "Event.h"
#include "TimeUtils.h"
#include <queue>
#ifdef _WIN32
#include <versionhelpers.h>
#else
#ifdef __APPLE__
#include <sys/attr.h>
#endif
#include <sys/time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <fcntl.h>
#endif
NS_BEGIN
#ifdef _WIN32
static constexpr auto ATTRIB_MASK = FILE_ATTRIBUTE_READONLY | FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_ARCHIVE | FILE_ATTRIBUTE_NORMAL | FILE_ATTRIBUTE_TEMPORARY | FILE_ATTRIBUTE_OFFLINE | FILE_ATTRIBUTE_NOT_CONTENT_INDEXED;
#else
static constexpr auto COPY_BUFFER_SIZE = 8192;
#endif
#ifdef _WIN32
static FINDEX_INFO_LEVELS g_fexil = FindExInfoStandard;
//#################################################################################################
void FileSystemInit(void)
{
if(IsWindowsVersionOrGreater(6, 1, 0))
g_fexil = FindExInfoBasic;
}
//#################################################################################################
FINDEX_INFO_LEVELS GetFindInfoLevel(void) noexcept
{
return g_fexil;
}
#endif
//#################################################################################################
NCHAR GetDelimiter(void) noexcept
{
#ifdef _WIN32
return L'\\';
#else
return '/';
#endif
}
//#################################################################################################
bool IsLink(PCNSTR szPath)
{
bool bLink = false;
#ifdef _WIN32
WIN32_FIND_DATAW w32fd;
HANDLE hFind = FindFirstFileExW(szPath, g_fexil, &w32fd, FindExSearchNameMatch, nullptr, 0);
if(hFind != INVALID_HANDLE_VALUE)
{
if(HAS_FLAG(w32fd.dwFileAttributes, FILE_ATTRIBUTE_REPARSE_POINT) &&
((HAS_FLAG(w32fd.dwReserved0, IO_REPARSE_TAG_MOUNT_POINT)) || // Junction
(HAS_FLAG(w32fd.dwReserved0, IO_REPARSE_TAG_SYMLINK)))) // Symbolic link
{
bLink = true;
}
FindClose(hFind);
}
#else
struct stat s;
bLink = (lstat(szPath, &s) == 0 && S_ISLNK(s.st_mode));
#ifdef __APPLE__
if(!bLink)
{
size_t nEASize = sizeof(uint32_t) + sizeof(attrreference) + PATH_MAX;
auto pBuffer = std::make_unique<BYTE[]>(nEASize);
attrlist al = {0};
al.bitmapcount = ATTR_BIT_MAP_COUNT;
al.forkattr = ATTR_CMNEXT_NOFIRMLINKPATH;
if(getattrlist(szPath, &al, pBuffer.get(),nEASize, FSOPT_ATTR_CMN_EXTENDED) == 0)
{
int32_t nOffset;
std::memcpy(&nOffset, pBuffer.get() + sizeof(uint32_t), sizeof(nOffset));
CStr strOrig(szPath);
CStr strTmp((PCSTR)(pBuffer.get() + sizeof(uint32_t) + nOffset));
bLink = (strTmp.Compare(strOrig) != 0);
}
}
#endif
#endif
return bLink;
}
//#################################################################################################
bool DirExists(PCNSTR szPath)
{
bool bExists = false;
#ifdef _WIN32
WIN32_FILE_ATTRIBUTE_DATA w32fad;
if(GetFileAttributesExW(szPath, GetFileExInfoStandard, &w32fad) && HAS_FLAG(w32fad.dwFileAttributes, FILE_ATTRIBUTE_DIRECTORY))
bExists = true;
#else
struct stat s;
bExists = (stat(szPath, &s) == 0 && S_ISDIR(s.st_mode));
#endif
return bExists;
}
//#################################################################################################
ERRCODE DirCreate(PCNSTR szPath)
{
ERRCODE nErrorCode = FW_NO_ERROR;
#ifdef _WIN32
if(!CreateDirectoryW(szPath, nullptr))
nErrorCode = ConvertFromNativeErrorCode(GetLastError());
#else
if(mkdir(szPath, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH) == -1)
nErrorCode = ConvertFromNativeErrorCode(errno);
#endif
return nErrorCode;
}
//#################################################################################################
ERRCODE DirDelete(PCNSTR szPath)
{
ERRCODE nErrorCode = FW_NO_ERROR;
#ifdef _WIN32
if(!RemoveDirectoryW(szPath))
nErrorCode = ConvertFromNativeErrorCode(GetLastError());
#else
if(rmdir(szPath) == -1)
nErrorCode = ConvertFromNativeErrorCode(errno);
#endif
return nErrorCode;
}
//#################################################################################################
bool DirCreateTree(const CFilePath &path)
{
if(path.IsEmpty())
return false;
CFilePath pathTemp;
size_t nCurrentSegment = 1;
size_t nTotalSegments = path.GetSegmentCount();
if(path.IsUNC())
nCurrentSegment = MIN(2, nTotalSegments);
while(nCurrentSegment <= nTotalSegments)
{
pathTemp = path.GetLeft(nCurrentSegment);
if(!DirExists(pathTemp.Get()))
{
if(DirCreate(pathTemp.Get()) != FW_NO_ERROR)
return false;
}
++nCurrentSegment;
}
return true;
}
//#################################################################################################
bool DirDeleteTree(const CFilePath &path)
{
bool bResult = true;
// Enumerate all child files and directories
std::vector<CFilePath> vecFiles;
std::vector<CFilePath> vecDirs;
DirEnum(path, &vecFiles, &vecDirs, true);
// Remove the child files
for(const auto &itr : vecFiles)
{
if(FileDelete(itr.Get()) != FW_NO_ERROR)
bResult = false;
}
// Remove the child directories
for(auto itr = vecDirs.rbegin(); itr != vecDirs.rend(); ++itr)
{
if(DirDelete(itr->Get()) != FW_NO_ERROR)
bResult = false;
}
// Remove the parent directory
if(DirDelete(path.Get()) != FW_NO_ERROR)
bResult = false;
return bResult;
}
//#################################################################################################
uint64_t DirGetSize(const CFilePath &path, CEvent *pAbort)
{
uint64_t nSize = 0;
#ifdef _WIN32
CFilePathW pathBase;
CFilePathW pathSearch;
CFilePathW pathFound;
std::queue<CFilePathW> qPaths;
WIN32_FIND_DATAW w32fd;
if(!path.IsEmpty())
qPaths.push(path);
while(!qPaths.empty() && (pAbort == nullptr || pAbort->Wait(0) == 0))
{
pathBase = qPaths.front();
qPaths.pop();
pathSearch = pathBase + CFilePathSegmentW(L'*');
HANDLE hFind = FindFirstFileExW(pathSearch.Get(), g_fexil, &w32fd, FindExSearchNameMatch, nullptr, 0);
if(hFind != INVALID_HANDLE_VALUE)
{
do{
pathFound = pathBase + CFilePathSegmentW(w32fd.cFileName);
if(HAS_FLAG(w32fd.dwFileAttributes, FILE_ATTRIBUTE_DIRECTORY))
{ // Do not traverse into junctions or symbolic links
// Do not add "dot" directories to the queue
// Do not traverse into excluded folders
if((!HAS_FLAG(w32fd.dwFileAttributes, FILE_ATTRIBUTE_REPARSE_POINT) || (!HAS_FLAG(w32fd.dwReserved0, IO_REPARSE_TAG_MOUNT_POINT) && !HAS_FLAG(w32fd.dwReserved0, IO_REPARSE_TAG_SYMLINK))) &&
(w32fd.cFileName[0] != L'.' || (w32fd.cFileName[1] != g_chNullW && (w32fd.cFileName[1] != L'.' || w32fd.cFileName[2] != g_chNullW))))
{
qPaths.push(std::move(pathFound));
}
}
else
nSize += MAKEUINT64(w32fd.nFileSizeHigh, w32fd.nFileSizeLow);
}while(FindNextFileW(hFind, &w32fd) && (pAbort == nullptr || pAbort->Wait(0) == 0));
FindClose(hFind);
}
}
#else
CFilePath8 pathBase;
CFilePath8 pathFound;
std::queue<CFilePath8> qPaths;
struct stat s;
dev_t nStartDev = 0;
bool bFirst = true;
if(!path.IsEmpty())
qPaths.push(path);
while(!qPaths.empty() && (pAbort == nullptr || pAbort->Wait(0) == 0))
{
pathBase = qPaths.front();
qPaths.pop();
DIR *pDir = opendir(pathBase.Get());
if(pDir)
{
struct dirent *pEntry = readdir(pDir);
while(pEntry && (pAbort == nullptr || pAbort->Wait(0) == 0))
{
pathFound = pathBase + CFilePathSegment8(pEntry->d_name);
if(lstat(pathFound.Get(), &s) == 0 && !S_ISLNK(s.st_mode))
{ // Do not process symbolic links
// Do not traverse into folders with a different device Id
// Do not add "dot" directories to the queue
// Do not traverse into excluded folders
// Note: It does traverse into firmlinks
if(bFirst)
{ // Record the starting device Id
nStartDev = s.st_dev;
bFirst = false;
}
if(nStartDev == s.st_dev)
{
if(S_ISDIR(s.st_mode))
{
if(pEntry->d_name[0] != '.' || (pEntry->d_name[1] != '\0' && (pEntry->d_name[1] != '.' || pEntry->d_name[2] != '\0')))
qPaths.push(std::move(pathFound));
}
else if(S_ISREG(s.st_mode))
nSize += (uint64_t)s.st_size;
}
}
pEntry = readdir(pDir);
}
closedir(pDir);
}
}
#endif
return nSize;
}
//#################################################################################################
void DirEnum(const CFilePath &path, std::vector<CFilePath> *pvecFiles, std::vector<CFilePath> *pvecDirs, const bool bRecursive, CEvent *pAbort)
{
if(pvecFiles)
pvecFiles->clear();
if(pvecDirs)
pvecDirs->clear();
#ifdef _WIN32
CFilePathW pathBase;
CFilePathW pathSearch;
CFilePathW pathFound;
std::queue<CFilePathW> qPaths;
WIN32_FIND_DATAW w32fd;
if(!path.IsEmpty())
qPaths.push(path);
while(!qPaths.empty() && (pAbort == nullptr || pAbort->Wait(0) == 0))
{
pathBase = qPaths.front();
qPaths.pop();
pathSearch = pathBase + CFilePathSegmentW(L'*');
HANDLE hFind = FindFirstFileExW(pathSearch.Get(), g_fexil, &w32fd, FindExSearchNameMatch, nullptr, 0);
if(hFind != INVALID_HANDLE_VALUE)
{
do{
pathFound = pathBase + CFilePathSegmentW(w32fd.cFileName);
if(HAS_FLAG(w32fd.dwFileAttributes, FILE_ATTRIBUTE_DIRECTORY))
{ // Do not traverse into junctions or symbolic links
// Do not add "dot" directories to the queue
// Do not traverse into excluded folders
if((!HAS_FLAG(w32fd.dwFileAttributes, FILE_ATTRIBUTE_REPARSE_POINT) || (!HAS_FLAG(w32fd.dwReserved0, IO_REPARSE_TAG_MOUNT_POINT) && !HAS_FLAG(w32fd.dwReserved0, IO_REPARSE_TAG_SYMLINK))) &&
(w32fd.cFileName[0] != L'.' || (w32fd.cFileName[1] != g_chNullW && (w32fd.cFileName[1] != L'.' || w32fd.cFileName[2] != g_chNullW))))
{
if(pvecDirs)
pvecDirs->push_back(pathFound);
if(bRecursive)
qPaths.push(std::move(pathFound));
}
}
else if(pvecFiles)
pvecFiles->push_back(std::move(pathFound));
}while(FindNextFileW(hFind, &w32fd) && (pAbort == nullptr || pAbort->Wait(0) == 0));
FindClose(hFind);
}
}
#else
CFilePath8 pathBase;
CFilePath8 pathFound;
std::queue<CFilePath8> qPaths;
struct stat s;
dev_t nStartDev = 0;
bool bFirst = true;
if(!path.IsEmpty())
qPaths.push(path);
while(!qPaths.empty())
{
pathBase = qPaths.front();
qPaths.pop();
DIR *pDir = opendir(pathBase.Get());
if(pDir)
{
struct dirent *pEntry = readdir(pDir);
while(pEntry)
{
pathFound = pathBase + CFilePathSegment8(pEntry->d_name);
if(lstat(pathFound.Get(), &s) == 0 && !S_ISLNK(s.st_mode))
{ // Do not process symbolic links
// Do not traverse into folders with a different device Id
// Do not add "dot" directories to the queue
// Do not traverse into excluded folders
// Note: It does traverse into firmlinks
if(bFirst)
{ // Record the starting device Id
nStartDev = s.st_dev;
bFirst = false;
}
if(nStartDev == s.st_dev)
{
if(S_ISDIR(s.st_mode))
{
if(pEntry->d_name[0] != '.' || (pEntry->d_name[1] != '\0' && (pEntry->d_name[1] != '.' || pEntry->d_name[2] != '\0')))
{
if(pvecDirs)
pvecDirs->push_back(pathFound);
if(bRecursive)
qPaths.push(std::move(pathFound));
}
}
else if(S_ISREG(s.st_mode) && pvecFiles)
pvecFiles->push_back(std::move(pathFound));
}
}
pEntry = readdir(pDir);
}
closedir(pDir);
}
}
#endif
}
//#################################################################################################
bool FileExists(PCNSTR szPath)
{
bool bExists = false;
#ifdef _WIN32
WIN32_FIND_DATAW w32fd;
HANDLE hFind = FindFirstFileExW(szPath, g_fexil, &w32fd, FindExSearchNameMatch, nullptr, 0);
if(hFind != INVALID_HANDLE_VALUE)
{
FindClose(hFind);
if(!HAS_FLAG(w32fd.dwFileAttributes, FILE_ATTRIBUTE_DIRECTORY))
bExists = true;
}
#else
struct stat s;
bExists = (stat(szPath, &s) == 0 && S_ISREG(s.st_mode));
#endif
return bExists;
}
//#################################################################################################
ERRCODE FileCreate(PCNSTR szPath, const EFileMode eMode, NHANDLE &hFile)
{
Assert(hFile == INVALID_NHANDLE);
ERRCODE nErrorCode = FW_NO_ERROR;
hFile = INVALID_NHANDLE;
if(szPath == nullptr || *szPath == _N('\0'))
return FW_ERROR_INVALID_PARAMETER;
#ifdef _WIN32
DWORD dwAccess = 0;
DWORD dwShare = FILE_SHARE_READ;
DWORD dwDisposition = 0;
switch(eMode)
{
case EFM_ExistingReadOnly:
dwAccess = GENERIC_READ;
ADD_FLAG(dwShare, FILE_SHARE_WRITE | FILE_SHARE_DELETE);
dwDisposition = OPEN_EXISTING;
break;
case EFM_ExistingReadWrite:
dwAccess = GENERIC_READ | GENERIC_WRITE;
dwDisposition = OPEN_EXISTING;
break;
case EFM_AlwaysReadWrite:
dwAccess = GENERIC_READ | GENERIC_WRITE;
dwDisposition = OPEN_ALWAYS;
break;
case EFM_CreateWriteOnly:
dwAccess = GENERIC_WRITE;
ADD_FLAG(dwShare, FILE_SHARE_WRITE | FILE_SHARE_DELETE);
dwDisposition = CREATE_ALWAYS;
break;
case EFM_CreateReadWrite:
dwAccess = GENERIC_READ | GENERIC_WRITE;
dwDisposition = CREATE_ALWAYS;
break;
}
hFile = CreateFileW(szPath, dwAccess, dwShare, nullptr, dwDisposition, FILE_ATTRIBUTE_NORMAL, nullptr);
if(hFile == INVALID_HANDLE_VALUE)
{
nErrorCode = ConvertFromNativeErrorCode(GetLastError());
hFile = INVALID_NHANDLE;
}
#else
int nFlags = 0;
switch(eMode)
{
case EFM_ExistingReadOnly:
nFlags = O_RDONLY;
break;
case EFM_ExistingReadWrite:
nFlags = O_RDWR;
break;
case EFM_AlwaysReadWrite:
nFlags = O_RDWR | O_CREAT;
break;
case EFM_CreateWriteOnly:
nFlags = O_WRONLY | O_CREAT | O_TRUNC;
break;
case EFM_CreateReadWrite:
nFlags = O_RDWR | O_CREAT | O_TRUNC;
break;
}
hFile = open(szPath, nFlags, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH);
if(hFile == -1)
nErrorCode = ConvertFromNativeErrorCode(errno);
#endif
return nErrorCode;
}
//#################################################################################################
ERRCODE FileClose(const NHANDLE hFile)
{
ERRCODE nErrorCode = FW_NO_ERROR;
#ifdef _WIN32
if(hFile != INVALID_NHANDLE && !CloseHandle(hFile))
nErrorCode = ConvertFromNativeErrorCode(GetLastError());
#else
if(hFile != INVALID_NHANDLE && close(hFile) == -1)
nErrorCode = ConvertFromNativeErrorCode(errno);
#endif
return nErrorCode;
}
//#################################################################################################
ERRCODE FileDelete(PCNSTR szPath)
{
ERRCODE nErrorCode = FW_NO_ERROR;
#ifdef _WIN32
if(!DeleteFileW(szPath))
nErrorCode = ConvertFromNativeErrorCode(GetLastError());
#else
if(unlink(szPath) == -1)
nErrorCode = ConvertFromNativeErrorCode(errno);
#endif
return nErrorCode;
}
//#################################################################################################
ERRCODE FileForceDelete(PCNSTR szPath)
{
ERRCODE nErrorCode = FW_NO_ERROR;
#ifdef _WIN32
WIN32_FIND_DATAW w32fd;
HANDLE hFind = FindFirstFileExW(szPath, g_fexil, &w32fd, FindExSearchNameMatch, nullptr, 0);
if(hFind != INVALID_HANDLE_VALUE)
{
FindClose(hFind);
if(HAS_FLAG(w32fd.dwFileAttributes, FILE_ATTRIBUTE_READONLY) && !HAS_FLAG(w32fd.dwFileAttributes, FILE_ATTRIBUTE_DIRECTORY))
SetFileAttributesW(szPath, w32fd.dwFileAttributes & (~FILE_ATTRIBUTE_READONLY));
}
if(!DeleteFileW(szPath))
nErrorCode = ConvertFromNativeErrorCode(GetLastError());
#else
if(unlink(szPath) == -1)
nErrorCode = ConvertFromNativeErrorCode(errno);
#endif
return nErrorCode;
}
//#################################################################################################
ERRCODE FileRead(const NHANDLE hFile, PVOID pBuffer, const size_t nBytesToRead, size_t &nBytesRead)
{
ERRCODE nErrorCode = FW_NO_ERROR;
nBytesRead = 0;
if(hFile == INVALID_NHANDLE)
return FW_ERROR_INVALID_HANDLE;
#ifdef _WIN32
DWORD dwBytesToRead = (DWORD)nBytesToRead;
DWORD dwBytesRead;
if(ReadFile(hFile, pBuffer, dwBytesToRead, &dwBytesRead, nullptr))
{
nBytesRead = (size_t)dwBytesRead;
if(nBytesRead == 0)
nErrorCode = FW_ERROR_HANDLE_EOF;
}
else
nErrorCode = ConvertFromNativeErrorCode(GetLastError());
#else
ssize_t nResult = read(hFile, pBuffer, nBytesToRead);
if(nResult >= 0)
{
nBytesRead = (size_t)nResult;
if(nBytesRead == 0)
nErrorCode = FW_ERROR_HANDLE_EOF;
}
else
nErrorCode = ConvertFromNativeErrorCode(errno);
#endif
return nErrorCode;
}
//#################################################################################################
ERRCODE FileWrite(const NHANDLE hFile, PCVOID pBuffer, const size_t nBytesToWrite, size_t &nBytesWritten)
{
ERRCODE nErrorCode = FW_NO_ERROR;
nBytesWritten = 0;
if(hFile == INVALID_NHANDLE)
return FW_ERROR_INVALID_HANDLE;
#ifdef _WIN32
DWORD dwBytesToWrite = (DWORD)nBytesToWrite;
DWORD dwBytesWritten;
if(WriteFile(hFile, pBuffer, dwBytesToWrite, &dwBytesWritten, nullptr))
nBytesWritten = (size_t)dwBytesWritten;
else
nErrorCode = ConvertFromNativeErrorCode(GetLastError());
#else
ssize_t nResult = write(hFile, pBuffer, nBytesToWrite);
if(nResult >= 0)
nBytesWritten = (size_t)nResult;
else
nErrorCode = ConvertFromNativeErrorCode(errno);
#endif
return nErrorCode;
}
//#################################################################################################
ERRCODE FileFlush(const NHANDLE hFile)
{
ERRCODE nErrorCode = FW_NO_ERROR;
if(hFile == INVALID_NHANDLE)
return FW_ERROR_INVALID_HANDLE;
#ifdef _WIN32
if(!FlushFileBuffers(hFile))
nErrorCode = ConvertFromNativeErrorCode(GetLastError());
#else
if(fsync(hFile) == -1)
nErrorCode = ConvertFromNativeErrorCode(errno);
#endif
return nErrorCode;
}
//#################################################################################################
ERRCODE FileGetPosition(const NHANDLE hFile, uint64_t &nOffset)
{
ERRCODE nErrorCode = FW_NO_ERROR;
nOffset = 0;
if(hFile == INVALID_NHANDLE)
return FW_ERROR_INVALID_HANDLE;
#ifdef _WIN32
LARGE_INTEGER liMove = {0};
LARGE_INTEGER liCurrent;
if(SetFilePointerEx(hFile, liMove, &liCurrent, FILE_CURRENT))
nOffset = liCurrent.QuadPart;
else
nErrorCode = ConvertFromNativeErrorCode(GetLastError());
#else
off_t nCurrent = lseek(hFile, 0, SEEK_CUR);
if(nCurrent != -1)
nOffset = (uint64_t)nCurrent;
else
nErrorCode = ConvertFromNativeErrorCode(errno);
#endif
return nErrorCode;
}
//#################################################################################################
ERRCODE FileSetPosition(const NHANDLE hFile, const int64_t nOffset, EFileSeek eSeek)
{
ERRCODE nErrorCode = FW_NO_ERROR;
if(hFile == INVALID_NHANDLE)
return FW_ERROR_INVALID_HANDLE;
#ifdef _WIN32
LARGE_INTEGER liMove;
liMove.QuadPart = nOffset;
int nMode = FILE_BEGIN;
switch(eSeek)
{
case EFS_Begin:
nMode = FILE_BEGIN;
break;
case EFS_Current:
nMode = FILE_CURRENT;
break;
case EFS_End:
nMode = FILE_END;
break;
}
if(!SetFilePointerEx(hFile, liMove, nullptr, nMode))
nErrorCode = ConvertFromNativeErrorCode(GetLastError());
#else
int nSeek;
switch(eSeek)
{
case EFS_Begin:
nSeek = SEEK_SET;
break;
case EFS_Current:
nSeek = SEEK_CUR;
break;
case EFS_End:
nSeek = SEEK_END;
break;
}
if(lseek(hFile, nOffset, nSeek) == -1)
nErrorCode = ConvertFromNativeErrorCode(errno);
#endif
return nErrorCode;
}
//#################################################################################################
ERRCODE FileSetEnd(const NHANDLE hFile)
{
ERRCODE nErrorCode = FW_NO_ERROR;
if(hFile == INVALID_NHANDLE)
return FW_ERROR_INVALID_HANDLE;
#ifdef _WIN32
if(!SetEndOfFile(hFile))
nErrorCode = ConvertFromNativeErrorCode(GetLastError());
#else
off_t nOffset = lseek(hFile, 0, SEEK_CUR);
if(nOffset != -1)
{
if(ftruncate(hFile, nOffset) == -1)
nErrorCode = ConvertFromNativeErrorCode(errno);
}
else
nErrorCode = ConvertFromNativeErrorCode(errno);
#endif
return nErrorCode;
}
//#################################################################################################
ERRCODE FileGetSize(PCNSTR szPath, uint64_t &nSize)
{
ERRCODE nErrorCode = FW_NO_ERROR;
nSize = 0;
#ifdef _WIN32
WIN32_FIND_DATAW w32fd;
HANDLE hFind = FindFirstFileExW(szPath, g_fexil, &w32fd, FindExSearchNameMatch, nullptr, 0);
if(hFind != INVALID_HANDLE_VALUE)
{
FindClose(hFind);
nSize = MAKEUINT64(w32fd.nFileSizeHigh, w32fd.nFileSizeLow);
}
else
nErrorCode = ConvertFromNativeErrorCode(GetLastError());
#else
struct stat s;
if(stat(szPath, &s) == 0)
nSize = (uint64_t)s.st_size;
else
nErrorCode = ConvertFromNativeErrorCode(errno);
#endif
return nErrorCode;
}
//#################################################################################################
ERRCODE FileGetSize(const NHANDLE hFile, uint64_t &nSize)
{
ERRCODE nErrorCode = FW_NO_ERROR;
nSize = 0;
if(hFile == INVALID_NHANDLE)
return FW_ERROR_INVALID_HANDLE;
#ifdef _WIN32
LARGE_INTEGER li;
if(GetFileSizeEx(hFile, &li))
nSize = li.QuadPart;
else
nErrorCode = ConvertFromNativeErrorCode(GetLastError());
#else
off_t nCurrent = lseek(hFile, 0, SEEK_CUR);
if(nCurrent != -1)
{
off_t nEnd = lseek(hFile, 0, SEEK_END);
if(nEnd != -1)
{
nSize = (uint64_t)nEnd;
if(lseek(hFile, nCurrent, SEEK_SET) == -1)
nErrorCode = ConvertFromNativeErrorCode(errno);
}
else
nErrorCode = ConvertFromNativeErrorCode(errno);
}
else
nErrorCode = ConvertFromNativeErrorCode(errno);
#endif
return nErrorCode;
}
//#################################################################################################
ERRCODE FileGetTime(PCNSTR szPath, time_point<system_clock> &tp)
{
ERRCODE nErrorCode = FW_NO_ERROR;
tp = time_point<system_clock>();
#ifdef _WIN32
WIN32_FIND_DATAW w32fd;
HANDLE hFind = FindFirstFileExW(szPath, g_fexil, &w32fd, FindExSearchNameMatch, nullptr, 0);
if(hFind != INVALID_HANDLE_VALUE)
{
FindClose(hFind);
FileTimeToTimePoint(w32fd.ftLastWriteTime, tp);
}
else
nErrorCode = ConvertFromNativeErrorCode(GetLastError());
#else
struct stat s;
if(stat(szPath, &s) == 0)
tp = system_clock::from_time_t(s.st_mtime);
else
nErrorCode = ConvertFromNativeErrorCode(errno);
#endif
return nErrorCode;
}
//#################################################################################################
ERRCODE FileGetTime(const NHANDLE hFile, time_point<system_clock> &tp)
{
ERRCODE nErrorCode = FW_NO_ERROR;
tp = time_point<system_clock>();
if(hFile == INVALID_NHANDLE)
return FW_ERROR_INVALID_HANDLE;
#ifdef _WIN32
FILE_BASIC_INFO fbi = {0};
if(GetFileInformationByHandleEx(hFile, FileBasicInfo, &fbi, sizeof(fbi)))
{
FILETIME ft;
ft.dwHighDateTime = fbi.LastWriteTime.HighPart;
ft.dwLowDateTime = fbi.LastWriteTime.LowPart;
FileTimeToTimePoint(ft, tp);
}
else
nErrorCode = ConvertFromNativeErrorCode(GetLastError());
#else
struct stat s;
if(fstat(hFile, &s) == 0)
tp = system_clock::from_time_t(s.st_mtime);
else
nErrorCode = ConvertFromNativeErrorCode(errno);
#endif
return nErrorCode;
}
//#################################################################################################
ERRCODE FileSetTime(PCNSTR szPath, const time_point<system_clock> &tp)
{
ERRCODE nErrorCode = FW_NO_ERROR;
#ifdef _WIN32
HANDLE hFile = CreateFileW(szPath, GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ, nullptr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, nullptr);
if(hFile != INVALID_HANDLE_VALUE)
{
FILETIME ft;
TimePointToFileTime(tp, ft);
if(!SetFileTime(hFile, nullptr, nullptr, &ft))
nErrorCode = ConvertFromNativeErrorCode(GetLastError());
CloseHandle(hFile);
}
else
nErrorCode = ConvertFromNativeErrorCode(GetLastError());
#else
int hFile = open(szPath, O_RDWR);
if(hFile == -1)
nErrorCode = ConvertFromNativeErrorCode(errno);
else
{
nErrorCode = FileSetTime(hFile, tp);
close(hFile);
}
#endif
return nErrorCode;
}
//#################################################################################################
ERRCODE FileSetTime(const NHANDLE hFile, const time_point<system_clock> &tp)
{
ERRCODE nErrorCode = FW_NO_ERROR;
if(hFile == INVALID_NHANDLE)
return FW_ERROR_INVALID_HANDLE;
#ifdef _WIN32
FILETIME ft;
TimePointToFileTime(tp, ft);
if(!SetFileTime(hFile, nullptr, nullptr, &ft))
nErrorCode = ConvertFromNativeErrorCode(GetLastError());
#elif __APPLE__
auto ns = tp.time_since_epoch() - seconds(tp.time_since_epoch() / seconds(1));
timeval times[2];
times[0].tv_sec = times[1].tv_sec = system_clock::to_time_t(tp);
times[0].tv_usec = times[1].tv_usec = (int)(ns.count() / 1000);
if(futimes(hFile, times) == -1)
nErrorCode = ConvertFromNativeErrorCode(errno);
#elif __linux__
auto ns = tp.time_since_epoch() - seconds(tp.time_since_epoch() / seconds(1));
struct timespec times[2];
times[0].tv_sec = times[1].tv_sec = system_clock::to_time_t(tp);
times[0].tv_nsec = times[1].tv_nsec = ns.count();
if(futimens(hFile, times) == -1)
nErrorCode = ConvertFromNativeErrorCode(errno);
#endif
return nErrorCode;
}
//#################################################################################################
ERRCODE FileGetInfo(PCNSTR szPath, uint64_t &nSize, time_point<system_clock> &tp)
{
ERRCODE nErrorCode = FW_NO_ERROR;
nSize = 0;
tp = time_point<system_clock>();
#ifdef _WIN32
WIN32_FIND_DATAW w32fd;
HANDLE hFind = FindFirstFileExW(szPath, g_fexil, &w32fd, FindExSearchNameMatch, nullptr, 0);
if(hFind != INVALID_HANDLE_VALUE)
{
FindClose(hFind);
nSize = MAKEUINT64(w32fd.nFileSizeHigh, w32fd.nFileSizeLow);
FileTimeToTimePoint(w32fd.ftLastWriteTime, tp);
}
else
nErrorCode = ConvertFromNativeErrorCode(GetLastError());
#else
struct stat s;
if(stat(szPath, &s) == 0)
{
nSize = (uint64_t)s.st_size;
tp = system_clock::from_time_t(s.st_mtime);
}
else
nErrorCode = ConvertFromNativeErrorCode(errno);
#endif
return nErrorCode;
}
//#################################################################################################
ERRCODE FileGetInfo(const NHANDLE hFile, uint64_t &nSize, time_point<system_clock> &tp)