Fixed many warnings
[sdk] / ecere / src / sys / File.ec
1 namespace sys;
2
3 default:
4 #define set _set
5 #define uint _uint
6 #define File _File
7 #define strlen _strlen
8 #undef __BLOCKS__
9 #include <stdio.h>
10 #include <stdarg.h>
11 #include <stdlib.h>
12
13 #define UNICODE
14
15 #define IS_ALUNDER(ch) ((ch) == '_' || isalnum((ch)))
16
17 #if defined(ECERE_BOOTSTRAP)
18 #undef __WIN32__
19 #undef __linux__
20 #undef __APPLE__
21 #undef __UNIX__
22 #endif
23
24 #ifndef ECERE_BOOTSTRAP
25 #if defined(__GNUC__) || defined(__WATCOMC__) || defined(__WIN32__)
26 #include <time.h>
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include <fcntl.h>
30 #endif
31
32 #if defined(__unix__) || defined(__APPLE__)
33 #include <utime.h>
34 #endif
35
36 #if defined(__WIN32__) || defined(__WATCOMC__)
37 #include <direct.h>
38 #else
39 #include <dirent.h>
40 #endif
41
42 #if defined(__WIN32__)
43 #define WIN32_LEAN_AND_MEAN
44 #define String String_
45 #include <windows.h>
46 #undef String
47 #include <io.h>
48
49 BOOL __declspec(dllimport) WINAPI GetVolumePathName(LPCTSTR lpszFileName,LPTSTR lpszVolumePathName,DWORD cchBufferLength);
50
51 // Missing function...
52 /*
53 #ifndef WNetGetResourceInformation
54 DWORD APIENTRY WNetGetResourceInformationA(LPNETRESOURCE lpNetResource, LPVOID lpBuffer, LPDWORD lpcbBuffer, LPTSTR* lplpSystem);
55 #ifdef UNICODE
56 #define WNetGetResourceInformation  WNetGetResourceInformationW
57 #else
58 #define WNetGetResourceInformation  WNetGetResourceInformationA
59 #endif
60 #endif
61 */
62
63 #else
64 #include <unistd.h>
65 #endif
66
67
68 #include "zlib.h"
69
70 #endif //#ifndef ECERE_BOOTSTRAP
71 private:
72
73 #undef set
74 #undef uint
75 #undef File
76 #undef strlen
77
78 import "System"
79
80 #if !defined(ECERE_VANILLA) && !defined(ECERE_NONET) && !defined(ECERE_BOOTSTRAP)
81 import "HTTPFile"
82 #endif
83
84 import "dataTypes"
85
86 // IMPLEMENTATION OF THESE IS IN _File.c
87 default:
88
89 FILE *eC_stdin(void);
90 FILE *eC_stdout(void);
91
92 uint FILE_GetSize(FILE * input);
93 bool FILE_Lock(FILE * input, FILE * output, FileLock type, uint64 start, uint64 length, bool wait);
94 void FILE_set_buffered(FILE * input, FILE * output, bool value);
95 FileAttribs FILE_FileExists(char * fileName);
96 bool FILE_FileGetSize(char * fileName, FileSize * size);
97 bool FILE_FileGetStats(char * fileName, FileStats stats);
98 void FILE_FileFixCase(char * file);
99 void FILE_FileOpen(char * fileName, FileOpenMode mode, FILE ** input, FILE **output);
100
101 private:
102
103 FileSystem httpFileSystem;
104
105 public class FileSize : uint
106 {
107    // defaultAlignment = Right;
108    /*
109    void OnDisplay(Surface surface, int x, int y, int width, void * fieldData, int alignment, DataDisplayFlags displayFlags)
110    {
111       char string[16];
112       int len;
113       eUtils_PrintSize(string, *size, 2);
114       len = strlen(string);
115       surface.WriteTextDots(alignment, x, y, width, string, len);
116    }
117    */
118    int OnCompare(FileSize data2)
119    {
120       int result = 0;
121       if(&this && &data2)
122       {
123          if(this > data2)
124             result = 1;
125          else if(this < data2)
126             result = -1;
127       }
128       return result;
129    }
130
131    char * OnGetString(char * string, void * fieldData, bool * needClass)
132    {
133       PrintSize(string, this, 2);
134       return string;
135    }
136
137    bool OnGetDataFromString(char * string)
138    {
139       char * end;
140       double value = strtod(string, &end);
141       uint multiplier = 1;
142       if(strstr(end, "GB") || strstr(end, "gb")) multiplier = (uint)1024 * 1024 * 1024;
143       else if(strstr(end, "MB") || strstr(end, "mb")) multiplier = (uint)1024 * 1024;
144       else if(strstr(end, "KB") || strstr(end, "kb")) multiplier = 1024;
145
146       this = (uint)(multiplier * value);
147       return true;
148    }
149 };
150
151 public class FileSize64 : uint64
152 {
153    int OnCompare(FileSize64 data2)
154    {
155       int result = 0;
156       if(&this && &data2)
157       {
158          if(this > data2)
159             result = 1;
160          else if(this < data2)
161             result = -1;
162       }
163       return result;
164    }
165
166    char * OnGetString(char * string, void * fieldData, bool * needClass)
167    {
168       PrintBigSize(string, this, 2);
169       return string;
170    }
171
172    bool OnGetDataFromString(char * string)
173    {
174       char * end;
175       double value = strtod(string, &end);
176       uint64 multiplier = 1;
177            if(strstr(end, "PB") || strstr(end, "pb")) multiplier = (uint64)1024 * 1024 * 1024 * 1024;
178       else if(strstr(end, "TB") || strstr(end, "tb")) multiplier = (uint64)1024 * 1024 * 1024 * 1024;
179       else if(strstr(end, "GB") || strstr(end, "gb")) multiplier = (uint64)1024 * 1024 * 1024;
180       else if(strstr(end, "MB") || strstr(end, "mb")) multiplier = (uint64)1024 * 1024;
181       else if(strstr(end, "KB") || strstr(end, "kb")) multiplier = 1024;
182
183       this = (uint64)(multiplier * value);
184       return true;
185    }
186 };
187
188 class FileSystem
189 {
190    virtual File ::Open(char * archive, char * name, FileOpenMode mode);
191
192    // Query on names
193    virtual FileAttribs ::Exists(char * archive, char * fileName);
194    virtual bool ::GetSize(char * archive, char * fileName, FileSize * size);
195    virtual bool ::Stats(char * archive, char * fileName, FileStats stats);
196    virtual void ::FixCase(char * archive, char * fileName);
197
198    // File Listing
199    virtual bool ::Find(FileDesc file, char * archive, char * name);
200    virtual bool ::FindNext(FileDesc file);
201    virtual void ::CloseDir(FileDesc file);
202
203    // Archive manipulation
204    virtual Archive ::OpenArchive(char * fileName, ArchiveOpenFlags create);
205    virtual bool ::QuerySize(char * fileName, FileSize * size);
206 };
207
208 public enum FileOpenMode { read = 1, write, append, readWrite, writeRead, appendRead };
209 public enum FileSeekMode { start, current, end };
210
211 #if !defined(ECERE_BOOTSTRAP)
212 static FileDialog fileDialog { text = $"Select File" };
213 #endif
214
215 public enum FileLock
216 {
217    unlocked = 0,     // LOCK_UN  _SH_DENYNO
218    shared = 1,       // LOCK_SH  _SH_DENYWR
219    exclusive = 2     // LOCK_EX  _SH_DENYRW
220 };
221
222 public class File : IOChannel
223 {
224    FILE * input, * output;
225
226    uint ReadData(byte * bytes, uint numBytes)
227    {
228       return Read(bytes, 1, numBytes);
229    }
230
231    uint WriteData(byte * bytes, uint numBytes)
232    {
233       return Write(bytes, 1, numBytes);
234    }
235
236    ~File()
237    {
238       if(output && output != input)
239       {
240          openCount--;
241          fclose(output);
242       }
243       if(input)
244       {
245          openCount--;
246          fclose(input);
247       }
248       input = null;
249       output = null;
250    }
251
252    bool OnGetDataFromString(char * string)
253    {
254       if(!string[0])
255       {
256          this = null;
257          return true;
258       }
259       else
260       {
261          File f = FileOpen(string, read);
262          if(f)
263          {
264             this = TempFile { };
265             while(!f.Eof())
266             {
267                byte buffer[4096];
268                uint read = f.Read(buffer, 1, sizeof(buffer));
269                Write(buffer, 1, read);
270             }
271             delete f;
272             return true;
273          }
274       }
275       return false;
276    }
277
278    char * OnGetString(char * tempString, void * fieldData, bool * needClass)
279    {
280       if(this)
281       {
282          PrintSize(tempString, GetSize(), 2);
283          return tempString;
284       }
285       return null;
286    }
287
288 #ifndef ECERE_BOOTSTRAP
289    Window OnEdit(DataBox dataBox, DataBox obsolete, int x, int y, int w, int h, void * userData)
290    {
291       Window editData = class::OnEdit(dataBox, obsolete, x + 24, y, w - 48, h, userData);
292       Button load
293       {
294          dataBox, inactive = true, text = $"Import"."Imp", hotKey = f2,
295          position = { Max(x + 24, x + w - 24), y }, size = { 24, h };
296
297          bool DataBox::NotifyClicked(Button button, int x, int y, Modifiers mods)
298          {
299             fileDialog.master = rootWindow;
300             fileDialog.filePath = "";
301             fileDialog.type = open;
302
303             if(fileDialog.Modal() == ok)
304             {
305                char * filePath = fileDialog.filePath;
306                File output = null;
307                if(output.OnGetDataFromString(filePath))
308                {
309                   SetData(output, false);
310                   Refresh();
311                }
312             }
313             return true;
314          }
315       };
316       Button save
317       {
318          dataBox, inactive = true, text = $"Export"."Exp", hotKey = f2,
319          position = { Max(x + 24, x + w - 48), y }, size = { 24, h };
320
321          bool DataBox::NotifyClicked(Button button, int x, int y, Modifiers mods)
322          {
323             fileDialog.master = rootWindow;
324             fileDialog.type = save;
325             fileDialog.filePath = "";
326             if(fileDialog.Modal() == ok)
327             {
328                char * filePath = fileDialog.filePath;
329                File f = FileOpen(filePath, write);
330                if(f)
331                {
332                   File input = *(void **)data;
333                   input.Seek(0, start);
334                   while(!input.Eof())
335                   {
336                      byte buffer[4096];
337                      uint read = input.Read(buffer, 1, sizeof(buffer));
338                      f.Write(buffer, 1, read);
339                   }
340                   delete f;
341                }
342             }
343             return true;
344          }
345       };
346       load.Create();
347       save.Create();
348       return editData;
349    }
350 #endif //#ifndef ECERE_BOOTSTRAP
351
352 #if !defined(ECERE_VANILLA) && !defined(ECERE_NOARCHIVE) && !defined(ECERE_BOOTSTRAP)
353    void OnSerialize(IOChannel channel)
354    {
355       uint size = this ? GetSize() : MAXDWORD;
356       if(this)
357       {
358          byte * uncompressed = new byte[size];
359          Seek(0, start);
360          if(uncompressed || !size)
361          {
362             uint count = Read(uncompressed, 1,  size);
363             if(count == size)
364             {
365                uLongf cSize = size + size / 1000 + 12;
366                byte * compressed = new byte[cSize];
367                if(compressed)
368                {
369                   compress2(compressed, &cSize, uncompressed, size, 9);
370
371                   size.OnSerialize(channel);
372                   cSize.OnSerialize(channel);
373                   channel.WriteData(compressed, cSize);
374
375                   delete compressed;
376                }
377             }
378             delete uncompressed;
379          }
380       }
381       else
382          size.OnSerialize(channel);
383
384       /*
385       byte data[4096];
386       uint c;
387       size.OnSerialize(channel);
388
389       // Will add position...
390       if(this)
391       {
392          Seek(0, start);
393          for(c = 0; c<size; c += sizeof(data))
394          {
395             uint count = Read(data, 1, sizeof(data));
396             buffer.WriteData(data, count);
397          }
398       }
399       */
400    }
401
402    void OnUnserialize(IOChannel channel)
403    {
404       uLongf size;
405       uint cSize;
406
407       this = null;
408
409       size.OnUnserialize(channel);
410       if(size != MAXDWORD)
411       {
412          byte * compressed;
413          cSize.OnUnserialize(channel);
414
415          compressed = new byte[cSize];
416          if(compressed)
417          {
418             if(channel.ReadData(compressed, cSize) == cSize)
419             {
420                byte * uncompressed = new byte[size];
421                if(uncompressed || !size)
422                {
423                   this = TempFile { };
424                   uncompress(uncompressed, &size, compressed, cSize);
425                   Write(uncompressed, 1, size);
426                   Seek(0, start);
427
428                   delete uncompressed;
429                }
430             }
431             delete compressed;
432          }
433       }
434
435       /*
436       byte data[4096];
437       uint c;
438
439       size.OnUnserialize(channel);
440       if(size != MAXDWORD)
441       {
442          this = TempFile { };
443          for(c = 0; c<size; c += sizeof(data))
444          {
445             uint count = Min(size - c, sizeof(data));
446             channel.ReadData(data, count);
447             Write(data, 1, count);
448          }
449          Seek(0, start);
450       }
451       else
452          this = null;
453       */
454    }
455 #endif
456
457 public:
458
459    // Virtual Methods
460    virtual bool Seek(int pos, FileSeekMode mode)
461    {
462       uint fmode = SEEK_SET;
463       switch(mode)
464       {
465          case start: fmode = SEEK_SET; break;
466          case end: fmode = SEEK_END; break;
467          case current: fmode = SEEK_CUR; break;
468       }
469       return fseek(input ? input : output, pos, fmode) != EOF;
470    }
471
472    virtual uint Tell(void)
473    {
474       return (uint)(input ? ftell(input) : ftell(output));
475    }
476
477    virtual int Read(void * buffer, uint size, uint count)
478    {
479       return input ? (int)fread(buffer, size, count, input) : 0;
480    }
481
482    virtual int Write(void * buffer, uint size, uint count)
483    {
484       return output ? (int)fwrite(buffer, size, count, output) : 0;
485    }
486
487    // UNICODE OR NOT?
488    virtual bool Getc(char * ch)
489    {
490       int ich = fgetc(input);
491       if(ich != EOF)
492       {
493          if(ch) *ch = (char)ich;
494          return true;
495       }
496       return false;
497    }
498
499    virtual bool Putc(char ch)
500    {
501       return (fputc((int)ch, output) == EOF) ? false : true;
502    }
503
504    virtual bool Puts(const char * string)
505    {
506       bool result = false;
507       if(output)
508       {
509          result = (fputs(string, output) == EOF) ? false : true;
510          // TODO: Check if any repercusions of commenting out fflush here
511          // This is what broke the debugger in 0.44d2 , it is required for outputting things to the DualPipe
512          // Added an explicit flush call in DualPipe::Puts
513          // fflush(output);
514       }
515       return result;
516    }
517
518    virtual bool Eof(void)
519    {
520       return input ? feof(input) != 0 : true;
521    }
522
523    virtual bool Truncate(FileSize size)
524    {
525    #ifdef ECERE_BOOTSTRAP
526       fprintf(stderr, "WARNING:  File::Truncate unimplemented in ecereBootstrap.\n");
527       return false;
528    #else
529    #if defined(__WIN32__)
530       return output ? (_chsize(fileno(output), size) == 0) : false;
531    #else
532       return output ? (ftruncate(fileno(output), size) == 0) : false;
533    #endif
534    #endif
535    }
536
537    virtual uint GetSize(void)
538    {
539       return FILE_GetSize(input);
540    }
541
542    virtual void CloseInput(void)
543    {
544       if(input)
545       {
546          fclose(input);
547          if(output == input)
548             output = null;
549          input = null;
550       }
551    }
552
553    virtual void CloseOutput(void)
554    {
555       if(output)
556       {
557          fclose(output);
558          if(input == output)
559             input = null;
560          output = null;
561       }
562    }
563
564    virtual bool Lock(FileLock type, uint64 start, uint64 length, bool wait)
565    {
566       return FILE_Lock(input, output, type, start, length, wait);
567    }
568
569    virtual bool Unlock(uint64 start, uint64 length, bool wait)
570    {
571       return Lock(unlocked, start, length, wait);
572    }
573
574    // Normal Methods
575    int Printf(char * format, ...)
576    {
577       int result = 0;
578       if(format)
579       {
580          char text[MAX_F_STRING];
581          va_list args;
582          va_start(args, format);
583          vsnprintf(text, sizeof(text), format, args);
584          text[sizeof(text)-1] = 0;
585          if(Puts(text))
586             result = strlen(text);
587          va_end(args);
588       }
589       return result;
590    }
591
592    public void PrintLn(typed_object object, ...)
593    {
594       va_list args;
595       char buffer[4096];
596       va_start(args, object);
597       PrintStdArgsToBuffer(buffer, sizeof(buffer), object, args);
598       Puts(buffer);
599       Putc('\n');
600       va_end(args);
601    }
602
603    public void Print(typed_object object, ...)
604    {
605       va_list args;
606       char buffer[4096];
607       va_start(args, object);
608       PrintStdArgsToBuffer(buffer, sizeof(buffer), object, args);
609       Puts(buffer);
610       va_end(args);
611    }
612
613    bool Flush(void)
614    {
615       fflush(output);
616       return true;
617    }
618
619    bool GetLine(char *s, int max)
620    {
621       int c = 0;
622       bool result = true;
623       s[c]=0;
624
625       if(Eof())
626       {
627          result = false;
628       }
629       else
630       {
631          while(c<max-1)
632          {
633             char ch = 0;
634
635             if(/*!Peek() || */ !Getc(&ch))
636             {
637                result = false;
638                break;
639             }
640             if(ch =='\n')
641                break;
642             if(ch !='\r')
643                s[c++]=ch;
644          }
645       }
646       s[c]=0;
647       return result || c > 1;
648    }
649
650    // Strings and numbers separated by spaces, commas, tabs, or CR/LF, handling quotes
651    bool GetString(char * string, int max)
652    {
653       int c;
654       char ch;
655       bool quoted = false;
656       bool result = true;
657
658       *string = 0;
659       while(true)
660       {
661          if(!Getc(&ch))
662             result = false;
663          if( (ch!='\n') && (ch!='\r') && (ch!=' ') && (ch!=',') && (ch!='\t'))
664             break;
665          if(Eof()) break;
666       }
667       if(result)
668       {
669          for(c=0; c<max-1; c++)
670          {
671             if(!quoted && ((ch=='\n')||(ch=='\r')||(ch==' ')||(ch==',')||(ch=='\t')))
672             {
673                result = true;
674                break;
675             }
676             if(ch == '\"')
677             {
678                quoted ^= 1;
679                c--;
680             }
681             else
682                string[c]=ch;
683
684             if(!Getc(&ch))
685             {
686                c++;
687                result = false;
688                break;
689             }
690          }
691          string[c]=0;
692       }
693       return result;
694    }
695
696    int GetValue(void)
697    {
698       char string[32];
699       GetString(string,sizeof(string));
700       return atoi(string);
701    }
702
703    unsigned int GetHexValue(void)
704    {
705       char string[32];
706       GetString(string, sizeof(string));
707       return (uint)strtoul(string, null, 16);
708    }
709
710    float GetFloat(void)
711    {
712       char string[32];
713       GetString(string, sizeof(string));
714       return (float)FloatFromString(string);
715    }
716
717    double GetDouble(void)
718    {
719       char string[32];
720       GetString(string, sizeof(string));
721       return FloatFromString(string);
722    }
723
724    property void * input { set { input = value; } get { return input; } }
725    property void * output { set { output = value; } get { return output; } }
726    property bool buffered
727    {
728       set
729       {
730          FILE_set_buffered(input, output, value);
731       }
732    }
733    property bool eof { get { return Eof(); } }
734
735    int GetLineEx(char *s, int max, bool *hasNewLineChar)
736    {
737       int c = 0;
738       s[c] = '\0';
739
740       if(!Eof())
741       {
742          char ch = '\0';
743          while(c < max - 1)
744          {
745             if(/*!Peek() || */ !Getc(&ch))
746                break;
747             if(ch == '\n')
748                break;
749             if(ch != '\r')
750                s[c++] = ch;
751          }
752          if(hasNewLineChar)
753             *hasNewLineChar = (ch == '\n');
754       }
755       s[c] = '\0';
756       return c;
757    }
758
759    bool CopyTo(char * outputFileName)
760    {
761       bool result = false;
762       File f = FileOpen(outputFileName, write);
763       if(f)
764       {
765          byte buffer[65536];
766
767          result = true;
768          Seek(0, start);
769          while(!Eof())
770          {
771             uint count = Read(buffer, 1, sizeof(buffer));
772             if(count && !f.Write(buffer, 1, count))
773             {
774                result = false;
775                break;
776             }
777          }
778          delete f;
779       }
780       Seek(0, start);
781       return result;
782    }
783
784 #if 0
785    virtual bool Open(char * fileName, FileOpenMode mode)
786    {
787       bool result = false;
788       if(this)
789       {
790          FILE_FileOpen(fileName, mode, &input, &output);
791
792          //file.mode = mode;
793          if(!input && !output);
794          else
795          {
796             openCount++;
797             result = true;
798             // TESTING ENABLING FILE BUFFERING BY DEFAULT... DOCUMENT ANY ISSUE
799             /*
800             if(file.input)
801                setvbuf(file.input, null, _IONBF, 0);
802             else
803                setvbuf(file.output, null, _IONBF, 0);
804             */
805          }
806          //if(!result)
807          {
808             /* TOFIX:
809             LogErrorCode((mode == Read || mode == ReadWrite) ?
810                ERR_FILE_NOT_FOUND : ERR_FILE_WRITE_FAILED, fileName);
811             */
812          }
813       }
814       return result;
815    }
816 #endif
817
818    virtual void Close()
819    {
820       CloseOutput();
821       CloseInput();
822    }
823 }
824
825 #if defined(__WIN32__)
826 default extern intptr_t stdinHandle;
827 default extern intptr_t stdoutHandle;
828 #endif
829
830 public class ConsoleFile : File
831 {
832    input = eC_stdin();
833    output = eC_stdout();
834
835 #if defined(__WIN32__)
836    void CloseInput()
837    {
838       CloseHandle((HANDLE)stdinHandle);
839    }
840    /*
841    void CloseOutput()
842    {
843       CloseHandle((HANDLE)stdoutHandle);
844    }*/
845 #endif
846
847    ~ConsoleFile()
848    {
849       input = null;
850       output = null;
851    }
852 };
853
854 public class FileAttribs : bool
855 {
856 public:
857    bool isFile:1, isArchive:1, isHidden:1, isReadOnly:1, isSystem:1, isTemporary:1, isDirectory:1;
858    bool isDrive:1, isCDROM:1, isRemote:1, isRemovable:1, isServer:1, isShare:1;
859    // property bool { };
860 };
861
862 public struct FileStats
863 {
864    FileAttribs attribs;
865    FileSize size;
866    SecSince1970 accessed;
867    SecSince1970 modified;
868    SecSince1970 created;
869 };
870
871 #if defined(__WIN32__)
872
873 // --- FileName functions ---
874
875 default TimeStamp Win32FileTimeToTimeStamp(FILETIME * fileTime)
876 {
877    // TIME_ZONE_INFORMATION tz = { 0 };
878    SYSTEMTIME st, lt;
879    DateTime t;
880
881    FileTimeToSystemTime(fileTime, &lt);
882
883    /*
884    GetTimeZoneInformation(&tz);
885    tz.Bias = 0;
886    _TzSpecificLocalTimeToSystemTime(&tz, &lt, &st);
887    */
888    st = lt;
889
890    t.year = st.wYear;
891    t.month = (Month)(st.wMonth - 1);
892    t.day = st.wDay;
893    t.hour = st.wHour;
894    t.minute = st.wMinute;
895    t.second = st.wSecond;
896    return t;
897 }
898
899 default void TimeStampToWin32FileTime(TimeStamp t, FILETIME * fileTime)
900 {
901    // TIME_ZONE_INFORMATION tz = { 0 };
902    SYSTEMTIME st, lt;
903    DateTime tm;
904
905    tm = t;
906
907    st.wYear = (short)tm.year;
908    st.wMonth = (short)tm.month + 1;
909    st.wDay = (short)tm.day;
910    st.wHour = (short)tm.hour;
911    st.wMinute = (short)tm.minute;
912    st.wSecond = (short)tm.second;
913    st.wMilliseconds = 0;
914    st.wDayOfWeek = 0;
915
916    /*
917    GetTimeZoneInformation(&tz);
918    tz.Bias = 0;
919    SystemTimeToTzSpecificLocalTime(&tz, &st, &lt);
920    */
921
922    lt = st;
923    SystemTimeToFileTime(&lt, fileTime);
924 }
925 /*
926 default TimeStamp Win32FileTimeToTimeStamp(FILETIME * fileTime);
927 default void TimeStampToWin32FileTime(TimeStamp t, FILETIME * fileTime);
928 */
929 default bool WinReviveNetworkResource(uint16 * _wfileName);
930
931 #endif
932
933 public FileAttribs FileExists(char * fileName)
934 {
935    char archiveName[MAX_LOCATION], * archiveFile;
936 #if !defined(ECERE_BOOTSTRAP)
937    if(SplitArchivePath(fileName, archiveName, &archiveFile))
938    {
939       return EARFileSystem::Exists(archiveName, archiveFile);
940    }
941    else if(strstr(fileName, "http://") == fileName)
942    {
943       return FileAttribs { isFile = true };
944    }
945    else
946 #endif
947       return FILE_FileExists(fileName);
948 }
949
950 static int openCount;
951
952 public File FileOpen(char * fileName, FileOpenMode mode)
953 {
954    File result = null;
955    if(fileName)
956    {
957       char archiveName[MAX_LOCATION], * archiveFile;
958 #if !defined(ECERE_BOOTSTRAP)
959       if(SplitArchivePath(fileName, archiveName, &archiveFile))
960       {
961          result = EARFileSystem::Open(archiveName, archiveFile, mode);
962       }
963 #if !defined(ECERE_VANILLA) && !defined(ECERE_NONET)
964       else if(strstr(fileName, "http://") == fileName || strstr(fileName, "https://"))
965       {
966          result = FileOpenURL(fileName);
967       }
968 #endif
969       else
970 #endif
971       if(strstr(fileName, "File://") == fileName)
972       {
973          result = (File)(uintptr)strtoull(fileName+7, null, 16);
974          if(result)
975          {
976             if(result._class && eClass_IsDerived(result._class, class(File)))
977             {
978                if(!result._refCount) incref result;
979                incref result;
980                result.Seek(0, start);
981             }
982             else
983                result = null;
984          }
985       }
986       else
987       {
988          File file = File {};
989          if(file)
990          {
991             FILE_FileOpen(fileName, mode, &file.input, &file.output);
992
993             //file.mode = mode;
994             if(!file.input && !file.output);
995             else
996             {
997                openCount++;
998                result = file;
999                // TESTING ENABLING FILE BUFFERING BY DEFAULT... DOCUMENT ANY ISSUE
1000                /*
1001                if(file.input)
1002                   setvbuf(file.input, null, _IONBF, 0);
1003                else
1004                   setvbuf(file.output, null, _IONBF, 0);
1005                */
1006             }
1007             if(!result)
1008             {
1009                delete file;
1010                /* TOFIX:
1011                LogErrorCode((mode == Read || mode == ReadWrite) ?
1012                   ERR_FILE_NOT_FOUND : ERR_FILE_WRITE_FAILED, fileName);
1013                */
1014             }
1015          }
1016       }
1017    }
1018    return result;
1019 }
1020
1021 public void FileFixCase(char * file)
1022 {
1023    FILE_FileFixCase(file);
1024 }
1025
1026 #if !defined(ECERE_BOOTSTRAP)
1027 public bool FileTruncate(char * fileName, FileSize size)
1028 {
1029 #if defined(__WIN32__)
1030    uint16 * _wfileName = UTF8toUTF16(fileName, null);
1031    int f = _wopen(_wfileName, _O_RDWR|_O_CREAT, _S_IREAD|_S_IWRITE);
1032    bool result = false;
1033    if(f != -1)
1034    {
1035       if(!_chsize(f, size))
1036          result = true;
1037       _close(f);
1038    }
1039    delete _wfileName;
1040    return result;
1041 #else
1042    return truncate(fileName, size) == 0;
1043 #endif
1044 }
1045 #endif
1046
1047 public bool FileGetSize(char * fileName, FileSize * size)
1048 {
1049    bool result = false;
1050    if(size)
1051    {
1052       *size = 0;
1053       if(fileName)
1054       {
1055 #if !defined(ECERE_BOOTSTRAP)
1056          char archiveName[MAX_LOCATION], * archiveFile;
1057          if(SplitArchivePath(fileName, archiveName, &archiveFile))
1058             return EARFileSystem::GetSize(archiveName, archiveFile, size);
1059          else
1060 #endif
1061             result = FILE_FileGetSize(fileName, size);
1062       }
1063    }
1064    return result;
1065 }
1066
1067 public bool FileGetStats(char * fileName, FileStats stats)
1068 {
1069    bool result = false;
1070    if(stats && fileName)
1071    {
1072 #if !defined(ECERE_BOOTSTRAP)
1073       char archiveName[MAX_LOCATION], * archiveFile;
1074       if(SplitArchivePath(fileName, archiveName, &archiveFile))
1075          result = EARFileSystem::Stats(archiveName, archiveFile, stats);
1076       else
1077 #endif
1078          return FILE_FileGetStats(fileName, stats);
1079    }
1080    return result;
1081 }
1082
1083 #ifndef ECERE_BOOTSTRAP
1084
1085 public bool FileSetAttribs(char * fileName, FileAttribs attribs)
1086 {
1087 #ifdef __WIN32__
1088    uint winAttribs = 0;
1089    uint16 * _wfileName = UTF8toUTF16(fileName, null);
1090
1091    if(attribs.isHidden)   winAttribs |= FILE_ATTRIBUTE_HIDDEN;
1092    if(attribs.isReadOnly) winAttribs |= FILE_ATTRIBUTE_READONLY;
1093
1094    SetFileAttributes(_wfileName, winAttribs);
1095    delete _wfileName;
1096 #endif
1097    return true;
1098 }
1099
1100 public bool FileSetTime(char * fileName, TimeStamp created, TimeStamp accessed, TimeStamp modified)
1101 {
1102    bool result = false;
1103    TimeStamp currentTime = time(null);
1104    if(!created)  created = currentTime;
1105    if(!accessed) accessed = currentTime;
1106    if(!modified) modified = currentTime;
1107    if(fileName)
1108    {
1109 #ifdef __WIN32__
1110       uint16 * _wfileName = UTF8toUTF16(fileName, null);
1111       HANDLE hFile = CreateFile(_wfileName, GENERIC_WRITE|GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_WRITE, null,
1112          OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, null);
1113       delete _wfileName;
1114       if(hFile != INVALID_HANDLE_VALUE)
1115       {
1116          FILETIME c, a, m;
1117
1118          TimeStampToWin32FileTime(created, &c);
1119          TimeStampToWin32FileTime(accessed, &a);
1120          TimeStampToWin32FileTime(modified, &m);
1121
1122          /*
1123          {
1124             uint cc,aa,mm;
1125
1126             cc = Win32FileTimeToTimeStamp(&c);
1127             aa = Win32FileTimeToTimeStamp(&a);
1128             mm = Win32FileTimeToTimeStamp(&m);
1129          }
1130          */
1131
1132          if(SetFileTime(hFile, &c, &a, &m))
1133             result = true;
1134
1135          CloseHandle(hFile);
1136       }
1137 #else
1138       struct utimbuf t = { (int)accessed, (int)modified };
1139       if(!utime(fileName, &t))
1140          result = true;
1141 #endif
1142    }
1143    return result;
1144 }
1145
1146 /****************************************************************************
1147  Directory Listing
1148 ****************************************************************************/
1149 // Directory Description for file listing
1150 private class Dir : struct
1151 {
1152 #if defined(__WIN32__)
1153    HANDLE fHandle;
1154
1155    int resource;
1156    NETRESOURCE * resources;
1157    int numResources;
1158
1159    int workGroup;
1160    NETRESOURCE * workGroups;
1161    int numWorkGroups;
1162 #else
1163    DIR * d;
1164 #endif
1165    char name[MAX_LOCATION];
1166 };
1167
1168 static FileDesc FileFind(char * path, char * extensions)
1169 {
1170    FileDesc result = null;
1171    FileDesc file;
1172
1173    if((file = FileDesc {}))
1174    {
1175       char archiveName[MAX_LOCATION], * archiveFile;
1176       if(SplitArchivePath(path, archiveName, &archiveFile))
1177       {
1178          if(EARFileSystem::Find(file, archiveName, archiveFile))
1179          {
1180             file.system = class(EARFileSystem);
1181             result = file;
1182          }
1183       }
1184       else
1185       {
1186          Dir d;
1187
1188          if((d = file.dir = Dir {}))
1189          {
1190 #if defined(__WIN32__)
1191             if(!strcmp(path, "/"))
1192             {
1193                int c;
1194                uint drives = 0xFFFFFFFF;
1195                d.fHandle = (HANDLE)(uintptr)drives; //GetLogicalDrives();
1196                for(c = 0; c<26; c++)
1197                   if(((uint)(uintptr)d.fHandle) & (1<<c))
1198                   {
1199                      char volume[MAX_FILENAME] = "";
1200                      uint16 _wvolume[MAX_FILENAME];
1201                      int driveType;
1202                      uint16 _wfilePath[4];
1203
1204                      strcpy(d.name, path);
1205                      file.stats.attribs = FileAttribs { isDirectory = true, isDrive = true };
1206                      _wfilePath[0] = file.path[0] = (char)('A' + c);
1207                      _wfilePath[1] = file.path[1] = ':';
1208                      _wfilePath[2] = file.path[2] = '\\';
1209                      _wfilePath[3] = file.path[3] = '\0';
1210                      file.stats.size = 0;
1211                      file.stats.accessed = file.stats.created = file.stats.modified = 0;
1212                      driveType = GetDriveType(_wfilePath);
1213                      switch(driveType)
1214                      {
1215                         case DRIVE_REMOVABLE: file.stats.attribs.isRemovable = true; break;
1216                         case DRIVE_REMOTE:    file.stats.attribs.isRemote = true; break;
1217                         case DRIVE_CDROM:     file.stats.attribs.isCDROM = true; break;
1218                      }
1219                      drives ^= (1<<c);
1220                      if(driveType == DRIVE_NO_ROOT_DIR) continue;
1221
1222                      if(driveType != DRIVE_REMOVABLE && driveType != DRIVE_REMOTE &&
1223                         GetVolumeInformation(_wfilePath, _wvolume, MAX_FILENAME - 1, null, null, null, null, 0))
1224                      {
1225                         file.path[2] = '\0';
1226                         UTF16toUTF8Buffer(_wvolume, volume, MAX_FILENAME);
1227                         sprintf(file.name, "%s [%s]", file.path, volume);
1228                      }
1229                      else
1230                      {
1231                         file.path[2] = '\0';
1232                         strcpy(file.name, file.path);
1233                      }
1234                      result = file;
1235                      break;
1236                   }
1237                d.fHandle = (HANDLE)(uintptr) drives;
1238                d.resource = 0;
1239             }
1240             else if(path[0] != '\\' || path[1] != '\\' || strstr(path+2, "\\"))
1241             {
1242                WIN32_FIND_DATA winFile;
1243                uint16 dir[MAX_PATH];
1244
1245                UTF8toUTF16Buffer(path, dir, MAX_LOCATION);
1246                if(path[0]) wcscat(dir, L"\\");
1247                wcscat(dir, L"*.*");
1248
1249                d.fHandle = FindFirstFile(dir, &winFile);
1250                if(d.fHandle == INVALID_HANDLE_VALUE && WinReviveNetworkResource(dir))
1251                   d.fHandle = FindFirstFile(dir, &winFile);
1252                if(d.fHandle != INVALID_HANDLE_VALUE)
1253                {
1254                   UTF16toUTF8Buffer(winFile.cFileName, file.name, MAX_FILENAME);
1255                   strcpy(file.path, path);
1256                   PathCat(file.path, file.name);
1257                   /*if(path[0])
1258                      strcat(file.path, DIR_SEPS);
1259                   strcat(file.path, file.name);*/
1260                   // file.sizeHigh = winFile.nFileSizeHigh;
1261                   file.stats.size = winFile.nFileSizeLow;
1262
1263                   file.stats.attribs = FileAttribs { };
1264                   file.stats.attribs.isArchive   = (winFile.dwFileAttributes & FILE_ATTRIBUTE_ARCHIVE)   ? true : false;
1265                   file.stats.attribs.isHidden    = (winFile.dwFileAttributes & FILE_ATTRIBUTE_HIDDEN)    ? true : false;
1266                   file.stats.attribs.isReadOnly  = (winFile.dwFileAttributes & FILE_ATTRIBUTE_READONLY)  ? true : false;
1267                   file.stats.attribs.isSystem    = (winFile.dwFileAttributes & FILE_ATTRIBUTE_SYSTEM)    ? true : false;
1268                   file.stats.attribs.isTemporary = (winFile.dwFileAttributes & FILE_ATTRIBUTE_TEMPORARY) ? true : false;
1269                   file.stats.attribs.isDirectory = (winFile.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) ? true : false;
1270                   file.stats.attribs.isFile = !(winFile.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY);
1271                   strcpy(d.name, path);
1272
1273                   file.stats.accessed = Win32FileTimeToTimeStamp(&winFile.ftLastAccessTime);
1274                   file.stats.modified = Win32FileTimeToTimeStamp(&winFile.ftLastWriteTime);
1275                   file.stats.created  = Win32FileTimeToTimeStamp(&winFile.ftCreationTime);
1276                   result = file;
1277                }
1278             }
1279             else
1280             {
1281                HANDLE handle = 0;
1282                DWORD count = 0xFFFFFFFF;
1283                DWORD size = 512 * sizeof(NETRESOURCE);
1284                NETRESOURCE * buffer = (NETRESOURCE *)new0 byte[size];
1285                NETRESOURCE nr = {0};
1286
1287                d.fHandle = null;
1288                nr.dwScope       = RESOURCE_GLOBALNET;
1289                nr.dwType        = RESOURCETYPE_DISK;
1290                nr.lpProvider = L"Microsoft Windows Network";
1291
1292                strcpy(d.name, path);
1293                if(path[2])
1294                {
1295                   nr.lpRemoteName = UTF8toUTF16(path, null);
1296
1297                   // Server
1298                   WNetOpenEnum(RESOURCE_GLOBALNET, RESOURCETYPE_DISK, 0, &nr, &handle);
1299                   if(!handle)
1300                   {
1301                      WinReviveNetworkResource(nr.lpRemoteName);
1302                      WNetOpenEnum(RESOURCE_GLOBALNET, RESOURCETYPE_DISK, 0, &nr, &handle);
1303                   }
1304
1305                   if(handle)
1306                   {
1307                      while(true)
1308                      {
1309                         int returnCode = WNetEnumResource(handle, &count, buffer, &size);
1310                         if(returnCode != ERROR_MORE_DATA)
1311                            break;
1312                         count = 0xFFFFFFFF;
1313                         buffer = (NETRESOURCE *)renew0 buffer byte[size];
1314                      }
1315                      WNetCloseEnum(handle);
1316                   }
1317
1318                   delete nr.lpRemoteName;
1319                   if(count > 0)
1320                   {
1321                      file.stats.attribs = FileAttribs { isDirectory = true, isShare = true };
1322                      file.stats.size = 0;
1323                      file.stats.accessed = file.stats.created = file.stats.modified = 0;
1324
1325                      UTF16toUTF8Buffer(buffer->lpRemoteName, file.path, MAX_LOCATION);
1326                      GetLastDirectory(file.path, file.name);
1327
1328                      result = file;
1329                      d.resources = buffer;
1330                      d.numResources = count;
1331                      d.resource = 1;
1332                   }
1333                   else
1334                      delete buffer;
1335                }
1336                else
1337                {
1338                   int c;
1339                   nr.lpProvider = L"Microsoft Windows Network";
1340
1341                   // Entire Network
1342                   WNetOpenEnum(RESOURCE_GLOBALNET, RESOURCETYPE_DISK, 0, &nr, &handle);
1343                   while(true)
1344                   {
1345                      int returnCode = WNetEnumResource(handle, &count, buffer, &size);
1346                      if(returnCode != ERROR_MORE_DATA)
1347                         break;
1348                      count = 0xFFFFFFFF;
1349                      buffer = (NETRESOURCE *)renew0 buffer byte[size];
1350                   }
1351                   WNetCloseEnum(handle);
1352
1353                   for(c = 0; c<count; c++)
1354                   {
1355                      NETRESOURCE * resources;
1356                      DWORD countInGroup = 0xFFFFFFFF;
1357
1358                      size = 512 * sizeof(NETRESOURCE);
1359                      resources = (NETRESOURCE *)new0 byte[size];
1360
1361                      // Entire Network
1362                      WNetOpenEnum(RESOURCE_GLOBALNET, RESOURCETYPE_DISK, 0, &buffer[c], &handle);
1363                      while(true)
1364                      {
1365                         int returnCode = WNetEnumResource(handle, &countInGroup, resources, &size);
1366                         if(returnCode != ERROR_MORE_DATA)
1367                            break;
1368                         countInGroup = 0xFFFFFFFF;
1369                         resources = (NETRESOURCE *)renew0 resources byte[size];
1370                      }
1371                      WNetCloseEnum(handle);
1372
1373                      if(countInGroup)
1374                      {
1375                         file.stats.attribs = FileAttribs { isDirectory = true, isServer = true };
1376                         file.stats.size = 0;
1377                         file.stats.accessed = file.stats.created = file.stats.modified = 0;
1378
1379                         UTF16toUTF8Buffer(resources->lpRemoteName, file.path, MAX_LOCATION);
1380                         strlwr(file.path);
1381                         file.path[2] = (char)toupper(file.path[2]);
1382                         GetLastDirectory(file.path, file.name);
1383
1384                         result = file;
1385
1386                         d.resources = resources;
1387                         d.numResources = countInGroup;
1388                         d.resource = 1;
1389
1390                         d.workGroups = buffer;
1391                         d.numWorkGroups = count;
1392                         d.workGroup = c;
1393                         break;
1394                      }
1395                      else
1396                         delete resources;
1397                   }
1398                   if(c >= count && buffer) delete buffer;
1399                }
1400             }
1401 #else
1402             struct dirent *de;
1403             struct stat s;
1404
1405             d.d = opendir((path && path[0]) ? path : ".");
1406             if(d.d && (de = readdir(d.d)))
1407             {
1408                if(path[0])
1409                {
1410                   strcpy(file.path, path);
1411                   if(path[1])
1412                      strcat(file.path, DIR_SEPS);
1413                }
1414                strcpy(file.name,de->d_name);
1415                strcat(file.path, file.name);
1416                if(!stat(file.path, &s))
1417                {
1418                   file.stats.attribs = (s.st_mode&S_IFDIR) ? FileAttribs { isDirectory = true } : FileAttribs { isFile = true };
1419                   file.stats.size = (FileSize)s.st_size;
1420                   file.stats.accessed = s.st_atime;
1421                   file.stats.modified = s.st_mtime;
1422                   file.stats.created = s.st_ctime;
1423                }
1424                strcpy(d.name, path);
1425
1426                result = file;
1427             }
1428 #endif
1429          }
1430
1431          if(!result)
1432             delete d;
1433       }
1434       if(!result)
1435          delete file;
1436    }
1437    if(result)
1438    {
1439       while(result && !result.Validate(extensions))
1440          result = result.FindNext(extensions);
1441    }
1442    return result;
1443 }
1444
1445 private class FileDesc : struct
1446 {
1447    FileStats stats;
1448    char name[MAX_FILENAME];
1449    char path[MAX_LOCATION];
1450
1451    subclass(FileSystem) system;
1452    Dir dir;
1453
1454    bool Validate(char * extensions)
1455    {
1456       if(strcmp(name, "..") && strcmp(name, ".") && strcmp(name, ""))
1457       {
1458          if(extensions && !stats.attribs.isDirectory)
1459          {
1460             char extension[MAX_EXTENSION], compared[MAX_EXTENSION];
1461             int c;
1462
1463             GetExtension(name, extension);
1464             for(c = 0; extensions[c];)
1465             {
1466                int len = 0;
1467                char ch;
1468                for(;(ch = extensions[c]) && !IS_ALUNDER(ch); c++);
1469                for(;(ch = extensions[c]) &&  IS_ALUNDER(ch); c++)
1470                   compared[len++] = ch;
1471                compared[len] = '\0';
1472
1473                if(!strcmpi(extension, compared))
1474                   return true;
1475             }
1476          }
1477          else
1478             return true;
1479       }
1480       return false;
1481    }
1482
1483    FileDesc FindNext(char * extensions)
1484    {
1485       FileDesc result = null;
1486
1487       Dir d = dir;
1488
1489       name[0] = '.';
1490       name[1] = '\0';
1491       while(!Validate(extensions))
1492       {
1493          result = null;
1494
1495          if(system)
1496          {
1497             if(system.FindNext(this))
1498                result = this;
1499             else
1500                break;
1501          }
1502          else
1503          {
1504 #if defined(__WIN32__)
1505             if(!strcmp(d.name, "/"))
1506             {
1507                int c;
1508                uint drives = (uint)(uintptr)d.fHandle;
1509                for(c = 0; c<26; c++)
1510                {
1511                   if(drives & (1<<c))
1512                   {
1513                      char volume[MAX_FILENAME] = "";
1514                      int driveType;
1515                      uint16 _wpath[4];
1516                      uint16 _wvolume[MAX_FILENAME];
1517
1518                      stats.attribs = FileAttribs { isDirectory = true, isDrive = true };
1519                      stats.size = 0;
1520                      stats.accessed = stats.created = stats.modified = 0;
1521                      _wpath[0] = path[0] = (char)('A' + c);
1522                      _wpath[1] = path[1] = ':';
1523                      _wpath[2] = path[2] = '\\';
1524                      _wpath[3] = path[3] = 0;
1525                      driveType = GetDriveType(_wpath);
1526                      drives ^= (1<<c);
1527
1528                      switch(driveType)
1529                      {
1530                         case DRIVE_REMOVABLE: stats.attribs.isRemovable = true; break;
1531                         case DRIVE_REMOTE:    stats.attribs.isRemote = true;    break;
1532                         case DRIVE_CDROM:     stats.attribs.isCDROM = true;     break;
1533                      }
1534                      if(driveType == DRIVE_NO_ROOT_DIR)
1535                      {
1536                         uint16 remoteName[1024];
1537                         int status;
1538                         DWORD size = 1024;
1539                         _wpath[2] = 0;
1540
1541                         status = WNetGetConnection(_wpath, remoteName, &size);
1542                         if(status != ERROR_CONNECTION_UNAVAIL)
1543                            continue;
1544
1545                         _wpath[2] = '\\';
1546                         _wpath[3] = 0;
1547                      }
1548
1549                      if(driveType != DRIVE_REMOVABLE && driveType != DRIVE_REMOTE &&
1550                         GetVolumeInformation(_wpath, _wvolume, MAX_FILENAME - 1, null, null, null, null, 0))
1551                      {
1552                         UTF16toUTF8Buffer(_wvolume, volume, MAX_FILENAME);
1553                         path[2] = '\0';
1554                         sprintf(name, "%s [%s]", path, volume);
1555                      }
1556                      else
1557                      {
1558                         path[2] = '\0';
1559                         strcpy(name, path);
1560                      }
1561                      result = this;
1562                      break;
1563                   }
1564                }
1565                d.fHandle = (HANDLE)(uintptr) drives;
1566                break;
1567             }
1568             else if(d.name[0] != '\\' || d.name[1] != '\\' || strstr(d.name+2, "\\"))
1569             {
1570                WIN32_FIND_DATA winFile;
1571                if(FindNextFile(d.fHandle, &winFile))
1572                {
1573                   UTF16toUTF8Buffer(winFile.cFileName, name, MAX_FILENAME);
1574                   stats.attribs = FileAttribs { };
1575                   stats.attribs.isArchive   = (winFile.dwFileAttributes & FILE_ATTRIBUTE_ARCHIVE)   ? true : false;
1576                   stats.attribs.isHidden    = (winFile.dwFileAttributes & FILE_ATTRIBUTE_HIDDEN)    ? true : false;
1577                   stats.attribs.isReadOnly  = (winFile.dwFileAttributes & FILE_ATTRIBUTE_READONLY)  ? true : false;
1578                   stats.attribs.isSystem    = (winFile.dwFileAttributes & FILE_ATTRIBUTE_SYSTEM)    ? true : false;
1579                   stats.attribs.isTemporary = (winFile.dwFileAttributes & FILE_ATTRIBUTE_TEMPORARY) ? true : false;
1580                   stats.attribs.isDirectory = (winFile.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) ? true : false;
1581                   stats.attribs.isFile      = !(winFile.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY);
1582                   stats.size = winFile.nFileSizeLow;
1583
1584                   stats.accessed = Win32FileTimeToTimeStamp(&winFile.ftLastAccessTime);
1585                   stats.modified = Win32FileTimeToTimeStamp(&winFile.ftLastWriteTime);
1586                   stats.created  = Win32FileTimeToTimeStamp(&winFile.ftCreationTime);
1587
1588                   strcpy(path, d.name);
1589                   PathCat(path, name);
1590                   /*if(d.name[0])
1591                      strcat(path, DIR_SEPS);
1592                   strcat(path, name);*/
1593                   result = this;
1594                }
1595                else
1596                   break;
1597             }
1598             else
1599             {
1600                if(d.name[2])
1601                {
1602                   if(d.resource < d.numResources)
1603                   {
1604                      stats.attribs = FileAttribs { isDirectory = true, isShare = true };
1605                      stats.size = 0;
1606                      stats.accessed = stats.created = stats.modified = 0;
1607
1608                      UTF16toUTF8Buffer(d.resources[d.resource].lpRemoteName, path, MAX_LOCATION);
1609                      GetLastDirectory(path, name);
1610
1611                      result = this;
1612
1613                      d.resource++;
1614                   }
1615                   else
1616                   {
1617                      delete d.resources;
1618                      break;
1619                   }
1620                }
1621                else
1622                {
1623                   int c;
1624                   for(c = d.workGroup; c<d.numWorkGroups; c++)
1625                   {
1626                      if(c != d.workGroup)
1627                      {
1628                         DWORD countInGroup = 0xFFFFFFFF;
1629                         HANDLE handle;
1630                         NETRESOURCE * resources;
1631                         DWORD size = 512 * sizeof(NETRESOURCE);
1632
1633                         resources = (NETRESOURCE *)new0 byte[size];
1634                         // Entire Network
1635                         WNetOpenEnum(RESOURCE_GLOBALNET, RESOURCETYPE_DISK, 0, &d.workGroups[c], &handle);
1636                         while(true)
1637                         {
1638                            int returnCode = WNetEnumResource(handle, &countInGroup, resources, &size);
1639                            if(returnCode != ERROR_MORE_DATA)
1640                               break;
1641                            countInGroup = 0xFFFFFFFF;
1642                            resources = (NETRESOURCE *)renew0 resources byte[size];
1643
1644                         }
1645                         WNetCloseEnum(handle);
1646                         d.numResources = countInGroup;
1647                         d.resources = resources;
1648                         d.resource = 0;
1649                      }
1650
1651                      if(d.resource < d.numResources)
1652                      {
1653                         stats.attribs = FileAttribs { isDirectory = true, isServer = true };
1654                         stats.size = 0;
1655                         stats.accessed = stats.created = stats.modified = 0;
1656
1657                         UTF16toUTF8Buffer(d.resources[d.resource].lpRemoteName, path, MAX_LOCATION);
1658                         strlwr(path);
1659                         path[2] = (char)toupper(path[2]);
1660                         GetLastDirectory(path, name);
1661
1662                         result = this;
1663
1664                         d.resource++;
1665                         break;
1666                      }
1667                      else
1668                      {
1669                         if(d.resources)
1670                            delete d.resources;
1671                      }
1672                   }
1673                   d.workGroup = c;
1674                   if(d.workGroup == d.numWorkGroups && d.resource == d.numResources)
1675                   {
1676                      delete d.workGroups;
1677                      break;
1678                   }
1679                }
1680             }
1681 #else
1682             struct dirent *de;
1683             struct stat s;
1684
1685             de = readdir(d.d);
1686             if(de)
1687             {
1688                strcpy(name,de->d_name);
1689                strcpy(path, d.name);
1690                if(d.name[0] && d.name[1])
1691                   strcat(path, DIR_SEPS);
1692                strcat(path, name);
1693                if(!stat(path, &s))
1694                {
1695                   stats.attribs = FileAttribs { };
1696                   stats.attribs = (s.st_mode&S_IFDIR) ? FileAttribs { isDirectory = true } : FileAttribs { isFile = true };
1697                   stats.size = (FileSize)s.st_size;
1698                   stats.accessed = s.st_atime;
1699                   stats.modified = s.st_mtime;
1700                   stats.created = s.st_ctime;
1701                }
1702                result = this;
1703             }
1704             else
1705                break;
1706 #endif
1707          }
1708       }
1709       if(!result)
1710          CloseDir();
1711       return result;
1712    }
1713
1714    void CloseDir(void)
1715    {
1716       if(system)
1717          system.CloseDir(this);
1718       else
1719       {
1720          Dir d = dir;
1721          if(d)
1722          {
1723 #if defined(__WIN32__)
1724             if(d.fHandle && strcmp(d.name, "/"))
1725                FindClose(d.fHandle);
1726 #else
1727             closedir(d.d);
1728 #endif
1729             delete d;
1730          }
1731       }
1732       delete this;
1733    }
1734 }
1735
1736 public struct FileListing
1737 {
1738 public:
1739    char * directory;
1740    char * extensions;
1741
1742    bool Find()
1743    {
1744       if(desc)
1745          desc = desc.FindNext(extensions);
1746       else
1747          desc = FileFind(directory, extensions);
1748       if(desc)
1749          return true;
1750       return false;
1751    }
1752
1753    void Stop()
1754    {
1755       if(desc)
1756          desc.CloseDir();
1757       desc = null;
1758    }
1759
1760    property char * name { get { return (char *)(desc ? desc.name : null); } };
1761    property char * path { get { return (char *)(desc ? desc.path : null); } };
1762    property FileStats stats { get { value = desc ? desc.stats : FileStats { }; } };
1763
1764 private:
1765    FileDesc desc;
1766 };
1767 #endif
1768
1769 public File CreateTemporaryFile(char * tempFileName, char * template)
1770 {
1771 #ifndef ECERE_BOOTSTRAP // quick fix for now
1772    File f;
1773 #if defined(__unix__) || defined(__APPLE__)
1774    char buffer[MAX_FILENAME];
1775    int fd;
1776    strcpy(buffer, "/tmp/");
1777    strcat(buffer, template);
1778    //strcpy(buffer, template);
1779    strcat(buffer, "XXXXXX");
1780    // mktemp(buffer);
1781    fd = mkstemp(buffer);
1782    strcpy(tempFileName, buffer);
1783    f = { };
1784    f.output = f.input = fdopen(fd, "r+");
1785 #else
1786    char tempPath[MAX_LOCATION];
1787    GetTempPathA(MAX_LOCATION, tempPath);     // TODO: Patch this whole thing to support Unicode temp path
1788    GetTempFileNameA(tempPath, template, 0, tempFileName);
1789    f = FileOpen(tempFileName, readWrite);
1790 #endif
1791    return f;
1792 #endif
1793 }
1794
1795 #undef DeleteFile
1796
1797 public void CreateTemporaryDir(char * tempFileName, char * template)
1798 {
1799 #ifndef ECERE_BOOTSTRAP // quick fix for now
1800 #if defined(__unix__) || defined(__APPLE__)
1801    char buffer[MAX_FILENAME];
1802    strcpy(buffer, "/tmp/");
1803    strcat(buffer, template);
1804    //strcpy(buffer, template);
1805    strcat(buffer, "XXXXXX");
1806    // mkstemp(buffer);
1807    mkdtemp(buffer);
1808    strcpy(tempFileName, buffer);
1809 #else
1810    char tempPath[MAX_LOCATION];
1811    GetTempPathA(MAX_LOCATION, tempPath);     // TODO: Patch this whole thing to support Unicode temp path
1812    GetTempFileNameA(tempPath, template, 0, tempFileName);
1813    DeleteFile(tempFileName);
1814    MakeDir(tempFileName);
1815 #endif
1816 #endif
1817 }
1818
1819 public void MakeSlashPath(char * p)
1820 {
1821    FileFixCase(p);
1822 #ifdef WIN32
1823    ChangeCh(p, '\\', '/');
1824 #endif
1825 }
1826
1827 public void MakeSystemPath(char * p)
1828 {
1829    FileFixCase(p);
1830 }
1831
1832 public char * CopySystemPath(char * p)
1833 {
1834    char * d = CopyString(p);
1835    if(d)
1836       MakeSystemPath(d);
1837    return d;
1838 }
1839
1840 public char * CopyUnixPath(char * p)
1841 {
1842    char * d = CopyString(p);
1843    if(d)
1844       MakeSlashPath(d);
1845    return d;
1846 }
1847
1848 public char * GetSystemPathBuffer(char * d, char * p)
1849 {
1850    if(d != p)
1851       strcpy(d, p ? p : "");
1852    MakeSystemPath(d);
1853    return d;
1854 }
1855
1856 public char * GetSlashPathBuffer(char * d, char * p)
1857 {
1858    if(d != p)
1859       strcpy(d, p ? p : "");
1860    MakeSlashPath(d);
1861    return d;
1862 }