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 _SYMBIANFIO_H_
  36. #define _SYMBIANFIO_H_
  37. #include <fcntl.h>
  38. #include <errno.h>
  39. #include <unistd.h>
  40. #include <sys/types.h>
  41. #include <sys/stat.h>
  42. #include "bio.h"
  43. class FileIO : public IO
  44. {
  45. public:
  46.     FileIO(const char* file, LONG32 flags, 
  47.            mode_t mode = 0666);
  48.     ~FileIO();
  49.     virtual LONG32 close();
  50.     virtual LONG32 read(void* buf, LONG32 size);
  51.     virtual LONG32 write(const void* buf, LONG32 size);
  52.     virtual off_t seek(off_t off, LONG32 whence);
  53.     virtual LONG32 error();
  54.     virtual LONG32 flags();
  55.     virtual off_t file_size();
  56.     static void local_path(char* path);
  57.     static const LONG32 MAXPATH;
  58.     static const char PATH_SEP;
  59.     static const char*  NEWLINE;
  60.     static int is_directory(char* path);
  61. protected:
  62.     int  fd;
  63.     LONG32 err;
  64.     LONG32 _flags;
  65. };
  66. inline FileIO::FileIO(const char* file, LONG32 flags, mode_t mode) 
  67. {
  68.     err = 0;
  69.     fd = -1;
  70.     fd = ::open(file, flags, mode);
  71.     _flags = flags;
  72.     if (fd < 0)
  73. err = errno;
  74. }
  75. inline LONG32 FileIO::close() 
  76. {
  77.     LONG32 ret = ::close(fd);
  78.     fd = -1;
  79.     if (ret < 0)
  80. err = errno;
  81.     return ret;
  82. }
  83. inline FileIO::~FileIO() 
  84. {
  85.     if (fd >= 0)
  86. close();
  87.     fd = -1;
  88. }
  89. inline off_t FileIO::seek(off_t off, LONG32 whence) 
  90. {
  91.     off_t ret = ::lseek(fd, off, whence);
  92.     if (ret < 0)
  93. err = errno;
  94.     return ret;
  95. }
  96. inline LONG32 FileIO::read(void * buf, LONG32 len) 
  97. {
  98.     int ret = ::read(fd, (char*)buf, len);
  99.     if (ret < 0)
  100. err = errno;
  101.     return ret;
  102. }
  103. inline LONG32 FileIO::write(const void * buf, LONG32 len) 
  104. {
  105.     LONG32 ret = ::write(fd, (char*)buf, len);
  106.     if (ret < 0)
  107. err = errno;
  108.     return ret;
  109. }
  110. inline off_t FileIO::file_size()
  111. {
  112.     struct stat st;
  113.     if (fstat(fd, &st) < 0)
  114.     {
  115. err = errno;
  116. return (off_t)-1;
  117.     }
  118.     return st.st_size;
  119. }
  120. inline LONG32 FileIO::error()
  121. {
  122.     return err;
  123. }
  124. inline LONG32 FileIO::flags()
  125. {
  126.     return _flags;
  127. }
  128. inline void FileIO::local_path(char* path)
  129. {
  130. }
  131. inline int FileIO::is_directory(char* path)
  132. {
  133.     struct stat st;
  134.     if (stat(path, &st) < 0)
  135.     {
  136. return 0;
  137.     }
  138.     return st.st_mode & S_IFDIR;
  139. }
  140. #endif /* _SYMBIAFIO_H_ */