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