cwritefile.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 "CWriteFile.h"
  36. #include "hxassert.h"
  37. CWriteFile::CWriteFile (void) 
  38. : mLow(NULL)
  39. , mBufSize(0)
  40. , mWrittenSize(0)
  41. , mCurPos(0)
  42. , fWriteLow (1)
  43. , ioPosOffset (0)
  44. { /* begin CWriteFile */
  45. } /* end CWriteFile */
  46. CWriteFile::~CWriteFile ()
  47. { /* begin ~CWriteFile */
  48. // wait for all writes to complete
  49. while(a_PB.ioResult > 1 || b_PB.ioResult > 1)
  50. {
  51. }
  52. // flush remaining data from buffer
  53. if(mWrittenSize > 0)
  54. {
  55. long count;
  56. ::SetFPos(a_PB.ioRefNum,fsFromStart,ioPosOffset);
  57. count = mWrittenSize;
  58. if(mWrittenSize >= mBufSize >> 1)
  59. {
  60. count -= (mBufSize >> 1);
  61. ::FSWrite(a_PB.ioRefNum,&count,mHigh);
  62. }
  63. else
  64. {
  65. ::FSWrite(a_PB.ioRefNum,&count,mLow);
  66. }
  67. //Update file position for fRefNum
  68. ::SetFPos(a_PB.ioRefNum,fsFromStart,ioPosOffset + count);
  69. }
  70. if(mLow) 
  71. delete [] mLow;
  72. mLow = NULL;
  73. } /* end ~CWriteFile */
  74. Boolean CWriteFile::Specify(short fRefNum, long offset,long bufSize)
  75. {
  76. Boolean OK = TRUE;
  77. if(mLow)
  78. {
  79. delete [] mLow;
  80. mLow = NULL;
  81. }
  82. mLow = new char[bufSize];
  83. OK = mLow != NULL;
  84. fWriteLow = TRUE;
  85. ioPosOffset = offset;
  86. if(OK)
  87. {
  88. mBufSize = bufSize;
  89. mWrittenSize = 0;
  90. mCurPos = 0;
  91. mHigh = mLow + (mBufSize >> 1);
  92. a_PB.ioCompletion = NULL;
  93. a_PB.ioVersNum = 0;
  94. a_PB.ioPermssn = fsWrPerm;
  95. a_PB.ioPosMode = fsFromStart;
  96. a_PB.ioMisc = 0;
  97. a_PB.ioRefNum = fRefNum;
  98. a_PB.ioResult = 0;
  99. b_PB = a_PB;
  100. }
  101. return(OK);
  102. }
  103. void CWriteFile::Seek(long pos)
  104. {
  105. HX_ASSERT( pos <= mWrittenSize );
  106. mCurPos = pos;
  107. }
  108. void CWriteFile::write_data(Ptr buf, long numBytes)
  109. {
  110. long count;
  111. if(mCurPos + numBytes < mBufSize)
  112. {
  113. count = numBytes;
  114. ::BlockMoveData(buf, &mLow[mCurPos], numBytes);
  115. mCurPos += numBytes;
  116. if(mCurPos > mBufSize >> 1 && fWriteLow)
  117. {
  118. Write(kWriteBufLow);
  119. fWriteLow = FALSE;
  120. }
  121. if(mCurPos > mWrittenSize )
  122. {
  123. mWrittenSize = mCurPos;
  124. }
  125. }
  126. else
  127. {
  128. count = mBufSize - mCurPos;
  129. ::BlockMoveData(buf,&mLow[mCurPos], count);
  130. ::BlockMoveData(&buf[count], mLow, numBytes - count);
  131. mCurPos = numBytes - count;
  132. if(mCurPos < mBufSize >> 1 && !fWriteLow)
  133. {
  134. Write(kWriteBufHigh);
  135. fWriteLow = TRUE;
  136. }
  137. }
  138. }
  139. void CWriteFile::Write(short writeFlag)
  140. {
  141. long count;
  142. Ptr   buf;
  143. IOParam *thePB;
  144. switch(writeFlag)
  145. {
  146. case kWriteBufLow:
  147. count = mBufSize >> 1;
  148. buf = mLow;
  149. thePB = &a_PB;
  150. break;
  151. case kWriteBufHigh:
  152. count = mBufSize >> 1;
  153. buf = mHigh;
  154. thePB = &b_PB;
  155. break;
  156. case kWriteBoth:
  157. count = mBufSize;
  158. buf = mLow;
  159. thePB = &a_PB;
  160. break;
  161. default:
  162. count = 0;
  163. break;
  164. }
  165. if(count > 0)
  166. {
  167. thePB->ioReqCount = count;
  168. thePB->ioPosOffset = ioPosOffset;
  169. thePB->ioBuffer = buf;
  170. thePB->ioVersNum = 0;
  171. thePB->ioMisc = 0;
  172. ::PBWriteAsync((ParmBlkPtr)thePB);
  173. ioPosOffset += count;
  174. }
  175. }