cbufferfile.cp
上传用户: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. #include "CBufferFile.h"
  36. #include "hxtypes.h"
  37. CBufferFile::CBufferFile (void) 
  38. : mLow(NULL)
  39. , mBufSize(0)
  40. , mSize(0)
  41. , mCurPos(0)
  42. , mLoaded(FALSE)
  43. , mBytesTotal(0)
  44. { /* begin CBufferFile */
  45. } /* end CBufferFile */
  46. CBufferFile::~CBufferFile ()
  47. { /* begin ~CBufferFile */
  48. if(mLow) delete [] mLow;
  49. mLow = NULL;
  50. } /* end ~CBufferFile */
  51. Boolean CBufferFile::Specify(short fRefNum, long bufSize)
  52. {
  53. Boolean OK = TRUE;
  54. if(mLow)
  55. {
  56. delete [] mLow;
  57. mLow = NULL;
  58. }
  59. mLow = new char[bufSize];
  60. OK = mLow != NULL;
  61. if(OK)
  62. {
  63. mBufSize = mSize = bufSize;
  64. mHigh = mLow + (mSize >> 1);
  65. a_PB.ioCompletion = NULL;
  66. a_PB.ioVersNum = 0;
  67. a_PB.ioPermssn = fsRdPerm;
  68. a_PB.ioPosMode = fsFromStart;
  69. a_PB.ioMisc = 0;
  70. a_PB.ioRefNum = fRefNum;
  71. b_PB = a_PB;
  72. }
  73. return(OK);
  74. }
  75. long CBufferFile::Copy(Ptr destBuf, long numBytes)
  76. {
  77. long count;
  78. numBytes =  numBytes <= mBytesToCopy ? numBytes : mBytesToCopy;
  79. if(mCurPos + numBytes < mBufSize)
  80. {
  81. count = numBytes;
  82. BlockMoveData(&mLow[mCurPos], destBuf, numBytes);
  83. mCurPos += numBytes;
  84. if(mCurPos > mBufSize >> 1 && fFillLow)
  85. {
  86. Load(kBufLow);
  87. fFillLow = FALSE;
  88. }
  89. }
  90. else
  91. {
  92. count = mBufSize - mCurPos;
  93. BlockMoveData(&mLow[mCurPos], destBuf, count);
  94. BlockMoveData(mLow, &destBuf[count], numBytes - count);
  95. mCurPos = numBytes - count;
  96. if(mCurPos < mBufSize >> 1 && !fFillLow)
  97. {
  98. Load(kBufHigh);
  99. fFillLow = TRUE;
  100. }
  101. }
  102. mBytesToCopy -= numBytes;
  103. return(numBytes);
  104. }
  105. long CBufferFile::Load(short loadFlag)
  106. {
  107. long count;
  108. Ptr   buf;
  109. IOParam *thePB;
  110. switch(loadFlag)
  111. {
  112. case kBufLow:
  113. count = mBufSize >> 1;
  114. buf = mLow;
  115. thePB = &a_PB;
  116. break;
  117. case kBufHigh:
  118. count = mBufSize >> 1;
  119. buf = mHigh;
  120. thePB = &b_PB;
  121. break;
  122. case kBoth:
  123. count = mBufSize;
  124. buf = mLow;
  125. thePB = &a_PB;
  126. break;
  127. default:
  128. count = 0;
  129. break;
  130. }
  131. count = count <= mBytesRemaining ? count : mBytesRemaining;
  132. if(count > 0)
  133. {
  134. thePB->ioReqCount = count;
  135. thePB->ioPosOffset = ioPosOffset;
  136. thePB->ioBuffer = buf;
  137. thePB->ioVersNum = 0;
  138. thePB->ioMisc = 0;
  139. PBReadSync((ParmBlkPtr)thePB);
  140. mBytesRemaining -= count;
  141. ioPosOffset += count;
  142. }
  143. return(count);
  144. }
  145. Boolean CBufferFile::PreLoad(long startPos, long bytesReq)
  146. {
  147. long count;
  148. Boolean OK;
  149. OSErr theErr;
  150. count = (bytesReq <= mSize) ? bytesReq : mSize;
  151. mBufSize = count;
  152. mHigh = mLow + (count >> 1);
  153. mCurPos = 0;
  154. mStartPos = startPos;
  155. mBytesTotal = bytesReq;
  156. mBytesRemaining = bytesReq;
  157. mBytesToCopy = bytesReq;
  158. ioPosOffset = startPos;
  159. a_PB.ioMisc = 0;
  160. a_PB.ioVersNum = 0;
  161. a_PB.ioResult = 0;
  162. a_PB.ioReqCount = count;
  163. a_PB.ioPosOffset = startPos;
  164. a_PB.ioBuffer = mLow;
  165. b_PB = a_PB;
  166. theErr = PBReadSync((ParmBlkPtr)&a_PB);
  167. OK = theErr == noErr;
  168. if(OK)
  169. {
  170. mBytesRemaining -= count;
  171. ioPosOffset += count;
  172. fFillLow = TRUE;
  173. }
  174. else if(theErr == eofErr)
  175. {
  176. mBytesRemaining = 0;
  177. ioPosOffset += count;
  178. fFillLow = TRUE;
  179. OK = TRUE;
  180. }
  181. mLoaded = OK;
  182. return(OK);
  183. }
  184. void CBufferFile::CheckBuffer(void)
  185. {
  186. if(mCurPos > mBufSize >> 1 && fFillLow)
  187. {
  188. Load(kBufLow);
  189. fFillLow = FALSE;
  190. }
  191. else if(mCurPos < mBufSize >> 1 && !fFillLow)
  192. {
  193. Load(kBufHigh);
  194. fFillLow = TRUE;
  195. }
  196. }