]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.project/src/org/simantics/project/management/ServerManagerFactory.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / bundles / org.simantics.project / src / org / simantics / project / management / ServerManagerFactory.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 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.project.management;
13
14 import java.io.IOException;
15
16 import org.simantics.db.DatabaseUserAgent;
17 import org.simantics.db.Driver;
18 import org.simantics.db.Manager;
19 import org.simantics.db.exception.DatabaseException;
20 import org.slf4j.Logger;
21 import org.slf4j.LoggerFactory;
22
23 public class ServerManagerFactory {
24     private static final Logger LOGGER = LoggerFactory.getLogger(ServerManagerFactory.class);
25
26     public static ServerManager create(String databaseDriverId, String address) throws IOException, DatabaseException {
27         Driver driver = Manager.getDriver(databaseDriverId);
28         if (driver == null)
29             throw new IllegalArgumentException("Database driver with ID " + databaseDriverId + " could not be found!");
30         LOGGER.info("ServerManagerFactory.create called with id {}, driver is {}.", databaseDriverId, driver);
31         DatabaseUserAgent agent = Manager.getUserAgent(databaseDriverId);
32         if (agent != null)
33             driver.setDatabaseUserAgent(address, agent);
34         return new ServerManager(driver);
35     }
36
37 }