summaryrefslogtreecommitdiff
path: root/extensions/workben/pythontest.cxx
blob: 5e2efff66f26b58621df9cea753623605f1c3b7a (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
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
/*************************************************************************
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * Copyright 2008 by Sun Microsystems, Inc.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * $RCSfile: pythontest.cxx,v $
 * $Revision: 1.7 $
 *
 * This file is part of OpenOffice.org.
 *
 * OpenOffice.org is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * OpenOffice.org 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.  See the
 * GNU Lesser General Public License version 3 for more details
 * (a copy is included in the LICENSE file that accompanied this code).
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with OpenOffice.org.  If not, see
 * <http://www.openoffice.org/license.html>
 * for a copy of the LGPLv3 License.
 *
 ************************************************************************/

// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_extensions.hxx"

#include <stdio.h>
#include <stardiv/uno/repos/implementationregistration.hxx>
#include <stardiv/uno/script/script.hxx>
#include <stardiv/uno/beans/exactname.hxx>

#include <rtl/ustring.hxx>
#include <vos/dynload.hxx>
#include <vos/diagnose.hxx>
#include <usr/services.hxx>
#include <vcl/svapp.hxx>
#include <usr/ustring.hxx>
#include <usr/weak.hxx>
#include <tools/string.hxx>
#include <vos/conditn.hxx>
#if OSL_DEBUG_LEVEL == 0
#define NDEBUG
#endif
#include <assert.h>

using namespace rtl;
using namespace vos;
using namespace usr;

#define PCHAR_TO_USTRING(x) StringToOUString(String(x),CHARSET_SYSTEM)



class NullEngineListenerRef : public XEngineListenerRef
{
    virtual void interrupt(const InterruptEngineEvent& Evt) THROWS( (UsrSystemException) ) {}
    virtual void running(const EventObject& Evt) THROWS( (UsrSystemException) ) {}
    virtual void finished(const FinishEngineEvent& Evt) THROWS( (UsrSystemException) ) {}
};

#define USTRING_TO_PCHAR(x) OUStringToString(x , CHARSET_DONTKNOW ).GetCharStr()

class CmdDebugger :
    public XEngineListener,
    public OWeakObject
{
public:

    CmdDebugger()
    {
        m_pDebuggingRef = 0;
        m_pEngineRef = 0;
        m_bIsTerminating = FALSE;
        m_bIsRunning = FALSE;
    }


    CmdDebugger( XDebuggingRef *p, XEngineRef *pEngine , XInvokationRef *pInvokation)
    {
        attach( p , pEngine , pInvokation );
    }

    ~CmdDebugger()
    {
        if( m_pDebuggingRef ) {
            detach();
        }
    }

    BOOL                queryInterface( Uik aUik, XInterfaceRef & rOut );
    void                acquire()                        { OWeakObject::acquire(); }
    void                release()                        { OWeakObject::release(); }
    void*               getImplementation(Reflection *p) { return OWeakObject::getImplementation(p); }


    void attach( XDebuggingRef *p , XEngineRef *pEngine , XInvokationRef *pInvokation )
    {
        m_pDebuggingRef = p;
        m_pEngineRef = pEngine;
        m_pInvokationRef = pInvokation;
        m_bIsRunning = FALSE;
        m_bIsTerminating = FALSE;
    }

    void detach( );


    virtual void disposing( const EventObject &o )
    {
        if( m_pDebuggingRef ) {
            detach();
        }
    }
    virtual void interrupt(const InterruptEngineEvent& Evt) THROWS( (UsrSystemException) )
    {
        if( m_pDebuggingRef && ! m_bIsTerminating ) {
               (*m_pDebuggingRef)->stop();
               fprintf( stderr, "%s\n" , USTRING_TO_PCHAR(Evt.ErrorMessage ) );
            fprintf( stderr, "%s.%s (%d)\n",  USTRING_TO_PCHAR(Evt.SourceCode),
                                              USTRING_TO_PCHAR(Evt.Name ),
                                              Evt.StartLine );
               m_aDebugCondition.set();
            m_bIsRunning = TRUE;
           }
    }

    virtual void running(const EventObject& Evt) THROWS( (UsrSystemException) )
       {
        if( m_pDebuggingRef && ! m_bIsTerminating ) {
               (*m_pDebuggingRef)->stop();

            m_aDebugCondition.set();
            m_bIsRunning = TRUE;
            fprintf( stderr, "%s\n" , "Script starts\n" );
        }
    }

    virtual void finished(const FinishEngineEvent& Evt) THROWS( (UsrSystemException) )
    {
        if( m_pDebuggingRef && ! m_bIsTerminating  ) {
            m_aDebugCondition.set();
            m_bIsRunning = FALSE;
            fprintf( stderr , "%s\n", USTRING_TO_PCHAR( Evt.ErrorMessage ) );
        }
    }

    void dumpIntrospectionToStream( const XIntrospectionAccessRef &, FILE *f );
    void dumpVarToStream( const char *pcName, const UsrAny &any, FILE *f );


    void cmdLine();
protected:

    OCondition m_aDebugCondition;
    XDebuggingRef *m_pDebuggingRef;
    XEngineRef  *m_pEngineRef;
    XInvokationRef *m_pInvokationRef;
    int m_bIsRunning;
    int m_bIsTerminating;       // The listeners ignore everything when set
};



void CmdDebugger::cmdLine()
{
        char pcLine[80];
        fprintf( stderr, "entering debugger\n" );
        while( TRUE ) {

            m_aDebugCondition.wait();

            fprintf( stderr , "(debug %d) : " , m_bIsRunning );
            fflush( stderr);
            fgets( pcLine ,  79 , stdin );

            if( strlen( pcLine) ) pcLine[strlen(pcLine)-1] =0;
            String sLine( pcLine );

            if( ! strcmp( pcLine , "g" ) ) {
                if( m_bIsRunning ) {
                    m_aDebugCondition.reset();
                    (*m_pDebuggingRef)->doContinue();
                }
                else fprintf( stderr,"no script running !\n" );
            }
            else if( ! strcmp( pcLine , "s" ) ) {
                if( m_bIsRunning ) {
                    m_aDebugCondition.reset();
                    (*m_pDebuggingRef)->stepOver();
                }
                else fprintf(stderr, "no script running !\n" );
            }
            else if( ! strcmp( pcLine , "so" ) ) {
                if( m_bIsRunning ) {
                    m_aDebugCondition.reset();
                    (*m_pDebuggingRef)->stepOut();
                }
                else fprintf(stderr, "no script running !\n" );
            }
            else if( ! strcmp( pcLine , "si" ) ) {
                if( m_bIsRunning ) {
                    m_aDebugCondition.reset();
                    (*m_pDebuggingRef)->stepIn();
                }
                else fprintf(stderr, "no script running !\n" );
            }
            else if( ! strncmp( pcLine , "sbp" , 3 ) ){
                if( m_bIsRunning ) {
                    (*m_pDebuggingRef)->setBreakPoint(  UString( L"<string>" ),
                                                        atoi(&pcLine[3]) , TRUE );
                }
            }
            else if( ! strncmp( pcLine , "rbp" , 3 ) ){
                if( m_bIsRunning ) {
                    (*m_pDebuggingRef)->setBreakPoint(  UString( L"<string>" ),
                                                        atoi(&pcLine[3]) , FALSE );
                }
            }
            else if( ! strncmp( pcLine , "dv " , 3 ) ) {
                if( m_bIsRunning ) {
                    int nCallstack = 0;
                    if( sLine.GetQuotedTokenCount( String("''"),' ' ) == 3 ) {
                        nCallstack = atoi( sLine.GetQuotedToken( 3 , String("''"), ' ' ).GetCharStr() );
                    }

                    UString str = (*m_pDebuggingRef)->dumpVariable(
                                                    PCHAR_TO_USTRING( &pcLine[3]),nCallstack);
                    fprintf( stderr, "%s\n" , USTRING_TO_PCHAR( str ) );
                }
            }
            else if( ! strncmp( pcLine , "sv " , 3 ) ) {
                int nCallstack = 0;
                if( sLine.GetQuotedTokenCount( String("''"),' ' ) == 3 ) {
                    nCallstack = atoi( sLine.GetQuotedToken( 3 , String("''"), ' ' ).GetCharStr() );
                }
                (*m_pDebuggingRef)->setVariable(
                        StringToOUString( sLine.GetQuotedToken( 1 , String("''"), ' ' ), CHARSET_SYSTEM ),
                        StringToOUString( sLine.GetQuotedToken( 2 , String("''"), ' ' ), CHARSET_SYSTEM ),
                        nCallstack );

            }
            else if( ! strncmp( pcLine , "ci" ,2 ) ) {
                if( m_bIsRunning ) {
                    UString *aUString ;
                    ContextInformation ci = (*m_pDebuggingRef)->getContextInformation(atoi(&pcLine[2]));
                    int i,iMax;

                    fprintf( stderr, "File %s (%d)\n", USTRING_TO_PCHAR(ci.Name),
                                                       ci.StartLine );
                    fprintf( stderr, "Available variables : \n" );
                    aUString = ci.LocalVariableNames.getArray();
                    iMax = ci.LocalVariableNames.getLen();

                    for( i = 0 ; i < iMax ; i++ ) {
                        fprintf( stderr, "      %s\n" , USTRING_TO_PCHAR( aUString[i]) );
                    }
                }
            }
            else if ( !strcmp( pcLine , "d" ) ) {
                if( m_bIsRunning ) {
                    UString * aUString ;
                    Sequence<UString> seq =  (*m_pDebuggingRef)->getStackTrace();

                    aUString = seq.getArray();
                    int iMax = seq.getLen();
                    for( int i = 0; i < iMax ; i++ ) {
                        fprintf( stderr , "%s\n" , USTRING_TO_PCHAR( aUString[i] ) );
                    }
                }
            }
            else if( !strcmp( pcLine , "c" ) ) {
                if( m_bIsRunning ) {
                    (*m_pEngineRef)->cancel();
                    m_aDebugCondition.reset();
                }
                else fprintf( stderr,"no script running !\n" );
            }
            else if( !strcmp( pcLine , "q" ) ) {
                if( m_bIsRunning ) {
                    m_aDebugCondition.reset();
                    (*m_pEngineRef)->cancel();
                }
                else {
                    m_bIsTerminating = TRUE;
                    fprintf(stderr,  "Debugger terminates\n" );
                    break;
                }
            }
            else if( ! strcmp( pcLine , "id" ) ) {

                XIntrospectionAccessRef ref = (*m_pInvokationRef)->getIntrospection();

                dumpIntrospectionToStream( ref , stderr );


            }
            else if( ! strncmp( pcLine , "idv" , 3) ) {
                try {
                    UsrAny any = (*m_pInvokationRef)->getValue( PCHAR_TO_USTRING( &(pcLine[4]) ) );
                    dumpVarToStream( &(pcLine[4]) , any , stderr );
                }
                catch(UnknownPropertyException& e ) {
                    fprintf( stderr, "UnknownPropertyException\n" );
                }
                catch(IllegalArgumentException& e ) {
                    fprintf( stderr, "IllegalArgumentException\n" );
                }
            }
            else if( !strcmp( pcLine , "t" ) ) {
            }
            else if( !strcmp( pcLine , "h" ) ) {
                fprintf( stderr ,  "\nvalid commands :\n"
                                   "Go                 : g\n"
                                   "StepOver           : s\n"
                                   "StepIn             : si\n"
                                   "StepOut            : so\n"
                                   "Set BreakPoint     : sbp Line [ModuleName]\n"
                                   "Remove BreakPoint  : rbp [Line] [ModuleName]\n"
                                   "via XDebugging Interface :\n"
                                   "    dump Variable      : dv varname [CallStack]\n"
                                   "    set Variable       : sv varname value [CallStack]\n"
                                   "globals via XInvokation Interface :\n"
                                   "    dump Global vars   : id\n"
                                   "    dump Variable      : idv varname\n"
                                   "    set Variable       : isv varname value\n"
                                   "ContextInformation : ci\n"
                                   "Dump callstack     : d\n"
                                   "Cancel             : c (stops actual script)\n"
                                   "Quit               : q (exits debugger)\n"
                                   );
            }
            else if( ! strlen( pcLine ) ) {
            }
            else {
                fprintf( stderr , "unknown command %s\n" , pcLine );
            }
        }
}

void CmdDebugger::dumpIntrospectionToStream( const XIntrospectionAccessRef &ref, FILE *f )
{
    int i,iMax;
    fprintf( stderr, "Callable Attributes (Methods) :\n" );
    Sequence<XIdlMethodRef> seq = ref->getMethods( 0 );
    iMax = seq.getLen();
    XIdlMethodRef *aRef = seq.getArray();
    for( i = 0; i < iMax ; i++ ) {
        fprintf( f, "  %s\n" , USTRING_TO_PCHAR( aRef[i]->getName( ) ) );
    }

    fprintf( stderr, "Other attributes\n"  );
    Sequence<Property> seqProp = ref->getProperties( 0 );
    iMax = seqProp.getLen();
    Property *aProp = seqProp.getArray();
    for( i = 0; i < iMax ; i ++ ) {
        fprintf( f, "  %s %s\n" ,   USTRING_TO_PCHAR( aProp[i].Type->getName() ),
                                        USTRING_TO_PCHAR( aProp[i].Name ) );
    }

}

void CmdDebugger::dumpVarToStream( const char *pc , const UsrAny &aValue, FILE *f )
{
    TypeClass type = aValue.getReflection()->getTypeClass();

    if( TypeClass_INT == type ) {
        fprintf( f, "INT32 %s : %d\n" , pc , aValue.getINT32() );
    }
    else if( TypeClass_ENUM == type ) {
        fprintf( f, "ENUM %s : %d\n", pc ,  aValue.getEnumAsINT32() );
    }
    else if( TypeClass_STRING == type ) {
        fprintf( f, "STRING %s : %s\n" , pc ,  USTRING_TO_PCHAR( aValue.getString())     );
    }
    else if( TypeClass_BOOLEAN == type ) {
        fprintf( f, "BOOL %s : %d\n", pc , aValue.getBOOL() );
    }
    else if( TypeClass_CHAR == type  ) {
        fprintf( f, "char %s : %d\n", pc , ( INT32) aValue.getChar() );
    }
    else if( TypeClass_SHORT == type ) {
        fprintf( f, "INT16 %s : %d\n", pc , (INT32) aValue.getINT16());
    }
    else if( TypeClass_LONG == type ) {
        fprintf( f, "LONG %s : %d\n", pc , (INT32) aValue.getINT32());
    }
    else if( TypeClass_UNSIGNED_SHORT == type ) {
        fprintf( f, "UINT16 %s : %d\n", pc , (INT32) aValue.getUINT16() );
    }
    else if( TypeClass_UNSIGNED_BYTE == type ) {
        fprintf( f, "Byte %s : %d\n", pc ,  (INT32) aValue.getBYTE() );
    }
    else if( TypeClass_UNSIGNED_INT == type ) {
        fprintf( f, "UINT32 %s : %d\n", pc , aValue.getUINT32() );
    }
    else if( TypeClass_FLOAT == type ) {
        fprintf( f, "float %s : %f\n" , pc , aValue.getFloat() );
    }
    else if( TypeClass_DOUBLE == type ) {
        fprintf( f, "double %s : %f\n" , pc , aValue.getDouble() );
    }
    else if( TypeClass_VOID == type ) {
        fprintf( f, "void %s :\n" , pc );
    }
    else if( TypeClass_INTERFACE == type ) {
        // Check, what has been put in
        if( aValue.getReflection() == XPropertySet_getReflection() ) {
            // XPropertySet !
            XPropertySetRef *pRef = ( XPropertySetRef * ) aValue.get();
            XPropertySetInfoRef refInfo = (*pRef)->getPropertySetInfo();
            Sequence< Property > seq = refInfo->getProperties();
            int i,iMax = seq.getLen();

            Property *pArray;
            pArray = seq.getArray();
            fprintf( stderr, "Property List :\n" );
            for( i = 0; i < iMax ; i ++ ) {
                fprintf( f, "%s\t %s\n" , USTRING_TO_PCHAR(pArray[i].Type->getName()),
                                                 USTRING_TO_PCHAR( pArray[i].Name ) );
            }
        }
        else if( aValue.getReflection() == XInvokation_getReflection() ) {
            XInvokationRef *pRef = ( XInvokationRef * ) aValue.get();
            XIntrospectionAccessRef refIntro = (*pRef)->getIntrospection();

            dumpIntrospectionToStream( refIntro, stderr );
        }
    }
    else if( TypeClass_SEQUENCE == type ) {
        fprintf( f , "%s Sequence \n" , pc  );
        String s( "   " );
        s += pc;
        SequenceReflection *pSeqRefl = ( SequenceReflection * ) aValue.getReflection();

        int i,iMax = pSeqRefl->getLen( aValue );

        for( i = 0 ; i < iMax ; i ++ ) {
            dumpVarToStream( s.GetCharStr() , pSeqRefl->get( aValue , i ) , stderr );
        }
    }
    else {
        fprintf( f, "%s : unknown %d\n" , pc , type  );
    }

}

void CmdDebugger::detach()
{
    assert( m_pDebuggingRef );

       m_bIsRunning = FALSE;
       m_pDebuggingRef = 0;
    m_pEngineRef = 0;
    m_pInvokationRef = 0;
}

// Methoden von XInterface
BOOL CmdDebugger::queryInterface( Uik aUik, XInterfaceRef & rOut )
{
    if( aUik == XEngineListener::getSmartUik() )
        rOut = (XEngineListener*)this;
    else
        return OWeakObject::queryInterface( aUik, rOut );
    return TRUE;
}






/*
 * main.
 */
int __LOADONCALLAPI main (int argc, char **argv)
{
    XMultiServiceFactoryRef xSMgr = createRegistryServiceManager();
    registerUsrServices( xSMgr );
    setProcessServiceManager( xSMgr );

    XInterfaceRef x = xSMgr->createInstance( L"stardiv.uno.repos.ImplementationRegistration" );
    XImplementationRegistrationRef xReg( x, USR_QUERY );
    sal_Char szBuf[1024];

    ORealDynamicLoader::computeModuleName( "pythonengine", szBuf, 1024 );
    UString aDllName( StringToOUString( szBuf, CHARSET_SYSTEM ) );
    xReg->registerImplementation( L"stardiv.loader.SharedLibrary", aDllName, XSimpleRegistryRef() );

    ORealDynamicLoader::computeModuleName( "aps", szBuf, 1024 );
    aDllName = UString( StringToOUString( szBuf, CHARSET_SYSTEM ) );
    xReg->registerImplementation( L"stardiv.loader.SharedLibrary", aDllName, XSimpleRegistryRef() );

    XInterfaceRef y = xSMgr->createInstance( L"stardiv.script.Python" );
    XEngineRef yEngine( y, USR_QUERY );

    x = xSMgr->createInstance( L"stardiv.script.Python" );
    XEngineRef xEngine( x, USR_QUERY );


    UString Script;

    Sequence<UsrAny> args(3);
    UsrAny *pArray = args.getArray();
    pArray[0].setString( L"Arg_0" );
    pArray[1].setString( L"Arg_1" );
    pArray[2].setString( L"Arg_2" );

    if( argc > 2) {
        Script = StringToOUString( String( argv[2] ) ,  CHARSET_DONTKNOW );
    }

    XInvokationRef xInvokation( x , USR_QUERY );
    XDebuggingRef xDebug( x , USR_QUERY );

    CmdDebugger *pDbg = new CmdDebugger( &xDebug , &xEngine , &xInvokation );

    XEngineListenerRef xDebugRef( (XEngineListener *) pDbg , USR_QUERY);
    xEngine->addEngineListener( xDebugRef );


    if( argc >1 && ! strcmp( argv[1] , "1" ) ) {
        fprintf( stderr, "one thread only\n" );
        Script = UString(   L"print 'Hello World'\n" );
        xEngine->runAsync( Script ,  XInterfaceRef(), args , XEngineListenerRef() );
    }
    else if( argc >1 && ! strcmp( argv[1] , "2" ) )  {

        xEngine->runAsync( UString( L"x=1\nprint 1\n") ,  XInterfaceRef(), args , XEngineListenerRef() );
        xEngine->runAsync( UString( L"x=x+1\nprint 2\n") ,  XInterfaceRef(), args , XEngineListenerRef() );
        xEngine->runAsync( UString( L"x=x+1\nprint 3\n") ,  XInterfaceRef(), args , XEngineListenerRef());
        xEngine->runAsync( UString( L"x=x+1\nprint 4\n") ,  XInterfaceRef(), args , XEngineListenerRef() );



    }
    else if( argc >1 && ! strcmp( argv[1] , "3" ) ) {

        fprintf( stderr , "1st thread in engine y, next 5 threads in engine x\n" );
        yEngine->runAsync( UString( L"print 1\n") ,  XInterfaceRef(), args , XEngineListenerRef() );
        xEngine->runAsync( UString( L"print 2\n") ,  XInterfaceRef(), args , XEngineListenerRef() );
        xEngine->runAsync( UString( L"print 3\n") ,  XInterfaceRef(), args , XEngineListenerRef() );
        xEngine->runAsync( UString( L"print 4\n") ,  XInterfaceRef(), args , XEngineListenerRef());
        xEngine->runAsync( UString( L"print 5\n") ,  XInterfaceRef(), args , XEngineListenerRef());
        xEngine->runAsync( UString( L"print 6\n") ,  XInterfaceRef(), args , XEngineListenerRef());


    }
    pDbg->cmdLine();

    xEngine->removeEngineListener( xDebugRef );

    xReg->revokeImplementation( aDllName, XSimpleRegistryRef() );

    fprintf( stderr, "main terminates\n" );
    return 0;
}