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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: rlogplin.cpp,v 1.2.8.1 2004/07/09 02:09:03 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. #define INITGUID
  50. #include "rlogplin.h"
  51. #include "hxprefutil.h"
  52. #include "hxprefs.h"
  53. #include "chxpckts.h" // CHXHeader
  54. class HXRLPErrorSink : public IHXErrorSink
  55. {
  56. public:
  57.     HXRLPErrorSink(HXRemoteLoggerPlugin* pRLP);
  58.     ~HXRLPErrorSink();
  59.     /*
  60.      *  IUnknown methods
  61.      */
  62.     STDMETHOD(QueryInterface) (THIS_
  63. REFIID riid,
  64. void** ppvObj);
  65.     STDMETHOD_(ULONG32,AddRef) (THIS);
  66.     STDMETHOD_(ULONG32,Release) (THIS);
  67.     /*
  68.      *  IHXErrorSink methods
  69.      */
  70.     /************************************************************************
  71.      * Method:
  72.      *     IHXErrorSink::ErrorOccurred
  73.      * Purpose:
  74.      *     After you have registered your error sink with an
  75.      *     IHXErrorSinkControl (either in the server or player core) this
  76.      *     method will be called to report an error, event, or status message.
  77.      *
  78.      *     The meaning of the arguments is exactly as described in
  79.      *     hxerror.h
  80.      */
  81.     STDMETHOD(ErrorOccurred) (THIS_
  82. const UINT8 unSeverity,  
  83. const ULONG32 ulHXCode,
  84. const ULONG32 ulUserCode,
  85. const char* pUserString,
  86. const char* pMoreInfoURL
  87. );
  88. private:
  89.     ULONG32 m_lRefCount;
  90.     HXRemoteLoggerPlugin* m_pRLP;
  91. };
  92. HXRLPErrorSink::HXRLPErrorSink(HXRemoteLoggerPlugin* pRLP) :
  93.     m_pRLP(pRLP)
  94. {}
  95. HXRLPErrorSink::~HXRLPErrorSink()
  96. {}
  97. /*
  98.  *  IUnknown methods
  99.  */
  100. STDMETHODIMP HXRLPErrorSink::QueryInterface(THIS_
  101.     REFIID riid,
  102.     void** ppvObj)
  103. {
  104.     QInterfaceList qiList[] =
  105.     {
  106. { GET_IIDHANDLE(IID_IUnknown), (IUnknown*)this },
  107. { GET_IIDHANDLE(IID_IHXErrorSink), (IHXErrorSink*) this }
  108.     };
  109.     return QIFind(qiList, QILISTSIZE(qiList), riid, ppvObj);
  110. }
  111. STDMETHODIMP_(ULONG32) HXRLPErrorSink::AddRef(THIS)
  112. {
  113.     return InterlockedIncrement(&m_lRefCount);
  114. }
  115. STDMETHODIMP_(ULONG32) HXRLPErrorSink::Release(THIS)
  116. {
  117.     if (InterlockedDecrement(&m_lRefCount) > 0)
  118.     {
  119.         return m_lRefCount;
  120.     }
  121.     
  122.     delete this;
  123.     return 0;
  124. }
  125.     /*
  126.      *  IHXErrorSink methods
  127.      */
  128.     /************************************************************************
  129.      * Method:
  130.      *     IHXErrorSink::ErrorOccurred
  131.      * Purpose:
  132.      *     After you have registered your error sink with an
  133.      *     IHXErrorSinkControl (either in the server or player core) this
  134.      *     method will be called to report an error, event, or status message.
  135.      *
  136.      *     The meaning of the arguments is exactly as described in
  137.      *     hxerror.h
  138.      */
  139. STDMETHODIMP HXRLPErrorSink::ErrorOccurred(THIS_
  140.    const UINT8 unSeverity,  
  141.    const ULONG32 ulHXCode,
  142.    const ULONG32 ulUserCode,
  143.    const char* pUserString,
  144.    const char* pMoreInfoURL)
  145. {
  146.     HX_RESULT res = HXR_OK ;
  147.     if (m_pRLP)
  148.     {
  149. res = m_pRLP->ErrorOccurred(unSeverity, ulHXCode, ulUserCode,
  150.     pUserString, pMoreInfoURL);
  151.     }
  152.     return res;
  153. }
  154. HXRemoteLoggerPlugin::HXRemoteLoggerPlugin() :
  155.     m_lRefCount(0),
  156.     m_pErrorSink(NULL),
  157.     m_pRemoteLogger(NULL)    
  158. {}
  159. HXRemoteLoggerPlugin::~HXRemoteLoggerPlugin()
  160. {
  161.     HX_RELEASE(m_pErrorSink);
  162.     
  163.     if (m_pRemoteLogger)
  164.     {
  165. m_pRemoteLogger->Close();
  166.     }
  167.     HX_RELEASE(m_pRemoteLogger);
  168. }
  169. /*
  170.  * IUnknown methods
  171.  */
  172. STDMETHODIMP HXRemoteLoggerPlugin::QueryInterface(THIS_
  173.   REFIID riid,
  174.   void** ppvObj)
  175. {
  176.     QInterfaceList qiList[] =
  177.     {
  178. { GET_IIDHANDLE(IID_IUnknown), (IUnknown*)(IHXPlugin*)this },
  179. { GET_IIDHANDLE(IID_IHXPlugin), (IHXPlugin*) this },
  180. { GET_IIDHANDLE(IID_IHXGenericPlugin), (IHXGenericPlugin*) this },
  181. { GET_IIDHANDLE(IID_IHXPlayerCreationSink), (IHXPlayerCreationSink*) this },
  182. { GET_IIDHANDLE(IID_IHXComponentPlugin), (IHXComponentPlugin*) this }
  183.     };
  184.     return QIFind(qiList, QILISTSIZE(qiList), riid, ppvObj);
  185. }
  186. STDMETHODIMP_(ULONG32) HXRemoteLoggerPlugin::AddRef(THIS)
  187. {
  188.     return InterlockedIncrement(&m_lRefCount);
  189. }
  190. STDMETHODIMP_(ULONG32) HXRemoteLoggerPlugin::Release(THIS)
  191. {
  192.     if (InterlockedDecrement(&m_lRefCount) > 0)
  193.     {
  194.         return m_lRefCount;
  195.     }
  196.     
  197.     delete this;
  198.     return 0;
  199. }
  200. /*
  201.  * IHXPlugin methods
  202.  */
  203. /************************************************************************
  204.  * Method:
  205.  *     IHXPlugin::GetPluginInfo
  206.  * Purpose:
  207.  *     Returns the basic information about this plugin. Including:
  208.  *
  209.  *     bMultipleLoad Whether or not this plugin can be instantiated
  210.  * multiple times. All File Formats must set
  211.  * this value to TRUE.  The only other type of
  212.  * plugin that can specify bMultipleLoad=TRUE is
  213.  * a filesystem plugin.  Any plugin that sets
  214.  * this flag to TRUE must not use global variables
  215.  * of any type.
  216.  *
  217.  * Setting this flag to TRUE implies that you
  218.  * accept that your plugin may be instantiated
  219.  * multiple times (possibly in different
  220.  * address spaces).  Plugins are instantiated
  221.  * multiple times only in the server (for
  222.  * performance reasons).
  223.  *
  224.  * An example of a plugin, that must set this
  225.  * flag to FALSE is a filesystem plugin that 
  226.  * uses a single TCP connection to communicate
  227.  * with a database.
  228.  *
  229.  *     pDescription which is used in about UIs (can be NULL)
  230.  *     pCopyright which is used in about UIs (can be NULL)
  231.  *     pMoreInfoURL which is used in about UIs (can be NULL)
  232.  *     ulVersionNumber The version of this plugin.
  233.  */
  234. static const char z_pDescription[] = "Helix Remote Logger Plugin";
  235. static const char z_pCopyright[] = "RealNetworks 2003";
  236. static const char z_pMoreInfoURL[] = "";
  237. STDMETHODIMP HXRemoteLoggerPlugin::GetPluginInfo(THIS_
  238. REF(BOOL)  /*OUT*/ bMultipleLoad,
  239. REF(const char*) /*OUT*/ pDescription,
  240. REF(const char*) /*OUT*/ pCopyright,
  241. REF(const char*) /*OUT*/ pMoreInfoURL,
  242. REF(ULONG32)  /*OUT*/ ulVersionNumber)
  243. {
  244.     bMultipleLoad = FALSE;
  245.     pDescription = z_pDescription;
  246.     pCopyright = z_pCopyright;
  247.     pMoreInfoURL = z_pMoreInfoURL;
  248.     ulVersionNumber = 1;
  249.     return HXR_OK;
  250. }
  251. /************************************************************************
  252.  * Method:
  253.  *     IHXPlugin::InitPlugin
  254.  * Purpose:
  255.  *     Initializes the plugin for use. This interface must always be
  256.  *     called before any other method is called. This is primarily needed 
  257.  *     so that the plugin can have access to the context for creation of
  258.  *     IHXBuffers and IMalloc.
  259.  */
  260. STDMETHODIMP HXRemoteLoggerPlugin::InitPlugin(THIS_
  261.       IUnknown*   /*IN*/  pContext)
  262. {
  263.     HX_RESULT res = HXR_FAILED;
  264.     if (pContext)
  265.     {
  266. IHXPlayerSinkControl* pPSinkCtl = NULL;
  267. if (HXR_OK == pContext->QueryInterface(IID_IHXPlayerSinkControl,
  268.        (void**)&pPSinkCtl))
  269. {
  270.     pPSinkCtl->AddSink(this);
  271. }
  272. HX_RELEASE(pPSinkCtl);
  273. m_pErrorSink = new HXRLPErrorSink(this);
  274. HX_ADDREF(m_pErrorSink);
  275. IHXPreferences* pPrefs = NULL;
  276. if (HXR_OK == pContext->QueryInterface(IID_IHXPreferences,
  277.        (void**)&pPrefs))
  278. {
  279.     IHXBuffer* pRemoteHost = NULL;
  280.     IHXBuffer* pRemoteFile = NULL;
  281.     UINT32 ulPort = 0;
  282.     if ((HXR_OK == pPrefs->ReadPref("RemoteLoggerHost", pRemoteHost))&&
  283. (HXR_OK == ReadPrefINT32(pPrefs, "RemoteLoggerPort", ulPort))&&
  284. (HXR_OK == pPrefs->ReadPref("RemoteLoggerFile", pRemoteFile)))
  285.     {
  286. m_pRemoteLogger = new HXRemoteLogger();
  287. if (m_pRemoteLogger)
  288. {
  289.     m_pRemoteLogger->AddRef();
  290.     res = m_pRemoteLogger->Init(pContext,
  291. (char*)pRemoteHost->GetBuffer(),
  292. (UINT16)ulPort,
  293. (char*)pRemoteFile->GetBuffer());
  294.     if (HXR_OK == res)
  295.     {
  296. m_pRemoteLogger->Log("logger startedn");
  297.     }
  298. }
  299.     }
  300.     HX_RELEASE(pRemoteHost);
  301.     HX_RELEASE(pRemoteFile);
  302.     
  303. }
  304. HX_RELEASE(pPrefs);
  305.     }
  306.     return res;
  307. }
  308. /*
  309.  * IHXGenericPlugin methods
  310.  */
  311. STDMETHODIMP HXRemoteLoggerPlugin::IsGeneric(THIS_
  312.      REF(BOOL)  /*OUT*/ bIsGeneric)
  313. {
  314.     bIsGeneric = TRUE;
  315.     return HXR_OK;
  316. }
  317. /*
  318.  * IHXPlayerCreationSink Methods
  319.  */
  320. /************************************************************************
  321.  * Method:
  322.  *     IHXPlayerCreationSink::PlayerCreated
  323.  * Purpose:
  324.  *     Notification when a new player is created
  325.  *
  326.  */
  327. STDMETHODIMP HXRemoteLoggerPlugin::PlayerCreated(THIS_
  328.  IHXPlayer* pPlayer)
  329. {
  330.     IHXErrorSinkControl* pSinkControl = NULL;
  331.     if (m_pErrorSink &&
  332. (HXR_OK == pPlayer->QueryInterface(IID_IHXErrorSinkControl,
  333.    (void**)&pSinkControl)))
  334.     {
  335. pSinkControl->AddErrorSink(m_pErrorSink, 
  336.    HXLOG_EMERG, HXLOG_DEBUG);
  337.     }
  338.     HX_RELEASE(pSinkControl);
  339.     return HXR_OK;
  340. }
  341. /************************************************************************
  342.  * Method:
  343.  *     IHXPlayerCreationSink::PlayerClosed
  344.  * Purpose:
  345.  *     Notification when an exisitng player is closed
  346.  *
  347.  */
  348. STDMETHODIMP HXRemoteLoggerPlugin::PlayerClosed(THIS_
  349. IHXPlayer* pPlayer)
  350. {
  351.     IHXErrorSinkControl* pSinkControl = NULL;
  352.     if (m_pErrorSink &&
  353. (HXR_OK == pPlayer->QueryInterface(IID_IHXErrorSinkControl,
  354.    (void**)&pSinkControl)))
  355.     {
  356. pSinkControl->RemoveErrorSink(m_pErrorSink);
  357.     }
  358.     HX_RELEASE(pSinkControl);
  359.     return HXR_OK;
  360. }
  361. /*
  362.  * IHXComponentPlugin methods
  363.  */
  364. /************************************************************************
  365.  * Method:
  366.  *     IHXComponentPlugin::GetNumberComponents
  367.  * Purpose:
  368.  */
  369. STDMETHODIMP_(UINT32) HXRemoteLoggerPlugin::GetNumComponents(THIS)
  370. {
  371.     return 1;
  372. }
  373. /************************************************************************
  374.  * Method:
  375.  *     IHXComponentPlugin::GetPackageName
  376.  * Purpose:
  377.  */
  378. STDMETHODIMP_(char const*) HXRemoteLoggerPlugin::GetPackageName(THIS) CONSTMETHOD
  379. {
  380.     return "RemoteLogger";
  381. }
  382. /************************************************************************
  383.  *  Method:
  384.  *     IHXComponentPlugin::GetComponentInfoAtIndex
  385.  *  Purpose:
  386.  */
  387. STDMETHODIMP HXRemoteLoggerPlugin::GetComponentInfoAtIndex(THIS_
  388.                   UINT32 /*IN*/  nIndex,
  389.        REF(IHXValues*)  /*OUT*/ pInfo)
  390. {
  391.     pInfo = NULL;
  392.     if (nIndex  == 0)
  393.     {
  394. pInfo = new CHXHeader();
  395. if (pInfo)
  396. {
  397.     pInfo->AddRef();
  398. }
  399.     }
  400.     return (pInfo) ? HXR_OK : HXR_FAILED;
  401. }
  402. /************************************************************************
  403.  *  Method:
  404.  *     IHXComponentPlugin::CreateComponentInstance
  405.  *  Purpose:
  406.  */
  407. STDMETHODIMP HXRemoteLoggerPlugin::CreateComponentInstance(THIS_
  408.    REFCLSID     /*IN*/  rclsid,
  409.    REF(IUnknown*)  /*OUT*/ ppUnknown,
  410.    IUnknown*     /*IN*/  pUnkOuter)
  411. {
  412.     ppUnknown = NULL;
  413.     return HXR_NOINTERFACE;
  414. }
  415. HX_RESULT HXRemoteLoggerPlugin::ErrorOccurred(const UINT8 unSeverity,  
  416.       const ULONG32 ulHXCode,
  417.       const ULONG32 ulUserCode,
  418.       const char* pUserString,
  419.       const char* pMoreInfoURL)
  420. {
  421.     if (m_pRemoteLogger)
  422.     {
  423. if (pUserString)
  424. {
  425.     int length = strlen(pUserString);
  426.     char* pBuf = new char[length + 2];
  427.     if (pBuf)
  428.     {
  429. strcpy(pBuf, pUserString);
  430. pBuf[length] = 'n';
  431. pBuf[length + 1] = '';
  432. m_pRemoteLogger->Log(pBuf);
  433.     }
  434.     delete [] pBuf;
  435. }
  436.     }
  437.     return HXR_OK;
  438. }
  439. /****************************************************************************
  440.  * 
  441.  *  Function:
  442.  * 
  443.  *        HXCreateInstance()
  444.  * 
  445.  *  Purpose:
  446.  * 
  447.  *        Function implemented by all plugin DLL's to create an instance of 
  448.  *        any of the objects supported by the DLL. This method is similar to 
  449.  *        Window's CoCreateInstance() in its purpose, except that it only 
  450.  *        creates objects from this plugin DLL.
  451.  *
  452.  *        NOTE: Aggregation is never used. Therefore and outer unknown is
  453.  *        not passed to this function, and you do not need to code for this
  454.  *        situation.
  455.  * 
  456.  */
  457. STDAPI ENTRYPOINT(HXCREATEINSTANCE)
  458. (
  459.     IUnknown**  /*OUT*/        ppIUnknown
  460. )
  461. {
  462.     *ppIUnknown = (IUnknown*)(IHXPlugin*)new HXRemoteLoggerPlugin;
  463.     if (*ppIUnknown)
  464.     {
  465.         (*ppIUnknown)->AddRef();
  466.         return HXR_OK;
  467.     }
  468.     return HXR_OUTOFMEMORY;
  469. }
  470. /****************************************************************************
  471.  * 
  472.  *  Function:
  473.  * 
  474.  *        CanUnload()
  475.  * 
  476.  *  Purpose:
  477.  * 
  478.  *        Function implemented by all plugin DLL's if it returns HXR_OK 
  479.  *        then the pluginhandler can unload the DLL
  480.  *
  481.  */
  482. STDAPI ENTRYPOINT(CanUnload2)(void)
  483. {
  484.     return HXR_FAIL;
  485. }