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

Symbian

开发平台:

Visual C++

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