summaryrefslogtreecommitdiff
path: root/src/main/java/com/c2kernel/utils/Logger.java
blob: da476df3fb1ceeba6a3f6385ed7b02ed6d7825f2 (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
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
package com.c2kernel.utils;
import java.io.PrintStream;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.sql.Timestamp;
import java.util.HashMap;
import java.util.Iterator;

import org.tanukisoftware.wrapper.WrapperManager;

import com.c2kernel.process.AbstractMain;
import com.c2kernel.process.Gateway;
import com.c2kernel.scripting.ScriptConsole;
import com.c2kernel.utils.server.SimpleTCPIPServer;
/**
 * <pre>- message string should always contain the class name and the method name: Logger.msg(1,"ItemFact::createDir() - LifeCycle DB created"); - use meaningfull abbreviation and also use the dash to separate the 'header' from the message! - each method should start with this 'method signature' debug: Logger.msg(1,"ItemFact::createDir() - path:" + path);
*</pre>
 */
public class Logger
{
	/**
	 * logging level 0 (only error & warning) => no logging ; 9 => maximum logging
     * add ten to output time before each message
	 */
	private static int mHighestLogLevel = 0;
    private static HashMap<PrintStream, Integer> logStreams = new HashMap<PrintStream, Integer>();
    static protected SimpleTCPIPServer  mConsole       = null;

	static private void printMessage(String message, int msgLogLevel)
	{
        synchronized(logStreams) {
            for (Iterator<PrintStream> iter = logStreams.keySet().iterator(); iter.hasNext();) {
                PrintStream element = iter.next();
                int logLevel = logStreams.get(element).intValue();
                if (logLevel < msgLogLevel || (logLevel > 9 && logLevel - 10 < msgLogLevel))
                    continue;
                if (logLevel > 9)
                {
                    Timestamp ts = new Timestamp(System.currentTimeMillis());
                    String sTime = ts.toString();
                    message = sTime + " - " + message;
                }
                try {
                    element.println(message);
                } catch (Exception ex) {
                    iter.remove();
                }
            }
        }
	}

    static private void printMessage(Throwable ex) {
            StringWriter msgString = new StringWriter();
            PrintWriter msg = new PrintWriter(msgString);
            msg.print(ex instanceof Exception ? "EXCEPTION:" : "JVM ERROR:");
            ex.printStackTrace(msg);
            printMessage(msgString.toString(), 0);
    }

	static public boolean doLog(int logLevel)
	{
        return mHighestLogLevel >= logLevel;
	}
	/**
	 * Use this only for temporary messages while developing/debugging. When the code is stable, change calls to debug to
	 * message/warning/error with an appropriate log level. Is is marked deprecated to highlight stray calls. This makes 
	 * it easier to manage debug calls in the source.
	 *
	 * @param msg -
	 *            the string to write to the console, or log file if specified in cmd line
	 * @deprecated
	 */
	@Deprecated
	static public void debug(String msg)
	{
		msg("DEBUG  : " + msg);
	}
	static public void debug(int logLevel, String msg)
	{
		msg(logLevel, "DEBUG  : " + msg);
	}
	/**
	 * Use Logger.message to report information that will be useful for debugging a release
	 *
	 * @param level -
	 *            log level of this message. If the current log level has been on the cmd line to be less that this number, the log message
	 *            will not be displayed
	 * @param msg -
	 *            the string to write to the console, or log file if specified in cmd line
	 */
	static public void msg(int level, String msg)
	{
		printMessage(msg, level);
	}
	static public void msg(String msg)
	{
		printMessage(msg, 0);
	}
	static public void error(String msg)
	{
		printMessage("ERROR  : " + msg, 0);
	}
	static public void error(Throwable ex)
	{
		printMessage(ex);
	}
	static public void warning(String msg)
	{
		printMessage("WARNING: " + msg, 0);
	}
	static public void die(String msg)
	{
		printMessage("FATAL  : " + msg, 0);
		if (AbstractMain.runningAsWrapper)
			WrapperManager.stop(1);
		else
			System.exit(1);
	}
	/**
     * @param console
     */
    public static void addLogStream(PrintStream console, int logLevel) {
        try {
            console.println("***********************************************************");
            console.println("  CRISTAL log started at level "+logLevel+" @"+new Timestamp(System.currentTimeMillis()).toString());
            console.println("***********************************************************");
        } catch (Exception ex) {
            System.out.println("Exception accessing log stream");
            ex.printStackTrace();
        }

        synchronized(logStreams) {
            logStreams.put(console, new Integer(logLevel));
            if (logLevel > 9) logLevel-=10;
            if (logLevel > mHighestLogLevel) mHighestLogLevel = logLevel;
        }

    }
    /**
     * @param console
     */
    public static void removeLogStream(PrintStream console) {
        synchronized(logStreams) {
            Integer logIntObj = logStreams.get(console);
            if (logIntObj == null) return; // not registered
            int logLevel = (logIntObj).intValue();
            logStreams.remove(console);

            // recalculate lowest log level
            if (logLevel == mHighestLogLevel || (logLevel > 9 && logLevel-10 == mHighestLogLevel)) {
                mHighestLogLevel = -1;
                for (Integer element : logStreams.values()) {
                    int thisLogLevel = element.intValue()>9?element.intValue()-10:element.intValue();
                    if (thisLogLevel > mHighestLogLevel || mHighestLogLevel == -1)
                        mHighestLogLevel = thisLogLevel;
                }
            }
        }
    }

    static public void initConsole(String id)
    {
        String portString = Gateway.getProperty(id+".Console.port");
        int port = 0;
        try {
            port = Integer.parseInt(portString);
        } catch (NumberFormatException ex) {
            Logger.msg("No port defined for "+id+" console. Using any port.");
        }

        mConsole = new SimpleTCPIPServer(port, ScriptConsole.class, 5);
        mConsole.startListening();
        Gateway.setProperty(id+".Console.port", String.valueOf(mConsole.getPort()));
    }

    static public int getConsolePort() {
        return mConsole.getPort();
    }

    static public void closeConsole()
    {
        if (mConsole != null)
            mConsole.stopListening();
    }
}