Initial revision
[swftools.git] / pdf2swf / xpdf / gfile.h
1 //========================================================================
2 //
3 // gfile.h
4 //
5 // Miscellaneous file and directory name manipulation.
6 //
7 // Copyright 1996 Derek B. Noonburg
8 //
9 //========================================================================
10
11 #ifndef GFILE_H
12 #define GFILE_H
13
14 #include <stdio.h>
15 #include <stdlib.h>
16 #include <stddef.h>
17 #include "../../config.h"
18 #if defined(WIN32)
19 #  include <sys/stat.h>
20 #  ifdef FPTEX
21 #    include <win32lib.h>
22 #  else
23 #    include <windows.h>
24 #  endif
25 #elif defined(ACORN)
26 #elif defined(MACOS)
27 #  include <ctime.h>
28 #else
29 #  include <unistd.h>
30 #  include <sys/types.h>
31 #  ifdef VMS
32 #    include "vms_dirent.h"
33 #  elif HAVE_DIRENT_H
34 #    include <dirent.h>
35 #    define NAMLEN(d) strlen((d)->d_name)
36 #  else
37 #    define dirent direct
38 #    define NAMLEN(d) (d)->d_namlen
39 #    if HAVE_SYS_NDIR_H
40 #      include <sys/ndir.h>
41 #    endif
42 #    if HAVE_SYS_DIR_H
43 #      include <sys/dir.h>
44 #    endif
45 #    if HAVE_NDIR_H
46 #      include <ndir.h>
47 #    endif
48 #  endif
49 #endif
50 #include "gtypes.h"
51
52 class GString;
53
54 //------------------------------------------------------------------------
55
56 // Get home directory path.
57 extern GString *getHomeDir();
58
59 // Get current directory.
60 extern GString *getCurrentDir();
61
62 // Append a file name to a path string.  <path> may be an empty
63 // string, denoting the current directory).  Returns <path>.
64 extern GString *appendToPath(GString *path, char *fileName);
65
66 // Grab the path from the front of the file name.  If there is no
67 // directory component in <fileName>, returns an empty string.
68 extern GString *grabPath(char *fileName);
69
70 // Is this an absolute path or file name?
71 extern GBool isAbsolutePath(char *path);
72
73 // Make this path absolute by prepending current directory (if path is
74 // relative) or prepending user's directory (if path starts with '~').
75 GString *makePathAbsolute(GString *path);
76
77 // Get the modification time for <fileName>.  Returns 0 if there is an
78 // error.
79 time_t getModTime(char *fileName);
80
81 // Create a temporary file and open it for writing.  If <ext> is not
82 // NULL, it will be used as the file name extension.  Returns both the
83 // name and the file pointer.  For security reasons, all writing
84 // should be done to the returned file pointer; the file may be
85 // reopened later for reading, but not for writing.  The <mode> string
86 // should be "w" or "wb".  Returns true on success.
87 GBool openTempFile(GString **name, FILE **f, char *mode, char *ext);
88
89 //------------------------------------------------------------------------
90 // GDir and GDirEntry
91 //------------------------------------------------------------------------
92
93 class GDirEntry {
94 public:
95
96   GDirEntry(char *dirPath, char *name1, GBool doStat);
97   ~GDirEntry();
98   GString *getName() { return name; }
99   GBool isDir() { return dir; }
100
101 private:
102
103   GString *name;                // dir/file name
104   GBool dir;                    // is it a directory?
105 };
106
107 class GDir {
108 public:
109
110   GDir(char *name, GBool doStat1 = gTrue);
111   ~GDir();
112   GDirEntry *getNextEntry();
113   void rewind();
114
115 private:
116
117   GString *path;                // directory path
118   GBool doStat;                 // call stat() for each entry?
119 #if defined(WIN32)
120   WIN32_FIND_DATA ffd;
121   HANDLE hnd;
122 #elif defined(ACORN)
123 #elif defined(MACOS)
124 #else
125   DIR *dir;                     // the DIR structure from opendir()
126 #ifdef VMS
127   GBool needParent;             // need to return an entry for [-]
128 #endif
129 #endif
130 };
131
132 #endif