summaryrefslogtreecommitdiff
path: root/test/IDL/midl.py
blob: 7ada153b9e4f3d6a74d9d03fe799658740cadb8e (plain)
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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
#!/usr/bin/env python
#
# __COPYRIGHT__
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#

__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"

import os

import TestSCons

test = TestSCons.TestSCons(match = TestSCons.match_re)

test.skip_if_not_msvc()

#####
# Test the basics

test.write('SConstruct',"""
import os

env = Environment(CPPPATH = '${TARGET.dir}',
                  tools = ['mssdk', 'msvc', 'mslink', 'midl'])
Export('env')

VariantDir('build', 'src')
SConscript(os.path.join('build','SConscript'))

VariantDir('build2', 'src', duplicate=0)
SConscript(os.path.join('build2','SConscript'))
""")

test.subdir('src','build')

test.write('src/SConscript',"""
Import('env')

local = env.Clone(WINDOWS_INSERT_DEF = 1)

barsrc = [
    'BarObject.cpp',
    'BarPCH.obj',
    'bar.cpp',
    local.RES('bar.rc', RCFLAGS= '/I${SOURCE.srcdir}'),
    ]

local.TypeLibrary('bar.idl')

local.SharedLibrary(target = 'bar.dll',
                    source = barsrc,
                    PCH=local.PCH('BarPCH.cpp', CXXFLAGS='/nologo')[0],
                    PCHSTOP = 'BarPCH.h',
                    register=0) # can't test registration, Win7 requires elevation for that.
""")

test.write('src/BarObject.cpp','''
#include "BarPCH.h"
#include "Bar.h"
#include "BarObject.h"
''')

test.write('src/BarObject.h','''
#ifndef __BAROBJECT_H_
#define __BAROBJECT_H_

#include "resource.h"

class ATL_NO_VTABLE CBarObject : 
        public CComObjectRootEx<CComSingleThreadModel>,
        public CComCoClass<CBarObject, &CLSID_BarObject>,
        public IDispatchImpl<IBarObject, &IID_IBarObject, &LIBID_BARLib>
{
public:
        CBarObject()
        {
        }

DECLARE_REGISTRY_RESOURCEID(IDR_BAROBJECT)

DECLARE_PROTECT_FINAL_CONSTRUCT()

BEGIN_COM_MAP(CBarObject)
        COM_INTERFACE_ENTRY(IBarObject)
        COM_INTERFACE_ENTRY(IDispatch)
END_COM_MAP()

public:
};

#endif
''')

test.write('src/BarObject.rgs',"""
HKCR
{
        Bar.BarObject.1 = s 'BarObject Class'
        {
                CLSID = s '{640BE9EC-B79D-4C9E-BB64-95D24854A303}'
        }
        Bar.BarObject = s 'BarObject Class'
        {
                CLSID = s '{640BE9EC-B79D-4C9E-BB64-95D24854A303}'
                CurVer = s 'Bar.BarObject.1'
        }
        NoRemove CLSID
        {
                ForceRemove {640BE9EC-B79D-4C9E-BB64-95D24854A303} = s 'BarObject Class'
                {
                        ProgID = s 'Bar.BarObject.1'
                        VersionIndependentProgID = s 'Bar.BarObject'
                        ForceRemove 'Programmable'
                        InprocServer32 = s '%MODULE%'
                        {
                                val ThreadingModel = s 'Apartment'
                        }
                        'TypeLib' = s '{73E5EA5F-9D45-463F-AA33-9F376AF7B643}'
                }
        }
}
""")

test.write('src/BarPCH.cpp','''
#include "BarPCH.h"

// #ifdef _ATL_STATIC_REGISTRY
// #include <statreg.h>
// #include <statreg.cpp>
// #endif

// #include <atlimpl.cpp>
''')

test.write('src/BarPCH.h','''
#ifndef BarPCH_h
#define BarPCH_h

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#define STRICT
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0501
#endif
#define _ATL_APARTMENT_THREADED

#include <atlbase.h>
extern CComModule _Module;
#include <atlcom.h>

#endif
''')

test.write('src/bar.cpp','''
#include "BarPCH.h"
#include "resource.h"
#include <initguid.h>
#include "bar.h"

#include "bar_i.c"
#include "BarObject.h"

CComModule _Module;

BEGIN_OBJECT_MAP(ObjectMap)
OBJECT_ENTRY(CLSID_BarObject, CBarObject)
END_OBJECT_MAP()

extern "C"
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
{
    lpReserved;
    if (dwReason == DLL_PROCESS_ATTACH)
    {
        _Module.Init(ObjectMap, hInstance, &LIBID_BARLib);
        DisableThreadLibraryCalls(hInstance);
    }
    else if (dwReason == DLL_PROCESS_DETACH)
        _Module.Term();
    return TRUE;    // ok
}

STDAPI DllCanUnloadNow(void)
{
    return (_Module.GetLockCount()==0) ? S_OK : S_FALSE;
}

STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
{
    return _Module.GetClassObject(rclsid, riid, ppv);
}

STDAPI DllRegisterServer(void)
{
    return _Module.RegisterServer(TRUE);
}

STDAPI DllUnregisterServer(void)
{
    return _Module.UnregisterServer(TRUE);
}
''')

test.write('src/bar.def','''
; bar.def : Declares the module parameters.

LIBRARY      "bar.DLL"

EXPORTS
        DllCanUnloadNow      PRIVATE
        DllGetClassObject    PRIVATE
        DllRegisterServer    PRIVATE
        DllUnregisterServer  PRIVATE
''')

test.write('src/bar.idl','''
import "oaidl.idl";
import "ocidl.idl";
        [
                object,
                uuid(22995106-CE26-4561-AF1B-C71C6934B840),
                dual,
                helpstring("IBarObject Interface"),
                pointer_default(unique)
        ]
        interface IBarObject : IDispatch
        {
        };

[
        uuid(73E5EA5F-9D45-463F-AA33-9F376AF7B643),
        version(1.0),
        helpstring("bar 1.0 Type Library")
]
library BARLib
{
        importlib("stdole32.tlb");
        importlib("stdole2.tlb");

        [
                uuid(640BE9EC-B79D-4C9E-BB64-95D24854A303),
                helpstring("BarObject Class")
        ]
        coclass BarObject
        {
                [default] interface IBarObject;
        };
};
''')

test.write('src/bar.rc','''
#include "resource.h"

#define APSTUDIO_READONLY_SYMBOLS

#include "winres.h"

#undef APSTUDIO_READONLY_SYMBOLS

#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
#ifdef _WIN32
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
#pragma code_page(1252)
#endif //_WIN32

#ifdef APSTUDIO_INVOKED

1 TEXTINCLUDE DISCARDABLE 
BEGIN
    "resource.h\\0"
END

2 TEXTINCLUDE DISCARDABLE 
BEGIN
    "#include ""winres.h""\\r\\n"
    "\\0"
END

3 TEXTINCLUDE DISCARDABLE 
BEGIN
    "1 TYPELIB ""bar.tlb""\\r\\n"
    "\\0"
END

#endif    // APSTUDIO_INVOKED


#ifndef _MAC

VS_VERSION_INFO VERSIONINFO
 FILEVERSION 1,0,0,1
 PRODUCTVERSION 1,0,0,1
 FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
 FILEFLAGS 0x1L
#else
 FILEFLAGS 0x0L
#endif
 FILEOS 0x4L
 FILETYPE 0x2L
 FILESUBTYPE 0x0L
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
        BLOCK "040904B0"
        BEGIN
            VALUE "CompanyName", "\\0"
            VALUE "FileDescription", "bar Module\\0"
            VALUE "FileVersion", "1, 0, 0, 1\\0"
            VALUE "InternalName", "bar\\0"
            VALUE "LegalCopyright", "Copyright 2003\\0"
            VALUE "OriginalFilename", "bar.DLL\\0"
            VALUE "ProductName", "bar Module\\0"
            VALUE "ProductVersion", "1, 0, 0, 1\\0"
            VALUE "OLESelfRegister", "\\0"
        END
    END
    BLOCK "VarFileInfo"
    BEGIN
        VALUE "Translation", 0x409, 1200
    END
END

#endif    // !_MAC

IDR_BAROBJECT           REGISTRY DISCARDABLE    "BarObject.rgs"

STRINGTABLE DISCARDABLE 
BEGIN
    IDS_PROJNAME            "bar"
END

#endif    // English (U.S.) resources

#ifndef APSTUDIO_INVOKED

1 TYPELIB "bar.tlb"

#endif    // not APSTUDIO_INVOKED
''')

test.write('src/resource.h','''
#define IDS_PROJNAME                    100
#define IDR_BAROBJECT                   101

#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE        201
#define _APS_NEXT_COMMAND_VALUE         32768
#define _APS_NEXT_CONTROL_VALUE         201
#define _APS_NEXT_SYMED_VALUE           102
#endif
#endif
''')

test.run(arguments=os.path.join('build','bar.dll'))

test.must_exist(['build','BarPCH.pch'])
test.must_exist(['build','BarPCH.obj'])
test.must_exist(['build','bar.tlb'])
test.must_exist(['build','bar.h'])
test.must_exist(['build','bar_i.c'])
test.must_exist(['build','bar_p.c'])
test.must_exist(['build','bar_data.c'])
test.must_exist(['build','BarObject.obj'])
test.must_exist(['build','bar.obj'])
test.must_exist(['build','bar.res'])
test.must_exist(['build','bar.dll'])
test.must_exist(['build','bar.lib'])
test.must_exist(['build','bar.exp'])

test.run(arguments='-c .')

test.must_not_exist(['build','BarPCH.pch'])
test.must_not_exist(['build','BarPCH.obj'])
test.must_not_exist(['build','bar.tlb'])
test.must_not_exist(['build','bar.h'])
test.must_not_exist(['build','bar_i.c'])
test.must_not_exist(['build','bar_p.c'])
test.must_not_exist(['build','bar_data.c'])
test.must_not_exist(['build','BarObject.obj'])
test.must_not_exist(['build','bar.obj'])
test.must_not_exist(['build','bar.res'])
test.must_not_exist(['build','bar.dll'])
test.must_not_exist(['build','bar.lib'])
test.must_not_exist(['build','bar.exp'])

test.run(arguments=os.path.join('build2','bar.dll'))

test.must_exist(['build2','BarPCH.pch'])
test.must_exist(['build2','BarPCH.obj'])
test.must_exist(['build2','bar.tlb'])
test.must_exist(['build2','bar.h'])
test.must_exist(['build2','bar_i.c'])
test.must_exist(['build2','bar_p.c'])
test.must_exist(['build2','bar_data.c'])
test.must_exist(['build2','BarObject.obj'])
test.must_exist(['build2','bar.obj'])
test.must_exist(['build2','bar.res'])
test.must_exist(['build2','bar.dll'])
test.must_exist(['build2','bar.lib'])
test.must_exist(['build2','bar.exp'])

test.run(arguments='-c .')

test.must_not_exist(['build2','BarPCH.pch'])
test.must_not_exist(['build2','BarPCH.obj'])
test.must_not_exist(['build2','bar.tlb'])
test.must_not_exist(['build2','bar.h'])
test.must_not_exist(['build2','bar_i.c'])
test.must_not_exist(['build2','bar_p.c'])
test.must_not_exist(['build2','bar_data.c'])
test.must_not_exist(['build2','BarObject.obj'])
test.must_not_exist(['build2','bar.obj'])
test.must_not_exist(['build2','bar.res'])
test.must_not_exist(['build2','bar.dll'])
test.must_not_exist(['build2','bar.lib'])
test.must_not_exist(['build2','bar.exp'])

test.pass_test()

# Local Variables:
# tab-width:4
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=4 shiftwidth=4: