filespecutils.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:9k
源码类别:

Symbian

开发平台:

Visual C++

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