]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.management/src/org/simantics/db/management/internal/SessionManagerProvider.java
Playground for Antti.
[simantics/platform.git] / bundles / org.simantics.db.management / src / org / simantics / db / management / internal / SessionManagerProvider.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2011 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.db.management.internal;
13
14 import java.io.InputStream;
15 import java.net.URL;
16 import java.util.Properties;
17
18 import org.eclipse.core.runtime.Platform;
19 import org.osgi.framework.Bundle;
20 import org.simantics.db.SessionManager;
21 import org.simantics.utils.FileUtils;
22
23 /**
24  * Complete hack for the time being. Simply provides the SessionManager behind
25  * procore's SessionManagerSource with proper initialization.
26  */
27 public final class SessionManagerProvider {
28
29     // TODO: move this into BundleContext as a service ?
30     private static SessionManagerProvider provider;
31
32     private SessionManager sessionManager;
33
34     public static SessionManagerProvider getInstance() {
35         if (provider == null)
36             provider = new SessionManagerProvider();
37         return provider;
38     }
39
40 //    public SessionManager getSessionManager() throws IOException {
41 //        if (sessionManager == null) {
42 //            sessionManager = SessionManagerSource.getSessionManager(loadProperties());
43 //        }
44 //        return sessionManager;
45 //    }
46
47     private Properties loadProperties() {
48         Bundle procore = Platform.getBundle("org.simantics.db.procore");
49         URL url = procore.getResource("log4j.properties");
50         if (url != null) {
51             InputStream in = null;
52             try {
53                 in = url.openStream();
54                 Properties props = new Properties();
55                 props.load(in);
56                 return props;
57             } catch (Exception e) {
58             } finally {
59                 FileUtils.uncheckedClose(in);
60             }
61         }
62         return null;
63     }
64
65 }