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

Symbian

开发平台:

Visual C++

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