COM指南 (Step by Step COM Tutorial)-下(1)

第七步 实现IClassFactory的方法

 

实现类CAddFactory的方法。创建一个新文件(AddObjFactory.cpp)。提供类IUnknownIClassFactory的方法实现。AddRef,ReleaseQueryInterface方法实现和前面类CAddObj中这三个函数实现基本一样。在方法CreateInstance中,类CaddObj被实例化并且传回其接口指针。LockServer方法没有给出细节的实现。

 

HRESULT __stdcall CAddFactory::CreateInstance(IUnknown* pUnknownOuter,

                                           const IID& iid,

                                           void** ppv)

    {

    //

    //This method lets the client manufacture components en masse

    //The class factory provides a mechanism to control the way

    //the component is created. Within the class factory the

    //author of the component may decide to selectivey enable

    //or disable creation as per license agreements

    //

    //

 

    // Cannot aggregate.

    if (pUnknownOuter != NULL)

        {

        return CLASS_E_NOAGGREGATION ;

        }

 

    //

    // Create an instance of the component.

    //

    CAddObj* pObject = new CAddObj ;

    if (pObject == NULL)

        {

        return E_OUTOFMEMORY ;

        }

 

    //

    // Get the requested interface.

    //

    return pObject->QueryInterface(iid, ppv) ;

    }

 

 

HRESULT __stdcall CAddFactory::LockServer(BOOL bLock)

    {

    return E_NOTIMPL;

    }

/

 

第八步 实现DllGetClassObject的方法

 

一个进程内COM对象只是一个简单的WIN32DLL,他遵循既定的协议。每一个COM DLL必须有一个通过名字DllGetClassObject的出口函数。客户端将调用这个函数以得到类厂的接口(IUnknown or IClassFactory),之后就是调用CreateInstance方法。创建一个新文件(Exports.cpp),在其中实现DllGetClassObject。(代码如下)

 

STDAPI DllGetClassObject(const CLSID& clsid,

                         const IID& iid,

                         void** ppv)

    {

    //

    //Check if the requested COM object is implemented in this DLL

    //There can be more than 1 COM object implemented in a DLL

    //

 

    if (clsid == CLSID_AddObject)

        {

        //

        //iid specifies the requested interface for the factory object

        //The client can request for IUnknown, IClassFactory,

        //IClassFactory2

        //

        CAddFactory *pAddFact = new CAddFactory;

        if (pAddFact == NULL)

            return E_OUTOFMEMORY;

        else

            {

            return pAddFact->QueryInterface(iid , ppv);

            }

        }

   

 

    //

    //if control reaches here then that implies that the object

    //specified by the user is not implemented in this DLL

    //

 

    return CLASS_E_CLASSNOTAVAILABLE;

    }

/

 

第九步 实现DllCanUnloadNow

 

客户需要知道什么时候COM DLL可以被从内存中卸载。更进一步,一个进程内COM对象显示的通过调用API函数LoadLibrary装入内存中的客户程序的进程空间中。这个显示装载的DLL也可以使用FreeLibrary卸载。COM客户必须知道什么时候DLL可以被安全的卸载。一个客户必须确定没有任何来自于特别是DLL中的COM对象的实例仍在生命期中。要使得这个可以被简单的计算,在一个COM DLL中,我们在类CAddObjCAddFactory的构造函数中自加一个全局变量(g_nComObjsInUse)。类似的,在析构函数中,自减这个全局变量。

我们输出另一个COM规定的函数:DllCanUnloadedNow,实现如下:

 

STDAPI DllCanUnloadNow()

    {

    //

    //A DLL is no longer in use when it is not managing any existing objects

    // (the reference count on all of its objects is 0).

    //We will examine the value of g_nComObjsInUse

    //

 

    if (g_nComObjsInUse == 0)

        {

        return S_OK;

        }

    else

        {

        return S_FALSE;        }

 

}

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值