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
|
{
This file is part of the Free Pascal run time library.
Copyright (c) 2006 by Florian Klaempfl
member of the Free Pascal development team.
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
{$mode objfpc}
{$H+}
{$inline on}
unit comserv;
interface
uses
Classes, SysUtils, comobj, ActiveX;
{ $define DEBUG_COM}
//according to doc
// * ComServer Variable
// * DllCanUnloadNow Routine
// * DllGetClassObject Routine
// * DllRegisterServer Routine
// * DllUnregisterServer Routine
// * TComServer Class
//TODO Fix this
const
CLASS_E_CLASSNOTAVAILABLE = -1;
SELFREG_E_CLASS = -2;
type
{ TComServer }
TComServer = class(TComServerObject)
private
fCountObject: Integer;
fCountFactory: Integer;
fTypeLib: ITypeLib;
fServerName,
fServerFileName: String;
fHelpFileName : String;
fStartSuspended : Boolean;
protected
function CountObject(Created: Boolean): Integer; override;
function CountFactory(Created: Boolean): Integer; override;
function GetHelpFileName: string; override;
function GetServerFileName: string; override;
function GetServerKey: string; override;
function GetServerName: string; override;
function GetStartSuspended: Boolean; override;
function GetTypeLib: ITypeLib; override;
procedure SetHelpFileName(const Value: string); override;
procedure RegisterServerFactory(Factory: TComObjectFactory);
procedure UnregisterServerFactory(Factory: TComObjectFactory);
public
constructor Create;
destructor Destroy; override;
function CanUnloadNow: Boolean;
procedure RegisterServer;
procedure UnRegisterServer;
end;
var
ComServer: TComServer = nil;
//http://msdn.microsoft.com/en-us/library/ms690368%28VS.85%29.aspx
//If the function succeeds, the return value is S_OK. Otherwise, it is S_FALSE.
function DllCanUnloadNow: HResult; stdcall;
//S_OK - The object was retrieved successfully.
//CLASS_E_CLASSNOTAVAILABLE - The DLL does not support the class (object definition).
function DllGetClassObject(const rclsid: REFIID {should be REFCLSID}; const riid: REFIID; out ppv: Pointer): HResult; stdcall;
//S_OK - The registry entries were created successfully.
//SELFREG_E_TYPELIB - The server was unable to complete the registration of all the type libraries used by its classes.
//SELFREG_E_CLASS - The server was unable to complete the registration of all the object classes.
function DllRegisterServer: HResult; stdcall;
//S_OK - The registry entries were deleted successfully.
//S_FALSE - Unregistration of this server's known entries was successful, but other entries still exist for this server's classes.
//SELFREG_E_TYPELIB - The server was unable to remove the entries of all the type libraries used by its classes.
//SELFREG_E_CLASS - The server was unable to remove the entries of all the object classes.
function DllUnregisterServer: HResult; stdcall;
implementation
uses
Windows;
function DllCanUnloadNow: HResult; stdcall;
begin
{$ifdef DEBUG_COM}
WriteLn('DllCanUnloadNow called');
{$endif}
if ComServer.CanUnloadNow then
Result := S_OK
else
Result := S_FALSE;
{$ifdef DEBUG_COM}
WriteLn('DllCanUnloadNow return: ', Result);
{$endif}
end;
(*
//FROM MSDN (Error messages are different in MSDN.DllGetClassObject)
HRESULT hres = E_OUTOFMEMORY;
*ppvObj = NULL;
CClassFactory *pClassFactory = new CClassFactory(rclsid);
if (pClassFactory != NULL) {
hRes = pClassFactory->QueryInterface(riid, ppvObj);
pClassFactory->Release();
}
return hRes;
*)
function DllGetClassObject(const rclsid: REFIID {should be REFCLSID}; const riid: REFIID; out ppv: Pointer): HResult; stdcall;
var
factory: TComObjectFactory;
begin
{$ifdef DEBUG_COM}
WriteLn('DllGetClassObject called: ', GUIDToString(rclsid), ' ', GUIDToString(riid));
{$endif}
factory := ComClassManager.GetFactoryFromClassID(rclsid);
if factory = nil then
Result := CLASS_E_CLASSNOTAVAILABLE
else
begin
if factory.GetInterface(riid,ppv) then
Result := S_OK
else
Result := CLASS_E_CLASSNOTAVAILABLE;
{$ifdef DEBUG_COM}
WriteLn('DllGetClassObject return: ', Result);
{$endif}
end;
end;
function DllRegisterServer: HResult; stdcall;
begin
{$ifdef DEBUG_COM}
WriteLn('DllRegisterServer called');
{$endif}
try
ComServer.RegisterServer;
Result := S_OK;
except
Result := SELFREG_E_CLASS;
end;
end;
function DllUnregisterServer: HResult; stdcall;
begin
{$ifdef DEBUG_COM}
WriteLn('DllUnregisterServer called');
{$endif}
try
ComServer.UnregisterServer;
Result := S_OK;
except
Result := SELFREG_E_CLASS;
end;
end;
function GetModuleFileName: String;
const
MAX_PATH_SIZE = 2048;
begin
SetLength(Result, MAX_PATH_SIZE);
SetLength(Result, Windows.GetModuleFileName(HInstance, @Result[1], MAX_PATH_SIZE));
end;
function GetModuleName: String;
begin
Result := ExtractFileName(GetModuleFileName);
Result := Copy(Result, 1,LastDelimiter('.', Result)-1);
end;
procedure RegisterTypeLib(TypeLib: ITypeLib; const ModuleName: string);
var
FullPath: WideString;
begin
FullPath := ModuleName;
//according to MSDN helpdir can be null
OleCheck(ActiveX.RegisterTypeLib(TypeLib, @FullPath[1], nil));
end;
procedure UnRegisterTypeLib(TypeLib: ITypeLib);
var
ptla: PTLibAttr;
begin
//http://www.experts-exchange.com/Programming/Misc/Q_20634807.html
OleCheck(TypeLib.GetLibAttr(ptla));
try
ActiveX.UnRegisterTypeLib(ptla^.guid, ptla^.wMajorVerNum, ptla^.wMinorVerNum, ptla^.lcid, ptla^.syskind);
finally
TypeLib.ReleaseTLibAttr(ptla);
end;
end;
{ TComServer }
function TComServer.CountObject(Created: Boolean): Integer;
begin
if Created then
Result:=InterLockedIncrement(fCountObject)
else
Result:=InterLockedDecrement(fCountObject);
end;
function TComServer.CountFactory(Created: Boolean): Integer;
begin
if Created then
Result:=InterLockedIncrement(fCountFactory)
else
Result:=InterLockedDecrement(fCountFactory);
end;
function TComServer.GetHelpFileName: string;
begin
result:=fhelpfilename;
end;
function TComServer.GetServerFileName: string;
begin
Result := fServerFileName;
end;
function TComServer.GetServerKey: string;
begin
result:='LocalServer32';
end;
function TComServer.GetServerName: string;
begin
Result := fServerName;
end;
function TComServer.GetStartSuspended: Boolean;
begin
result:=fStartSuspended;
end;
function TComServer.GetTypeLib: ITypeLib;
begin
Result := fTypeLib;
end;
procedure TComServer.SetHelpFileName(const Value: string);
begin
FHelpFileName:=value;
end;
procedure TComServer.RegisterServerFactory(Factory: TComObjectFactory);
begin
Factory.UpdateRegistry(True);
end;
procedure TComServer.UnregisterServerFactory(Factory: TComObjectFactory);
begin
Factory.UpdateRegistry(False);
end;
constructor TComServer.Create;
var
name: WideString;
begin
inherited Create;
{$ifdef DEBUG_COM}
WriteLn('TComServer.Create');
{$endif}
fCountFactory := 0;
fCountObject := 0;
fServerFileName := GetModuleFileName();
name := fServerFileName;
if not(Succeeded(LoadTypeLib(@name[1], fTypeLib))) then
fTypeLib := nil;
if FTypeLib <> nil then
begin
fTypeLib.GetDocumentation(-1, @name, nil, nil, nil);
fServerName := name;
end
else
fServerName := GetModuleName;
end;
destructor TComServer.Destroy;
begin
inherited Destroy;
{$ifdef DEBUG_COM}
WriteLn('TComServer.Destroy');
{$endif}
end;
function TComServer.CanUnloadNow: Boolean;
begin
Result := False;
end;
procedure TComServer.RegisterServer;
begin
if fTypeLib <> nil then
RegisterTypeLib(fTypeLib, fServerFileName);
ComClassManager.ForEachFactory(self, @RegisterServerFactory);
end;
procedure TComServer.UnRegisterServer;
begin
if fTypeLib <> nil then
UnRegisterTypeLib(fTypeLib);
ComClassManager.ForEachFactory(self, @UnregisterServerFactory);
end;
initialization
{$ifdef DEBUG_COM}
WriteLn('comserv initialization begin');
{$endif}
ComServer := TComServer.Create;
{$ifdef DEBUG_COM}
WriteLn('comserv initialization end');
{$endif}
finalization
ComServer.Free;
end.
|