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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: dllaccesbridge.h,v 1.1.18.3 2004/07/09 01:43:51 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 _DLLACCESBRIDGE_H_
  50. #define _DLLACCESBRIDGE_H_
  51. /************************************************************************
  52.  *  Defines
  53.  */
  54. #if defined(HELIX_FEATURE_DLLACCESS_CLIENT)
  55. #define DLL_ACCESSBRIDGE_IMPL DLLAccessClient
  56. #define DLL_ACCESSBRIDGE_OPEN(x, y, z) open((x), (y), (z))
  57. #include "dllaccesclient.h"
  58. #else // HELIX_FEATURE_DLLACCESS_CLIENT
  59. #define DLL_ACCESSBRIDGE_IMPL DLLAccess
  60. #define DLL_ACCESSBRIDGE_OPEN(x, y, z) open((x), (y))
  61. #include "dllacces.h"
  62. #endif // HELIX_FEATURE_DLLACCESS_CLIENT
  63. /************************************************************************
  64.  *  Includes
  65.  */
  66. #include "hxcom.h"
  67. class DLLAccessBridge
  68. {
  69. public:
  70.     /////////////////////////////////////////////////////////////
  71.     // Function: 
  72.     //     DLLAccessBridge
  73.     //
  74.     // Parameters:
  75.     //     None
  76.     //
  77.     // Returns:
  78.     //     Nothing
  79.     //
  80.     // Notes:
  81.     //     Default constructor initializes internal structures for
  82.     //     subsequent call to open()
  83.     //
  84.     DLLAccessBridge()
  85.     {
  86. ;
  87.     }
  88.     /////////////////////////////////////////////////////////////
  89.     // Function:
  90.     //     DLLAccessBridge
  91.     //
  92.     // Parameters:
  93.     //     dllName - Name of shared library
  94.     //
  95.     // Returns:
  96.     //     Nothing
  97.     //
  98.     // Notes:
  99.     //     Attempts to load library dllName. If unsuccessful, m_curError
  100.     //     is set to DLLAccess::NO_LOAD and platform specific error
  101.     //     info is stored in m_curStringError.
  102.     //     
  103.     DLLAccessBridge(const char* dllName, 
  104.     UINT16 nLibType = 0, 
  105.     IUnknown* pContext = NULL)
  106.     {
  107. m_Impl.DLL_ACCESSBRIDGE_OPEN(dllName, nLibType, pContext);
  108.     }
  109.     //////////////////////////////////////////////////////////////
  110.     // Function:
  111.     //     ~DLLAccessBridge
  112.     //
  113.     // Paramters:
  114.     //     None
  115.     //
  116.     // Returns:
  117.     //     Nothing
  118.     //
  119.     // Notes:
  120.     //     Unloads library from memory. See 'close' below.
  121.     //
  122.     ~DLLAccessBridge()
  123.     {
  124. ;
  125.     }
  126.     ///////////////////////////////////////////////////////////////
  127.     // Function:
  128.     //     open(const char* dllName)
  129.     //
  130.     // Parameters:
  131.     //     dllName - Name of shared library
  132.     //
  133.     // Returns:
  134.     //     DLLAccess::OK if successful, else DLLAccess::NO_LOAD.
  135.     //     Platform specific error info is stored in m_curStringError.
  136.     //
  137.     // Notes:
  138.     //     
  139.     int open(const char* dllName, 
  140.      UINT16 nLibType = 0, 
  141.      IUnknown* pContext = NULL)
  142.     {
  143. return m_Impl.DLL_ACCESSBRIDGE_OPEN(dllName, nLibType, pContext);
  144.     }
  145.     ///////////////////////////////////////////////////////////////
  146.     // Function:
  147.     //     close()
  148.     //
  149.     // Parameters:
  150.     //     none
  151.     //
  152.     // Returns:
  153.     //     DLLAccess::OK if successful, else DLL_ACCESS::NO_LOAD.
  154.     //
  155.     // Notes:
  156.     //     Shared library usage is typically reference counted by the
  157.     //     OS: the library is actually unloaded when the reference count
  158.     //     reaches zero. Thus this call does not guarantee that the 
  159.     //     library will be removed from memory.
  160.     //
  161.     int close()
  162.     {
  163. return m_Impl.close();
  164.     }
  165.     ///////////////////////////////////////////////////////////////
  166.     // Function:
  167.     //     getSymbol(const char* symName)
  168.     //
  169.     // Parameters:
  170.     //     symName: symbol to retrieve from shared library
  171.     //
  172.     // Returns:
  173.     //     ptr to code in library if successful, else returns NULL
  174.     //     and m_curError is set to DLLAccess::BAD_SYMBOL.
  175.     //
  176.     // Notes:
  177.     //
  178.     void* getSymbol(const char* symName)
  179.     {
  180. return m_Impl.getSymbol(symName);
  181.     }
  182.     ///////////////////////////////////////////////////////////////
  183.     // Function:
  184.     //     getError
  185.     //
  186.     // Parameters:
  187.     //     none
  188.     //
  189.     // Returns:
  190.     //     value of m_curError
  191.     //
  192.     // Notes:
  193.     //     none
  194.     //
  195.     int getError()
  196.     {
  197. return m_Impl.getError();
  198.     }
  199.     ///////////////////////////////////////////////////////////////
  200.     // Function:
  201.     //     getErrorString
  202.     //
  203.     // Parameters:
  204.     //     none
  205.     //
  206.     // Returns:
  207.     //     value of m_curErrorString
  208.     //
  209.     // Notes:
  210.     //     none
  211.     //
  212.     const char* getErrorString() 
  213.     { 
  214. return m_Impl.getErrorString();
  215.     }
  216.     ///////////////////////////////////////////////////////////////
  217.     // Function:
  218.     //     getDLLName
  219.     //
  220.     // Parameters:
  221.     //     none
  222.     //
  223.     // Returns:
  224.     //     value of m_DLLName
  225.     //
  226.     // Notes:
  227.     //     none
  228.     //
  229.     const char* getDLLName()
  230.     {
  231. return m_Impl.getDLLName();
  232.     }
  233.     ///////////////////////////////////////////////////////////////
  234.     // Function:
  235.     //     getVersion
  236.     //
  237.     // Parameters:
  238.     //     none
  239.     //
  240.     // Returns:
  241.     //     value of m_Version
  242.     //
  243.     // Notes:
  244.     //     none
  245.     //
  246.     const char* getVersion() 
  247.     { 
  248. return m_Impl.getVersion();
  249.     }
  250.     void CreateName(const char* short_name, 
  251.     const char* long_name, 
  252.     char* out_buf,
  253.     UINT32& out_buf_len)
  254.     {
  255. m_Impl.CreateName(short_name, 
  256.   long_name, 
  257.   out_buf, 
  258.   out_buf_len);
  259.     }
  260.     // This overloaded version has been added to allow user to specify major and minor
  261.     // version of the DLL name you are trying to create. It will append major and minor version
  262.     // to the name. If you use the other function, then the major and minor versions of pnmisc
  263.     // will be used. See pnmisc.ver in that case.
  264.     void CreateName(const char* short_name, 
  265.     const char* long_name, 
  266.     char* out_buf,
  267.     UINT32& out_buf_len, 
  268.     UINT32 nMajor, 
  269.     UINT32 nMinor)
  270.     {
  271. m_Impl.CreateName(short_name, 
  272.   long_name, 
  273.   out_buf, 
  274.   out_buf_len,
  275.   nMajor,
  276.   nMinor);
  277.     }
  278.     ///////////////////////////////////////////////////////////////
  279.     // Function:
  280.     //     isOpen
  281.     //
  282.     // Parameters:
  283.     //     none
  284.     //
  285.     // Returns:
  286.     //     value of m_isOpen
  287.     //
  288.     // Notes:
  289.     //     none
  290.     //
  291.     BOOL isOpen(void)
  292.     { 
  293. return m_Impl.isOpen(); 
  294.     }
  295.     
  296. private:
  297.     DLL_ACCESSBRIDGE_IMPL m_Impl;
  298. };
  299. #endif // _DLLACCESBRIDGE_H_