cunixf.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:8k
源码类别:

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. #include <stdio.h>
  36. #include <sys/stat.h>
  37. #include <sys/types.h>
  38. #include <fcntl.h>
  39. #include <unistd.h>
  40. #include <errno.h>
  41. #include "chxdataf.h"
  42. #include "cunixf.h"
  43. #include "hxheap.h"
  44. #include "hxresult.h"
  45. #if !defined _VXWORKS && !defined __QNXNTO__
  46. extern int errno;
  47. #endif
  48. #define  HX_FILE_NOT_OPEN    -1000
  49. CHXDataFile*
  50. CHXDataFile::Construct (UINT32 ulFlags, IUnknown** ppCommonObj)
  51. {
  52.     return new CUnixFile;
  53. }
  54. // CHXFile should set the file reference to a value
  55. // indicating the file is not open
  56. CUnixFile::CUnixFile (void)
  57. {
  58.         // set FD to indicate file is not open
  59.         mFD = HX_FILE_NOT_OPEN;
  60.         mLastError = HXR_OK;
  61. }
  62. // ~CHXFile should close the file if it is open
  63. CUnixFile::~CUnixFile(void)
  64.         // close the file if it is open
  65.         if ( mFD > 0 )
  66.         {
  67.            close( mFD );
  68.         }
  69. }
  70. // Following comments and code of GetSize were directly taken from the 
  71. // windows implementation ../win/cwinfile.cpp
  72. // Simply uses stat to get the size of the file in bytes.  If the file
  73. // is closed, it will still work.
  74. ULONG32 CUnixFile::GetSize(void)
  75. {
  76.     struct stat filestats;
  77.     if (mFD >= 0)
  78.     {
  79.         fstat(mFD, &filestats);
  80.         return filestats.st_size;
  81.     }
  82.     return 0;
  83. }
  84. // Create a file with the specified mode
  85. // Closes the previous file if it was open
  86. // returns HXR_OK or HXR_INVALID_FILE if an error occurred
  87. HX_RESULT CUnixFile::Create(const char *filename, UINT16 mode, BOOL textflag)
  88. {
  89.         // close previous file if necessary
  90.         if ( mFD > 0 )
  91.             close( mFD );
  92.         // create file
  93.         mLastError = HXR_OK;
  94.         if ( ( mFD = creat( filename, mode ) ) < 0 )
  95.         {
  96.            mLastError = errno;
  97.            return HXR_DOC_MISSING;
  98.         }
  99.         return HXR_OK;
  100. }
  101. // Open a file with the specified mode
  102. // Closes the previous file if it was open
  103. // returns HXR_OK or HXR_INVALID_FILE if an error occurred
  104. HX_RESULT CUnixFile::Open(const char *filename, UINT16 mode, BOOL textflag)
  105. {
  106.         // close previous file if necessary
  107.         if ( mFD > 0 )
  108.             close( mFD );
  109.         // open file
  110.         mLastError = HXR_OK;
  111. #ifndef _VXWORKS /* VXWORKS uses FAT32 */
  112. #define OPENFLAGS (S_IREAD | S_IWRITE)
  113. #else
  114. #endif
  115.         if ( ( mFD = open( filename, mode, OPENFLAGS ) ) < 0 )
  116.         {
  117.            mLastError = errno;
  118.            return HXR_DOC_MISSING;
  119.         }
  120.         // change permissions to allow everyone to read the file and owner to write
  121. // only if I have to create this file
  122. #if !defined(_VXWORKS) && !defined(_BEOS)
  123. if ( mode & O_CREAT )
  124.         fchmod( mFD, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH );
  125. #endif
  126.         return HXR_OK;
  127. }
  128. // Close the previous file if it was open
  129. // returns HXR_OK or HXR_INVALID_FILE if an error occurred
  130. HX_RESULT CUnixFile::Close(void)
  131. {
  132.         // close previous file if necessary
  133.         if ( mFD > 0 )
  134.         {
  135.            mLastError = HXR_OK;   
  136.            if ( close( mFD ) < 0 )
  137.            {
  138.               mLastError = errno;
  139.               return HXR_INVALID_FILE;
  140.            }
  141.          return HXR_OK;
  142.         }
  143.         return HXR_INVALID_FILE;
  144. }
  145. HX_RESULT CUnixFile::Delete(const char* pFilename)
  146. {
  147.     if(mFD > 0)
  148.     {
  149. close(mFD);
  150.     }
  151.     mLastError = HXR_OK;
  152.     if(unlink(pFilename))
  153.     {
  154. if(errno == EACCES)
  155. {
  156.     mLastError = HXR_ACCESSDENIED;
  157. }
  158. else
  159. {
  160.     mLastError = HXR_DOC_MISSING;
  161. }
  162.     }
  163.     return mLastError;
  164. }
  165. // Seek moves the current file position to the offset from the fromWhere
  166. // specifier returns HXR_OK or HXR_INVALID_FILE if an error occurred
  167. HX_RESULT CUnixFile::Seek(ULONG32 offset, UINT16 fromWhere)
  168. {
  169.         if ( mFD > 0 )
  170.         {
  171.            mLastError = HXR_OK;       
  172.            if ( lseek( mFD, offset, fromWhere ) < 0 )
  173.            {
  174.               mLastError = errno;
  175.               return HXR_INVALID_FILE;
  176.            }
  177.          return HXR_OK;
  178.         }
  179.       return HXR_INVALID_FILE;
  180. }
  181. // Rewind sets the file position to the start of file
  182. // returns HXR_OK or HXR_INVALID_FILE if an error occurred
  183. HX_RESULT CUnixFile::Rewind(void)
  184. {
  185.         if ( mFD > 0 )
  186.         {
  187.            mLastError = HXR_OK;       
  188.            if ( lseek( mFD, 0, SEEK_SET ) < 0 )
  189.            {
  190.               mLastError = errno;
  191.               return HXR_INVALID_FILE;
  192.            }
  193.          return HXR_OK;
  194.         }
  195.         return HXR_INVALID_FILE;
  196. }
  197. // Tell returns the current file position
  198. // returns HXR_OK or -1 if an error occurred
  199. ULONG32 CUnixFile::Tell(void)
  200. {   
  201.         long offset = -1;
  202.         if ( mFD > 0 )
  203.         {
  204.            mLastError = HXR_OK;       
  205.          // the tell() function will consistently generate a warning 
  206.          // and I haven't figured out how to fix that yet
  207. /****
  208.            if ((offset = tell( mFD )) < 0 )
  209.            {
  210.               mLastError = errno;
  211.            }
  212. ****/
  213. // so we do this instead....
  214. if ((offset = lseek( mFD, 0, SEEK_CUR )) < 0 )
  215. {
  216. mLastError = errno;
  217. }
  218.         }
  219.         return (ULONG32)offset;
  220. }
  221. /*      Read reads up to count bytes of data into buf.
  222.         returns the number of bytes read, EOF, or -1 if the read failed */
  223. ULONG32 CUnixFile::Read (char *buf, ULONG32 count)
  224. {
  225. int ncnt = -1;           // number of bytes read
  226. if ( mFD > 0 )
  227.   { 
  228. mLastError = HXR_OK;
  229. ULONG32 tmpCheck = Tell();
  230. if ( ( ncnt = read( mFD, buf, count ) ) < 0 )
  231. {
  232. mLastError = errno;
  233. }
  234. }
  235. return (ULONG32)ncnt;
  236. }
  237. /*      Write writes up to count bytes of data from buf.
  238.         returns the number of bytes written, or -1 if the write failed */
  239. ULONG32 CUnixFile::Write(const char *buf, ULONG32 count)
  240. {
  241.         int ncnt = -1;           // number of bytes written
  242.       if ( mFD > 0 )
  243.       { mLastError = HXR_OK;
  244.           if ( ( ncnt = write( mFD, buf, count ) ) < 0 )
  245.           {
  246.              mLastError = errno;
  247.           }
  248.       }
  249.         return (ULONG32)ncnt;
  250. }
  251. BOOL CUnixFile::GetTemporaryFileName(const char *tag, char* name, UINT32 ulBufLen)
  252. {
  253. #ifdef _MAC_UNIX
  254. // GR 7/15/03 other Unix implementations should probably use this (or tempnam)
  255. // instead of tmpnam
  256. const int kBuffsize = 1024;
  257. char buff[kBuffsize];
  258. int count = snprintf(buff, kBuffsize, "/tmp/%s_XXXXXX", tag);
  259. if (count > 0 && count < kBuffsize)
  260. {
  261. // replace the X's with digits
  262. if (mktemp(buff) != NULL)
  263. {
  264. strncpy(name, buff, ulBufLen);
  265. return TRUE;
  266. }
  267. }
  268. return FALSE;
  269. #else
  270. if (tmpnam(name))
  271. return TRUE;
  272. else
  273. return FALSE;
  274. #endif
  275. }