92
|
1 using System;
|
|
2 using System.Collections.Generic;
|
|
3 using System.Threading;
|
|
4
|
|
5 namespace Implab.Diagnostics {
|
|
6 /// <summary>
|
|
7 /// Trace context is bound to the specific thread, each thread has it's own ThreadContext.
|
|
8 /// </summary>
|
|
9 /// <remarks>
|
|
10 /// ThreadContext manages relations between logical operations and threads.
|
|
11 /// </remarks>
|
|
12 public class TraceContext {
|
|
13
|
|
14 [ThreadStatic]
|
|
15 static TraceContext _instance;
|
|
16
|
|
17 OperationContext m_current = OperationContext.EMPTY;
|
|
18 readonly Stack<OperationContext> m_stack = new Stack<OperationContext>();
|
|
19 readonly int m_threadId;
|
|
20
|
|
21 public static TraceContext Instance {
|
|
22 get {
|
|
23 if (_instance == null)
|
|
24 _instance = new TraceContext();
|
|
25 return _instance;
|
|
26 }
|
|
27 }
|
|
28
|
|
29 public TraceContext() {
|
|
30 m_threadId = Thread.CurrentThread.ManagedThreadId;
|
|
31 }
|
|
32
|
|
33 public int ThreadId {
|
|
34 get { return m_threadId; }
|
|
35 }
|
|
36
|
|
37 public LogicalOperation CurrentOperation {
|
|
38 get {
|
|
39 return m_current.CurrentOperation;
|
|
40 }
|
|
41 }
|
|
42
|
|
43 public void EnterLogicalOperation(LogicalOperation operation, bool takeOwnership) {
|
93
|
44 LogChannel<TraceEvent>.Default.LogEvent(new TraceEvent(TraceEventType.Attach, String.Format("{0} -> [{1}]", operation.Name, m_threadId)));
|
92
|
45 m_stack.Push(m_current);
|
|
46 m_current = new OperationContext(operation, takeOwnership);
|
|
47 }
|
|
48
|
|
49 public void StartLogicalOperation(string name) {
|
|
50 m_current.BeginLogicalOperation(name);
|
93
|
51 LogChannel<TraceEvent>.Default.LogEvent(new TraceEvent(TraceEventType.OperationStarted, String.Format("+{0}",CurrentOperation.Name)));
|
92
|
52 }
|
|
53
|
|
54 public void StartLogicalOperation() {
|
93
|
55 StartLogicalOperation(String.Empty);
|
92
|
56 }
|
|
57
|
|
58 public void EndLogicalOperation() {
|
93
|
59 LogChannel<TraceEvent>.Default.LogEvent(new TraceEvent(TraceEventType.OperationCompleted, String.Format("-{0} : {1}ms",CurrentOperation.Name, CurrentOperation.Duration)));
|
92
|
60 m_current.EndLogicalOperation();
|
|
61 }
|
|
62
|
|
63 public LogicalOperation DetachLogicalOperation() {
|
93
|
64 var op = m_current.DetachLogicalOperation();
|
|
65 LogChannel<TraceEvent>.Default.LogEvent(new TraceEvent(TraceEventType.Detach, String.Format("[{0}] -> {1}", m_threadId, op.Name)));
|
|
66 return op;
|
92
|
67 }
|
|
68
|
|
69 public void Leave() {
|
93
|
70 if (m_stack.Count > 0) {
|
|
71 m_current.Leave();
|
92
|
72 m_current = m_stack.Pop();
|
93
|
73 } else {
|
92
|
74 TraceLog.TraceWarning("Attemtp to leave the last operation context");
|
|
75 m_current = OperationContext.EMPTY;
|
|
76 }
|
|
77 }
|
|
78 }
|
|
79 }
|
|
80
|