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