2 * COM stub (CStdStubBuffer) implementation
4 * Copyright 2001 Ove Kåven, TransGaming Technologies
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
33 #include "wine/debug.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(ole
);
39 #define STUB_HEADER(This) (((CInterfaceStubHeader*)((This)->lpVtbl))[-1])
41 HRESULT WINAPI
CStdStubBuffer_Construct(REFIID riid
,
44 CInterfaceStubVtbl
*vtbl
,
45 LPPSFACTORYBUFFER pPSFactory
,
46 LPRPCSTUBBUFFER
*ppStub
)
50 TRACE("(%p,%p,%p,%p) %s\n", pUnkServer
, vtbl
, pPSFactory
, ppStub
, name
);
51 TRACE("iid=%s\n", debugstr_guid(vtbl
->header
.piid
));
52 TRACE("vtbl=%p\n", &vtbl
->Vtbl
);
54 if (!IsEqualGUID(vtbl
->header
.piid
, riid
)) {
55 ERR("IID mismatch during stub creation\n");
56 return RPC_E_UNEXPECTED
;
59 This
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,sizeof(CStdStubBuffer
));
60 if (!This
) return E_OUTOFMEMORY
;
62 This
->lpVtbl
= &vtbl
->Vtbl
;
64 This
->pvServerObject
= pUnkServer
;
65 This
->pPSFactory
= pPSFactory
;
66 *ppStub
= (LPRPCSTUBBUFFER
)This
;
68 IUnknown_AddRef(This
->pvServerObject
);
69 IPSFactoryBuffer_AddRef(pPSFactory
);
73 HRESULT WINAPI
CStdStubBuffer_QueryInterface(LPRPCSTUBBUFFER iface
,
77 CStdStubBuffer
*This
= (CStdStubBuffer
*)iface
;
78 TRACE("(%p)->QueryInterface(%s,%p)\n",This
,debugstr_guid(riid
),obj
);
80 if (IsEqualGUID(&IID_IUnknown
,riid
) ||
81 IsEqualGUID(&IID_IRpcStubBuffer
,riid
)) {
89 ULONG WINAPI
CStdStubBuffer_AddRef(LPRPCSTUBBUFFER iface
)
91 CStdStubBuffer
*This
= (CStdStubBuffer
*)iface
;
92 TRACE("(%p)->AddRef()\n",This
);
93 return ++(This
->RefCount
);
96 ULONG WINAPI
NdrCStdStubBuffer_Release(LPRPCSTUBBUFFER iface
,
97 LPPSFACTORYBUFFER pPSF
)
99 CStdStubBuffer
*This
= (CStdStubBuffer
*)iface
;
100 TRACE("(%p)->Release()\n",This
);
102 if (!--(This
->RefCount
)) {
103 IRpcStubBuffer_Disconnect(iface
);
105 IPSFactoryBuffer_Release(This
->pPSFactory
);
106 HeapFree(GetProcessHeap(),0,This
);
109 return This
->RefCount
;
112 HRESULT WINAPI
CStdStubBuffer_Connect(LPRPCSTUBBUFFER iface
,
113 LPUNKNOWN lpUnkServer
)
115 CStdStubBuffer
*This
= (CStdStubBuffer
*)iface
;
116 TRACE("(%p)->Connect(%p)\n",This
,lpUnkServer
);
117 This
->pvServerObject
= lpUnkServer
;
121 void WINAPI
CStdStubBuffer_Disconnect(LPRPCSTUBBUFFER iface
)
123 CStdStubBuffer
*This
= (CStdStubBuffer
*)iface
;
124 TRACE("(%p)->Disconnect()\n",This
);
125 if (This
->pvServerObject
)
127 IUnknown_Release(This
->pvServerObject
);
128 This
->pvServerObject
= NULL
;
132 HRESULT WINAPI
CStdStubBuffer_Invoke(LPRPCSTUBBUFFER iface
,
134 LPRPCCHANNELBUFFER pChannel
)
136 CStdStubBuffer
*This
= (CStdStubBuffer
*)iface
;
137 DWORD dwPhase
= STUB_UNMARSHAL
;
138 TRACE("(%p)->Invoke(%p,%p)\n",This
,pMsg
,pChannel
);
140 STUB_HEADER(This
).pDispatchTable
[pMsg
->iMethod
](iface
, pChannel
, (PRPC_MESSAGE
)pMsg
, &dwPhase
);
144 LPRPCSTUBBUFFER WINAPI
CStdStubBuffer_IsIIDSupported(LPRPCSTUBBUFFER iface
,
147 CStdStubBuffer
*This
= (CStdStubBuffer
*)iface
;
148 TRACE("(%p)->IsIIDSupported(%s)\n",This
,debugstr_guid(riid
));
149 return IsEqualGUID(STUB_HEADER(This
).piid
, riid
) ? iface
: NULL
;
152 ULONG WINAPI
CStdStubBuffer_CountRefs(LPRPCSTUBBUFFER iface
)
154 CStdStubBuffer
*This
= (CStdStubBuffer
*)iface
;
155 TRACE("(%p)->CountRefs()\n",This
);
156 return This
->RefCount
;
159 HRESULT WINAPI
CStdStubBuffer_DebugServerQueryInterface(LPRPCSTUBBUFFER iface
,
162 CStdStubBuffer
*This
= (CStdStubBuffer
*)iface
;
163 TRACE("(%p)->DebugServerQueryInterface(%p)\n",This
,ppv
);
167 void WINAPI
CStdStubBuffer_DebugServerRelease(LPRPCSTUBBUFFER iface
,
170 CStdStubBuffer
*This
= (CStdStubBuffer
*)iface
;
171 TRACE("(%p)->DebugServerRelease(%p)\n",This
,pv
);