summaryrefslogtreecommitdiffstats
path: root/private/ole32/dllhost/srgtfact.cxx
blob: 9ee78c02e9f4c5bba65fb365c0f046cedc30a14c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
//+-------------------------------------------------------------------------
//
//  Microsoft Windows
//  Copyright (C) Microsoft Corporation, 1992 - 1996.
//
//  File:       srgtfact.cxx
//
//  Contents:   Class the implements the ISurrogate interface
//
//
//  History:    21-May-96 t-AdamE    Created
//
//--------------------------------------------------------------------------

#include <debnot.h>
#include "csrgt.hxx"
#include "srgtfact.hxx"


//+---------------------------------------------------------------------------
//
//  Function:   CSrgtMem::operator new
//
//  Synopsis:   uses ole's allocator to get blocks
//
//  History:    10-30-96   t-Adame   Created
//
//----------------------------------------------------------------------------
void* _CRTAPI1 CSrgtMem::operator new(size_t cbsize)
{
    return CoTaskMemAlloc(cbsize);
}


//+---------------------------------------------------------------------------
//
//  Function:   CSrgtMem::operator delete
//
//  Synopsis:   uses ole's allocator to free blocks
//
//  History:    10-30-96   t-Adame   Created
//
//----------------------------------------------------------------------------
void _CRTAPI1 CSrgtMem::operator delete(void* pv)
{
    CoTaskMemFree(pv);
}


//+---------------------------------------------------------------------------
//
//  Function:   CSurrogateFactory::CSurrogateFactory()
//
//  Synopsis:   constructor for CSurrogateFactory
//
//  History:    6-21-96   t-Adame   Created
//
//----------------------------------------------------------------------------
CSurrogateFactory::CSurrogateFactory(REFCLSID clsid) :
    _dwRegister(0),
    _clsid(clsid),
    _cref(0)
{}


//+---------------------------------------------------------------------------
//
//  Function:   CSurrogateFactory::Register()
//
//  Synopsis:   destructor for CSurrogateFactory
//
//  History:    6-21-96   t-Adame   Created
//
//----------------------------------------------------------------------------
HRESULT CSurrogateFactory::Register()
{
    HRESULT hr;
    
    if(FAILED(hr = CoRegisterClassObject(
	_clsid,
	(IUnknown*)(void*)this,
	CLSCTX_LOCAL_SERVER,
	REGCLS_SURROGATE,
	&_dwRegister)))
    {
	return hr;
    }
    return S_OK;
}

//+---------------------------------------------------------------------------
//
//  Function:   CSurrogateFactory::Revoke()
//
//  Synopsis:   revokes this class factory object
//
//  History:    6-21-96   t-Adame   Created
//
//----------------------------------------------------------------------------
HRESULT CSurrogateFactory::Revoke()
{
    return CoRevokeClassObject(_dwRegister);
}


//+---------------------------------------------------------------------------
//
//  Function:   CSurrogateFactory::QueryInterface
//
//  History:    6-21-96   t-Adame   Created
//
//----------------------------------------------------------------------------
STDMETHODIMP CSurrogateFactory::QueryInterface(REFIID iid, LPVOID* ppv)
{
    if(iid == IID_IUnknown)
    {
	*ppv = (void*)((IUnknown*)(void*)this);
	AddRef();
	return S_OK;
    }
    else if (iid == IID_IClassFactory)
    {
	*ppv = (void*)(IClassFactory*)this;
	AddRef();
	return S_OK;
    }
    else if (iid == IID_IMarshal)
    {
	*ppv = (void*)(IMarshal*)this;
	AddRef();
	return S_OK;
    }

    return E_NOINTERFACE;
}

//+---------------------------------------------------------------------------
//
//  Function:   CSurrogateFactory::AddRef()
//
//  History:    6-21-96   t-Adame   Created
//
//----------------------------------------------------------------------------
ULONG CSurrogateFactory::AddRef()
{
    InterlockedIncrement((LPLONG)&_cref);
    ULONG cref = _cref;
    Win4Assert(_cref > 0);
    return cref;
}


//+---------------------------------------------------------------------------
//
//  Function:   CSurrogateFactory::Release()
//
//  History:    6-21-96   t-Adame   Created
//
//----------------------------------------------------------------------------
ULONG CSurrogateFactory::Release()
{
    Win4Assert(_cref > 0);

    if(!(InterlockedDecrement((LPLONG)&_cref)))
    {
	delete this;
	return 0;
    }

    ULONG cref = _cref;

    return cref;
}

//+---------------------------------------------------------------------------
//
//  Function:   CSurrogateFactory::CreateInstance
//
//  Notes:      This create instance does a CoGetClassObject to get the
//              real class factory for this clsid (the class factory
//              implemented in the dll).  It then calls CreateInstance on that
//              class factory 
//
//  History:    6-21-96   t-Adame   Created
//
//----------------------------------------------------------------------------
STDMETHODIMP CSurrogateFactory::CreateInstance(IUnknown* pUnkOuter, REFIID iid, void** ppv)
{
    void* pcf;
    HRESULT hr;
    
    if(SUCCEEDED(hr = CoGetClassObject(
	_clsid,
	CLSCTX_INPROC_SERVER,
	NULL,
	IID_IClassFactory,
	&pcf)))
    {
	hr = ((IClassFactory*)pcf)->CreateInstance(pUnkOuter, iid, ppv);
	((IClassFactory*)pcf)->Release();
    }
    
    if(FAILED(hr))
    {
	// if we can't get the real class factory, the
	// client won't be able to use it to create an instance
	// of the class (the one in the dll), so now we
	// close the surrogate if this is the only class in the
	// process

	CLibTable::_ptbLibs->EnterMonitor();

	if(CLibTable::_ptbLibs->FSingleton())
	{
	    CLibTable::_ptbLibs->LeaveMonitor();
	    CSurrogate::_pSurrogate->FreeSurrogate();
	    return hr;
	}

	CLibTable::_ptbLibs->LeaveMonitor();	
    }

    return hr;
}

//+---------------------------------------------------------------------------
//
//  Function:   CSurrogateFactory::LockServer()
//
//  History:    6-21-96   t-Adame   Created
//
//----------------------------------------------------------------------------
STDMETHODIMP CSurrogateFactory::LockServer(BOOL fLock)
{
    return S_OK;
}

// REVIEW: currently, the only IMarshal methods we implement are
// MarshalInterface and GetUnMarshalClass.  If any other method on our
// IMarshal is called, we assert and return E_NOTIMPL.

//+---------------------------------------------------------------------------
//
//  Function:   CSurrogateFactory::GetUnMarshalClass
//
//  Notes:      This function returns CLSID_StdMarshal through the pClsid
//              parameter so that COM will use standard marshalling on
//              this interface
//
//  History:    6-21-96   t-Adame   Created
//
//----------------------------------------------------------------------------
STDMETHODIMP CSurrogateFactory::GetUnmarshalClass(
    REFIID riid,
    void *pv,
    DWORD dwDestContext,
    void *pvDestContext,
    DWORD mshlflags,
    CLSID *pClsid)
{
    *pClsid = CLSID_StdMarshal;

    return S_OK;
}

//+---------------------------------------------------------------------------
//
//  Function:   CSurrogateFactory::GetMarshalSizeMax
//
//  Notes:      This function does nothing at this time.
//
//  History:    6-21-96   t-Adame   Created
//
//----------------------------------------------------------------------------
//REVIEW:  do we need to give this method a real implementation?
STDMETHODIMP CSurrogateFactory::GetMarshalSizeMax(
    REFIID riid,
    void *pv,
    DWORD dwDestContext,
    void *pvDestContext,
    DWORD mshlflags,
    DWORD *pSize)
{
    Win4Assert(FALSE);
    return E_NOTIMPL;
}

//+---------------------------------------------------------------------------
//
//  Function:   CSurrogateFactory::MarshalInterface
//
//  Notes:      Since this class factory is simply a stand-in for the dll's
//              class factory, we need to get the dll's class factory and 
//              marshal it instead of this class factory for CoGetClassObject.
//
//  History:    6-21-96   t-Adame   Created
//
//----------------------------------------------------------------------------

STDMETHODIMP CSurrogateFactory::MarshalInterface(
    IStream *pStm,
    REFIID riid,
    void *pv,
    DWORD dwDestContext,
    void *pvDestContext,
    DWORD mshlflags)
{
    void* pCF = NULL;
    HRESULT hr;

    // get the real class factory object with the
    // requested interface

    if(SUCCEEDED(hr = CoGetClassObject(
	_clsid,
	CLSCTX_INPROC_SERVER,
	NULL,
	riid,
	&pCF)))
    {

	hr = CoMarshalInterface(
	    pStm,
	    riid,
	    (IUnknown*)pCF,
	    dwDestContext,
	    pvDestContext,
	    mshlflags);
	
	((IUnknown*)pCF)->Release();
    }

    if(FAILED(hr))
    {
	// if we can't marshal the real class factory, the
	// client won't be able to use it to create an instance
	// of the real class (the one in the dll), so now we
	// close the surrogate if this is the only class in the
	// process

	CLibTable::_ptbLibs->EnterMonitor();
	
	if(CLibTable::_ptbLibs->FSingleton())
	{
	    CLibTable::_ptbLibs->LeaveMonitor();
	    CSurrogate::_pSurrogate->FreeSurrogate();
	    return hr;
	}
	
	CLibTable::_ptbLibs->LeaveMonitor();
    }

    return hr;
}

//+---------------------------------------------------------------------------
//
//  Function:   CSurrogateFactory::UnMarshalInterface
//
//  Notes:      This function does nothing at this time.
//
//  History:    6-21-96   t-Adame   Created
//
//----------------------------------------------------------------------------
//REVIEW:  do we need to give this method a real implementation?
STDMETHODIMP CSurrogateFactory::UnmarshalInterface(IStream *pStm,REFIID riid,void **ppv)
{
    Win4Assert(FALSE);
    return E_NOTIMPL;
}

//+---------------------------------------------------------------------------
//
//  Function:   CSurrogateFactory::GetUnMarshalClass
//
//  Notes:      This function does nothing at this time.
//
//  History:    6-21-96   t-Adame   Created
//
//----------------------------------------------------------------------------
//REVIEW:  do we need to give this method a real implementation?
STDMETHODIMP CSurrogateFactory::ReleaseMarshalData(IStream *pStm)
{
    Win4Assert(FALSE);
    return E_NOTIMPL;
}

//+---------------------------------------------------------------------------
//
//  Function:   CSurrogateFactory::DisconnectObject
//
//  History:    6-21-96   t-Adame   Created
//
//----------------------------------------------------------------------------
// REVIEW: should be ok to return S_OK since we're not doing anything fancy?
STDMETHODIMP CSurrogateFactory::DisconnectObject(DWORD dwReserved)
{
    return S_OK;
}