]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.application/src/org/simantics/application/db/DatabaseUtils.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.application / src / org / simantics / application / db / DatabaseUtils.java
diff --git a/bundles/org.simantics.application/src/org/simantics/application/db/DatabaseUtils.java b/bundles/org.simantics.application/src/org/simantics/application/db/DatabaseUtils.java
new file mode 100644 (file)
index 0000000..b65ff0c
--- /dev/null
@@ -0,0 +1,49 @@
+/*******************************************************************************\r
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
+ * in Industry THTH ry.\r
+ * All rights reserved. This program and the accompanying materials\r
+ * are made available under the terms of the Eclipse Public License v1.0\r
+ * which accompanies this distribution, and is available at\r
+ * http://www.eclipse.org/legal/epl-v10.html\r
+ *\r
+ * Contributors:\r
+ *     VTT Technical Research Centre of Finland - initial API and implementation\r
+ *******************************************************************************/\r
+package org.simantics.application.db;\r
+\r
+import java.util.Properties;\r
+\r
+import org.simantics.db.Driver;\r
+import org.simantics.db.Manager;\r
+import org.simantics.db.Session;\r
+import org.simantics.db.services.GlobalServiceInitializer;\r
+\r
+public final class DatabaseUtils {\r
+\r
+//    public static Session connect(String host, int port) throws Exception {\r
+//        return connect(new ServerAddress(host, port));\r
+//    }\r
+//\r
+//    public static Session connect(String host, int port, String dbid) throws Exception {\r
+//        return connect(new ServerAddress(host, port, dbid));\r
+//    }\r
+\r
+    public static Session connect(String addr) throws Exception {\r
+        // Try to load and register the Driver instance with the driver manager\r
+        Class.forName("org.simantics.db.procore.ProCoreDriver");\r
+        Driver driver = Manager.getDriver("procore");\r
+\r
+        // Connect to the server at the specified host and credentials.\r
+        // Note that we normally user authentication agent for user identification.\r
+        Properties props = new Properties();\r
+        props.setProperty("user", "Default User");\r
+        props.setProperty("password", "");\r
+\r
+        Session session = driver.getSession(addr, props);\r
+\r
+        new GlobalServiceInitializer().initialize(session);\r
+\r
+        return session;\r
+    }\r
+\r
+}\r