macasyncfile.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:7k
源码类别:

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. /*
  36.    Macintosh File buffer
  37.    This is a class which pretends to be a file, yet that reads from the file asynchronously.
  38.    It makes the file async calls which read the file, the callback of which spews into a 
  39.    buffer. This is done by using a timer callback which gets called every 1/2 second to 
  40.    spew more data into the buffer. 
  41.    The global list is meant to be used for storage of all the different file objects
  42.    which will get processed each time through the loop.  
  43.    This will significantly enhance the Macintosh when it comes to local playback of files. 
  44.    Each file acquires a seperate buffer of 64k which is used to buffer file data.
  45.  */
  46. #ifndef __MACASYNCFILE_H
  47. #define __MACASYNCFILE_H
  48. #include "hxtypes.h"
  49. #include "cmacfile.h"
  50. #include "hxslist.h"
  51. #include "cbbqueue.h"
  52. #include "hxthread.h"
  53. #ifndef _MAC_MACHO
  54. #include <Timer.h>
  55. #include <OSUtils.h>
  56. #endif
  57. enum HXAsyncBufferState
  58. {
  59.     AB_STATE_EMPTY = 0,
  60.     AB_STATE_FULL,
  61.     AB_STATE_OUTOFCONTEXT,
  62.     AB_STATE_IGNORED,
  63.     AB_STATE_ASYNC_SEEK, /* asynch seek */
  64.     AB_STATE_ASYNC_INTERNAL_SEEK, /* asynch internal seek */
  65.     AB_STATE_WRITE
  66. };
  67. struct HXAsyncQueueBuffer
  68. {
  69.     HXAsyncQueueBuffer ()
  70.     {
  71. buffer = NULL;
  72. size = 0;
  73. state = AB_STATE_EMPTY;
  74.     current_buf_ptr = 0;
  75.     current_size = 0;
  76.     position_in_file = 0;
  77.     /* msAllocatedBufferCount++;
  78.     char str[64];
  79.     ::sprintf(str, "HXAsyncQueueBuffer constructor, Buffer Count = %d;g", (int) msAllocatedBufferCount);
  80.     DebugStr(c2pstr(str)); */
  81.     }
  82.     ~HXAsyncQueueBuffer ()
  83.     {
  84. if (buffer)
  85. {
  86.     delete[] buffer;
  87. }
  88.     /* msAllocatedBufferCount--;
  89.     char str[64];
  90.     ::sprintf(str, "HXAsyncQueueBuffer destructor, Buffer Count = %d;g", (int) msAllocatedBufferCount);
  91.     DebugStr(c2pstr(str)); */
  92.     }
  93. // static ULONG32 msAllocatedBufferCount;
  94.     char* buffer;
  95.     char* current_buf_ptr;
  96.     ULONG32 current_size;
  97.     ULONG32 size;
  98.     HXAsyncBufferState state;
  99.     ULONG32 position_in_file;
  100. };
  101. struct HXParamBlockRec
  102. {
  103.     HXParamBlockRec()
  104.     {
  105. param = NULL;
  106. entry = NULL;
  107.     }
  108.     ~HXParamBlockRec()
  109.     {
  110.     }
  111.     ParamBlockRec io;
  112.     void *param; // Refcon type param.
  113.     HXAsyncQueueBuffer *entry; // databuffer
  114. };
  115. #define kMacAsyncBuffer 256*1024
  116. #define kNeedToReadThreshhold 4*1024
  117. #define kMacMaxChunkToRead 32*1024
  118. struct CMacAsyncFileResponse
  119. {
  120.     virtual HX_RESULT AsyncReadDone(HX_RESULT result, IHXBuffer* pBuffer) = 0;
  121.     virtual HX_RESULT AsyncSeekDone(HX_RESULT result) = 0;
  122. };
  123. class CMacAsyncFile:public CMacFile
  124. {
  125.     public:
  126.     CMacAsyncFile ();
  127.     virtual ~ CMacAsyncFile ();
  128.     
  129.     STDMETHOD_(ULONG32, AddRef)  (THIS);
  130.     
  131.     STDMETHOD_(ULONG32, Release) (THIS);
  132.     virtual ULONG32 Read (char *buf, ULONG32 count);
  133.     virtual HX_RESULT Open (const char *filename, UINT16 mode, BOOL textflag = 0);
  134.     virtual HX_RESULT Seek (ULONG32 offset, UINT16 fromWhere);
  135.     virtual ULONG32 Tell (void);
  136.     virtual HX_RESULT Close (void);
  137.     HX_RESULT SetAsyncResponse (CMacAsyncFileResponse * pResponse);
  138.     HX_RESULT SafeOpen (const char *filename, UINT16 mode, BOOL textflag = 0, BOOL bAtInterrupt = FALSE);
  139.     HX_RESULT SafeRead (ULONG32 count, BOOL bAtInterrupt = FALSE);
  140. ULONG32   SafeWrite(IHXBuffer* pBuffer, BOOL bAtInterrupt);
  141.     HX_RESULT SafeSeek (ULONG32 offset, UINT16 fromWhere, BOOL bAtInterrupt = FALSE);
  142.     static CHXDataFile *Construct ();
  143. private:
  144.     static IOCompletionUPP zmIOCallbackUPP;
  145.     static pascal void zmIOCallback (HXParamBlockRec * pb);
  146.     void EmptyAsyncQueue ();
  147.     void EnqueueAsyncBuffers ();
  148.     void DeleteAsyncQueueBuffer(HXAsyncQueueBuffer* x, LISTPOSITION pos);
  149.     BOOL FillBufferFromPQ(UINT32 ulSeekPosition);
  150.     void PerformInternalSeek(BOOL ASYNC);
  151.     
  152.     OSErr ReadData(HXParamBlockRec* pb, BOOL ASYNC);
  153. OSErr WriteData(HXParamBlockRec* pb, BOOL ASYNC);
  154.     OSErr SeekData(HXParamBlockRec* pb, BOOL ASYNC);
  155.     void  ProcessPendingRead();
  156.     CBigByteQueue *mReadQueue;
  157.     ULONG32 mSeekFromWhere;
  158.     ULONG32 mSeekPos;
  159.     ULONG32     mFilePos;
  160.     
  161.     /* absolute position of look ahead buffer read in the file*/
  162.     ULONG32     m_ulReadPositionInFile; 
  163.     
  164.     CMacAsyncFileResponse*  m_pResponse;
  165.     UINT32     m_ulPendingReadCount;
  166.     DeferredTask m_DeferredTaskStruct;
  167.     UINT16  m_uNumDeferredTask;
  168.     
  169.     HXMutex*     m_pMutex;
  170. // Make the booleans use only one bit
  171. private:
  172. LONG32 m_lRefCount;
  173. HX_BITFIELD m_bSeekPending : 1; 
  174. HX_BITFIELD m_bFileDone : 1;
  175. HX_BITFIELD m_bReadPending : 1;
  176. public:
  177. HX_BITFIELD m_bDeferredTaskPending : 1;
  178. HX_BITFIELD m_bIsQuitting : 1;
  179. HX_BITFIELD m_bInEnqueueAsyncBuffers : 1;
  180. HX_BITFIELD m_bPendingAsyncSeekCompleted : 1;
  181. HX_BITFIELD m_bAllCallbacksCompleted : 1;
  182. HX_BITFIELD m_bInProcessPendingCallbacks : 1;
  183. HX_BITFIELD m_bSettingSeekState : 1;
  184. HX_BITFIELD m_bCheckFromPQ : 1;
  185. HX_BITFIELD m_bInternalSeekNeeded : 1;
  186. public:
  187.     static pascal void DeferredTaskProc(long param);
  188.     void ReadAsyncData (BOOL ASYNC);
  189. ULONG32 WriteAsyncData(IHXBuffer* pBuffer, BOOL ASYNC);
  190.     void UpdateFilePos (BOOL bASync = TRUE, BOOL bInternal = FALSE);
  191.     void PendingAsyncSeekDone();
  192.     void AllPendingCallbacksDone();
  193.     void ProcessPendingCallbacks();
  194.     
  195.     void AddToThePendingList(void* pNode);
  196.     void ProcessBlock(HXParamBlockRec* pb);
  197.     CHXSimpleList *mAsyncQueue;
  198.     
  199. CHXSimpleList* m_pPendingCallbackList;
  200. CHXSimpleList*  m_pTimedPQList;
  201. CHXSimpleList*  m_pLocationPQList;
  202. UINT32 m_ulTotalPQSize;
  203.     LONG32  mOutStandingCallbacks;
  204. };
  205. #endif