GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Cpl_Io_File_Api_h_
2#define Cpl_Io_File_Api_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
16#include "colony_map.h"
17#include "Cpl/Text/FString.h"
18#include "Cpl/Type/Traverser.h"
19#include <time.h>
20
21
22///
23namespace Cpl { namespace Io { namespace File {
24
25/// The platform's native directory separator
26#define CPL_IO_FILE_NATIVE_DIR_SEP CPL_IO_FILE_NATIVE_DIR_SEP_MAP
27
28
29/// The size, in bytes, of the maximum allowed path/file name
30#define CPL_IO_FILE_MAX_NAME CPL_IO_FILE_MAX_NAME_MAP
31
32
33/** This typed FString is guaranteed to be large enough to hold the
34 maximum allowed file system name for the native OS/Platform
35 */
37
38
39
40/** This concrete class defines the interface for handling and manipulating
41 entries in the System's File system.
42
43 The directory separator is ALWAYS '/'. If necessary it will be internally
44 converted to the OS/platform specific delimiter. Directory paths can
45 contain drive designators, but ONLY if the native OS supports it.
46 */
47class Api
48{
49public:
50 /// Standardized Directory separator
51 static inline char directorySep() { return '/'; }
52
53 /// Returns the native Directory separator
54 static inline char nativeDirectorySep() { return CPL_IO_FILE_NATIVE_DIR_SEP; }
55
56
57public:
58 /** Extracts the drive letter from the complete name. The drive letter
59 will NOT contain the drive separator character.
60 */
61 static inline void splitDrive( const char* fsEntryName,
62 Cpl::Text::String& drive,
63 char driveSeparator=':'
64 )
65 { split( fsEntryName, 0, &drive, 0,0,0,0, directorySep(), '.', driveSeparator); }
66
67
68 /// Extracts the full path (drive+path) from the complete name.
69 static inline void splitFullpath( const char* fsEntryName,
70 Cpl::Text::String& fullpath,
71 char dirSeparator=directorySep(),
72 char extensionSeparator='.',
73 char driveSeparator=':'
74 )
75 { split( fsEntryName, &fullpath, 0,0,0,0,0, dirSeparator, extensionSeparator, driveSeparator ); }
76
77 /// Extracts the path (no drive) from the complete name.
78 static inline void splitPath( const char* fsEntryName,
79 Cpl::Text::String& path,
80 char dirSeparator=directorySep(),
81 char extensionSeparator='.',
82 char driveSeparator=':'
83 )
84 { split( fsEntryName, 0,0, &path, 0,0,0, dirSeparator, extensionSeparator, driveSeparator ); }
85
86
87 /// Extracts the full file name (name+extension) from the complete name.
88 static inline void splitFullname( const char* fsEntryName,
89 Cpl::Text::String& fullname,
90 char dirSeparator=directorySep(),
91 char extensionSeparator='.',
92 char driveSeparator=':'
93 )
94 { split( fsEntryName, 0,0,0, &fullname, 0,0, dirSeparator, extensionSeparator, driveSeparator ); }
95
96 /// Extracts the file name from the complete name.
97 static inline void splitName( const char* fsEntryName,
98 Cpl::Text::String& name,
99 char dirSeparator=directorySep(),
100 char extensionSeparator='.',
101 char driveSeparator=':'
102 )
103 { split( fsEntryName, 0,0,0,0, &name, 0, dirSeparator, extensionSeparator, driveSeparator ); }
104
105
106 /// Extracts the file extension from the complete name.
107 static inline void splitExtension( const char* fsEntryName,
108 Cpl::Text::String& extension,
109 char dirSeparator=directorySep(),
110 char extensionSeparator='.',
111 char driveSeparator=':'
112 )
113 { split( fsEntryName, 0,0,0,0,0, &extension, dirSeparator, extensionSeparator, driveSeparator ); }
114
115
116
117 /// Extracts the full path and name from the complete name.
118 static inline void splitFullpathFullName( const char* fsEntryName,
119 Cpl::Text::String& fullpath,
120 Cpl::Text::String& fullname,
121 char dirSeparator=directorySep(),
122 char extensionSeparator='.',
123 char driveSeparator=':'
124 )
125 { split( fsEntryName, &fullpath, 0,0, &fullname, 0,0, dirSeparator, extensionSeparator, driveSeparator ); }
126
127
128 /** This method breaks the specified File System Entry name into it's
129 individual components. If the specific component is not
130 need, then specify 0 as the argument and it will be skipped.
131 The fullPath argument contains the drive+path. Path only contains
132 the path. The fullName argument contains the file name+extension.
133 Name only contains the file name. On return, fullPath string (if
134 specified and drive exists) will contain the driver separator. The
135 drive string will NOT 'include' the drive separator. The fullName
136 parameter will contain the extensionSeperator. The name and
137 extension will NOT 'include' the extensionSeperator.
138
139 Note: 'fullPath' and 'path' WILL contain the trailing directory
140 separator.
141 */
142 static void split( const char* fsEntryName,
143 Cpl::Text::String* fullPath,
144 Cpl::Text::String* drive,
145 Cpl::Text::String* path,
146 Cpl::Text::String* fullName,
147 Cpl::Text::String* name,
148 Cpl::Text::String* extension,
149 char dirSeparator = directorySep(),
150 char extensionSeparator = '.',
151 char driveSeparator = ':'
152 );
153
154
155
156public:
157 /** This method expands the relative path name in 'relPath' to its
158 'absPath'. Returns true if successful, else false if an error
159 occurred (bad relative path, not enough buffer space to hold
160 the complete path, etc.)
161 */
162 static bool canonicalPath( const char* relPath, Cpl::Text::String& absPath );
163
164 /** This method returns the canonical/absolute path of the current
165 working directory. Returns true if successful, else false if
166 an error occurred (not enough buffer space to hold the path, etc.).
167 */
168 static bool getCwd( Cpl::Text::String& cwd );
169
170
171public:
172 /** Returns the file system entry name in its in native format. The scope
173 of the returned value is limited, i.e. the value needs to be
174 consumed BEFORE any other call to this interface and/or methods
175 in the Cpl::Io::File* namespaces. Note: This method IS thread safe
176 in that each thread has it own internal storage that is used for
177 the translation.
178 */
179 static const char* getNative( const char* fsEntryName );
180
181 /** Returns the file system entry name in the 'Standard' format. The scope
182 of the returned value is limited, i.e. the value needs to be
183 consumed BEFORE any other call to this interface and/or methods
184 in the Cpl::Io::File* namespaces. Note: This method IS thread safe
185 in that each thread has it own internal storage that is used for
186 the translation.
187 */
188 static const char* getStandard( const char* fsEntryName );
189
190 /** This method converts the DOS directory separator to the UNIX
191 directory separator. The scope of the returned value is limited, i.e.
192 the value needs to be consumed BEFORE any other call to this
193 interface and/or methods in the Cpl::Io::File* namespaces. Note:
194 This method IS thread safe in that each thread has it own internal
195 storage that is used for the translation.
196 */
197 static const char* dos2unix( const char* fsEntryName );
198
199 /** This method converts the UNIX directory separator to the
200 DOS directory separator. The scope of the returned value is limited,
201 i.e. the value needs to be consumed BEFORE any other call to this
202 interface and/or methods in the Cpl::Io::File* namespaces. Note: This
203 method IS thread safe in that each thread has it own internal storage
204 that is used for the translation.
205 */
206 static const char* unix2dos( const char* fsEntryName );
207
208
209public:
210 /** Returns true if the File Entry exists physically exists
211 in the OS's file system.
212 */
213 static bool exists( const char* fsEntryName );
214
215 /// Returns true if the File Entry is a file.
216 static bool isFile( const char* fsEntryName );
217
218 /// Returns true if the File Entry is a directory
219 static bool isDirectory( const char* fsEntryName );
220
221 /// Return true if the user has read permission for the file system entry
222 static bool isReadable( const char* fsEntryName );
223
224 /// Return true if the user has write permission for the file system entry
225 static bool isWriteable( const char* fsEntryName );
226
227 /** Returns the size, in bytes, of the file. If the File Entry is not
228 a file or an error occurs, then 0 is returned.
229 */
230 static unsigned long size( const char* fsEntryName );
231
232 /** Returns the time/date the file entry was last modified. If an error
233 occurred, then ((time_t)-1) is returned.
234 */
235 static time_t timeModified( const char* fsEntryName );
236
237
238public:
239 /// This data structure defines status attributes for a file system entry
240 struct Info
241 {
242 /// Size, in bytes, of the file entry
243 unsigned long m_size;
244
245 /// Time the file entry was last modified/written
246 time_t m_mtime;
247
248 /// True if the file entry is readable by the application
250
251 /// True if the file entry is writable by the application
253
254 /// True if the file entry is a directory
256
257 /// True if the file entry is a file
259 };
260
261
262 /** Returns information about the file system entry. If there is any
263 error, the function returns false; else true is returned.
264 */
265 static bool getInfo( const char* fsEntryName, Info& infoOut );
266
267
268public:
269 /** Creates the 'fileName' as an empty file. The parent directory must
270 exist. Returns true if successful.
271 */
272 static bool createFile( const char* fileName );
273
274 /** Creates the 'dirName' as a directory. The parent directory must
275 exist. Returns true if successful.
276 */
277 static bool createDirectory( const char* dirName );
278
279
280public:
281 /** Renames the file system entry name in the OS's file system. NOTE: This
282 is NOT a general purpose 'move' that can change the path as well
283 as the name. This method only effects the entry's name ->no changes
284 to its path is made. Returns true if successful.
285 */
286 static bool renameInPlace( const char* oldName, const char* newName );
287
288 /** Moves and/or renames the specified file. The method returns true if
289 successful; else false is returned. When false is returned the state
290 of the 'srcName' and 'dstName' files is undetermined (more specifically
291 the state of files of failed moveFile() command is platform specific).
292
293 NOTE: This method can NOT be used to move directories.
294 */
295 static bool moveFile( const char* oldFileName, const char* newFileName );
296
297 /** Deletes the file system entry from the OS's file system. If the entry
298 is an directory, the directory must be empty before it is deleted.
299 Returns true if successful.
300 */
301 static bool remove( const char* fsEntryName );
302
303 /** Copies the context of the 'srcName' file to the specified 'dstName'
304 file. Returns true if successful. NOTE: Obviously this method will
305 fail if both names are NOT files.
306 */
307 static bool copyFile( const char* srcName, const char* dstName );
308
309 /** Appends the context of the 'srcName' file to the specified 'dstName'
310 file. Returns true if successful. NOTE: Obviously this method will
311 fail if both names are NOT files.
312 */
313 static bool appendFile( const char* srcName, const char* destFile );
314
315
316public:
317 /** This abstract class defines the client interface for walking
318 the contents of a directory, i.e. defines the callback method for
319 when walking/traversing the entries in a directory
320 */
322 {
323 public:
324 /// Virtual Destructor
326
327 public:
328 /** This method is called once for ever item in the "traversee's"
329 list. The return code from the method is used by the traverser
330 to continue the traversal (eCONTINUE), or abort the traversal
331 (eABORT).
332 */
333 virtual Cpl::Type::Traverser::Status_T item( const char* currentParent,
334 const char* fsEntryName,
335 Api::Info& entryInfo ) = 0;
336 };
337
338
339 /** This method allows the caller to walk the contents of the 'dirToList'
340 directory (assuming the entry is a directory). The default behavior is
341 to list only the current directory. The Caller can override the depth
342 of the traversal. Also, by default only the file name without its path
343 is returned. The caller can optionally have the traverse call only
344 return the name of files (omitting any directory names found) OR names
345 of directories (omitting any file names found). Returns true when
346 successfully and the entire traversal complete; else false is return if
347 their is an error (e.g. 'dirToList' is a file or does not exist) or the
348 'walker' aborted the traversal.
349
350 NOTE: The is no guaranteed order to the traversal, only that all items
351 per the specified depth will be traversed.
352
353 WARNING: On most platforms, the underlying OS calls dynamically
354 allocate memory. The OS clean-up after itself but there still
355 is the risk of failure do to lack of memory. Memory failures
356 are handled silently - but will not crash traversal.
357
358 WARNING: Be careful when recursing into subdirectories. There are
359 typically OS limits on how many directories may be 'opened'.
360 Extremely deep directory trees run the risk of exceeding these
361 limits.
362
363 */
364 static bool walkDirectory( const char* dirToList,
365 DirectoryWalker& callback,
366 int depth =1,
367 bool filesOnly =false,
368 bool dirsOnly =false
369 );
370
371
372protected:
373 /// Helper method. Returns an internal work buffer large enough to 'max path'
375
376};
377
378
379
380}; // end namespaces
381};
382};
383#endif // end header latch
384
#define CPL_IO_FILE_NATIVE_DIR_SEP
The platform's native directory separator.
Definition Api.h:26
This abstract class defines the client interface for walking the contents of a directory,...
Definition Api.h:322
virtual ~DirectoryWalker()
Virtual Destructor.
Definition Api.h:325
virtual Cpl::Type::Traverser::Status_T item(const char *currentParent, const char *fsEntryName, Api::Info &entryInfo)=0
This method is called once for ever item in the "traversee's" list.
This concrete class defines the interface for handling and manipulating entries in the System's File ...
Definition Api.h:48
static bool appendFile(const char *srcName, const char *destFile)
Appends the context of the 'srcName' file to the specified 'dstName' file.
static char nativeDirectorySep()
Returns the native Directory separator.
Definition Api.h:54
static bool remove(const char *fsEntryName)
Deletes the file system entry from the OS's file system.
static bool renameInPlace(const char *oldName, const char *newName)
Renames the file system entry name in the OS's file system.
static time_t timeModified(const char *fsEntryName)
Returns the time/date the file entry was last modified.
static bool canonicalPath(const char *relPath, Cpl::Text::String &absPath)
This method expands the relative path name in 'relPath' to its 'absPath'.
bool m_writeable
True if the file entry is writable by the application.
Definition Api.h:252
static void splitFullpathFullName(const char *fsEntryName, Cpl::Text::String &fullpath, Cpl::Text::String &fullname, char dirSeparator=directorySep(), char extensionSeparator='.', char driveSeparator=':')
Extracts the full path and name from the complete name.
Definition Api.h:118
static bool copyFile(const char *srcName, const char *dstName)
Copies the context of the 'srcName' file to the specified 'dstName' file.
static bool isWriteable(const char *fsEntryName)
Return true if the user has write permission for the file system entry.
bool m_readable
True if the file entry is readable by the application.
Definition Api.h:249
unsigned long m_size
Size, in bytes, of the file entry.
Definition Api.h:243
static void splitExtension(const char *fsEntryName, Cpl::Text::String &extension, char dirSeparator=directorySep(), char extensionSeparator='.', char driveSeparator=':')
Extracts the file extension from the complete name.
Definition Api.h:107
static void splitDrive(const char *fsEntryName, Cpl::Text::String &drive, char driveSeparator=':')
Extracts the drive letter from the complete name.
Definition Api.h:61
static void splitName(const char *fsEntryName, Cpl::Text::String &name, char dirSeparator=directorySep(), char extensionSeparator='.', char driveSeparator=':')
Extracts the file name from the complete name.
Definition Api.h:97
static void split(const char *fsEntryName, Cpl::Text::String *fullPath, Cpl::Text::String *drive, Cpl::Text::String *path, Cpl::Text::String *fullName, Cpl::Text::String *name, Cpl::Text::String *extension, char dirSeparator=directorySep(), char extensionSeparator='.', char driveSeparator=':')
This method breaks the specified File System Entry name into it's individual components.
static bool isDirectory(const char *fsEntryName)
Returns true if the File Entry is a directory.
static bool walkDirectory(const char *dirToList, DirectoryWalker &callback, int depth=1, bool filesOnly=false, bool dirsOnly=false)
This method allows the caller to walk the contents of the 'dirToList' directory (assuming the entry i...
static char directorySep()
Standardized Directory separator.
Definition Api.h:51
static const char * getStandard(const char *fsEntryName)
Returns the file system entry name in the 'Standard' format.
static bool isReadable(const char *fsEntryName)
Return true if the user has read permission for the file system entry.
static Cpl::Text::String & getWorkBuffer(void)
Helper method. Returns an internal work buffer large enough to 'max path'.
static void splitFullname(const char *fsEntryName, Cpl::Text::String &fullname, char dirSeparator=directorySep(), char extensionSeparator='.', char driveSeparator=':')
Extracts the full file name (name+extension) from the complete name.
Definition Api.h:88
static const char * getNative(const char *fsEntryName)
Returns the file system entry name in its in native format.
static bool getInfo(const char *fsEntryName, Info &infoOut)
Returns information about the file system entry.
static bool moveFile(const char *oldFileName, const char *newFileName)
Moves and/or renames the specified file.
static bool exists(const char *fsEntryName)
Returns true if the File Entry exists physically exists in the OS's file system.
static void splitPath(const char *fsEntryName, Cpl::Text::String &path, char dirSeparator=directorySep(), char extensionSeparator='.', char driveSeparator=':')
Extracts the path (no drive) from the complete name.
Definition Api.h:78
bool m_isFile
True if the file entry is a file.
Definition Api.h:258
static void splitFullpath(const char *fsEntryName, Cpl::Text::String &fullpath, char dirSeparator=directorySep(), char extensionSeparator='.', char driveSeparator=':')
Extracts the full path (drive+path) from the complete name.
Definition Api.h:69
static const char * unix2dos(const char *fsEntryName)
This method converts the UNIX directory separator to the DOS directory separator.
static bool createFile(const char *fileName)
Creates the 'fileName' as an empty file.
static const char * dos2unix(const char *fsEntryName)
This method converts the DOS directory separator to the UNIX directory separator.
time_t m_mtime
Time the file entry was last modified/written.
Definition Api.h:246
bool m_isDir
True if the file entry is a directory.
Definition Api.h:255
static bool getCwd(Cpl::Text::String &cwd)
This method returns the canonical/absolute path of the current working directory.
static bool createDirectory(const char *dirName)
Creates the 'dirName' as a directory.
static bool isFile(const char *fsEntryName)
Returns true if the File Entry is a file.
static unsigned long size(const char *fsEntryName)
Returns the size, in bytes, of the file.
This data structure defines status attributes for a file system entry.
Definition Api.h:241
This template class represents a NULL terminated string of a specific length.
Definition FString.h:38
This abstract class defines the operations that can be before on a NULL terminated string.
Definition String.h:40
Status_T
Return codes (for the callback method) that determine if the traversal should continue.
Definition Traverser.h:32
Cpl::Text::FString< CPL_IO_FILE_MAX_NAME > NameString
This typed FString is guaranteed to be large enough to hold the maximum allowed file system name for ...
Definition Api.h:36
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20