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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxplugin.cpp,v 1.1.2.1 2004/07/09 02:07:27 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. #include "hxtypes.h"
  50. #include "hxresult.h"
  51. #include "hxassert.h"
  52. #include "hxcom.h"
  53. #include "hxcomm.h"
  54. #include "hxstring.h"
  55. #include "hxccf.h"    // IHXCommonClassFactory
  56. #include "ihxpckts.h" // IHXBuffer
  57. #include "hxplugn.h" //IHXComponentPlugin
  58. #include "hxformt.h" //IHXFileFormatObject
  59. #include "hxfwrtr.h" //IHXFileWriter
  60. #include "hxfiles.h" //IHXFileSystemObject
  61. #include "hxrendr.h" //IHXRenderer
  62. #include "hxdtcvt.h" //IHXDataRevert
  63. #include "hxsdesc.h" //IHXStreamDescription
  64. #include "hxplgns.h" //IHXPluginProperties
  65. #include "hxmeta1.h" //IHXMetaFileFormatObject
  66. #include "chxpckts.h" //CHXHeader
  67. #include "hxpluginarchive.h"
  68. #include "hxstrutl.h" //SafeStrCat
  69. #include "dllacces.h"
  70. #include "dllpath.h"
  71. #include "debug.h"
  72. #include "hxheap.h"
  73. #ifdef _DEBUG
  74. #undef HX_THIS_FILE
  75. static const char HX_THIS_FILE[] = __FILE__;
  76. #endif
  77. #if defined(_STATICALLY_LINKED)
  78. #include "staticff.h"
  79. #endif
  80. #include "hxplugindll.h"
  81. #include "hxplugin.h"
  82. BEGIN_INTERFACE_LIST_NOCREATE(HXPlugin)
  83. END_INTERFACE_LIST
  84. const char* const k_pszValueSeperator = "|";
  85. HXPlugin::HXPlugin(IUnknown* pContext)
  86. : m_pValues(0)
  87. , m_pDll(0)
  88. , m_pContext(pContext)
  89. , m_idxPlugin(0)
  90. , m_pClassFactory(NULL)
  91. {
  92.     HX_ASSERT(m_pContext);
  93.     m_pContext->AddRef();
  94.     m_pContext->QueryInterface(IID_IHXCommonClassFactory, (void**)&m_pClassFactory);
  95.     HX_ASSERT(m_pClassFactory);
  96.     m_pClassFactory->CreateInstance(CLSID_IHXValues,(void**)&m_pValues);
  97. }
  98. // deserializing constructor
  99. HXPlugin::HXPlugin(IUnknown* pContext, HXPluginArchiveReader& ar)
  100. : m_pValues(0)
  101. , m_pDll(0)
  102. , m_pContext(pContext)
  103. , m_idxPlugin(0)
  104. , m_pClassFactory(NULL)
  105. {
  106.     m_pContext->AddRef();
  107.     m_pContext->QueryInterface(IID_IHXCommonClassFactory, (void**)&m_pClassFactory);
  108.     ar.Read(m_pValues);
  109. }
  110. // serialize object
  111. void HXPlugin::Archive(HXPluginArchiveWriter& ar)
  112. {
  113.     ar.Write(m_pValues);
  114. }
  115. HXPlugin::~HXPlugin()
  116. {
  117.     HX_RELEASE(m_pValues);
  118.     //HX_RELEASE(m_pDll); weak ref
  119.     HX_RELEASE(m_pClassFactory);
  120.     HX_RELEASE(m_pContext);
  121. }
  122. void HXPlugin::SetPluginProperty(const char* pszPluginType)
  123. {
  124.     DPRINTF(D_INFO, ("HXPlugin()::SetPluginProperty(): type = %sn", pszPluginType));
  125.     IHXBuffer* pBuffer = NULL;
  126.     m_pClassFactory->CreateInstance(CLSID_IHXBuffer,(void**)&pBuffer);
  127.     HX_ASSERT(pBuffer);
  128.     pBuffer->Set((UCHAR*)pszPluginType, strlen(pszPluginType)+1);
  129.     m_pValues->SetPropertyCString(PLUGIN_CLASS, pBuffer);
  130.     pBuffer->Release();
  131. }
  132. BOOL HXPlugin::DoesMatch(IHXValues* pValues)
  133. {
  134.     CHXSimpleList   PossibleValues1;
  135.     CHXSimpleList   PossibleValues2;
  136.     const char*     pPropName = NULL;
  137.     ULONG32     nInValue;
  138.     ULONG32     nOutValue;
  139.     IHXBuffer*     pInBuffer = NULL;
  140.     IHXBuffer*     pOutBuffer = NULL;
  141.     // Check ULONGS 1st
  142.     if (HXR_OK == pValues->GetFirstPropertyULONG32(pPropName, nInValue))
  143.     {
  144. if (HXR_OK==m_pValues->GetPropertyULONG32(pPropName, nOutValue))
  145. {
  146.     if (nInValue != nOutValue)
  147.     {
  148. goto notFoundexit;
  149.     }
  150. }
  151. else
  152. {
  153.     goto notFoundexit;
  154. }
  155. while (HXR_OK == pValues->GetNextPropertyULONG32(pPropName, nInValue))
  156. {
  157.     if (HXR_OK == m_pValues->GetPropertyULONG32(pPropName, nOutValue))
  158.     {
  159. if (nInValue != nOutValue)
  160. {
  161.     goto notFoundexit;
  162. }
  163.     }
  164.     else
  165.     {
  166. goto notFoundexit;
  167.     }
  168. }
  169.     }
  170.     // Check String Props.
  171.     if (HXR_OK == pValues->GetFirstPropertyCString(pPropName, pInBuffer))
  172.     {
  173. if (HXR_OK == m_pValues->GetPropertyCString(pPropName, pOutBuffer))
  174. {
  175.     if (!AreBufferEqual(pOutBuffer, pInBuffer))
  176.     {
  177. goto notFoundexit;
  178.     }
  179. }
  180. else
  181. {
  182.     goto notFoundexit;
  183. }
  184. HX_RELEASE(pInBuffer);
  185. HX_RELEASE(pOutBuffer);
  186. while (HXR_OK == pValues->GetNextPropertyCString(pPropName, pInBuffer))
  187. {
  188.     if (HXR_OK == m_pValues->GetPropertyCString(pPropName, pOutBuffer))
  189.     {
  190. if ( !AreBufferEqual(pOutBuffer, pInBuffer))
  191. {
  192.     goto notFoundexit;
  193. }
  194.     }
  195.     else
  196.     {
  197. goto notFoundexit;
  198.     }
  199.     HX_RELEASE(pInBuffer);
  200.     HX_RELEASE(pOutBuffer);
  201. }
  202.     }
  203.      // Check Buffer Properties
  204.     if (HXR_OK == pValues->GetFirstPropertyBuffer(pPropName, pInBuffer))
  205.     {
  206. // XXXND  Make some utility functions for doing this...
  207. if (HXR_OK == m_pValues->GetPropertyBuffer(pPropName, pOutBuffer))
  208. {
  209.     if( pOutBuffer->GetSize() == pInBuffer->GetSize() )
  210.     {
  211. if( ::memcmp( pOutBuffer->GetBuffer(), pInBuffer->GetBuffer(), pOutBuffer->GetSize() ) )
  212. {
  213.     goto notFoundexit;
  214. }
  215.     }
  216. }
  217. else
  218. {
  219.     goto notFoundexit;
  220. }
  221. HX_RELEASE(pInBuffer);
  222. HX_RELEASE(pOutBuffer);
  223. while (HXR_OK == pValues->GetNextPropertyBuffer(pPropName, pInBuffer))
  224. {
  225.     if (HXR_OK == m_pValues->GetPropertyBuffer(pPropName, pOutBuffer))
  226.     {
  227. // XXXND  Make some utility functions for doing this...
  228. if( pOutBuffer->GetSize() == pInBuffer->GetSize() )
  229. {
  230.     if( ::memcmp( pOutBuffer->GetBuffer(), pInBuffer->GetBuffer(), pOutBuffer->GetSize() ) )
  231.     {
  232. goto notFoundexit;
  233.     }
  234. }
  235.     }
  236.     else
  237.     {
  238. goto notFoundexit;
  239.     }
  240.     HX_RELEASE(pInBuffer);
  241.     HX_RELEASE(pOutBuffer);
  242. }
  243.     }
  244.     return TRUE;    // we made it!
  245. notFoundexit:
  246.     HX_RELEASE(pInBuffer);
  247.     HX_RELEASE(pOutBuffer);
  248.     return FALSE;
  249. }
  250. HX_RESULT HXPlugin::Init(HXPluginDLL* pDll, UINT16 idxPlugin)
  251. {
  252.     HX_ASSERT(!m_pDll);
  253.     HX_ASSERT(pDll);
  254.     m_pDll = pDll; // weak ref
  255.     m_idxPlugin = idxPlugin;
  256.     m_pValues->SetPropertyULONG32(PLUGIN_INDEX, idxPlugin);
  257.     
  258.     IHXBuffer* pBuff = HXBufferUtil::CreateBuffer(m_pClassFactory, m_pDll->GetFileName());
  259.     m_pValues->SetPropertyCString(PLUGIN_FILENAME, pBuff);
  260.     HX_RELEASE(pBuff);
  261.     
  262.     return HXR_OK;
  263. }
  264. BOOL HXPlugin::AreBufferEqual(IHXBuffer* pBigBuff,
  265.    IHXBuffer* pSmallBuff)
  266. {
  267.     char*   pTemp;
  268.     BOOL    bRetVal = FALSE;
  269.     pTemp = new char[pBigBuff->GetSize()];
  270.     strcpy(pTemp, (char*)pBigBuff->GetBuffer()); /* Flawfinder: ignore */
  271.     char* token;
  272.     token = strtok(pTemp, k_pszValueSeperator);
  273.     while (token)
  274.     {
  275. CHXString tokenCHXstring;
  276. CHXString smallCHXstring;
  277. tokenCHXstring = token;
  278. smallCHXstring = (char*)pSmallBuff->GetBuffer();
  279. tokenCHXstring.TrimLeft();
  280. tokenCHXstring.TrimRight();
  281. smallCHXstring.TrimLeft();
  282. smallCHXstring.TrimRight();
  283. if (!strcasecmp(tokenCHXstring, smallCHXstring))
  284. {
  285.     bRetVal = TRUE;
  286.     break;
  287. }
  288. token = strtok(NULL, k_pszValueSeperator);
  289.     }
  290.     delete[] pTemp;
  291.     return bRetVal;
  292. }
  293. HX_RESULT HXPlugin::GetValuesFromDLL(IHXPlugin* pHXPlugin)
  294. {
  295.     HX_RESULT hr = GetBasicValues(pHXPlugin);
  296.     if(SUCCEEDED(hr))
  297.     {
  298. hr = GetExtendedValues(pHXPlugin);
  299.     }
  300.     return hr;
  301. }
  302. HX_RESULT HXPlugin::GetPlugin(IUnknown*& pUnknown )
  303. {
  304.     pUnknown = NULL;
  305.     HX_RESULT hr = HXR_FAIL;
  306.     HX_ASSERT(m_pDll);
  307.     if (m_pDll)
  308.     {
  309.         // load DLL if not loaded
  310.         if (!m_pDll->IsLoaded())
  311.         {
  312.     hr = m_pDll->Load();
  313.         }
  314.         
  315.         if(m_pDll->IsLoaded())
  316.         {
  317.             hr = m_pDll->CreateInstance(&pUnknown, m_idxPlugin);
  318.         }
  319.     }
  320.     return hr;
  321. }
  322. HX_RESULT HXPlugin::GetInstance(IUnknown*& pUnknown, IUnknown* pIUnkOuter )
  323. {
  324.     // Initialize out parameter
  325.     pUnknown = NULL;
  326.     IUnknown* pUnkPlugin = NULL;
  327.     HX_RESULT hr = GetPlugin( pUnkPlugin );
  328.     if( SUCCEEDED(hr) )
  329.     {
  330.         hr = HXR_FAIL;
  331. IHXComponentPlugin* pComponentPlugin = NULL;
  332. if( SUCCEEDED( pUnkPlugin->QueryInterface( IID_IHXComponentPlugin, (void**) &pComponentPlugin ) ) )
  333. {
  334.     // Ask for the correct object by CLSID
  335.     IHXBuffer* pCLSID = NULL;
  336.     if( SUCCEEDED( m_pValues->GetPropertyBuffer( PLUGIN_COMPONENT_CLSID, pCLSID ) ) )
  337.     {
  338. hr = pComponentPlugin->CreateComponentInstance( *(GUID*) pCLSID->GetBuffer(), pUnknown, pIUnkOuter );
  339. HX_RELEASE( pCLSID );
  340.     }
  341.     else
  342.     {
  343. // component plugins must have CLSID
  344.                 HX_ASSERT(false);
  345.     }
  346.     HX_RELEASE( pComponentPlugin );
  347.     HX_RELEASE( pUnkPlugin );
  348. }
  349. else
  350. {
  351.     if( !pIUnkOuter )
  352.     {
  353. pUnknown = pUnkPlugin;
  354.                 pUnknown->AddRef();
  355.                 hr = HXR_OK;
  356.     }
  357.             else
  358.             {
  359.                 // we can't aggregate anything because this is not a component plugin
  360.                 HX_ASSERT(false);
  361.             }
  362.             HX_RELEASE( pUnkPlugin );
  363. }
  364.     }
  365.     return hr;
  366. }
  367. HX_RESULT HXPlugin::GetPluginInfo(IHXValues*& pVals)
  368. {
  369.     if (m_pValues)
  370.     {
  371. pVals = m_pValues;
  372.         pVals->AddRef();
  373. return HXR_OK;
  374.     }
  375.     pVals = NULL;
  376.     return HXR_FAIL;
  377. }
  378. HX_RESULT
  379. HXPlugin::GetBasicValues(IHXPlugin* pHXPlugin)
  380. {
  381.     DPRINTF(D_INFO, ("HXPlugin()::GetBasicValues(): returning nothingn"));
  382.     return HXR_OK;
  383. #if(0)
  384.     const char* pszDescription = NULL;
  385.     const char* pszCopyright = NULL;
  386.     const char* pszMoreInfoUrl = NULL;
  387.     ULONG32 ulVersionNumber = 0;
  388.     BOOL nload_multiple = 0;
  389.     if (HXR_OK != pHXPlugin->GetPluginInfo(nload_multiple, pszDescription,
  390.        pszCopyright, pszMoreInfoUrl, ulVersionNumber))
  391.     {
  392.         return HXR_FAIL;
  393.     }
  394.     IHXBuffer* pBuffer = NULL;
  395.     m_pClassFactory->CreateInstance(CLSID_IHXBuffer,(void**)&pBuffer);
  396.     if (pszDescription)
  397.     {
  398. pBuffer->Set((UCHAR*)pszDescription, strlen(pszDescription)+1);
  399.     }
  400.     m_pValues->SetPropertyCString(PLUGIN_DESCRIPTION2, pBuffer);
  401.     pBuffer->Release();
  402.     m_pClassFactory->CreateInstance(CLSID_IHXBuffer,(void**)&pBuffer);
  403.     if (pszCopyright)
  404.     {
  405. pBuffer->Set((UCHAR*)pszCopyright, strlen(pszCopyright)+1);
  406.     }
  407.     m_pValues->SetPropertyCString(PLUGIN_COPYRIGHT2, pBuffer);
  408.     pBuffer->Release();
  409.     m_pClassFactory->CreateInstance(CLSID_IHXBuffer,(void**)&pBuffer);
  410.     if (pszMoreInfoUrl)
  411.     {
  412. pBuffer->Set((UCHAR*)pszMoreInfoUrl, strlen(pszMoreInfoUrl)+1);
  413.     }
  414.     m_pValues->SetPropertyCString(PLUGIN_COPYRIGHT, pBuffer);
  415.     pBuffer->Release();
  416.     m_pValues->SetPropertyULONG32(PLUGIN_LOADMULTIPLE, nload_multiple);
  417.     m_pValues->SetPropertyULONG32(PLUGIN_VERSION, ulVersionNumber);
  418.     return HXR_OK;
  419. #endif
  420. }
  421. HX_RESULT
  422. HXPlugin::GetExtendedValues(IHXPlugin* pHXPlugin)
  423. {
  424.     IHXFileFormatObject* pFileFormat     = NULL;
  425.     IHXFileWriter* pFileWriter     = NULL;
  426.     IHXFileSystemObject* pFileSystem     = NULL;
  427.     IHXRenderer* pRenderer     = NULL;
  428.     IHXDataRevert* pDataRevert     = NULL;
  429.     IHXStreamDescription* pStreamDescription  = NULL;
  430.     IHXCommonClassFactory* pClassFactory       = NULL;
  431.     IHXPluginProperties* pIHXPluginPropertiesThis = NULL;
  432.     UINT32 nCountInterfaces    = 0;
  433.     DPRINTF(D_INFO, ("HXPlugin()::GetExtendedValues():n"));
  434.     // file system
  435.     if (HXR_OK == pHXPlugin->QueryInterface(IID_IHXFileSystemObject, (void**) &pFileSystem))
  436.     {
  437.         DPRINTF(D_INFO, ("HXPlugin()::GetExtendedValues(): file system object...n"));
  438. const char* pszShortName;
  439. const char* pszProtocol;
  440. if (HXR_OK != pFileSystem->GetFileSystemInfo(pszShortName, pszProtocol))
  441. {
  442.     HX_RELEASE (pFileSystem);
  443.     return  HXR_FAIL;
  444. }
  445. SetPluginProperty(PLUGIN_FILESYSTEM_TYPE);
  446. IHXBuffer* pBuffer = NULL;
  447. m_pClassFactory->CreateInstance(CLSID_IHXBuffer,(void**)&pBuffer);
  448. if (pszShortName)
  449. {
  450.     pBuffer->Set((UCHAR*)pszShortName, strlen(pszShortName)+1);
  451. }
  452. m_pValues->SetPropertyCString(PLUGIN_FILESYSTEMSHORT, pBuffer);
  453. pBuffer->Release();
  454. m_pClassFactory->CreateInstance(CLSID_IHXBuffer,(void**)&pBuffer);
  455. if (pszProtocol)
  456. {
  457.     pBuffer->Set((UCHAR*)pszProtocol, strlen(pszProtocol)+1);
  458. }
  459. m_pValues->SetPropertyCString(PLUGIN_FILESYSTEMPROTOCOL, pBuffer);
  460. pBuffer->Release();
  461. pFileSystem->Release();
  462. nCountInterfaces++;
  463.         DPRINTF(D_INFO, ("HXPlugin()::GetExtendedValues(): fs proto = '%s'n", pszProtocol));
  464.     }
  465.     // file format
  466.     if (HXR_OK == pHXPlugin->QueryInterface(IID_IHXFileFormatObject, (void**)&pFileFormat) ||
  467. HXR_OK == pHXPlugin->QueryInterface(IID_IHXMetaFileFormatObject, (void**)&pFileFormat) ||
  468. HXR_OK == pHXPlugin->QueryInterface(IID_IHXFileWriter, (void**)&pFileWriter))
  469.     {
  470.         DPRINTF(D_INFO, ("HXPlugin()::GetExtendedValues(): file format...n"));
  471. // fine we are in now we will get the correct type.
  472. if (pFileFormat)
  473. {
  474.     pFileFormat->Release();
  475. }
  476. else
  477. {
  478.     pFileWriter->Release();
  479. }
  480. IHXMetaFileFormatObject* pMetaFileFormat;
  481. const char** ppszMimeTypes = NULL;
  482. const char** ppszExtensions = NULL;
  483. const char** ppszOpenNames = NULL;
  484. if (HXR_OK == pHXPlugin->QueryInterface(IID_IHXFileFormatObject, (void**)&pFileFormat))
  485. {
  486.     pFileFormat->GetFileFormatInfo( ppszMimeTypes,
  487.     ppszExtensions,
  488.     ppszOpenNames);
  489.     pFileFormat->Release();
  490.     SetPluginProperty(PLUGIN_FILEFORMAT_TYPE);
  491. }
  492. if (HXR_OK == pHXPlugin->QueryInterface(IID_IHXMetaFileFormatObject, (void**)&pMetaFileFormat))
  493. {
  494.     pMetaFileFormat->GetMetaFileFormatInfo( ppszMimeTypes,
  495.     ppszExtensions,
  496.     ppszOpenNames);
  497.     pMetaFileFormat->Release();
  498.     SetPluginProperty(PLUGIN_METAFILEFORMAT_TYPE);
  499. }
  500. if (HXR_OK == pHXPlugin->QueryInterface(IID_IHXFileWriter, (void**)&pFileWriter))
  501. {
  502.     pFileWriter->GetFileFormatInfo( ppszMimeTypes,
  503.     ppszExtensions,
  504.     ppszOpenNames);
  505.     pFileWriter->Release();
  506.     SetPluginProperty(PLUGIN_FILEWRITER_TYPE);
  507. }
  508. IHXBuffer* pBuffer = NULL;
  509. if (ppszMimeTypes)
  510. {
  511.     CatStrings((char**)ppszMimeTypes, pBuffer);     //XXXAH this had better be const in reality!
  512.     m_pValues->SetPropertyCString(PLUGIN_FILEMIMETYPES, pBuffer);
  513.     pBuffer->Release();
  514. }
  515. if (ppszExtensions)
  516. {
  517.     CatStrings((char**)ppszExtensions, pBuffer); //XXXAH this had better be const in reality!
  518.     m_pValues->SetPropertyCString(PLUGIN_FILEEXTENSIONS, pBuffer);
  519.     pBuffer->Release();
  520. }
  521. if (ppszOpenNames)
  522. {
  523.     CatStrings((char**)ppszOpenNames, pBuffer); //XXXAH this had better be const in reality!
  524.     m_pValues->SetPropertyCString(PLUGIN_FILEOPENNAMES, pBuffer);
  525.     pBuffer->Release();
  526. }
  527. nCountInterfaces++;
  528.     }
  529.     // renderer
  530.     if (HXR_OK == pHXPlugin->QueryInterface(IID_IHXRenderer, (void**)&pRenderer))
  531.     {
  532.         DPRINTF(D_INFO, ("HXPlugin()::GetExtendedValues(): renderer...n"));
  533. char** ppszMimeTypes;
  534.         UINT32 initial_granularity = 0;
  535. // get the basic info
  536. if (HXR_OK == pRenderer->GetRendererInfo((const char**&)ppszMimeTypes, initial_granularity))
  537. {
  538.     IHXBuffer* pBuffer;
  539.     if (ppszMimeTypes)
  540.     {
  541. CatStrings(ppszMimeTypes, pBuffer);
  542.     }
  543.     m_pValues->SetPropertyCString(PLUGIN_RENDERER_MIME, pBuffer);
  544.     pBuffer->Release();
  545.     m_pValues->SetPropertyULONG32(PLUGIN_RENDERER_GRANULARITY, initial_granularity);
  546.     SetPluginProperty(PLUGIN_RENDERER_TYPE);
  547. }
  548. HX_RELEASE(pRenderer);
  549. nCountInterfaces++;
  550.     }
  551.     // stream description
  552.     if (HXR_OK == pHXPlugin->QueryInterface(IID_IHXStreamDescription, (void**)&pStreamDescription))
  553.     {
  554.         DPRINTF(D_INFO, ("HXPlugin()::GetExtendedValues(): stream description...n"));
  555. const char* pszMimeType;
  556. IHXBuffer* pBuffer;
  557. if (HXR_OK != pStreamDescription->GetStreamDescriptionInfo(pszMimeType))
  558. {
  559.     HX_RELEASE (pStreamDescription);
  560.     return HXR_FAIL;
  561. }
  562. pStreamDescription->Release();
  563. m_pClassFactory->CreateInstance(CLSID_IHXBuffer,(void**)&pBuffer);
  564. if (pszMimeType)
  565. {
  566.     pBuffer->Set((UCHAR*)pszMimeType, strlen(pszMimeType)+1);
  567. }
  568. m_pValues->SetPropertyCString(PLUGIN_STREAMDESCRIPTION, pBuffer);
  569. pBuffer->Release();
  570. SetPluginProperty(PLUGIN_STREAM_DESC_TYPE);
  571. nCountInterfaces++;
  572.     }
  573.     // common class factory
  574.     if(HXR_OK == pHXPlugin->QueryInterface(IID_IHXCommonClassFactory,
  575. (void**)&pClassFactory))
  576.     {
  577.         DPRINTF(D_INFO, ("HXPlugin()::GetExtendedValues(): class factory plugin...n"));
  578. SetPluginProperty(PLUGIN_CLASS_FACTORY_TYPE);
  579. HX_RELEASE (pClassFactory);
  580. nCountInterfaces++;
  581.     }
  582.     if( SUCCEEDED( pHXPlugin->QueryInterface( IID_IHXPluginProperties, (void**)&pIHXPluginPropertiesThis ) ) )
  583.     {
  584.         DPRINTF(D_INFO, ("HXPlugin()::GetExtendedValues(): plugin properties interface...n"));
  585. IHXValues* pIHXValuesProperties = NULL;
  586. pHXPlugin->InitPlugin(m_pContext);
  587. if( SUCCEEDED( pIHXPluginPropertiesThis->GetProperties( pIHXValuesProperties ) ) && pIHXValuesProperties )
  588. {
  589.     CHXHeader::mergeHeaders( m_pValues, pIHXValuesProperties );
  590. }
  591. HX_RELEASE(pIHXValuesProperties);
  592.     }
  593.     HX_RELEASE(pIHXPluginPropertiesThis);
  594.     HX_ASSERT(nCountInterfaces<2);
  595.     return HXR_OK;
  596. }
  597. HX_RESULT HXPlugin::AddComponentInfo( IHXValues* pVal )
  598. {
  599.     CHXHeader::mergeHeaders(m_pValues, pVal);
  600.     return HXR_OK; // no way to know if above succeeded or not
  601. }
  602. HX_RESULT HXPlugin::CatStrings(char** pInStrings,
  603.     IHXBuffer*& pOutBuffer)
  604. {
  605.     ULONG32 nAllocedSpace   = 100;
  606.     char*   ptemp     = new char[nAllocedSpace];
  607.     char*   ptemp2     = NULL;
  608.     ULONG32 nStrLen     = 0;
  609.     ULONG32 nNewStrLen     = 0;
  610.     *ptemp = 0;
  611.     pOutBuffer = 0;
  612.     for(; *pInStrings; pInStrings++)
  613.     {
  614. nNewStrLen = strlen(*pInStrings);
  615. if (nNewStrLen+ nStrLen >= nAllocedSpace)
  616. {
  617.     // double if the new string is less than the new space
  618.     // or add double what it required.
  619.     if (nNewStrLen< nAllocedSpace)
  620.     {
  621. nAllocedSpace*=2;
  622.     }
  623.     else
  624.     {
  625. nAllocedSpace+=nNewStrLen*2;
  626.     }
  627.     ptemp2 = new char[nAllocedSpace];
  628.     memcpy(ptemp2, ptemp, nStrLen+1); /* Flawfinder: ignore */
  629.     delete [] ptemp;
  630.     ptemp = ptemp2;
  631. }
  632. // XXXAH I must trim the strings before I add them to this string.
  633. // the find function DEPENDS UPON THIS.
  634. SafeStrCat(ptemp,  *pInStrings, nAllocedSpace);
  635. if (*(pInStrings+1))
  636. {
  637.     SafeStrCat(ptemp,  k_pszValueSeperator, nAllocedSpace); // XXXAH Perhaps a define?
  638. }
  639. nStrLen+=nNewStrLen+1;
  640.     }
  641.     m_pClassFactory->CreateInstance(CLSID_IHXBuffer,(void**)&pOutBuffer);
  642.     pOutBuffer->Set((UCHAR*)ptemp, strlen(ptemp)+1);
  643.     delete[] ptemp;
  644.     return HXR_OK;
  645. }