summaryrefslogtreecommitdiff
path: root/Source/AIFramework/Logger.cs
blob: 12c3ba0834c79ddc4780b130666ce0ec4d086ac0 (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
//-----------------------------------------------------------------------------
//
// Copyright (C) Microsoft Corporation.  All Rights Reserved.
//
//-----------------------------------------------------------------------------
namespace Microsoft.AbstractInterpretationFramework
{
   using System;
   using System.Diagnostics;

   public class Logger
   {
        private string! dbgmsgContext;
        private static int contextWidth = 0;
        
        public bool Enabled = false;

        public Logger(string! contextMsg)
        {
            this.dbgmsgContext = "[" + contextMsg + "] ";
            contextWidth = Math.Max(contextWidth, contextMsg.Length + 3);
            // base();
        }

        private static System.Text.StringBuilder! dbgmsgIndent = new System.Text.StringBuilder();
        public void DbgMsgIndent() { dbgmsgIndent.Append(' ', 2); }
        public void DbgMsgUnindent()
        { if (dbgmsgIndent.Length >= 2) dbgmsgIndent.Remove(0,2); }

        [ConditionalAttribute("DEBUG")]
        public void DbgMsg(string msg)
        {
            if (Enabled)
                Debug.WriteLine(dbgmsgContext.PadRight(contextWidth) + dbgmsgIndent + msg);
        }
        [ConditionalAttribute("DEBUG")]
        public void DbgMsgNoLine(string msg)
        {
            if (Enabled)
                Debug.Write(dbgmsgContext.PadRight(contextWidth) + dbgmsgIndent + msg);
        }
        [ConditionalAttribute("DEBUG")]
        public void DbgMsgPlain(string msg)
        {
            if (Enabled)
                Debug.Write(msg);
        }                
   }
}