file.h
上传用户:hzhsqp
上传日期:2007-01-06
资源大小:1600k
文件大小:22k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * file.h
  3.  *
  4.  * Operating System file I/O channel class.
  5.  *
  6.  * Portable Windows Library
  7.  *
  8.  * Copyright (c) 1993-1998 Equivalence Pty. Ltd.
  9.  *
  10.  * The contents of this file are subject to the Mozilla Public License
  11.  * Version 1.0 (the "License"); you may not use this file except in
  12.  * compliance with the License. You may obtain a copy of the License at
  13.  * http://www.mozilla.org/MPL/
  14.  *
  15.  * Software distributed under the License is distributed on an "AS IS"
  16.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
  17.  * the License for the specific language governing rights and limitations
  18.  * under the License.
  19.  *
  20.  * The Original Code is Portable Windows Library.
  21.  *
  22.  * The Initial Developer of the Original Code is Equivalence Pty. Ltd.
  23.  *
  24.  * Portions are Copyright (C) 1993 Free Software Foundation, Inc.
  25.  * All Rights Reserved.
  26.  *
  27.  * Contributor(s): ______________________________________.
  28.  *
  29.  * $Log: file.h,v $
  30.  * Revision 1.33  2000/07/09 14:05:46  robertj
  31.  * Added file share options.
  32.  *
  33.  * Revision 1.32  1999/06/13 13:54:07  robertj
  34.  * Added PConsoleChannel class for access to stdin/stdout/stderr.
  35.  *
  36.  * Revision 1.31  1999/06/09 02:05:20  robertj
  37.  * Added ability to open file as standard input, output and error streams.
  38.  *
  39.  * Revision 1.30  1999/03/09 02:59:49  robertj
  40.  * Changed comments to doc++ compatible documentation.
  41.  *
  42.  * Revision 1.29  1999/02/16 08:07:11  robertj
  43.  * MSVC 6.0 compatibility changes.
  44.  *
  45.  * Revision 1.28  1998/09/23 06:20:35  robertj
  46.  * Added open source copyright license.
  47.  *
  48.  * Revision 1.27  1995/07/31 12:15:43  robertj
  49.  * Removed PContainer from PChannel ancestor.
  50.  *
  51.  * Revision 1.26  1995/06/17 11:12:33  robertj
  52.  * Documentation update.
  53.  *
  54.  * Revision 1.25  1995/04/22 00:43:57  robertj
  55.  * Added Move() function and changed semantics of Rename().
  56.  * Changed all file name strings to PFilePath objects.
  57.  *
  58.  * Revision 1.24  1995/03/14 12:41:23  robertj
  59.  * Updated documentation to use HTML codes.
  60.  *
  61.  * Revision 1.23  1995/03/12  04:37:13  robertj
  62.  * Moved GetHandle() function from PFile to PChannel.
  63.  *
  64.  * Revision 1.22  1995/01/14  06:22:11  robertj
  65.  * Documentation
  66.  *
  67.  * Revision 1.21  1994/12/21  11:52:54  robertj
  68.  * Documentation and variable normalisation.
  69.  *
  70.  * Revision 1.20  1994/08/23  11:32:52  robertj
  71.  * Oops
  72.  *
  73.  * Revision 1.19  1994/08/22  00:46:48  robertj
  74.  * Added pragma fro GNU C++ compiler.
  75.  *
  76.  * Revision 1.18  1994/08/21  23:43:02  robertj
  77.  * Added "remove on close" feature for temporary files.
  78.  * Added "force" option to Remove/Rename etc to override write protection.
  79.  * Added function to set file permissions.
  80.  *
  81.  * Revision 1.17  1994/07/17  10:46:06  robertj
  82.  * Moved data to platform dependent files.
  83.  *
  84.  * Revision 1.16  1994/06/25  11:55:15  robertj
  85.  * Unix version synchronisation.
  86.  *
  87.  * Revision 1.15  1994/04/20  12:17:44  robertj
  88.  * Split name into PFilePath
  89.  *
  90.  * Revision 1.14  1994/04/01  14:11:03  robertj
  91.  * Added const to functions.
  92.  * Added SetName function.
  93.  *
  94.  * Revision 1.13  1994/03/07  07:38:19  robertj
  95.  * Major enhancementsacross the board.
  96.  *
  97.  * Revision 1.12  1994/01/13  03:40:22  robertj
  98.  * Added hidden flag to file info.
  99.  *
  100.  * Revision 1.12  1994/01/13  03:36:48  robertj
  101.  * Created intermediate class PInteractorLayout for dialog-ish windows.
  102.  *
  103.  * Revision 1.11  1994/01/03  04:42:23  robertj
  104.  * Mass changes to common container classes and interactors etc etc etc.
  105.  *
  106.  * Revision 1.10  1993/12/31  06:45:38  robertj
  107.  * Made inlines optional for debugging purposes.
  108.  *
  109.  * Revision 1.9  1993/09/27  16:35:25  robertj
  110.  * Changed GetName() to GetTitle(), better naming convention.
  111.  * Moved internal functions to private section.
  112.  *
  113.  * Revision 1.8  1993/08/31  03:38:02  robertj
  114.  * Changed PFile::Status to PFile::Info due to X-Windows compatibility.
  115.  *
  116.  * Revision 1.7  1993/08/27  18:17:47  robertj
  117.  * Moved code from MS-DOS platform to common files.
  118.  *
  119.  * Revision 1.6  1993/08/21  04:40:19  robertj
  120.  * Added Copy() function.
  121.  *
  122.  * Revision 1.5  1993/08/21  01:50:33  robertj
  123.  * Made Clone() function optional, default will assert if called.
  124.  *
  125.  * Revision 1.4  1993/08/01  14:05:27  robertj
  126.  * Added GetFileName() function required for proper portability.
  127.  * Improved some comments.
  128.  *
  129.  * Revision 1.3  1993/07/14  12:49:16  robertj
  130.  * Fixed RCS keywords.
  131.  *
  132.  */
  133. #define _PFILE
  134. #ifdef __GNUC__
  135. #pragma interface
  136. #endif
  137. ///////////////////////////////////////////////////////////////////////////////
  138. // Binary Files
  139. /**This class represents a disk file. This is a particular type of I/O channel
  140.    that has certain attributes. All platforms have a disk file, though exact
  141.    details of naming convertions etc may be different.
  142.    The basic model for files is that they are a named sequence of bytes that
  143.    persists within a directory structure. The transfer of data to and from
  144.    the file is made at a current position in the file. This may be set to
  145.    random locations within the file.
  146.  */
  147. class PFile : public PChannel
  148. {
  149.   PCLASSINFO(PFile, PChannel);
  150.   public:
  151.   /**@name Construction */
  152.   //@{
  153.     /**Create a file object but do not open it. It does not initially have a
  154.        valid file name. However, an attempt to open the file using the
  155.        #Open()# function will generate a unique temporary file.
  156.      */
  157.     PFile();
  158.     /**When a file is opened, it may restrict the access available to
  159.        operations on the object instance. A value from this enum is passed to
  160.        the #Open()# function to set the mode.
  161.      */
  162.     enum OpenMode {
  163.       /// File can be read but not written.
  164.       ReadOnly,
  165.       /// File can be written but not read.
  166.       WriteOnly,
  167.       /// File can be both read and written.
  168.       ReadWrite
  169.     };
  170.     /**When a file is opened, a number of options may be associated with the
  171.        open file. These describe what action to take on opening the file and
  172.        what to do on closure. A value from this enum is passed to the
  173.        #Open()# function to set the options.
  174.        The #ModeDefault# option will use the following values:
  175. begin{tabular}{rr}
  176.           Mode  & Options   \
  177. hline
  178.           #ReadOnly#  &    #MustExist# \
  179.           #WriteOnly# &    #Create | Truncate# \
  180.           #ReadWrite# &    #Create# \
  181. hline
  182. end{tabular}
  183.      */
  184.     enum OpenOptions {
  185.       /// File options depend on the OpenMode parameter.
  186.       ModeDefault = -1, 
  187.       /// File open fails if file does not exist.
  188.       MustExist = 0,    
  189.       /// File is created if it does not exist.
  190.       Create = 1,       
  191.       /// File is set to zero length if it already exists.
  192.       Truncate = 2,     
  193.       /// File open fails if file already exists.
  194.       Exclusive = 4,    
  195.       /// File is temporary and is to be deleted when closed.
  196.       Temporary = 8,
  197.       /// File may not be read by another process.
  198.       DenySharedRead = 16,
  199.       /// File may not be written by another process.
  200.       DenySharedWrite = 32
  201.     };
  202.     /**Create a unique temporary file name, and open the file in the specified
  203.        mode and using the specified options. Note that opening a new, unique,
  204.        temporary file name in ReadOnly mode will always fail. This would only
  205.        be usefull in a mode and options that will create the file.
  206.        The #PChannel::IsOpen()# function may be used after object
  207.        construction to determine if the file was successfully opened.
  208.      */
  209.     PFile(
  210.       OpenMode mode,          /// Mode in which to open the file.
  211.       int opts = ModeDefault  /// #OpenOptions enum# for open operation.
  212.     );
  213.     /**Create a file object with the specified name and open it in the
  214.        specified mode and with the specified options.
  215.        The #PChannel::IsOpen()# function may be used after object
  216.        construction to determine if the file was successfully opened.
  217.      */
  218.     PFile(
  219.       const PFilePath & name,    /// Name of file to open.
  220.       OpenMode mode = ReadWrite, /// Mode in which to open the file.
  221.       int opts = ModeDefault     /// #OpenOptions enum# for open operation.
  222.     );
  223.     /// Close the file on destruction.
  224.     ~PFile();
  225.   //@}
  226.   /**@name Overrides from class PObject */
  227.   //@{
  228.     /**Determine the relative rank of the two objects. This is essentially the
  229.        string comparison of the #PFilePath# names of the files.
  230.        @return
  231.        relative rank of the file paths.
  232.      */
  233.     Comparison Compare(
  234.       const PObject & obj   /// Other file to compare against.
  235.     ) const;
  236.   //@}
  237.   /**@name Overrides from class PChannel */
  238.   //@{
  239.     /**Get the platform and I/O channel type name of the channel. For example,
  240.        it would return the filename in #PFile# type channels.
  241.        @return
  242.        the name of the channel.
  243.      */
  244.     virtual PString GetName() const;
  245.     /**Low level read from the file channel. The read timeout is ignored for
  246.        file I/O. The GetLastReadCount() function returns the actual number
  247.        of bytes read.
  248.        The GetErrorCode() function should be consulted after Read() returns
  249.        FALSE to determine what caused the failure.
  250.        @return
  251.        TRUE indicates that at least one character was read from the channel.
  252.        FALSE means no bytes were read due to timeout or some other I/O error.
  253.      */
  254.     virtual BOOL Read(
  255.       void * buf,   /// Pointer to a block of memory to receive the read bytes.
  256.       PINDEX len    /// Maximum number of bytes to read into the buffer.
  257.     );
  258.     /**Low level write to the file channel. The write timeout is ignored for
  259.        file I/O. The GetLastWriteCount() function returns the actual number
  260.        of bytes written.
  261.        The GetErrorCode() function should be consulted after Write() returns
  262.        FALSE to determine what caused the failure.
  263.        @return TRUE if at least len bytes were written to the channel.
  264.      */
  265.     virtual BOOL Write(
  266.       const void * buf, /// Pointer to a block of memory to write.
  267.       PINDEX len        /// Number of bytes to write.
  268.     );
  269.     /** Close the file channel.
  270.         @return TRUE if close was OK.
  271.       */
  272.     virtual BOOL Close();
  273.   //@}
  274.   /**@name File manipulation functions */
  275.   //@{
  276.     /**Check for file existance. 
  277.        Determine if the file specified actually exists within the platforms
  278.        file system.
  279.        @return
  280.        TRUE if the file exists.
  281.      */
  282.     static BOOL Exists(
  283.       const PFilePath & name  /// Name of file to see if exists.
  284.     );
  285.     /**Check for file existance.
  286.        Determine if the file path specification associated with the instance
  287.        of the object actually exists within the platforms file system.
  288.        @return
  289.        TRUE if the file exists.
  290.      */
  291.     BOOL Exists() const;
  292.     /**Check for file access modes.
  293.        Determine if the file specified may be opened in the specified mode. This would
  294.        check the current access rights to the file for the mode. For example,
  295.        for a file that is read only, using mode == ReadWrite would return
  296.        FALSE but mode == ReadOnly would return TRUE.
  297.        @return
  298.        TRUE if a file open would succeed.
  299.      */
  300.     static BOOL Access(
  301.       const PFilePath & name, /// Name of file to have its access checked.
  302.       OpenMode mode         /// Mode in which the file open would be done.
  303.     );
  304.     /**Check for file access modes.
  305.        Determine if the file path specification associated with the
  306.        instance of the object may be opened in the specified mode. This would
  307.        check the current access rights to the file for the mode. For example,
  308.        for a file that is read only, using mode == ReadWrite would return
  309.        FALSE but mode == ReadOnly would return TRUE.
  310.        @return
  311.        TRUE if a file open would succeed.
  312.      */
  313.     BOOL Access(
  314.       OpenMode mode         /// Mode in which the file open would be done.
  315.     );
  316.     /**Delete the specified file. If #force# is FALSE and the file
  317.        is protected against being deleted then the function fails. If
  318.        #force# is TRUE then the protection is ignored. What
  319.        constitutes file deletion protection is platform dependent, eg on DOS
  320.        is the Read Only attribute and on a Novell network it is a Delete
  321.        trustee right. Some protection may not be able to overridden with the
  322.        #force# parameter at all, eg on a Unix system and you are
  323.        not the owner of the file.
  324.        @return
  325.        TRUE if the file was deleted.
  326.      */
  327.     static BOOL Remove(
  328.       const PFilePath & name,   // Name of file to delete.
  329.       BOOL force = FALSE      // Force deletion even if file is protected.
  330.     );
  331.     /**Delete the current file. If #force# is FALSE and the file
  332.        is protected against being deleted then the function fails. If
  333.        #force# is TRUE then the protection is ignored. What
  334.        constitutes file deletion protection is platform dependent, eg on DOS
  335.        is the Read Only attribute and on a Novell network it is a Delete
  336.        trustee right. Some protection may not be able to overridden with the
  337.        #force# parameter at all, eg on a Unix system and you are
  338.        not the owner of the file.
  339.        @return
  340.        TRUE if the file was deleted.
  341.      */
  342.     BOOL Remove(
  343.       BOOL force = FALSE      // Force deletion even if file is protected.
  344.     );
  345.     /**Change the specified files name. This does not move the file in the
  346.        directory hierarchy, it only changes the name of the directory entry.
  347.        The #newname# parameter must consist only of the file name
  348.        part, as returned by the #PFilePath::GetFileName()# function. Any
  349.        other file path parts will cause an error.
  350.        The first form uses the file path specification associated with the
  351.        instance of the object. The name within the instance is changed to the
  352.        new name if the function succeeds. The second static function uses an
  353.        arbitrary file specified by name.
  354.        @return
  355.        TRUE if the file was renamed.
  356.      */
  357.     static BOOL Rename(
  358.       const PFilePath & oldname,  /// Old name of the file.
  359.       const PString & newname,    /// New name for the file.
  360.       BOOL force = FALSE
  361.         /// Delete file if a destination exists with the same name.
  362.     );
  363.     /**Change the current files name.
  364.        This does not move the file in the
  365.        directory hierarchy, it only changes the name of the directory entry.
  366.        The #newname# parameter must consist only of the file name
  367.        part, as returned by the #PFilePath::GetFileName()# function. Any
  368.        other file path parts will cause an error.
  369.        The first form uses the file path specification associated with the
  370.        instance of the object. The name within the instance is changed to the
  371.        new name if the function succeeds. The second static function uses an
  372.        arbitrary file specified by name.
  373.        @return
  374.        TRUE if the file was renamed.
  375.      */
  376.     BOOL Rename(
  377.       const PString & newname,  /// New name for the file.
  378.       BOOL force = FALSE
  379.         /// Delete file if a destination exists with the same name.
  380.     );
  381.     /**Make a copy of the specified file.
  382.        @return
  383.        TRUE if the file was renamed.
  384.      */
  385.     static BOOL Copy(
  386.       const PFilePath & oldname,  /// Old name of the file.
  387.       const PFilePath & newname,  /// New name for the file.
  388.       BOOL force = FALSE
  389.         /// Delete file if a destination exists with the same name.
  390.     );
  391.     /**Make a copy of the current file.
  392.        @return
  393.        TRUE if the file was renamed.
  394.      */
  395.     BOOL Copy(
  396.       const PFilePath & newname,  /// New name for the file.
  397.       BOOL force = FALSE
  398.         /// Delete file if a destination exists with the same name.
  399.     );
  400.     /**Move the specified file. This will move the file from one position in
  401.        the directory hierarchy to another position. The actual operation is
  402.        platform dependent but  the reslt is the same. For instance, for Unix,
  403.        if the move is within a file system then a simple rename is done, if
  404.        it is across file systems then a copy and a delete is performed.
  405.        @return
  406.        TRUE if the file was moved.
  407.      */
  408.     static BOOL Move(
  409.       const PFilePath & oldname,  /// Old path and name of the file.
  410.       const PFilePath & newname,  /// New path and name for the file.
  411.       BOOL force = FALSE
  412.         /// Delete file if a destination exists with the same name.
  413.     );
  414.     /**Move the current file. This will move the file from one position in
  415.        the directory hierarchy to another position. The actual operation is
  416.        platform dependent but  the reslt is the same. For instance, for Unix,
  417.        if the move is within a file system then a simple rename is done, if
  418.        it is across file systems then a copy and a delete is performed.
  419.        @return
  420.        TRUE if the file was moved.
  421.      */
  422.     BOOL Move(
  423.       const PFilePath & newname,  /// New path and name for the file.
  424.       BOOL force = FALSE
  425.         /// Delete file if a destination exists with the same name.
  426.     );
  427.   //@}
  428.   /**@name File channel functions */
  429.   //@{
  430.     /**Get the full path name of the file. The #PFilePath# object
  431.        describes the full file name specification for the particular platform.
  432.        @return
  433.        the name of the file.
  434.      */
  435.     const PFilePath & GetFilePath() const;
  436.     /**Set the full path name of the file. The #PFilePath# object
  437.        describes the full file name specification for the particular platform.
  438.      */
  439.     void SetFilePath(
  440.       const PString & path    /// New file path.
  441.     );
  442.     /**Open the current file in the specified mode and with
  443.        the specified options. If the file object already has an open file then
  444.        it is closed.
  445.        
  446.        If there has not been a filename attached to the file object (via
  447.        #SetFilePath()#, the #name# parameter or a previous
  448.        open) then a new unique temporary filename is generated.
  449.        @return
  450.        TRUE if the file was successfully opened.
  451.      */
  452.     BOOL Open(
  453.       OpenMode mode = ReadWrite,  // Mode in which to open the file.
  454.       int opts = ModeDefault      // Options for open operation.
  455.     );
  456.     /**Open the specified file name in the specified mode and with
  457.        the specified options. If the file object already has an open file then
  458.        it is closed.
  459.        
  460.        Note: if #mode# is StandardInput, StandardOutput or StandardError,
  461.        then the #name# parameter is ignored.
  462.        @return
  463.        TRUE if the file was successfully opened.
  464.      */
  465.     BOOL Open(
  466.       const PFilePath & name,    // Name of file to open.
  467.       OpenMode mode = ReadWrite, // Mode in which to open the file.
  468.       int opts = ModeDefault     // #OpenOptions enum# for open operation.
  469.     );
  470.       
  471.     /**Get the current size of the file.
  472.        @return
  473.        length of file in bytes.
  474.      */
  475.     off_t GetLength() const;
  476.       
  477.     /**Set the size of the file, padding with 0 bytes if it would require
  478.        expanding the file, or truncating it if being made shorter.
  479.        @return
  480.        TRUE if the file size was changed to the length specified.
  481.      */
  482.     BOOL SetLength(
  483.       off_t len   // New length of file.
  484.     );
  485.     /// Options for the origin in setting the file position.
  486.     enum FilePositionOrigin {
  487.       /// Set position relative to start of file.
  488.       Start = SEEK_SET,   
  489.       /// Set position relative to current file position.
  490.       Current = SEEK_CUR, 
  491.       /// Set position relative to end of file.
  492.       End = SEEK_END      
  493.     };
  494.     /**Set the current active position in the file for the next read or write
  495.        operation. The #pos# variable is a signed number which is
  496.        added to the specified origin. For #origin == PFile::Start#
  497.        only positive values for #pos# are meaningful. For
  498.        #origin == PFile::End# only negative values for
  499.        #pos# are meaningful.
  500.        @return
  501.        TRUE if the new file position was set.
  502.      */
  503.     BOOL SetPosition(
  504.       off_t pos,                         /// New position to set.
  505.       FilePositionOrigin origin = Start  /// Origin for position change.
  506.     );
  507.     /**Get the current active position in the file for the next read or write
  508.        operation.
  509.        @return
  510.        current file position relative to start of file.
  511.      */
  512.     off_t GetPosition() const;
  513.     /**Determine if the current file position is at the end of the file. If
  514.        this is TRUE then any read operation will fail.
  515.        @return
  516.        TRUE if at end of file.
  517.      */
  518.     BOOL IsEndOfFile() const;
  519.       
  520.     /**Get information (eg protection, timestamps) on the specified file.
  521.        @return
  522.        TRUE if the file info was retrieved.
  523.      */
  524.     static BOOL GetInfo(
  525.       const PFilePath & name,  // Name of file to get the information on.
  526.       PFileInfo & info
  527.       // #PFileInfo# structure to receive the information.
  528.     );
  529.     /**Get information (eg protection, timestamps) on the current file.
  530.        @return
  531.        TRUE if the file info was retrieved.
  532.      */
  533.     BOOL GetInfo(
  534.       PFileInfo & info
  535.       // #PFileInfo# structure to receive the information.
  536.     );
  537.     /**Set permissions on the specified file.
  538.        @return
  539.        TRUE if the file was renamed.
  540.      */
  541.     static BOOL SetPermissions(
  542.       const PFilePath & name,   // Name of file to change the permission of.
  543.       int permissions           // New permissions mask for the file.
  544.     );
  545.     /**Set permissions on the current file.
  546.        @return
  547.        TRUE if the file was renamed.
  548.      */
  549.     BOOL SetPermissions(
  550.       int permissions           // New permissions mask for the file.
  551.     );
  552.   //@}
  553.   protected:
  554.     // Member variables
  555.     /// The fully qualified path name for the file.
  556.     PFilePath path;
  557.     /// File is to be removed when closed.
  558.     BOOL removeOnClose;
  559.       
  560. #ifdef DOC_PLUS_PLUS
  561. };
  562. #endif
  563. // Class declaration continued in platform specific header file ///////////////