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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxcache2.h,v 1.3.8.3 2004/07/09 01:45:08 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. #ifndef _HXCACHE2_H_
  50. #define _HXCACHE2_H_
  51. /*
  52.  * Forward declarations of some interfaces defined herein.
  53.  */
  54. typedef _INTERFACE IHXCacheObject IHXCacheObject;
  55. typedef _INTERFACE IHXCacheObjectResponse IHXCacheObjectResponse;
  56. /****************************************************************************
  57.  * 
  58.  *  Interface:
  59.  * 
  60.  * IHXCache2
  61.  * 
  62.  *  Purpose:
  63.  *
  64.  *      IHXCache2 acts as a factory for IHXCacheObject objects.  
  65.  * 
  66.  *  IID_IHXCache2:
  67.  * 
  68.  * {00002E0E-0901-11d1-8B06-00A024406D59}
  69.  * 
  70.  */
  71. DEFINE_GUID(IID_IHXCache2, 0x00002E0E, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  72. 0xa0, 0x24, 0x40, 0x6d, 0x59);
  73. #undef  INTERFACE
  74. #define INTERFACE   IHXCache2
  75. DECLARE_INTERFACE_(IHXCache2, IUnknown)
  76. {
  77.     /*
  78.      * IUnknown methods
  79.      */
  80.     STDMETHOD(QueryInterface) (THIS_
  81. REFIID riid,
  82. void** ppvObj) PURE;
  83.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  84.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  85.     /*
  86.      * IHXCache2 methods
  87.      */
  88.     /************************************************************************
  89.      * Method:
  90.      *
  91.      *     IHXCache2::CreateMemCacheObject
  92.      *
  93.      * Purpose:
  94.      *
  95.      *      Creates an object which implements the IHXCacheObject interface.
  96.      *      This object uses ONLY the memory for caching.
  97.      */
  98.     STDMETHOD(CreateMemCacheObject) (THIS_
  99.          IHXCacheObject**          /*OUT*/ ppObject,
  100.                                          IHXCommonClassFactory*    /*IN*/  pClassFactory) PURE;
  101. #ifdef HELIX_FEATURE_FILECACHE // use the local file system for caching
  102.     /************************************************************************
  103.      * Method:
  104.      *
  105.      *     IHXCache2::CreateFileCacheObject
  106.      *
  107.      * Purpose:
  108.      *
  109.      *      Creates an object which implements the IHXCacheObject interface.
  110.      *      This object *uses the local filesystem* in addition to the memory
  111.      *      for caching.
  112.      */
  113.     STDMETHOD(CreateFileCacheObject) (THIS_
  114.          IHXCacheObject**           /*OUT*/ ppObject,
  115.                                          IHXCommonClassFactory*     /*IN*/      pClassFactory,
  116.                                          UINT32                     /*IN*/      ulFileLength,
  117.                                          char*                      /*IN*/      pFileName) PURE;
  118. #endif
  119.    
  120. }; // IHXCache2 
  121. /****************************************************************************
  122.  * 
  123.  *  Interface:
  124.  * 
  125.  * IHXCacheObject
  126.  * 
  127.  *  Purpose:
  128.  * 
  129.  *      This interface defines methods that are implemented by a simple
  130.  *      cache object. The cache object has only one RESTRICTION and that 
  131.  *      is the data should be added in a linear fashion. To be precise,
  132.  *      the starting offset of the currently being added block should be
  133.  *      exactly one more than the ending offset of the most previously 
  134.  *      added block. Data can be read out in any order.
  135.  *
  136.  *   
  137.  * 
  138.  *  IID_IHXCacheObject:
  139.  * 
  140.  * {00002E10-0901-11d1-8B06-00A024406D59}
  141.  * 
  142.  */
  143. DEFINE_GUID(IID_IHXCacheObject, 0x00002E10, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  144. 0xa0, 0x24, 0x40, 0x6d, 0x59);
  145. #undef  INTERFACE
  146. #define INTERFACE   IHXCacheObject
  147. DECLARE_INTERFACE_(IHXCacheObject, IUnknown)
  148. {
  149.     /*
  150.      * IUnknown methods
  151.      */
  152.     STDMETHOD(QueryInterface) (THIS_
  153. REFIID riid,
  154. void** ppvObj) PURE;
  155.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  156.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  157.     /*
  158.      * IHXCacheObject methods
  159.      */
  160.     /************************************************************************
  161.      * Method:
  162.      *
  163.      *     IHXCacheObject::Init
  164.      *
  165.      * Purpose:
  166.      *
  167.      *     Associates a cache object with the response object
  168.      *     it should notify of operation completeness. Also, sets the Capacity
  169.      *      and threshold of the cache object. The capacity determines how much
  170.      *      data the object can store before it needs to discard already present 
  171.      *      data. Threshold determines when cached data is discarded. If the amount
  172.      *      of data which has been read out of the cache is > (STRICTLY GREATER)
  173.      *      than the threshold percentage of the total capacity (not the current
  174.      *      amount of data present in the cache), then exactly that much amount of
  175.      *      data is discarded so that the threshold condition is satisfied. Note that
  176.      *      0 <= uThreshold < 100.
  177.      */
  178.     STDMETHOD(Init) (THIS_
  179. IHXCacheObjectResponse*   /*IN*/  pCacheObjectResponse,
  180.                         UINT32                    /*IN*/  ulCapacity,
  181.                         UINT32                    /*IN*/  uThreshold) PURE;
  182.     /************************************************************************
  183.      * Method:
  184.      *
  185.      *     IHXCacheObject::GetThreshold
  186.      *
  187.      * Purpose:
  188.      *
  189.      *     Obtain the threshold of the cache object.
  190.      */
  191.     STDMETHOD_(UINT32, GetThreshold) (THIS) PURE;
  192.     /************************************************************************
  193.      * Method:
  194.      *
  195.      *     IHXCacheObject::ChangeThreshold
  196.      *
  197.      * Purpose:
  198.      *
  199.      *     The object keeps caching data until it is full (exhausts its 
  200.      *      capacity). Once it is full, it will overwite existing cached data
  201.      *      with new data ONLY if the percentage of cached data which has been
  202.      *      read from the cache using the ReadBlock() method is greater than a
  203.      *      given percentage of Capacity. This percentage is set by Init()
  204.      *      method. In case the threshold is exceeded, the oldest added data
  205.      *      (the data with the least offset ) will be discarded and the 
  206.      *      amount of data discarded is so that the remaining cached data exactly
  207.      *      satisfies the threshold condidtion.
  208.      *
  209.      *      For eg., this cache object is used in the HTTP/1.0 file system plugin for
  210.      *      mobile devices and in this case, the threshold was set to 70%
  211.      *      i.e., uNewThreshold = 70
  212.      *
  213.      */
  214.     STDMETHOD(ChangeThreshold)      (THIS_
  215.              UINT32  /*IN*/ uNewThreshold) PURE;
  216.     /************************************************************************
  217.      * Method:
  218.      *
  219.      *     IHXCacheObject::GetCapacity
  220.      *
  221.      * Purpose:
  222.      *
  223.      *     Obtain the capacity in bytes of the cache object.
  224.      */
  225.     STDMETHOD_(UINT32, GetCapacity) (THIS) PURE;
  226.     /************************************************************************
  227.      * Method:
  228.      *
  229.      *     IHXCacheObject::ChangeCapacity
  230.      *
  231.      * Purpose:
  232.      *
  233.      *     Changes the capacity of the cache object (in bytes). It is used to
  234.      *      increase or decrease the capacity after the cache object has been
  235.      *      created and it's capacity set usinf Init(). This method can
  236.      *      be called any number of times. If new capacity is less than old capacity,
  237.      *      the oldest data are discarded.
  238.      *
  239.      */
  240.     STDMETHOD(ChangeCapacity)      (THIS_
  241.             UINT32  /*IN*/ newByteCount) PURE;
  242.     /************************************************************************
  243.      * Method:
  244.      *
  245.      *     IHXCacheObject::GetUnusedCapacity
  246.      *
  247.      * Purpose:
  248.      *
  249.      *     Obtain the unused capacity in bytes of the cache object.
  250.      */
  251.     STDMETHOD_(UINT32, GetUnusedCapacity) (THIS) PURE;
  252.     /************************************************************************
  253.      * Method:
  254.      *
  255.      *     IHXCacheObject::AddBlock
  256.      *
  257.      * Purpose:
  258.      *
  259.      *     Adds a block of data to the cache. 
  260.      *      NOTE: !!! The data should be added in a linear fashion. To be precise,
  261.      *      the starting offset of the currently being added block should be
  262.      *      exactly one more than the ending offset of the most previously 
  263.      *      added block.
  264.      *      Returns HXR_OK for success and HXR_OUTOFMEMORY if the cache can't
  265.      *      accomodate the block (since it has a fixed capacity).
  266.      *      
  267.      */
  268.     STDMETHOD(AddBlock) (THIS_
  269.  IHXBuffer* /*IN*/ pBlock) PURE;
  270.     /************************************************************************
  271.      * Method:
  272.      *
  273.      *     IHXCacheObject::VerifyBlock
  274.      *
  275.      * Purpose:
  276.      *
  277.      *     Verify that a block of data is in the cache.
  278.      */
  279.     STDMETHOD(VerifyBlock) (THIS_
  280.  UINT32 /*IN*/ ulBlockOffset,
  281.  UINT32 /*IN*/ ulBlockLength) PURE;
  282.     /************************************************************************
  283.      * Method:
  284.      *
  285.      *     IHXCacheObject::ReadBlock
  286.      *
  287.      * Purpose:
  288.      *
  289.      *     Read a block out of the cache. Returns HXR_OK if it can supply
  290.      *      *all* data. It returns HXR_FAIL if, at some point in the past,
  291.      *      it had the data but has since discarded (a part of whole of) it.
  292.      *      It returns HXR_INCOMPLETE in all other cases, viz
  293.      *       
  294.      *          (1) Only part of the data is present but no part of the data
  295.      *              was discarded in the past.
  296.      *          (2) No part of the requested data is present but is expected
  297.      *              to be recieved in the future.
  298.      *
  299.      *      To understand it clearly, visulaize yourself storing the data of a
  300.      *      remote file as it arrives to you. As you keep storing more and more
  301.      *      data, then the cache keeps discarding some of the old data. Now, this
  302.      *      discarded data can never be got back by cache. Hence when the user
  303.      *      request contains some data which has already been discarded, then 
  304.      *      the cache replies back with HXR_FAIL otherwise it is HXR_INCOMPLETE
  305.      *      or HXR_OK depending on whether on how much of data it can supply *now*.
  306.      *
  307.      */
  308.     STDMETHOD(ReadBlock) (THIS_
  309.  UINT32 /*IN*/ ulBlockOffset,
  310.  UINT32 /*IN*/ ulBlockLength) PURE;
  311.     /************************************************************************
  312.      * Method:
  313.      *     IHXCacheObject::Flush
  314.      *
  315.      * Purpose:
  316.      *
  317.      *     Releases all data buffers cached in the object. The object now
  318.      *      gets to a same state as it was when newly created. After flushing,
  319.      *     the object can be used for writing/reading as before.
  320.      */
  321.     STDMETHOD(Flush) (THIS) PURE;
  322.     /************************************************************************
  323.      * Method:
  324.      *
  325.      *     IHXCacheObject::IsFull
  326.      *
  327.      * Purpose:
  328.      *
  329.      *     Is UnusedCapacity = 0?
  330.      */
  331.     STDMETHOD_(BOOL, IsFull) (THIS) PURE;
  332.     /************************************************************************
  333.      * Method:
  334.      *
  335.      *     IHXCacheObject::IsEmpty
  336.      *
  337.      * Purpose:
  338.      *
  339.      *     Is UnusedCapacity = TotalCapacity?
  340.      */
  341.     STDMETHOD_(BOOL, IsEmpty) (THIS) PURE;
  342. }; // IHXCacheObject
  343. /****************************************************************************
  344.  * 
  345.  *  Interface:
  346.  * 
  347.  * IHXCacheObjectResponse
  348.  * 
  349.  *  Purpose:
  350.  * 
  351.  * Response interface for IHXCacheObject operations
  352.  * 
  353.  *  IID_IHXCacheObjectResponse:
  354.  * 
  355.  * {00002E11-0901-11d1-8B06-00A024406D59}
  356.  * 
  357.  */
  358. DEFINE_GUID(IID_IHXCacheObjectResponse, 0x00002E11, 0x901, 0x11d1, 0x8b, 0x6,
  359. 0x0, 0xa0, 0x24, 0x40, 0x6d, 0x59);
  360. #undef  INTERFACE
  361. #define INTERFACE   IHXCacheObjectResponse
  362. DECLARE_INTERFACE_(IHXCacheObjectResponse, IUnknown)
  363. {
  364.     /*
  365.      * IUnknown methods
  366.      */
  367.     STDMETHOD(QueryInterface) (THIS_
  368. REFIID riid,
  369. void** ppvObj) PURE;
  370.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  371.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  372.     /*
  373.      * IHXCacheObjectResponse methods
  374.      */
  375.     /************************************************************************
  376.      * Method:
  377.      *
  378.      *     IHXCacheObjectResponse::InitDone
  379.      *
  380.      * Purpose:
  381.      *
  382.      *     Notification that IHXCacheObject::Init call has completed.
  383.      */
  384.     STDMETHOD(InitDone) (THIS_
  385.  HX_RESULT /*IN*/ status) PURE;
  386.     /************************************************************************
  387.      * Method:
  388.      *
  389.      *     IHXCacheObjectResponse::ChangeCapacityDone
  390.      *
  391.      * Purpose:
  392.      *
  393.      *     Notification that IHXCacheObject::ChangeCapacity call has completed.
  394.      */
  395.     STDMETHOD(ChangeCapacityDone) (THIS_
  396.                 HX_RESULT /*IN*/ status) PURE;
  397.     /************************************************************************
  398.      * Method:
  399.      *
  400.      *     IHXCacheObjectResponse::AddBlockDone
  401.      *
  402.      * Purpose:
  403.      *
  404.      *     Notification that IHXCacheObject::AddBlock operation has completed.
  405.      */
  406.     STDMETHOD(AddBlockDone) (THIS_
  407. HX_RESULT /*IN*/ status) PURE;
  408.     /************************************************************************
  409.      * Method:
  410.      *
  411.      *     IHXCacheObjectResponse::VerifyBlockDone
  412.      *
  413.      * Purpose:
  414.      *
  415.      *     Notification that IHXCacheObject::VerifyBlock operation has
  416.      *     completed.
  417.      */
  418.     STDMETHOD(VerifyBlockDone) (THIS_
  419. BOOL /*IN*/ bExist) PURE;
  420.     /************************************************************************
  421.      * Method:
  422.      *
  423.      *     IHXCacheObjectResponse::ReadBlockDone
  424.      *
  425.      * Purpose:
  426.      *
  427.      *     Notification that IHXCacheObject::ReadBlock operation has
  428.      *     completed.
  429.      */
  430.     STDMETHOD(ReadBlockDone) (THIS_
  431. HX_RESULT /*IN*/ status,
  432. IHXBuffer* /*IN*/ pBuffer) PURE;
  433.     /************************************************************************
  434.      * Method:
  435.      *
  436.      *     IHXCacheObjectResponse::FlushDone
  437.      *
  438.      * Purpose:
  439.      *
  440.      *     Notification that IHXCacheObject::Flush operation has completed.
  441.      */
  442.     STDMETHOD(FlushDone) (THIS_
  443. HX_RESULT /*IN*/ status) PURE;
  444. }; // IHXCacheObjectResponse
  445. #endif  /* _HXCACHE2_H_ */