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

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. #ifdef __MWERKS__
  36. #pragma once
  37. #endif
  38. #include "chxdfmem.h"
  39. #include "hlxclib/stdio.h" // for SEEK_*
  40. #if !defined(_VXWORKS) && !defined(_SYMBIAN) && !defined(_OPENWAVE)
  41. #include <memory.h> // for memcpy
  42. #endif
  43. #if defined(_SYMBIAN) || defined(_OPENWAVE)
  44. # include "hlxclib/string.h" //for memcpy
  45. #endif
  46. #ifdef _SOLARIS24
  47. #include <string.h> // for memcpy
  48. #endif
  49. #include "chunkres.h"
  50. #include "hxheap.h"
  51. #ifdef _DEBUG
  52. #undef HX_THIS_FILE
  53. static const char HX_THIS_FILE[] = __FILE__;
  54. #endif
  55. /* Seek moves the current file position to the offset from the fromWhere specifier */
  56. HX_RESULT CHXDataFileMem::Seek(ULONG32 offset, UINT16 fromWhere)
  57. {
  58. switch(fromWhere)
  59. {
  60. case SEEK_SET: // Beginning of file
  61. {
  62. m_Offset = offset;
  63. }
  64. break;
  65. case SEEK_CUR: // Current position of file pointer
  66. {
  67. m_Offset += offset;
  68. }
  69. break;
  70. case SEEK_END: // End of file
  71. {
  72. return HXR_FAILED; // Not Supported
  73. }
  74. };
  75. #ifdef DONT_USE_CHUNKYRES /////////////////////////
  76. if (m_Offset > m_MemSize)
  77. #else
  78.     if (m_Offset > m_pChunkyRes->GetContiguousLength()) 
  79. #endif
  80. {
  81. return HXR_BUFFERING;
  82. }
  83. return HXR_OK;
  84. }
  85. /*  Tell returns the current file position in the ra file */
  86. ULONG32 CHXDataFileMem::Tell()
  87. {
  88. return m_Offset;
  89. }
  90. /*  Read reads up to count bytes of data into buf.
  91. returns the number of bytes read, EOF, or -1 if the read failed */
  92. ULONG32 CHXDataFileMem::Read(char* buf, ULONG32 count)
  93. {
  94. ULONG32 actual = count;
  95. #ifdef DONT_USE_CHUNKYRES /////////////////////////
  96. // If the offset is greater than we've seeked to, then
  97. // we can just ignore things....
  98. if (m_Offset > m_MemSize)
  99. {
  100. return 0;
  101. }
  102. // If the current offset plus the requested number of bytes
  103. // is more than we've read, then we will reduce the actual
  104. // count to what we have available.
  105. if (m_Offset + actual > m_MemSize)
  106. {
  107. actual = m_MemSize-m_Offset;
  108. }
  109. if (actual > 0)
  110. {
  111. memcpy(buf,m_pMemData+m_Offset,actual); /* Flawfinder: ignore */
  112. m_Offset += actual;
  113. }
  114. else
  115. {
  116. actual = (ULONG32)-1;
  117. }
  118. return actual;
  119. #else
  120. if (!m_pChunkyRes)
  121. {
  122. return 0;
  123. }
  124. if (m_Offset > m_pChunkyRes->GetContiguousLength())
  125. {
  126. return 0;
  127. }
  128. // If the current offset plus the requested number of bytes
  129. // is more than we've read, then we will reduce the actual
  130. // count to what we have available.
  131. if (m_Offset + actual > m_pChunkyRes->GetContiguousLength())
  132. {
  133. actual = m_pChunkyRes->GetContiguousLength()-m_Offset;
  134. }
  135. if (actual > 0)
  136. {
  137. HX_RESULT tempErr = m_pChunkyRes->GetData(m_Offset,buf,actual,&actual);
  138. if (tempErr != HXR_OK)
  139. {
  140. mLastError = tempErr;
  141. actual = (ULONG32)-1;
  142. }
  143. else
  144. {
  145. m_Offset += actual;
  146. }
  147. }
  148. else
  149. {
  150. actual = (ULONG32)-1;
  151. }
  152. return actual;
  153. #endif
  154. }
  155. /*  Rewinds the file to the start of the file */
  156. HX_RESULT CHXDataFileMem::Rewind()
  157. {
  158. m_Offset = 0;
  159. return HXR_OK;
  160. }