forked from NTDLS/NSWFL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NSWFL_Trace.H
53 lines (44 loc) · 1.76 KB
/
NSWFL_Trace.H
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
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright © NetworkDLS 2023, All rights reserved
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#ifndef _NSWFL_Trace_H_
#define _NSWFL_Trace_H_
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
namespace NSWFL {
namespace Debug {
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#define TRACE_TYPE_GENERIC 0
#define TRACE_TYPE_SPECIAL 1
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
class CTrace {
public:
~CTrace();
CTrace(const char *sApplicationName, const char *sApplicationVersion);
void Start(void);
void Start(int iType);
void Trace(const char *sText);
int Stop(void);
int Stop(String::StringBuilder *pOutText);
bool IsTracingEnabled(void);
int Type(void);
void Lock(void);
bool TryLock(void);
void UnLock(void);
private:
Collections::Stack * _Stack;
char *_ApplicationName;
char *_ApplicationVersion;
char *_LogPath;
bool _TracingEnabled;
int _Type;
CRITICAL_SECTION _CS;
};
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
} //namespace::Debug
} //namespace::NSWFL
#endif