View Javadoc

1   /*
2    * Copyright 2007-2008 the original author or authors.
3    * 
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  
17  package org.gwe;
18  
19  import java.io.IOException;
20  import java.util.ArrayList;
21  import java.util.Arrays;
22  import java.util.Collection;
23  import java.util.List;
24  
25  import org.apache.commons.logging.LogFactory;
26  import org.apache.log4j.ConsoleAppender;
27  import org.apache.log4j.FileAppender;
28  import org.apache.log4j.Level;
29  import org.apache.log4j.Logger;
30  import org.apache.log4j.PatternLayout;
31  import org.gwe.app.Distribution;
32  import org.gwe.drivers.ResourceHandleFactory;
33  import org.gwe.drivers.fileSystems.GridFileSystem;
34  import org.gwe.p2elv2.PFunction;
35  import org.gwe.persistence.model.BaseModelInfo;
36  import org.gwe.persistence.model.CompositeEventLogger;
37  import org.gwe.persistence.model.IEventLogger;
38  import org.gwe.utils.IOUtils;
39  import org.gwe.utils.LoggingLevelsConfigurer;
40  import org.gwe.utils.security.ResourceLink;
41  import org.springframework.context.support.AbstractApplicationContext;
42  import org.springframework.context.support.ClassPathXmlApplicationContext;
43  import org.springframework.core.io.support.ResourcePatternResolver;
44  
45  /**
46   * @author Marco Ruiz
47   * @since Jul 5, 2007
48   */
49  public class GWEAppContext {
50  	
51  	public static final String DEFAULT_CORE_CONF = "spring-gwe-core.xml";
52  	private static final String DEFAULT_LOG_CONF = "spring-gwe-log.xml";
53  
54  	private static final String PROP_GWE_HOME 	 = "gwe.home";
55  	public static final PatternLayout LOG_LAYOUT = new PatternLayout("%-10d{HH:mm:ss} [%t] %-5p  - %c{1}:%L %x - %m%n");
56  	
57  	protected static GWEAppContext instance = null;
58  	
59  	public static GridFileSystem getGridFileSystem() {
60  		return instance.gridFileSystem;
61  	}
62  	
63  	public static List<String> getP2ELFunctionNames() {
64  		List<String> result = new ArrayList<String>();
65  		for (PFunction function : instance.p2elFunctions) result.add(function.getName());
66  		return result;
67  	}
68  	
69  	protected AbstractApplicationContext appContext;
70  
71  	protected GridFileSystem gridFileSystem;
72  	protected List<PFunction> p2elFunctions;
73  	
74  	private String installPath;
75  
76  	public GWEAppContext(Class appClass, String installPath, String workspace, String... ctxFiles) {
77  		this.installPath = installPath;
78          System.setProperty(PROP_GWE_HOME, installPath);
79  		createLoggerAppender(workspace, true);
80  		
81  		configureLoggers(appClass);
82  		
83  		ctxFiles = addCoreContextIfNotPresent(ctxFiles);
84  		for (int idx = 0; idx < ctxFiles.length; idx++) 
85  			ctxFiles[idx] = ResourcePatternResolver.CLASSPATH_ALL_URL_PREFIX + ctxFiles[idx];
86  		
87  		try {
88  			appContext     = new ClassPathXmlApplicationContext(ctxFiles);
89  			gridFileSystem = getBeanOfClass(GridFileSystem.class);
90  			p2elFunctions  = getBean("p2elFunctions");
91  			ResourceHandleFactory handleFactory = getBean("resourceHandleFactory");
92  			ResourceLink.setHandleFactory(handleFactory);
93  			
94  			// Collect event loggers
95  			setGlobalEventLogger();
96  		} catch(Throwable e) {
97  			LogFactory.getLog(GWEAppContext.class).fatal(e);
98  		}
99  		instance = this; 
100 	}
101 
102 	private void configureLoggers(Class appClass) {
103 	    AbstractApplicationContext logContext = new ClassPathXmlApplicationContext(ResourcePatternResolver.CLASSPATH_ALL_URL_PREFIX + DEFAULT_LOG_CONF);
104 	    ((LoggingLevelsConfigurer)logContext.getBean("loggingLevelsConfigurer")).applyLevelsFor(appClass);
105     }
106 	
107 	private void setGlobalEventLogger() {
108 	    Collection<IEventLogger> eventLoggers = appContext.getBeansOfType(IEventLogger.class).values();
109 	    CompositeEventLogger eventLogger = new CompositeEventLogger();
110 	    for (IEventLogger evLogger : eventLoggers) 
111 	    	eventLogger.addEventLogger(evLogger);
112 	    BaseModelInfo.setEventLogger(eventLogger);
113     }
114 	
115 	private String[] addCoreContextIfNotPresent(String... contextFiles) {
116 		List<String> allCtxFiles = new ArrayList<String>();
117 		allCtxFiles.addAll(Arrays.asList(contextFiles));
118 		if (allCtxFiles.size() < 1 || !allCtxFiles.get(0).equals(DEFAULT_CORE_CONF)) {
119 			allCtxFiles.remove(DEFAULT_CORE_CONF);
120 			allCtxFiles.add(0, DEFAULT_CORE_CONF);
121 		}
122 		return allCtxFiles.toArray(new String[]{});
123 	}
124 	
125 	public String getInstallPath() {
126     	return installPath;
127     }
128 
129 	protected static void createLoggerAppender(String workspace, boolean production) {
130 		String appLog = IOUtils.concatenatePaths(workspace, "app.log");
131 		try {
132 			Level level;
133 			if (production) {
134 				Logger.getRootLogger().removeAllAppenders();
135 				level = Level.INFO;
136 			} else {
137 				Logger.getRootLogger().addAppender(new ConsoleAppender());
138 				level = Level.ALL;
139 			}
140 			Logger.getRootLogger().addAppender(new FileAppender(LOG_LAYOUT, appLog));
141             Logger.getRootLogger().setLevel(level);
142 		} catch (IOException e) {
143 			System.err.println("Couldn't create file log appender '" + appLog + "'");
144 			e.printStackTrace(System.err);
145 		}
146 	}
147 
148 	public final AbstractApplicationContext getAppContext() { return appContext; }
149 
150 	public final <T> T getBean(String beanName) { return (T)appContext.getBean(beanName); }
151 	
152 	public final <T> T getBeanOfClass(Class<T> beanClass) { 
153 		Collection<T> values = appContext.getBeansOfType(beanClass).values();
154 		return (T)values.iterator().next(); 
155 	}
156 
157 	public Distribution getDistribution() {
158 	    return getBeanOfClass(Distribution.class);
159     }
160 }
161