Alejandro Acuña
2024-07-30 65a64a81d30f00f1fffd5da6866850e1308e1135
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
//  Tracer.cpp
 
//  Implements the tracer class
 
// #include "stdafx.h"
#include "../TraceServer/TraceServer.h"
#include <stdio.h>
#include <sys/types.h>
#include <sys/timeb.h>
#include <stdarg.h>     // for var args
 
#include "Tracer.h"
 
char *TraceLevels[] = {" NONE", "ERROR", " SPCL", "  -1-", "STATE", "  -2-", "  -3-", "  -4-", "  SIG", "   EE", "  ARB", "  -5-", "  DET", "  ALL"};
 
#define BUFFERSIZE 1024
 
Tracer::Tracer(const char *FacilityName, const char *SubFacilityName, const unsigned long Mask) {
    InitializeTracing();
    bEnabled = true;
    SetFacilityName(FacilityName);
    SetSubFacilityName(SubFacilityName);
    SetSystemMask(Mask);
 
    traceLevelName.insert(TRACENAMEMAP::value_type(SDI_LEVEL_NONE,"NONE"));
    traceLevelName.insert(TRACENAMEMAP::value_type(SDI_LEVEL_ERROR,"ERROR"));
    traceLevelName.insert(TRACENAMEMAP::value_type(SDI_LEVEL_SPECIAL,"SPCL"));
    traceLevelName.insert(TRACENAMEMAP::value_type(SDI_LEVEL_STATE_TRANS,"STATE"));
    traceLevelName.insert(TRACENAMEMAP::value_type(SDI_LEVEL_SIGNIFICANT,"SIG"));
    traceLevelName.insert(TRACENAMEMAP::value_type(SDI_LEVEL_ENTRY_EXIT,"EE"));
    traceLevelName.insert(TRACENAMEMAP::value_type(SDI_LEVEL_ARBITRARY,"ARB"));
    traceLevelName.insert(TRACENAMEMAP::value_type(SDI_LEVEL_DETAILED,"DET"));
    traceLevelName.insert(TRACENAMEMAP::value_type(SDI_LEVEL_ALL,"ALL"));
}
 
 
Tracer::~Tracer() {
    UninitializeTracing();
}
 
 
 
void
Tracer::Enable(bool flag) {
    bEnabled = flag;
}
 
 
 
void 
Tracer::SetFacilityName(const char * name) {
    _snprintf(facilityName, MAX_NAME_LENGTH-1, name);
    facilityName[MAX_NAME_LENGTH-1] = '\0';
}
 
 
 
void 
Tracer::SetSubFacilityName(const char * name) {
    _snprintf(subFacilityName, MAX_NAME_LENGTH-1, name);
    subFacilityName[MAX_NAME_LENGTH-1] = '\0';
}
 
char *
Tracer::GetFacilityName()
{
    return facilityName;
}
 
char *
Tracer::GetSubFacilityName()
{
    return subFacilityName;
}
 
void 
Tracer::SetSystemMask(const unsigned long mask) {
    SystemMask = mask;
}
 
 
 
void
Tracer::tracef(const unsigned long mask, const char * str_, ...) {
    if (!bEnabled)
        return;
 
    if ((mask & SDI_SYSTEM_MASK) > (SystemMask & SDI_SYSTEM_MASK))
        return;
 
    char *temp = GetTraceBuffer();
    if (!temp)
        return;
    
    char temp2[MAX_TRACE_LENGTH];
 
    va_list arglist;
    va_start(arglist, str_);
    _vsnprintf(temp2, MAX_TRACE_LENGTH-1, str_, arglist);
    va_end(arglist); 
    temp2[MAX_TRACE_LENGTH-1] = '\0';
    int maskPosn = 0;
    if (mask >= 0x100000)
    {
        maskPosn = 8 + (mask / 0x100000);
    }
    else
    {
        maskPosn = mask / 0x10000;
    }
    if (maskPosn > 13)
    {
        maskPosn = 13;
    }
    _snprintf(temp, MAX_TRACE_LENGTH-1, "%5s : %s : %s : %s", TraceLevels[maskPosn], facilityName, subFacilityName, temp2);
    temp[MAX_TRACE_LENGTH-1] = '\0';
 
    Trace(temp);
}
 
char *
Ascii2W(const char *input, char *output, int outputSizeBytes)
{
    int result = MultiByteToWideChar
        (
        CP_ACP,                 // code page
        MB_PRECOMPOSED,         // character-type options
        input,                  // string to map
        -1,                     // number of bytes in string
        (wchar_t *)output,      // wide-character buffer
        outputSizeBytes         // size of buffer
        );
    if (result > 0)
    {
        return output;
    }
    else
    {
        return NULL;
    }
}
 
char *
W2Ascii(const char *input, char *output, int outputSizeBytes)
{
    BOOL defaultCharUsed;
    int result = WideCharToMultiByte
        (
        CP_ACP,
        0,
        (wchar_t *)input,
        -1,
        output,
        outputSizeBytes,
        NULL,
        &defaultCharUsed
        );
    if (result > 0)
    {
        return output;
    }
    else
    {
        return NULL;
    }
}
 
char *
Ascii2T(const char *input, char *output, int outputSizeBytes)
{
    char *result = NULL;
#ifdef _UNICODE
    result = Ascii2W(input, output, outputSizeBytes);
#else
    if (outputSizeBytes > strlen(input))
    {
        strcpy(output, input);
        result = output;
    }
#endif
    return result;
}
 
char *
T2Ascii(const char *input, char *output, int outputSizeBytes)
{
    char *result = NULL;
#ifdef _UNICODE
    result = W2Ascii(input, output, outputSizeBytes);
#else
    if (outputSizeBytes > strlen(input))
    {
        strcpy(output, input);
        result = output;
    }
#endif
    return result;
}
 
 
bool
GetRegKeyBool(const HKEY Key, const char * KeyName, const char * ValueName, const bool defaultValue) {
 
    // reads the value 'ValueName' of the key 'KeyName' under the hKey tree
    DWORD       KeyType, KeySize = 1000;
    DWORD       disposition;
    BYTE        Value[1001];
    long        result;
    HKEY        hKey;
    char buffer[BUFFERSIZE];
 
 
    strcpy((char *)Value, "");
    Value[1000] = '\0';
 
    result = RegCreateKeyEx(Key, 
                            (LPTSTR)Ascii2T(KeyName, buffer, BUFFERSIZE), 
                            0, 
                            NULL, 
                            REG_OPTION_NON_VOLATILE, 
                            KEY_ALL_ACCESS, 
                            NULL, 
                            &hKey, 
                            &disposition
                            );
    
    if (result != 0)
        return false;
 
    result = RegQueryValueEx(hKey, (LPTSTR)Ascii2T(ValueName, buffer, BUFFERSIZE), NULL, &KeyType, Value, &KeySize);    
    if (result != 0) {
 
        if (defaultValue == true)
            strcpy((char *)Value, "true");
        else
            strcpy((char *)Value, "false");
        
        KeyType = REG_SZ;
        KeySize = strlen((char *)Value) + 1;
 
        result = RegSetValueEx(hKey, (LPTSTR)Ascii2T(ValueName, buffer, BUFFERSIZE), 0, KeyType, (BYTE *)&Value, KeySize);
        if (result != 0)
            return false;
    }
    RegCloseKey(hKey);
 
    if (_stricmp(T2Ascii((LPTSTR)Value, buffer, BUFFERSIZE), "true") == 0)
        return true;
    else
        return false;
}
 
 
//-----------------------------------------------------------------------------------------------------------
 
 
std::string 
GetRegKeyString(const HKEY Key, const char * KeyName, const char * ValueName, const char * defaultValue) {
 
    // reads the value 'ValueName' of the key 'KeyName' under the hKey tree
    DWORD       KeyType, KeySize = 1000;
    DWORD       disposition;
    BYTE        Value[1001];
    long        result;
    HKEY        hKey;
    char        buffer[BUFFERSIZE];
 
    strcpy((char *)Value, "");
    Value[1000] = '\0';
 
    result = RegCreateKeyEx(Key, 
                            (LPTSTR)Ascii2T(KeyName, buffer, BUFFERSIZE), 
                            0, 
                            NULL, 
                            REG_OPTION_NON_VOLATILE, 
                            KEY_ALL_ACCESS, 
                            NULL, 
                            &hKey, 
                            &disposition
                            );
    
    if (result != 0)
        return "";
 
    result = RegQueryValueEx(hKey, (LPTSTR)Ascii2T(ValueName, buffer, BUFFERSIZE), NULL, &KeyType, Value, &KeySize);
    if (result != 0) {
        strcpy((char *)Value, defaultValue);
        KeyType = REG_SZ;
        KeySize = strlen(defaultValue) + 1;
        result = RegSetValueEx(hKey, (LPTSTR)Ascii2T(ValueName, buffer, BUFFERSIZE), 0, KeyType, (BYTE *)&Value, KeySize);
        if (result != 0)
            return "";
    }
    RegCloseKey(hKey);
 
    return std::string(T2Ascii((LPTSTR)Value, buffer, BUFFERSIZE));
 
}
 
 
//-----------------------------------------------------------------------------------------------------------
 
 
long 
GetRegKeyLong(const HKEY Key, const char * KeyName, const char * ValueName, const long defaultValue) {
 
    // reads the value 'ValueName' of the key 'KeyName' under the hKey tree
    DWORD       KeyType, KeySize = 4;
    DWORD       disposition;
    long        Value;
    long        result;
    HKEY        hKey;
    char        buffer[BUFFERSIZE];
 
    result = RegCreateKeyEx(Key, 
                            (LPTSTR)Ascii2T(KeyName, buffer, BUFFERSIZE), 
                            0, 
                            NULL, 
                            REG_OPTION_NON_VOLATILE, 
                            KEY_ALL_ACCESS, 
                            NULL, 
                            &hKey, 
                            &disposition
                            );
    
    if (result != 0)
        return 0;
 
    result = RegQueryValueEx(hKey, (LPTSTR)Ascii2T(ValueName, buffer, BUFFERSIZE), NULL, &KeyType, (BYTE *)&Value, &KeySize);
    if (result != 0) {
        Value = defaultValue;
        KeyType = REG_DWORD;
        KeySize = 4;
        result = RegSetValueEx(hKey, (LPTSTR)Ascii2T(ValueName, buffer, BUFFERSIZE), 0, KeyType, (BYTE *)&Value, KeySize);
        if (result != 0)
            return 0;
    }
    RegCloseKey(hKey);
 
    return Value;
 
}
 
// ===================================================================================================
 
 
long
SetRegKeyBool(const HKEY Key, const char * KeyName, const char * ValueName, const bool newValue) {
 
    // reads the value 'ValueName' of the key 'KeyName' under the hKey tree
    DWORD       KeyType, KeySize = 1000;
    DWORD       disposition;
    BYTE        Value[1001];
    long        result;
    HKEY        hKey;
    char        buffer[BUFFERSIZE];
 
    result = RegCreateKeyEx(Key, 
                            (LPTSTR)Ascii2T(KeyName, buffer, BUFFERSIZE), 
                            0, 
                            NULL, 
                            REG_OPTION_NON_VOLATILE, 
                            KEY_ALL_ACCESS, 
                            NULL, 
                            &hKey,
                            &disposition
                            );
    
    if (result != 0)
        return -10;
 
    if (newValue == true)
        strcpy((char *)Value, "true");
    else
        strcpy((char *)Value, "false");
        
    KeyType = REG_SZ;
    KeySize = strlen((char *)Value) + 1;
 
    result = RegSetValueEx(hKey, (LPTSTR)Ascii2T(ValueName, buffer, BUFFERSIZE), 0, KeyType, (BYTE *)&Value, KeySize);
    if (result != 0)
        return -20;
 
    RegCloseKey(hKey);
    return 0;
}
 
 
//-----------------------------------------------------------------------------------------------------------
 
 
long 
SetRegKeyString(const HKEY Key, const char * KeyName, const char * ValueName, const char * newValue) {
 
    // reads the value 'ValueName' of the key 'KeyName' under the hKey tree
    DWORD       KeyType, KeySize = 1000;
    DWORD       disposition;
    BYTE        Value[1001];
    long        result;
    HKEY        hKey;
    char        buffer[BUFFERSIZE];
 
    result = RegCreateKeyEx(Key, 
                            (LPTSTR)Ascii2T(KeyName, buffer, BUFFERSIZE), 
                            0, 
                            NULL, 
                            REG_OPTION_NON_VOLATILE, 
                            KEY_ALL_ACCESS, 
                            NULL, 
                            &hKey,
                            &disposition
                            );
    
    if (result != 0)
        return -10;
 
    strcpy((char *)Value, newValue);
    KeyType = REG_SZ;
    KeySize = strlen((char *)Value) + 1;
 
    result = RegSetValueEx(hKey, (LPTSTR)Ascii2T(ValueName, buffer, BUFFERSIZE), 0, KeyType, (BYTE *)&Value, KeySize);
    if (result != 0)
        return -20;
 
    RegCloseKey(hKey);
 
    return 0;
 
}
 
 
//-----------------------------------------------------------------------------------------------------------
 
 
long 
SetRegKeyLong(const HKEY Key, const char * KeyName, const char * ValueName, const long newValue) {
 
    // reads the value 'ValueName' of the key 'KeyName' under the hKey tree
    DWORD       KeyType, KeySize = 4;
    DWORD       disposition;
    long        Value;
    long        result;
    HKEY        hKey;
    char        buffer[BUFFERSIZE];
 
    result = RegCreateKeyEx(Key, 
                            (LPTSTR)Ascii2T(KeyName, buffer, BUFFERSIZE),
                            0, 
                            NULL, 
                            REG_OPTION_NON_VOLATILE, 
                            KEY_ALL_ACCESS, 
                            NULL, 
                            &hKey,
                            &disposition
                            );
    
    if (result != 0)
        return -10;
 
    Value = newValue;
    KeyType = REG_DWORD;
    KeySize = 4;
 
    result = RegSetValueEx(hKey, (LPTSTR)Ascii2T(ValueName, buffer, BUFFERSIZE), 0, KeyType, (BYTE *)&Value, KeySize);
    if (result != 0)
        return -20;
 
    RegCloseKey(hKey);
 
    return Value;
 
}