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

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 FILESPECWIN_H
  36. #define FILESPECWIN_H
  37. #include "hxstring.h"
  38. class CHXFileSpecifier;
  39. class CHXDirSpecifier;
  40. // this utility class helps out the two classes below.  It breaks a path up into these components:
  41. //
  42. //  C:/dir1/dir2/dir3/file.ext
  43. //  ^ ^              ^^   ^^
  44. //
  45. // Each arrow above points to the start of a component.  The components are:
  46. //
  47. // volume
  48. // parent [path]
  49. // separator [note: this may be more than one character, for instance:  c:/dir1////file1.txt, which is equivalent to c:/dir1/file1.txt]
  50. // name [for a file, the filename, for a directory, the directory name
  51. // extension separator [I think this is always a single '.']
  52. // extension [note that even directories may have extensions].
  53. //
  54. // Here are some special cases that are handled:
  55. //
  56. // /dir1/dir2/  -- a path with no volume, and trailing slash.
  57. //
  58. //     volume: ""
  59. //     parent: "/dir1"
  60. //     separator: "/"
  61. //     name: "dir2"
  62. //     extension separator: ""
  63. //     extension: ""
  64. //
  65. // \hostnamedrive_1devfile1.
  66. //
  67. //     volume: "\hostname"
  68. //     parent: "drive_1dev"
  69. //     separator: ""
  70. //     name: "file1"
  71. //     extension separator: "."
  72. //     extension: ""
  73. //
  74. // C:bogus.txt -- relative path, no directory
  75. //
  76. //     volume: "C:"
  77. //     parent: ""
  78. //     separator: ""
  79. //     name: "bogus"
  80. //     extension separator: "."
  81. //     extension: "txt"
  82. //
  83. // 
  84. class CHXPathParser
  85. {
  86.     friend class CHXFileSpecifier;
  87.     friend class CHXDirSpecifier;
  88. private:
  89.     CHXPathParser();
  90.     CHXString GetPathName() const;
  91.     BOOL IsSet() const;
  92. void UnSet();
  93.     CHXPathParser &operator=(const CHXPathParser &other);
  94.     BOOL operator==(const CHXPathParser &other);
  95.     BOOL operator!=(const CHXPathParser &other);
  96.     void ParsePath(const char *psz);
  97.     CHXString GetSubstring(int nStart, int nLength) const;
  98.     CHXString GetPersistentString() const;
  99.     void SetFromPersistentString(const char *pBuffer);
  100.     CHXString m_path;
  101.     BOOL m_bEmpty;
  102.     BOOL m_bIsValid;
  103.     BOOL m_bCannotBeFile;
  104.     BOOL m_bAbsolute;
  105.     int m_nVolumeLength;
  106.     int m_nParentLength;
  107.     int m_nSeparatorLength;
  108.     int m_nNameLength;
  109.     int m_nExtensionSeparatorLength;
  110.     int m_nExtensionLength;
  111. };
  112. #endif // FILESPECWIN_H