blob: 6404ade84e269549febbb084b4995a5edf9f09e0 (
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
|
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
*
* Contributors:
* Matthew Webster - initial implementation
*******************************************************************************/
package org.aspectj.weaver.tools;
public abstract class TraceFactory {
public final static String DEBUG_PROPERTY = "org.aspectj.tracing.debug";
public final static String FACTORY_PROPERTY = "org.aspectj.tracing.factory";
public final static String DEFAULT_FACTORY_NAME = "default";
protected static boolean debug = getBoolean(DEBUG_PROPERTY,false);
private static TraceFactory instance;
public Trace getTrace (Class clazz) {
return instance.getTrace(clazz);
}
public static TraceFactory getTraceFactory () {
return instance;
}
protected static boolean getBoolean(String name, boolean def) {
String defaultValue = String.valueOf(def);
String value = System.getProperty(name,defaultValue);
return Boolean.parseBoolean(value);
}
static {
/*
* Allow user to override default behaviour or specify their own factory
*/
String factoryName = System.getProperty(FACTORY_PROPERTY);
if (factoryName != null) try {
if (factoryName.equals(DEFAULT_FACTORY_NAME)) {
instance = new DefaultTraceFactory();
}
else {
Class<?> factoryClass = Class.forName(factoryName);
instance = (TraceFactory)factoryClass.getDeclaredConstructor().newInstance();
}
}
catch (Throwable th) {
if (debug) th.printStackTrace();
}
/*
* Try to load external trace infrastructure using supplied factories
*/
if (instance == null) try {
{
Class<?> factoryClass = Class.forName("org.aspectj.weaver.tools.Jdk14TraceFactory");
instance = (TraceFactory)factoryClass.getDeclaredConstructor().newInstance();
}
}
catch (Throwable th) {
if (debug) th.printStackTrace();
}
/*
* Use default trace
*/
if (instance == null) {
instance = new DefaultTraceFactory();
}
if (debug) System.err.println("TraceFactory.instance=" + instance);
}
}
|