filespecutils.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:8k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #ifndef FILESPECUTILS_H
  36. #define FILESPECUTILS_H
  37. #include "hxstring.h"
  38. #include "hxbuffer.h"
  39. #include "filespec.h"
  40. class CHXFileSpecUtils
  41. {
  42. public:
  43. // disk utilities
  44. static HX_RESULT GetFreeSpaceOnDisk(const CHXDirSpecifier& volSpec, INT64& freeSpace);
  45. static HX_RESULT GetTotalSpaceOnDisk(const CHXDirSpecifier& volSpec, INT64& totalSpace);
  46. static BOOL IsDiskEjectable(const CHXDirSpecifier& volSpec);
  47. static BOOL IsDiskWritable(const CHXDirSpecifier& volSpec);
  48. // IsLocal returns TRUE if the file or directory is on a local volume
  49. // (not on a server)
  50. static BOOL IsDiskLocal(const CHXDirSpecifier& volSpec);
  51. // file/dir utilities
  52. static HX_RESULT GetFileSize(const CHXFileSpecifier& fileSpec, INT64& fSize);
  53. static HX_RESULT GetDirectorySize(const CHXDirSpecifier& dirSpec, BOOL shouldDescend, INT64& fSize);
  54. static BOOL FileExists(const CHXFileSpecifier& fileSpec); // returns TRUE only if exists & is a file
  55. static BOOL DirectoryExists(const CHXDirSpecifier& dirSpec); // returns TRUE only if exists & is a directory
  56. static HX_RESULT CreateDir(const CHXDirSpecifier& dirSpec);
  57. static HX_RESULT RemoveDir(const CHXDirSpecifier& dirSpec); // deletes an empty directory
  58. static HX_RESULT RemoveFile(const CHXFileSpecifier& fileSpec);
  59. #if defined(_MACINTOSH) || defined(_MAC_UNIX)
  60. // these should be implemented on other platforms too, eventually
  61. static HX_RESULT MakeFileReadOnly(const CHXFileSpecifier& fileSpec);
  62. static HX_RESULT MakeFileNotReadOnly(const CHXFileSpecifier& fileSpec);
  63. static HX_RESULT RenameMoveFile(CHXFileSpecifier& fileSpec, const char* pNewNameIfAny, const CHXDirSpecifier* pNewDirectoryIfAny);
  64. #endif
  65. // file read & write
  66. //
  67. // on Mac, the file spec may be updated when the file is written out, so it's not a const parameter
  68. static HX_RESULT ReadTextFile(const CHXFileSpecifier& fileSpec, CHXString& outStr);
  69. static HX_RESULT ReadBinaryFile(const CHXFileSpecifier& fileSpec, IHXBuffer*& pOutBuffer);
  70. static HX_RESULT WriteTextFile(CHXFileSpecifier& fileSpec, const CHXString& inStr, BOOL bReplaceExistingFile);
  71. static HX_RESULT WriteBinaryFile(CHXFileSpecifier& fileSpec, IHXBuffer* inBuffer, BOOL bReplaceExistingFile);
  72. // unique file name utilities
  73. //
  74. // These returns a file spec with a unique filename in the specified directory
  75. //
  76. // pszTemplate is of the form "filenameWILDCARD.ext", with the wildcard to
  77. //   be replaced by a 1-4 digit number greater than or equal to 2
  78. //   For example, "MyFile%%.txt" with the wildcard "%%" can become MyFile2.txt
  79. //
  80. // GetUniqueFileSpec checks if pszNameFirst is available and uses that; if the name
  81. //   is not available, it substitutes 2, 3, 4, etc. for the wildcard in the template
  82. //   to create a unique name.
  83. //   For example:  pszNameFirst="MyFile.txt" pszTemplate="MyFile_%%.txt" pszWildcard="%%"
  84. //
  85. // GetUniqueTempFileSpec tries with a random number initially, and increments that
  86. //   number until it has a unique name
  87. //
  88. // Note: all of these strings should come from resources to enable localizers to
  89. //       customize the creation of file names
  90. static CHXFileSpecifier GetUniqueFileSpec(const CHXDirSpecifier& locationSpec, 
  91. const char *pszNameFirst, 
  92. const char *pszTemplate, const char *pszWildcard);
  93. static CHXFileSpecifier GetUniqueTempFileSpec(const CHXDirSpecifier& locationSpec, 
  94. const char *pszTemplate, const char *pszWildcard);
  95. // temporary directory
  96. static CHXDirSpecifier GetSystemTempDirectory(void);
  97. // replace any illegal file/dir name characters; returns true if a change was made
  98. static BOOL MakeNameLegal(char *pszName);
  99. // application utilities
  100. static CHXFileSpecifier GetCurrentApplication(void);
  101. static CHXDirSpecifier GetCurrentApplicationDir(void);
  102. static CHXDirSpecifier GetAppDataDir(const char* szAppName);
  103. // Macintosh-specific utilities
  104. #if defined(_MACINTOSH) || defined(_MAC_UNIX)
  105. static FOURCC GetFileType(const CHXFileSpecifier& fileSpec);
  106. static CHXDirSpecifier MacFindFolder(short vRefNum, FolderType foldType);
  107. static CHXFileSpecifier SpecifyFileWithMacFindFolder(short vRefNum, FolderType foldType, const char *pszChildFile);
  108. static CHXDirSpecifier SpecifyFolderWithMacFindFolder(short vRefNum, FolderType foldType, const char *pszChildFolder);
  109. // Resolve will change the specifiers in place if they happened to point
  110. // to an alias file
  111. static HX_RESULT ResolveFileSpecifierAlias(CHXFileSpecifier& fileSpec);
  112. static HX_RESULT ResolveDirSpecifierAlias(CHXDirSpecifier& dirSpec);
  113. // MoveFileToTrash, MoveFolderToTrash
  114. // These move the file to the trash if possible, or else delete the file.
  115. static HX_RESULT MoveFileToTrash(const CHXFileSpecifier& fileSpec);
  116. static HX_RESULT MoveFolderToTrash(const CHXDirSpecifier& dirSpec);
  117. // MoveFileToCleaupAtStartup, MoveFolderToCleaupAtStartup
  118. // These move the file to the trash if possible, or else delete the file.
  119. // Non-const version updates the specifier after the file is moved
  120. static HX_RESULT MoveFileToCleanupAtStartup(const CHXFileSpecifier& fileSpec, BOOL bDeleteIfCantMove = TRUE);
  121. static HX_RESULT MoveFolderToCleanupAtStartup(const CHXDirSpecifier& dirSpec, BOOL bDeleteIfCantMove = TRUE);
  122. static HX_RESULT MoveFileToCleanupAtStartup(CHXFileSpecifier& fileSpec, BOOL bDeleteIfCantMove = TRUE);
  123. static HX_RESULT MoveFolderToCleanupAtStartup(CHXDirSpecifier& dirSpec, BOOL bDeleteIfCantMove = TRUE);
  124. // MoveFileToFolderWithRenaming, MoveFolderToFolderWithRenaming
  125. // These move the item to the target folder, renaming the item if necessary. For example,
  126. // if the file is called "filename" and the destination already has a "filename", the file
  127. // is renamed "filename_2".
  128. static HX_RESULT MoveFileToFolderWithRenaming(CHXFileSpecifier& fileSpec, const CHXDirSpecifier& targetSpec, BOOL bDeleteIfCantMove);
  129. static HX_RESULT MoveFolderToFolderWithRenaming(CHXDirSpecifier& dirSpec, const CHXDirSpecifier& targetSpec, BOOL bDeleteIfCantMove);
  130. #ifdef _DEBUG
  131. static void TestMacFileSpecUtils();
  132. #endif
  133. #endif // _MACINTOSH
  134. };
  135. #endif // FILESPECUTILS_H