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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxbrdcst.h,v 1.2.50.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 _HXBRDCST_H_
  50. #define _HXBRDCST_H_
  51. /*
  52.  * Forward declarations of some interfaces defined here-in.
  53.  */
  54. typedef _INTERFACE  IHXRemoteBroadcastServices               IHXRemoteBroadcastServices;
  55. typedef _INTERFACE  IHXRemoteBroadcastConfiguration          IHXRemoteBroadcastConfiguration;
  56. typedef _INTERFACE  IHXRemoteBroadcastConfigurationResponse  IHXRemoteBroadcastConfigurationResponse;
  57. typedef _INTERFACE  IHXAuthResponse  IHXAuthResponse;
  58. /****************************************************************************
  59.  * 
  60.  *  Interface:
  61.  * 
  62.  * IHXRemoteBroadcastServices
  63.  * 
  64.  *  Purpose:
  65.  * 
  66.  *       To act as the interface to the RealSystem iQ broadcast engine in
  67.  *  contexts that exist outside of the Helix Server process space.     
  68.  * 
  69.  *  IID_IHXRemoteBroadcastServices:
  70.  * 
  71.  *    {8F933081-27B6-11d5-9569-00902742E832}
  72.  */
  73. DEFINE_GUID(IID_IHXRemoteBroadcastServices, 0x8f933081, 
  74.     0x27b6, 0x11d5, 0x95, 0x69, 0x0, 0x90, 0x27, 0x42, 0xe8, 0x32);
  75. #undef  INTERFACE
  76. #define INTERFACE   IHXRemoteBroadcastServices
  77. DECLARE_INTERFACE_(IHXRemoteBroadcastServices, IUnknown)
  78. {
  79.     /*
  80.      * IUnknown methods
  81.      */
  82.     STDMETHOD(QueryInterface) (THIS_
  83. REFIID riid,
  84. void** ppvObj) PURE;
  85.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  86.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  87.     /*
  88.      * IHXRemoteBroadcastServices Methods
  89.      */
  90.     /************************************************************************
  91.      * Method:
  92.      *     IHXRemoteBroadcastServices::InitRemoteBroadcast
  93.      * Purpose:
  94.      *      Load an initial configuration for the remote broadcast plugin
  95.      *
  96.      */
  97.     STDMETHOD(InitRemoteBroadcast) (THIS_
  98. IHXBuffer* pConfgFilePath) PURE;
  99.     /************************************************************************
  100.      *  Method:
  101.      *      IHXRemoteBroadcastServices::InitRemoteBroadcast
  102.      *  Purpose:
  103.      *       Load an initial configuration for the remote broadcast plugin
  104.      *       : the RBS Authentication version
  105.      */
  106.     STDMETHOD(InitRemoteBroadcast)      (THIS_
  107.                                         IHXBuffer* pConfgFilePath,
  108.                                         IHXAuthResponse *pAuthResponse,
  109.                                         IHXBuffer* pSessionName) PURE;
  110.     
  111.     /************************************************************************
  112.      * Method:
  113.      *     IHXRemoteBroadcastServices::NewRemoteBroadcastSession
  114.      * Purpose:
  115.      *      Initiate a new broadcast session
  116.      *
  117.      */
  118.     STDMETHOD(NewRemoteBroadcastSession)  (THIS_
  119.    IHXBuffer*          pSessionName,
  120.    IUnknown* pSessionSource) PURE;
  121.     /************************************************************************
  122.      * Method:
  123.      *     IHXRemoteBroadcastServices::Process
  124.      * Purpose:
  125.      *      Yeild processing time to the scheduler
  126.      *
  127.      */
  128.     STDMETHOD(Process)             (THIS) PURE;
  129.     /************************************************************************
  130.      * Method:
  131.      *     IHXRemoteBroadcastServices::Close
  132.      * Purpose:
  133.      *      Cleanup Remote Broadcast Services. 
  134.      *
  135.      */
  136.     STDMETHOD(Close)             (THIS) PURE;
  137.     /************************************************************************
  138.      * Method:
  139.      *     IHXRemoteBroadcastServices::GetTime
  140.      * Purpose:
  141.      *      Get current scheduler time
  142.      *
  143.      */
  144.     STDMETHOD_(UINT32,GetTime)     (THIS) PURE;
  145. };
  146. // {C88D3530-1455-11d6-93D7-0002B31090EC}
  147. DEFINE_GUID(IID_IHXAuthResponse, 
  148. 0xc88d3530, 0x1455, 0x11d6, 0x93, 0xd7, 0x0, 0x2, 0xb3, 0x10, 0x90, 0xec);
  149. #undef  INTERFACE
  150. #define INTERFACE   IHXAuthResponse
  151. DECLARE_INTERFACE_(IHXAuthResponse, IUnknown)
  152. {
  153.     /*
  154.      * IUnknown methods
  155.      */
  156.     STDMETHOD(QueryInterface) (THIS_
  157. REFIID riid,
  158. void** ppvObj) PURE;
  159.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  160.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  161.     /*
  162.      * IHXAuthResponse Methods
  163.      */
  164.     STDMETHOD(AuthDone)  (THIS_
  165. BOOL bAuthSucceeded) PURE;
  166. };
  167. /****************************************************************************
  168.  * 
  169.  *  Interface:
  170.  * 
  171.  * IHXRemoteBroadcastConfiguration
  172.  * 
  173.  *  Purpose:
  174.  * 
  175.  *     To provide a simple interface to the XML based config
  176.  * 
  177.  *  IID_IHXRemoteBroadcastConfiguration:
  178.  *
  179.  *  {8F933083-27B6-11d5-9569-00902742E832}
  180.  * 
  181.  */
  182. DEFINE_GUID(IID_IHXRemoteBroadcastConfiguration, 
  183.     0x8f933083, 0x27b6, 0x11d5, 0x95, 0x69, 0x0, 0x90, 0x27, 0x42, 0xe8, 0x32);
  184. #undef  INTERFACE
  185. #define INTERFACE   IHXRemoteBroadcastConfiguration
  186. DECLARE_INTERFACE_(IHXRemoteBroadcastConfiguration, IUnknown)
  187. {
  188.     /*
  189.      * IUnknown methods
  190.      */
  191.     STDMETHOD(QueryInterface) (THIS_
  192. REFIID riid,
  193. void** ppvObj) PURE;
  194.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  195.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  196.     /*
  197.      * IHXRemoteBroadcastServices Methods
  198.      */
  199.     STDMETHOD(Init)  (THIS_
  200.  IHXRemoteBroadcastConfigurationResponse* pResponse) PURE;
  201.     /************************************************************************
  202.      * Method:
  203.      *     IHXRemoteBroadcastConfiguration::AddDestination
  204.      * Purpose:
  205.      *
  206.      *    Add a new destination to which to broadcast.  Destinations
  207.      *  are defined as an IHXValues struct with the following fields
  208.      *  
  209.      *  Name             <string>      unique user defined name of destination 
  210.      *  RelayMode        <int>         TRUE or FALSE, should always be FALSE for remote
  211.      *  Protocol         <string>      protocol string: <udp/unicast>, <udp/multicast>, <tcp>
  212.      *  Password         <string>      user defined
  213.      *  SecurityType     <string>      'None' or 'Basic' 
  214.      *  Address          <string>      hostname or IP of remote receiver
  215.      *  PortRange        <string/int>  outbound port range to use (should match receiver)
  216.      *  PathPrefix       <string>      prefix of media to broadcast (can be * for wildcard)
  217.      *  ResendSupported  <int>         TRUE or FALSE
  218.      *  FECLevel         <int>         % redundancy to use for FEC    
  219.      *   TTL              <int>         multicast packet time to live.
  220.      *
  221.      *   TCPReconectTimeout      <int>     
  222.      *   TCPWouldBlockedTimeout  <int>
  223.      *   RedundancySendInterval  <int>
  224.      *   AcquisitionDataInterval <int>  rate (in seconds) at which to send header blocks
  225.      *                                  for stream (re)establishment.
  226.      */
  227.     STDMETHOD(AddDestination)    (THIS_
  228.  IHXValues*   pDestination,
  229.  BOOL          bOverwrite) PURE;
  230.     
  231.     STDMETHOD(UpdateDestination)        (THIS_
  232.  IHXValues*   pDestination) PURE;
  233.     
  234.     STDMETHOD(RemoveDestination)  (THIS_
  235.  const char*   pDestinationName) PURE;
  236.     
  237.     STDMETHOD(RetrieveDestination)      (THIS_
  238.  const char*   pDestinationName, 
  239.  REF(IHXValues*) /*OUT*/ pDestination) PURE;
  240.      /************************************************************************
  241.      * Method:
  242.      *     IHXRemoteBroadcastConfiguration::AddPullSplit
  243.      * Purpose:
  244.      *
  245.      *    Add a new pullsplit to which to broadcast.  PullSplits
  246.      *  are defined as an IHXValues struct with the following fields
  247.      *  
  248.      *  Name             <string>      unique user defined name of destination 
  249.      *  ListenPort       <int>         port on which pull split connections are accepted
  250.      *  LocalAddress     <string>      address of interface to which to bind
  251.      *   PathPrefix       <string>      prefix of media to broadcast (can be * for wildcard)
  252.      *  Password         <string>      user defined
  253.      *  SecurityType     <string>      'None' or 'Basic' 
  254.      *
  255.      *   TCPReconectTimeout      <int>     
  256.      *   TCPWouldBlockedTimeout  <int>
  257.      */
  258.     STDMETHOD(AddPullSplit)            (THIS_
  259.  IHXValues*   pPullSplit,
  260.  BOOL          bOverwrite) PURE;
  261.     
  262.     STDMETHOD(UpdatePullSplit)          (THIS_
  263.  IHXValues*   pPullSplit) PURE;
  264.     
  265.     STDMETHOD(RemovePullSplit)          (THIS_
  266.  const char*   pPullSplitName) PURE;
  267.     
  268.     STDMETHOD(RetrievePullSplit)         (THIS_
  269.  const char*   pPullSplitName, 
  270.  REF(IHXValues*) /*OUT*/ pPullSplit) PURE;
  271.     STDMETHOD(Commit)  (THIS) PURE;
  272. };
  273. /****************************************************************************
  274.  * 
  275.  *  Interface:
  276.  * 
  277.  * IHXRemoteBroadcastConfigurationResponse
  278.  * 
  279.  *  Purpose:
  280.  * 
  281.  *     To notify the user of IHXRemoteBroadcastConfiguration of the status
  282.  * asychronous configuration modifications.
  283.  * 
  284.  *  IID_IHXRemoteBroadcastConfigurationResponse:
  285.  *
  286.  *  {67C1BA10-39BC-11d5-956A-00902742E832}
  287.  * 
  288.  */
  289. DEFINE_GUID(IID_IHXRemoteBroadcastConfigurationResponse, 
  290. 0x67c1ba10, 0x39bc, 0x11d5, 0x95, 0x6a, 0x0, 0x90, 0x27, 0x42, 0xe8, 0x32);
  291. #undef  INTERFACE
  292. #define INTERFACE   IHXRemoteBroadcastConfigurationResponse
  293. DECLARE_INTERFACE_(IHXRemoteBroadcastConfigurationResponse, IUnknown)
  294. {
  295.     STDMETHOD(CommitDone)  (THIS_
  296.  HX_RESULT hResult) PURE;
  297. };
  298. #endif /* _HXBRDCST_H_ */