macasyncfile.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:8k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: macasyncfile.h,v 1.3.36.3 2004/07/09 01:44:30 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. /*
  50.    Macintosh File buffer
  51.    This is a class which pretends to be a file, yet that reads from the file asynchronously.
  52.    It makes the file async calls which read the file, the callback of which spews into a 
  53.    buffer. This is done by using a timer callback which gets called every 1/2 second to 
  54.    spew more data into the buffer. 
  55.    The global list is meant to be used for storage of all the different file objects
  56.    which will get processed each time through the loop.  
  57.    This will significantly enhance the Macintosh when it comes to local playback of files. 
  58.    Each file acquires a seperate buffer of 64k which is used to buffer file data.
  59.  */
  60. #ifndef __MACASYNCFILE_H
  61. #define __MACASYNCFILE_H
  62. #include "hxtypes.h"
  63. #include "cmacfile.h"
  64. #include "hxslist.h"
  65. #include "cbbqueue.h"
  66. #include "hxthread.h"
  67. #ifndef _MAC_MACHO
  68. #include <Timer.h>
  69. #include <OSUtils.h>
  70. #endif
  71. enum HXAsyncBufferState
  72. {
  73.     AB_STATE_EMPTY = 0,
  74.     AB_STATE_FULL,
  75.     AB_STATE_OUTOFCONTEXT,
  76.     AB_STATE_IGNORED,
  77.     AB_STATE_ASYNC_SEEK, /* asynch seek */
  78.     AB_STATE_ASYNC_INTERNAL_SEEK, /* asynch internal seek */
  79.     AB_STATE_WRITE
  80. };
  81. struct HXAsyncQueueBuffer
  82. {
  83.     HXAsyncQueueBuffer ()
  84.     {
  85. buffer = NULL;
  86. size = 0;
  87. state = AB_STATE_EMPTY;
  88.     current_buf_ptr = 0;
  89.     current_size = 0;
  90.     position_in_file = 0;
  91.     /* msAllocatedBufferCount++;
  92.     char str[64];
  93.     ::sprintf(str, "HXAsyncQueueBuffer constructor, Buffer Count = %d;g", (int) msAllocatedBufferCount);
  94.     DebugStr(c2pstr(str)); */
  95.     }
  96.     ~HXAsyncQueueBuffer ()
  97.     {
  98. if (buffer)
  99. {
  100.     delete[] buffer;
  101. }
  102.     /* msAllocatedBufferCount--;
  103.     char str[64];
  104.     ::sprintf(str, "HXAsyncQueueBuffer destructor, Buffer Count = %d;g", (int) msAllocatedBufferCount);
  105.     DebugStr(c2pstr(str)); */
  106.     }
  107. // static ULONG32 msAllocatedBufferCount;
  108.     char* buffer;
  109.     char* current_buf_ptr;
  110.     ULONG32 current_size;
  111.     ULONG32 size;
  112.     HXAsyncBufferState state;
  113.     ULONG32 position_in_file;
  114. };
  115. struct HXParamBlockRec
  116. {
  117.     HXParamBlockRec()
  118.     {
  119. param = NULL;
  120. entry = NULL;
  121.     }
  122.     ~HXParamBlockRec()
  123.     {
  124.     }
  125.     ParamBlockRec io;
  126.     void *param; // Refcon type param.
  127.     HXAsyncQueueBuffer *entry; // databuffer
  128. };
  129. #define kMacAsyncBuffer 256*1024
  130. #define kNeedToReadThreshhold 4*1024
  131. #define kMacMaxChunkToRead 32*1024
  132. struct CMacAsyncFileResponse
  133. {
  134.     virtual HX_RESULT AsyncReadDone(HX_RESULT result, IHXBuffer* pBuffer) = 0;
  135.     virtual HX_RESULT AsyncSeekDone(HX_RESULT result) = 0;
  136. };
  137. class CMacAsyncFile:public CMacFile
  138. {
  139.     public:
  140.     CMacAsyncFile ();
  141.     virtual ~ CMacAsyncFile ();
  142.     
  143.     STDMETHOD_(ULONG32, AddRef)  (THIS);
  144.     
  145.     STDMETHOD_(ULONG32, Release) (THIS);
  146.     virtual ULONG32 Read (char *buf, ULONG32 count);
  147.     virtual HX_RESULT Open (const char *filename, UINT16 mode, BOOL textflag = 0);
  148.     virtual HX_RESULT Seek (ULONG32 offset, UINT16 fromWhere);
  149.     virtual ULONG32 Tell (void);
  150.     virtual HX_RESULT Close (void);
  151.     HX_RESULT SetAsyncResponse (CMacAsyncFileResponse * pResponse);
  152.     HX_RESULT SafeOpen (const char *filename, UINT16 mode, BOOL textflag = 0, BOOL bAtInterrupt = FALSE);
  153.     HX_RESULT SafeRead (ULONG32 count, BOOL bAtInterrupt = FALSE);
  154. ULONG32   SafeWrite(IHXBuffer* pBuffer, BOOL bAtInterrupt);
  155.     HX_RESULT SafeSeek (ULONG32 offset, UINT16 fromWhere, BOOL bAtInterrupt = FALSE);
  156.     static CHXDataFile *Construct ();
  157. private:
  158.     static IOCompletionUPP zmIOCallbackUPP;
  159.     static pascal void zmIOCallback (HXParamBlockRec * pb);
  160.     void EmptyAsyncQueue ();
  161.     void EnqueueAsyncBuffers ();
  162.     void DeleteAsyncQueueBuffer(HXAsyncQueueBuffer* x, LISTPOSITION pos);
  163.     BOOL FillBufferFromPQ(UINT32 ulSeekPosition);
  164.     void PerformInternalSeek(BOOL ASYNC);
  165.     
  166.     OSErr ReadData(HXParamBlockRec* pb, BOOL ASYNC);
  167. OSErr WriteData(HXParamBlockRec* pb, BOOL ASYNC);
  168.     OSErr SeekData(HXParamBlockRec* pb, BOOL ASYNC);
  169.     void  ProcessPendingRead();
  170.     CBigByteQueue *mReadQueue;
  171.     ULONG32 mSeekFromWhere;
  172.     ULONG32 mSeekPos;
  173.     ULONG32     mFilePos;
  174.     
  175.     /* absolute position of look ahead buffer read in the file*/
  176.     ULONG32     m_ulReadPositionInFile; 
  177.     
  178.     CMacAsyncFileResponse*  m_pResponse;
  179.     UINT32     m_ulPendingReadCount;
  180.     DeferredTask m_DeferredTaskStruct;
  181.     UINT16  m_uNumDeferredTask;
  182.     
  183.     HXMutex*     m_pMutex;
  184. // Make the booleans use only one bit
  185. private:
  186. LONG32 m_lRefCount;
  187. HX_BITFIELD m_bSeekPending : 1; 
  188. HX_BITFIELD m_bFileDone : 1;
  189. HX_BITFIELD m_bReadPending : 1;
  190. public:
  191. HX_BITFIELD m_bDeferredTaskPending : 1;
  192. HX_BITFIELD m_bIsQuitting : 1;
  193. HX_BITFIELD m_bInEnqueueAsyncBuffers : 1;
  194. HX_BITFIELD m_bPendingAsyncSeekCompleted : 1;
  195. HX_BITFIELD m_bAllCallbacksCompleted : 1;
  196. HX_BITFIELD m_bInProcessPendingCallbacks : 1;
  197. HX_BITFIELD m_bSettingSeekState : 1;
  198. HX_BITFIELD m_bCheckFromPQ : 1;
  199. HX_BITFIELD m_bInternalSeekNeeded : 1;
  200. public:
  201.     static pascal void DeferredTaskProc(long param);
  202.     void ReadAsyncData (BOOL ASYNC);
  203. ULONG32 WriteAsyncData(IHXBuffer* pBuffer, BOOL ASYNC);
  204.     void UpdateFilePos (BOOL bASync = TRUE, BOOL bInternal = FALSE);
  205.     void PendingAsyncSeekDone();
  206.     void AllPendingCallbacksDone();
  207.     void ProcessPendingCallbacks();
  208.     
  209.     void AddToThePendingList(void* pNode);
  210.     void ProcessBlock(HXParamBlockRec* pb);
  211.     CHXSimpleList *mAsyncQueue;
  212.     
  213. CHXSimpleList* m_pPendingCallbackList;
  214. CHXSimpleList*  m_pTimedPQList;
  215. CHXSimpleList*  m_pLocationPQList;
  216. UINT32 m_ulTotalPQSize;
  217.     LONG32  mOutStandingCallbacks;
  218. };
  219. #endif