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

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 _MACHXDIR_H
  36. #define _MACHXDIR_H
  37. #include"hxbasedir.h"
  38. #ifdef _CARBON
  39. #include "filespec.h"
  40. #endif
  41. #ifdef _MAC_MACHO
  42. #define OS_SEPARATOR_CHAR '/'
  43. #define OS_SEPARATOR_STRING "/"
  44. #else
  45. #define OS_SEPARATOR_CHAR ':'
  46. #define OS_SEPARATOR_STRING ":"
  47. #endif
  48. class CHXDirectory : public XHXDirectory
  49. {
  50. public:
  51.     CHXDirectory();
  52.     ~CHXDirectory();
  53.     virtual void SetPath(const char* szPath);
  54. /* set the path to something in the temporary items directory */
  55.     virtual BOOL SetTempPath(HXXHANDLE hpsHandle, const char* szRelPath);
  56.     /* Creates directory. */
  57.     virtual BOOL Create();
  58.     /* Checks if directory exists. */    
  59.     virtual BOOL IsValid();
  60.     /* Destroys directory. */
  61.     virtual BOOL Destroy(BOOL bRemoveContents);
  62.     /* Deletes file. */
  63.     virtual BOOL DeleteFile(const char* szRelPath);
  64.     /* Sets itself to current directory. */
  65.     virtual BOOL SetCurrentDir();
  66.     /* Makes itself a current directory. */
  67.     virtual BOOL MakeCurrentDir();
  68.     /* Checks if directory is on CD or removable drive. */    
  69.     virtual BOOL IsRemovable();
  70.     /* Starts enumeration process. */
  71.     virtual FSOBJ FindFirst(const char* szPattern, char* szPath, UINT16 nSize);
  72.     /* Continues enumeration process. */
  73.     virtual FSOBJ FindNext(char* szPath, UINT16 nSize);
  74.     /* renames a file */
  75.     virtual UINT32 Rename(const char* szOldName, const char* szNewName);
  76.     
  77.     /* moves or copies (depending on bMove) file */
  78.     static BOOL MoveRename(const char* szSrcName, const char* szDestName, BOOL bMove=TRUE);
  79.     /* gets this directory's dirID */
  80.     virtual OSErr GetDirID(long& dirID);
  81. /* gets a FSSpec for this directory */
  82.     virtual FSSpec GetFSSpec(void)
  83. {
  84. #ifdef _CARBON
  85. return (FSSpec) CHXDirSpecifier(m_strPath);
  86. #else
  87. return m_dirSpec;
  88. #endif
  89. }
  90. #if defined(_DEBUG) && defined(_CARBON)
  91. static void TestHXDir();
  92. #endif
  93. protected:
  94. #ifdef _CARBON
  95. FSIterator m_FSIterator;
  96. CHXString m_strFindPattern;
  97. #else
  98. // To keep the directory object valid even if the user renames
  99. // the drive or the parent folders, we rely on the FSSpec
  100. // rather than the path name internally.  This should always
  101. // be updated when 
  102. //
  103. // However, it's possible for a path to be set which can't
  104. // be represented in a FSSpec because the parent folders
  105. // don't yet exist.
  106.     FSSpec m_dirSpec; // same directory specified in m_strPath
  107.    
  108. FSSpec m_fileSpec;
  109.     ULONG32 m_nIndex;
  110.     char* m_pNextFileName;
  111.     char* m_pCurrentFileName;
  112.     char*  m_pPattern;
  113.     INT16 m_nDefaultVRefNum;
  114.     UINT16 m_nDirItems;
  115.     virtual BOOL EnsureValidPathSpec();
  116. #endif
  117.     /* Deletes empty directory. */
  118.     virtual BOOL DeleteDirectory();
  119.     
  120.     /* If the m_dirSpec isn't properly set because SetPath sets it
  121.        to something so speculative that there's no parent folder,
  122.        we can use this function to later ensure that it's valid. */
  123.        
  124. };
  125. #endif // _MACHXDIR_H