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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: fio.h,v 1.3.48.3 2004/07/09 01:44:42 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 _WINFIO_H_
  50. #define _WINFIO_H_
  51. #include "hlxclib/sys/stat.h"
  52. #include "hlxclib/io.h"
  53. #include <stdlib.h>
  54. #include "hlxclib/windows.h" // for GetFileSize
  55. #include "hlxclib/fcntl.h"
  56. #include "hxassert.h"
  57. #include "bio.h"
  58. typedef unsigned short mode_t;
  59. class FileIO : public IO
  60. {
  61. public:
  62.         FileIO(const char* file, LONG32 flags, 
  63.        mode_t mode = 0666);
  64. ~FileIO();
  65.     virtual LONG32 close();
  66.     virtual LONG32 read(void* buf, LONG32 size);
  67.     virtual LONG32 write(const void* buf, LONG32 size);
  68.     virtual off_t seek(off_t off, LONG32 whence);
  69.     virtual LONG32 error();
  70.     virtual LONG32 flags();
  71.     virtual off_t file_size();
  72.     static void local_path(char* path);
  73.     static const enum { MAXPATH = 1024 };
  74.     static const char  PATH_SEP;
  75.     static int is_directory(char* path);
  76.     static const char*  NEWLINE;
  77. protected:
  78.     int  fd;
  79.     LONG32 err;
  80.     LONG32 _flags;
  81. };
  82. #if !defined (WIN32_PLATFORM_PSPC)
  83. inline
  84. FileIO::FileIO(const char* file, LONG32 flags, mode_t mode) 
  85. {
  86.     err = 0;
  87.     fd = ::_open(file, HX_SAFEINT(flags), mode);
  88.     _flags = flags;
  89.     if (fd < 0)
  90. err = errno;
  91. }
  92. inline LONG32
  93. FileIO::close() 
  94. {
  95.     LONG32 ret = ::_close(fd);
  96.     fd = -1;
  97.     if (ret < 0)
  98. err = errno;
  99.     return ret;
  100. }
  101. inline
  102. FileIO::~FileIO() 
  103. {
  104.     if (fd >= 0)
  105. close();
  106.     fd = -1;
  107. }
  108. inline off_t
  109. FileIO::seek(off_t off, LONG32 whence) 
  110. {
  111.     off_t ret = ::_lseek(fd, off, HX_SAFEINT(whence));
  112.     if (ret < 0)
  113. err = errno;
  114.     return ret;
  115. }
  116. inline LONG32
  117. FileIO::read(void * buf, LONG32 len) 
  118. {
  119.     int ret = ::_read(fd, buf, HX_SAFEINT(len));
  120.     if (ret < 0)
  121. err = errno;
  122.     return ret;
  123. }
  124. inline LONG32
  125. FileIO::write(const void * buf, LONG32 len) 
  126. {
  127.     LONG32 ret = ::_write(fd, buf, HX_SAFEINT(len));
  128.     if (ret < 0)
  129. err = errno;
  130.     return ret;
  131. }
  132. inline off_t
  133. FileIO::file_size()
  134. {
  135. #ifdef _WIN32 
  136.     // fstat always returns a size of zero for network files
  137.     // under win95, so we use the proper Win32 api here...
  138.     return (off_t)GetFileSize((HANDLE)_get_osfhandle(fd),NULL);
  139. #else
  140.     struct stat st;
  141.     if (fstat(fd, &st) < 0)
  142.     {
  143. err = errno;
  144. return (off_t)-1;
  145.     }
  146.     return st.st_size;
  147. #endif // 0
  148. }
  149. inline LONG32
  150. FileIO::error()
  151. {
  152.     return err;
  153. }
  154. inline LONG32
  155. FileIO::flags()
  156. {
  157.     return _flags;
  158. }
  159. inline void
  160. FileIO::local_path(char* path)
  161. {
  162. }
  163. inline int
  164. FileIO::is_directory(char* path)
  165. {
  166. #ifdef _WINCE
  167.     DWORD res = GetFileAttributes(Unicode(path));
  168.     return (res == 0xffffffff) ? 0 : res & FILE_ATTRIBUTE_DIRECTORY;
  169. #else
  170.     struct stat st;
  171.     if (stat(path, &st) < 0)
  172.     {
  173. return 0;
  174.     }
  175.     return st.st_mode & S_IFDIR;
  176. #endif
  177. }
  178. #endif /* !defined (WIN32_PLATFORM_PSPC) */
  179. #endif /* _WINFIO_H_ */