blob: b2b62af7424c4bcaa8a0cb2bf54873271a7b03d2 [file] [log] [blame]
/* Copyright 2004 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.xmlbeans.impl.common;
import org.apache.xmlbeans.SystemProperties;
import java.io.File;
import java.io.IOException;
import java.io.PrintStream;
public class XBeanDebug {
public static final int TRACE_SCHEMA_LOADING = 0x0001;
public static final String traceProp = "org.apache.xmlbeans.impl.debug";
public static final String defaultProp = ""; // "TRACE_SCHEMA_LOADING";
private static int _enabled = initializeBitsFromProperty();
private static int _indent = 0;
private static int initializeBitsFromProperty() {
String prop = SystemProperties.getProperty(traceProp, defaultProp);
return (prop.contains("TRACE_SCHEMA_LOADING")) ? TRACE_SCHEMA_LOADING : 0;
}
public static void enable(int bits) {
_enabled = _enabled | bits;
}
public static void disable(int bits) {
_enabled = _enabled & ~bits;
}
public static void trace(int bits, String message, int indent) {
if (test(bits)) {
synchronized (XBeanDebug.class) {
if (indent < 0) {
_indent += indent;
}
String _indentspace = " ";
String spaces = _indent < 0 ? "" : _indent > _indentspace.length() ? _indentspace : _indentspace.substring(0, _indent);
String logmessage = Thread.currentThread().getName() + ": " + spaces + message + "\n";
System.err.print(logmessage);
if (indent > 0) {
_indent += indent;
}
}
}
}
public static boolean test(int bits) {
return (_enabled & bits) != 0;
}
static PrintStream _err;
public static String log(String message) {
log(message, null);
return message;
}
public static String logStackTrace(String message) {
log(message, new Throwable());
return message;
}
private synchronized static String log(String message, Throwable stackTrace) {
if (_err == null) {
try {
File diagnosticFile = File.createTempFile("xmlbeandebug", ".log");
_err = new PrintStream(diagnosticFile, "UTF-8");
System.err.println("Diagnostic XML Bean debug log file created: " + diagnosticFile);
} catch (IOException e) {
_err = System.err;
}
}
_err.println(message);
if (stackTrace != null) {
stackTrace.printStackTrace(_err);
}
return message;
}
public static void logException(Throwable t) {
log(t.getMessage(), t);
}
}