1#ifndef Cpl_Io_File_Api_h_
2#define Cpl_Io_File_Api_h_
16#include "colony_map.h"
23namespace Cpl {
namespace Io {
namespace File {
26#define CPL_IO_FILE_NATIVE_DIR_SEP CPL_IO_FILE_NATIVE_DIR_SEP_MAP
30#define CPL_IO_FILE_MAX_NAME CPL_IO_FILE_MAX_NAME_MAP
63 char driveSeparator=
':'
72 char extensionSeparator=
'.',
73 char driveSeparator=
':'
75 {
split( fsEntryName, &fullpath, 0,0,0,0,0, dirSeparator, extensionSeparator, driveSeparator ); }
78 static inline void splitPath(
const char* fsEntryName,
81 char extensionSeparator=
'.',
82 char driveSeparator=
':'
84 {
split( fsEntryName, 0,0, &path, 0,0,0, dirSeparator, extensionSeparator, driveSeparator ); }
91 char extensionSeparator=
'.',
92 char driveSeparator=
':'
94 {
split( fsEntryName, 0,0,0, &fullname, 0,0, dirSeparator, extensionSeparator, driveSeparator ); }
97 static inline void splitName(
const char* fsEntryName,
100 char extensionSeparator=
'.',
101 char driveSeparator=
':'
103 {
split( fsEntryName, 0,0,0,0, &name, 0, dirSeparator, extensionSeparator, driveSeparator ); }
110 char extensionSeparator=
'.',
111 char driveSeparator=
':'
113 {
split( fsEntryName, 0,0,0,0,0, &extension, dirSeparator, extensionSeparator, driveSeparator ); }
122 char extensionSeparator=
'.',
123 char driveSeparator=
':'
125 {
split( fsEntryName, &fullpath, 0,0, &fullname, 0,0, dirSeparator, extensionSeparator, driveSeparator ); }
142 static void split(
const char* fsEntryName,
150 char extensionSeparator =
'.',
151 char driveSeparator =
':'
179 static const char*
getNative(
const char* fsEntryName );
197 static const char*
dos2unix(
const char* fsEntryName );
206 static const char*
unix2dos(
const char* fsEntryName );
213 static bool exists(
const char* fsEntryName );
216 static bool isFile(
const char* fsEntryName );
230 static unsigned long size(
const char* fsEntryName );
295 static bool moveFile(
const char* oldFileName,
const char* newFileName );
301 static bool remove(
const char* fsEntryName );
307 static bool copyFile(
const char* srcName,
const char* dstName );
313 static bool appendFile(
const char* srcName,
const char* destFile );
334 const char* fsEntryName,
367 bool filesOnly =
false,
#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