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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: chxdataf_stdio.cpp,v 1.4.2.3 2004/07/09 01:44:51 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 "chxdataf_stdio.h"
  50. #include "hxassert.h" // hxassert.h is NOT a system header
  51. #include "hxheap.h"
  52. #include "hxbuffer.h"
  53. #ifdef _DEBUG
  54. #undef HX_THIS_FILE
  55. static const char HX_THIS_FILE[] = __FILE__;
  56. #endif
  57. // ~CHXFile should close the file if it is open
  58. CHXDataFile::~CHXDataFile(void)
  59. {
  60.     Close();
  61. }
  62. BOOL CHXDataFile::GetTemporaryFileName(const char *tag, char* name, UINT32 ulBufLen)
  63. {
  64. return FALSE;
  65. }
  66. CHXDataFile*
  67. CHXDataFile::Construct(UINT32 ulFlags, IUnknown** ppCommonObj)
  68. {
  69.     CHXDataFile* pCHXDataFile = new CHXDataFile();
  70.     return pCHXDataFile;
  71. }
  72. //
  73. // translate mode flag defined in (hlxclibfcntl.h) to fopen flag
  74. //
  75. // buf must be at least CCH_MAX_FOPENFLAG chars
  76. //
  77. static const UINT32 CCH_MAX_FOPENFLAG = 4;
  78. static const char* TranslateOpenMode(UINT16 mode, bool bText, char* buf)
  79. {
  80.     buf[0] = '';
  81.     HX_ASSERT(!(mode & O_EXCL));
  82.     // Most mode flags are OR'able values. However, O_RDONLY is defined 0
  83.     // so we can't check val & O_RDONLY. To address this we treat the lowest
  84.     // two bits as a mutually exclusive value indicating ro, wo, rw.
  85.     UINT32 openType = mode & 0x03;
  86.     // if truncate not specified explicitly we open for appending
  87.     if( !(mode & O_TRUNC) && O_RDONLY != openType )
  88.     {
  89.         mode |= O_APPEND;
  90.     }
  91.     const char* pszAppend = 0;
  92.     if (O_RDWR == openType)
  93.     {
  94.         if(mode & O_APPEND)
  95.         {
  96.             // read and writing/append; creates file if it doesn't exist
  97.             pszAppend = "a+"; 
  98.         }
  99.         else
  100.         {
  101.             if(mode & O_CREAT)
  102.             {
  103.                 // read/write; creates file if it doesn't
  104.                 // exist; if file exists contents are destroyed
  105.                 pszAppend = "w+";
  106.             }
  107.             else
  108.             {
  109.                 // read/write; file must exist
  110.         pszAppend = "r+"; 
  111.             }
  112.         }
  113.     }
  114.     else if (O_WRONLY == openType)
  115.     {
  116.         if(mode & O_APPEND)
  117.         {
  118.             // write/append; creates file if it doesn't exist
  119.             pszAppend = "a"; 
  120.         }
  121.         else
  122.         {
  123.             if(mode & O_CREAT)
  124.             {
  125.                 // write only; if file exists contents are destroyed
  126.         pszAppend = "w"; 
  127.             }
  128.             else
  129.             {
  130.                 // reading and writing (closest we can do); file must exist
  131.                 pszAppend = "r+";
  132.             }
  133.         }
  134.     }
  135.     else if (O_RDONLY == openType)
  136.     {
  137.         // read only; file must exist
  138. pszAppend = "r"; 
  139.         HX_ASSERT(!(mode & O_CREAT));
  140.     }
  141.     
  142.     HX_ASSERT(pszAppend);
  143.     
  144.     if( pszAppend )
  145.     {
  146.         strcpy(buf, pszAppend);
  147.         if ((mode & O_BINARY) && !bText)
  148.         {
  149.     pszAppend = "b";
  150.         }
  151.         else
  152.         {
  153.             pszAppend = "t";
  154.         }
  155.         strcat(buf,pszAppend);
  156.     }
  157.     return buf;
  158. }
  159. /* Create creates a file using the specified fcntl.h mode */
  160. HX_RESULT
  161. CHXDataFile::Create(const char *filename, UINT16 mode, BOOL textFlag)
  162. {
  163.     mode |= O_CREAT;
  164.     return Open(filename, mode, textFlag);
  165. }
  166. /* Open will open a file with the specified fcntl.h permissions */
  167. HX_RESULT
  168. CHXDataFile::Open(const char *filename, UINT16 mode, BOOL textFlag)
  169. {
  170.     HX_RESULT theErr = HXR_FAIL;
  171.   
  172.     char fopenFlags[CCH_MAX_FOPENFLAG];
  173.     
  174.     if( TranslateOpenMode(mode, textFlag, fopenFlags) )
  175.     {
  176.         m_FP = fopen( filename, fopenFlags );
  177.         if(m_FP)
  178.         {
  179.            theErr = HXR_OK;
  180.         }
  181.     }
  182.     return theErr;
  183. }
  184. /* Close closes a file */
  185. HX_RESULT
  186. CHXDataFile::Close(void)
  187. {
  188.     if(!m_FP)
  189.     {
  190.         return HXR_FAIL;
  191.     }
  192.     fclose(m_FP);
  193.     m_FP = NULL;
  194.     return HXR_OK;
  195. }
  196. /* Seek moves the current file position to the offset from the fromWhere specifier */
  197. HX_RESULT
  198. CHXDataFile::Seek(ULONG32 offset, UINT16 fromWhere)
  199. {
  200.     if(!m_FP)
  201.     {
  202.         return HXR_FAIL;
  203.     }
  204.     fseek( m_FP, offset, fromWhere );
  205.     return HXR_OK;
  206. }
  207. /* Tell returns the current file position in the ra file */
  208. ULONG32
  209. CHXDataFile::Tell(void)
  210. {
  211.     if(!m_FP)
  212.     {
  213.         return 0;
  214.     }
  215.     return ftell( m_FP );
  216. }
  217. /* Read reads up to count bytes of data into buf.
  218. returns the number of bytes read, EOF, or -1 if the read failed */
  219. ULONG32
  220. CHXDataFile::Read(char* buf, ULONG32 count)
  221. {
  222.     if(!m_FP)
  223.     {
  224.         return 0;
  225.     }
  226.     return fread( buf, 1, count, m_FP );
  227. }
  228. /* Write writes up to count bytes of data from buf.
  229. returns the number of bytes written, or -1 if the write failed */
  230. ULONG32
  231. CHXDataFile::Write(const char *buf, ULONG32 count)
  232. {
  233.     if(!m_FP)
  234.     {
  235.         return 0;
  236.     }
  237.     ULONG32 numWritten = fwrite( (void*) buf, 1, count, m_FP );
  238.     return numWritten;
  239. }
  240. /* Rewinds the file to the start of the file */
  241. HX_RESULT
  242. CHXDataFile::Rewind(void)
  243. {
  244.     if(!m_FP)
  245.     {
  246.         return HXR_FAIL;
  247.     }
  248.     fseek( m_FP, 0, SEEK_SET );
  249.     return HXR_OK;
  250. }
  251. /* Delete deletes a file */
  252. HX_RESULT
  253. CHXDataFile::Delete(const char *filename)
  254. {
  255.     if(!filename)
  256.     {
  257.         return HXR_FAIL;
  258.     }
  259.     unlink(filename);
  260.     return HXR_OK;
  261. }