File: Log.xs

package info (click to toggle)
libwx-perl 1%3A0.9932-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,300 kB
  • sloc: cpp: 11,064; perl: 8,603; ansic: 711; makefile: 53
file content (613 lines) | stat: -rw-r--r-- 10,808 bytes parent folder | download | duplicates (5)
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
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
#############################################################################
## Name:        XS/Log.xs
## Purpose:     XS for Wx::Log and derived classes
## Author:      Mattia Barbon
## Modified by:
## Created:     29/10/2000
## RCS-ID:      $Id: Log.xs 3426 2013-01-19 06:29:12Z mdootson $
## Copyright:   (c) 2000-2003, 2005-2007, 2009, 2012-2013 Mattia Barbon
## Licence:     This program is free software; you can redistribute it and/or
##              modify it under the same terms as Perl itself
#############################################################################

#include <wx/log.h>
#include "cpp/log.h"

MODULE=Wx PACKAGE=Wx::Log

void
wxLog::Destroy()
  CODE:
    delete THIS;
    
bool 
IsEnabled()  
  CODE:
    RETVAL = wxLog::IsEnabled();
  OUTPUT:
    RETVAL

bool 
EnableLogging( enable = true )
    bool enable
  CODE:
    RETVAL = wxLog::EnableLogging( enable );
  OUTPUT:
    RETVAL
    
#if WXPERL_W_VERSION_GE( 2, 8, 5 )
    
void 
SetRepetitionCounting( RepetCounting = true )
    bool RepetCounting
  CODE:
    wxLog::SetRepetitionCounting( RepetCounting );
    
bool 
GetRepetitionCounting()
  CODE:
    RETVAL = wxLog::GetRepetitionCounting();
  OUTPUT:
    RETVAL  

void
DoCreateOnDemand()
  CODE:
    wxLog::DoCreateOnDemand();

#endif

void
AddTraceMask( mask )
    wxString mask
  CODE:
    wxLog::AddTraceMask( mask );

void
ClearTraceMasks()
  CODE:
    wxLog::ClearTraceMasks();

void
RemoveTraceMask( mask )
    wxString mask
  CODE:
    wxLog::RemoveTraceMask( mask );

bool
IsAllowedTraceMask( mask )
    wxString mask
  CODE:
    RETVAL = wxLog::IsAllowedTraceMask( mask );
  OUTPUT:
    RETVAL
    
void
GetTraceMasks()
  PPCODE:
    const wxArrayString& masksallowed = wxLog::GetTraceMasks();
    PUTBACK;
    wxPli_stringarray_push( aTHX_  masksallowed );
    SPAGAIN;

wxLog*
GetActiveTarget()
  CODE:
    RETVAL = wxLog::GetActiveTarget();
  OUTPUT:
    RETVAL

wxLog*
SetActiveTarget( target )
    wxLog* target
  CODE:
    RETVAL = wxLog::SetActiveTarget( target );
  OUTPUT:
    RETVAL

void
DontCreateOnDemand()
  CODE:
    wxLog::DontCreateOnDemand();
    
void
Suspend()
  CODE:
    wxLog::Suspend();
    
void
Resume()
  CODE:
    wxLog::Resume();
    
wxLogLevel
GetLogLevel()
  CODE:
    RETVAL = wxLog::GetLogLevel();
  OUTPUT:
    RETVAL

void   
SetLogLevel( loglevel )
    wxLogLevel loglevel
  CODE:
    wxLog::SetLogLevel( loglevel );

void
wxLog::Flush()

## // Allow static function call and previously
## // wrapped method call for FlushActive

void
FlushActive( myLog = NULL )
    wxLog* myLog
  CODE:
    wxLog::FlushActive();


bool
wxLog::HasPendingMessages()

## // Allow correct static function call and previously
## // wrapped method call for Get / SetVerbose
## // It all maps to a static call anyway.
## // Old code should still work

# DECLARE_OVERLOAD( wlog, Wx::Log )

void
SetVerbose( ... )
  PPCODE:
    BEGIN_OVERLOAD()
        MATCH_VOIDM_REDISP_FUNCTION( Wx::Log::SetVerboseFunctionDefault )
        MATCH_REDISP_COUNT_FUNCTION(wxPliOvl_wlog, Wx::Log::SetVerboseMethodDefault, 1 )
        MATCH_REDISP_COUNT_FUNCTION(wxPliOvl_n, Wx::Log::SetVerboseFunctionParam, 1)
        MATCH_REDISP_COUNT_FUNCTION(wxPliOvl_wlog_n, Wx::Log::SetVerboseMethodParam, 2)
    END_OVERLOAD( "Wx::Log::SetVerbose" )

void
SetVerboseFunctionDefault()
  CODE:
    wxLog::SetVerbose( true );

void
SetVerboseMethodDefault( myLog )
    wxLog* myLog
  CODE:
    wxLog::SetVerbose( true );
    
void
SetVerboseFunctionParam( enable )
    bool enable
  CODE:
    wxLog::SetVerbose( enable );

void
SetVerboseMethodParam( myLog, enable )
    wxLog* myLog
    bool enable
  CODE:
    wxLog::SetVerbose( enable );

bool
GetVerbose( myLog = NULL )
    wxLog* myLog
  CODE:
    RETVAL = wxLog::GetVerbose();
  OUTPUT:
    RETVAL


#if WXPERL_W_VERSION_GE( 2, 9, 0 )

void
_SetTimestamp( format, buffer )
    wxString format
    SV* buffer
  CODE:
    wxLog::SetTimestamp( format );

wxString
wxLog::GetTimestamp();

#else

void
_SetTimestamp( format, buffer )
    SV* format
    SV* buffer
  CODE:
    if( SvOK( ST(0) ) ) {
        const wxString format_tmp = ( SvUTF8( format ) ) ?
                  ( wxString( SvPVutf8_nolen( format ), wxConvUTF8 ) )
                : ( wxString( SvPV_nolen( format ), wxConvLibc ) );
        const wxChar* fmt = (const wxChar*)format_tmp.c_str();
        STRLEN size = wxStrlen( fmt ) * sizeof(wxChar) + sizeof(wxChar);
        SvUPGRADE( buffer, SVt_PV );
        wxLog::SetTimestamp( wxStrcpy( (wxChar*)SvGROW( buffer, size ),
                             fmt ) );
    } else {
        wxLog::SetTimestamp( NULL );
    }

const wxChar*
wxLog::GetTimestamp()

#endif

#if WXPERL_W_VERSION_GE( 2, 9, 0 )

void
SetComponentLevel( component, level )
    wxString component
    wxLogLevel level
  CODE:
    wxLog::SetComponentLevel( component, level );


wxLogLevel
GetComponentLevel( component )
    wxString component
  CODE:
    RETVAL = wxLog::GetComponentLevel( component );
  OUTPUT: RETVAL

bool
IsLevelEnabled( level, component )
    wxLogLevel level
    wxString   component
  CODE:
    RETVAL = wxLog::IsLevelEnabled( level, component );
  OUTPUT: RETVAL

#endif

#if WXPERL_W_VERSION_LT( 2, 9, 0 ) || WXWIN_COMPATIBILITY_2_8

void
SetTraceMask( mask )
    wxTraceMask mask
  CODE:
    wxLog::SetTraceMask( mask );

wxTraceMask
GetTraceMask()
  CODE:
    RETVAL = wxLog::GetTraceMask();
  OUTPUT:
    RETVAL
    
#endif

MODULE=Wx PACKAGE=Wx::PlLog

wxPlLog*
wxPlLog::new()
  CODE:
    RETVAL = new wxPlLog( CLASS );
  OUTPUT:
    RETVAL

MODULE=Wx PACKAGE=Wx::LogTextCtrl

wxLogTextCtrl*
wxLogTextCtrl::new( ctrl )
    wxTextCtrl* ctrl

MODULE=Wx PACKAGE=Wx::LogNull

wxLogNull*
wxLogNull::new()

static void
wxLogNull::CLONE()
  CODE:
    wxPli_thread_sv_clone( aTHX_ CLASS, (wxPliCloneSV)wxPli_detach_object );

## // thread OK
void
wxLogNull::DESTROY()
  CODE:
    wxPli_thread_sv_unregister( aTHX_ "Wx::LogNull", THIS, ST(0) );
    delete THIS;

MODULE=Wx PACKAGE=Wx::LogGui

wxLogGui*
wxLogGui::new()

MODULE=Wx PACKAGE=Wx::LogWindow

wxLogWindow*
wxLogWindow::new( parent, title, show = true, passtoold = true )
    wxFrame* parent
    wxString title
    bool show
    bool passtoold
  

MODULE=Wx PACKAGE=Wx

# this is a test for INTERFACE:
# in this specific case it saves around 256 bytes / function,
# more for more complex typemaps / longer parameter lists

#if 0

#define XSINTERFACE__wxstring( _ret, _cv, _f ) \
  ( ( void (*)( const wxString& ) ) _f)

#define XSINTERFACE__wxstring_SET( _cv, _f ) \
  ( CvXSUBANY( _cv ).any_ptr = (void*) _f ) 

#undef dXSFUNCTION
#define dXSFUNCTION( a ) \
  void (*XSFUNCTION)( const wxString& )

void
interface__wxstring( string )
    wxString string
  INTERFACE_MACRO:
    XSINTERFACE__wxstring
    XSINTERFACE__wxstring_SET
  INTERFACE:
    wxLogError wxLogFatalError wxLogWarning
    wxLogVerbose wxLogDebug
    wxLogMessage
    
#else

#if WXPERL_W_VERSION_GE( 2, 9, 0 )

void
wxLogError( string )
    wxString string

void
wxLogFatalError( string )
    wxString string

void
wxLogWarning( string )
    wxString string

void
wxLogMessage( string )
    wxString string

void
wxLogVerbose( string )
    wxString string

void
wxLogDebug( string )
    wxString string

#else

void
wxLogError( string )
    const wxChar* string

void
wxLogFatalError( string )
    const wxChar* string

void
wxLogWarning( string )
    const wxChar* string

void
wxLogMessage( string )
    const wxChar* string

void
wxLogVerbose( string )
    const wxChar* string

void
wxLogDebug( string )
    const wxChar* string

#endif

#endif

void
wxLogStatusFrame( frame, string )
    wxFrame* frame
    const wxChar* string
  CODE:
    wxLogStatus( frame, string );

void
wxLogStatus( string )
    const wxChar* string

#if WXPERL_W_VERSION_LE( 2, 5, 0 )

void
wxLogTrace( string )
    const wxChar* string

#endif

void
wxLogTraceMask( mask, string )
    const wxChar* mask
    const wxChar* string
  CODE:
    wxLogTrace( mask, string );

void
wxLogSysError( string )
    const wxChar* string

MODULE=Wx PACKAGE=Wx PREFIX=wx

unsigned long
wxSysErrorCode()

const wxChar*
wxSysErrorMsg( errCode = 0 )
    unsigned long errCode

MODULE=Wx PACKAGE=Wx::LogChain

wxLogChain*
wxLogChain::new( logger )
    wxLog* logger

wxLog*
wxLogChain::GetOldLog()

#if WXPERL_W_VERSION_GE( 2, 8, 5 )

void
wxLogChain::DetachOldLog()

#endif

bool
wxLogChain::IsPassingMessages()

void
wxLogChain::PassMessages( passMessages )
    bool passMessages

void
wxLogChain::SetLog( logger )
    wxLog* logger

MODULE=Wx PACKAGE=Wx::LogPassThrough

wxLogPassThrough*
wxLogPassThrough::new()

MODULE=Wx PACKAGE=Wx::PlLogPassThrough

wxPlLogPassThrough*
wxPlLogPassThrough::new()
  CODE:
    RETVAL = new wxPlLogPassThrough( CLASS );
  OUTPUT:
    RETVAL

MODULE=Wx PACKAGE=Wx::LogStderr

wxLogStderr*
wxLogStderr::new( fp = NULL )
    FILE* fp;

#if WXPERL_W_VERSION_GE( 2, 9, 0 )

MODULE=Wx PACKAGE=Wx::PlLogFormatter

wxPlLogFormatter*
wxPlLogFormatter::new()
  CODE:
    RETVAL = new wxPlLogFormatter( CLASS );
  OUTPUT: RETVAL
  
void
wxPlLogFormatter::Destroy()
  CODE:
    delete THIS;

MODULE=Wx PACKAGE=Wx::LogFormatter

void
wxLogFormatter::Destroy()
  CODE:
    delete THIS;


MODULE=Wx PACKAGE=Wx::LogRecordInfo

const char*
wxLogRecordInfo::filename()
  CODE:
    RETVAL = THIS->filename;
  OUTPUT: RETVAL

int
wxLogRecordInfo::line()
  CODE:
    RETVAL = THIS->line;
  OUTPUT: RETVAL

const char*
wxLogRecordInfo::func()
  CODE:
    RETVAL = THIS->func;
  OUTPUT: RETVAL

const char*
wxLogRecordInfo::component()
  CODE:
    RETVAL = THIS->filename;
  OUTPUT: RETVAL

time_t
wxLogRecordInfo::timestamp()
  CODE:
    RETVAL = THIS->timestamp;
  OUTPUT: RETVAL


void
StoreValue( ... )
  PPCODE:
    BEGIN_OVERLOAD()
        MATCH_REDISP_COUNT(wxPliOvl_s_n, Wx::LogRecordInfo::StoreNumValue, 2 )
        MATCH_REDISP_COUNT(wxPliOvl_s_s, Wx::LogRecordInfo::StoreStrValue, 2 )
    END_OVERLOAD( "Wx::LogRecordInfo::StoreValue" )


void
wxLogRecordInfo::StoreNumValue( key, val )
    wxString  key
    wxUIntPtr val
  CODE:
    THIS->StoreValue( key, val );
    
void
wxLogRecordInfo::StoreStrValue( key, val )
    wxString  key
    wxString val
  CODE:
    THIS->StoreValue( key, val );


void
wxLogRecordInfo::GetNumValue( key )
    wxString key
  PREINIT:
    wxUIntPtr val;
  PPCODE:
    bool result = THIS->GetNumValue( key, &val);
    EXTEND( SP, 1 );
    if(result) {
        PUSHs( sv_2mortal( newSVuv( val ) ) );
    } else {
        PUSHs( &PL_sv_undef );
    }

void
wxLogRecordInfo::GetStrValue( key )
    wxString key
  PREINIT:
    wxString val;
  PPCODE:
    bool result = THIS->GetStrValue( key, &val);
    EXTEND( SP, 1 );
    if(result) {
        SV* sv = sv_newmortal();
        wxPli_wxString_2_sv( aTHX_ val, sv );
    } else {
        PUSHs( &PL_sv_undef );
    }

#endif