001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041: package org.netbeans.modules.sql.framework.ui.utils;
042:
043: import java.sql.Connection;
044: import java.util.Collections;
045: import java.util.HashMap;
046: import java.util.Iterator;
047: import java.util.Map;
048: import java.util.Properties;
049:
050: import org.axiondb.AxionException;
051: import org.axiondb.ExternalConnectionProvider;
052:
053: import com.sun.sql.framework.jdbc.DBConnectionFactory;
054:
055: /**
056: * @author gpatil
057: * @version Revision
058: */
059: public class AxionExternalConnectionProvider implements
060: ExternalConnectionProvider {
061: public static final String PROP_DBTYPE = "DBNAME";
062:
063: private static Map AXION_TO_ETL_PROPERTY_MAP;
064: static {
065: Map tmpMap = new HashMap();
066: tmpMap.put(ExternalConnectionProvider.PROP_JDBCURL,
067: DBConnectionFactory.PROP_URL);
068: tmpMap.put(ExternalConnectionProvider.PROP_USERNAME,
069: DBConnectionFactory.PROP_USERNAME);
070: tmpMap.put(ExternalConnectionProvider.PROP_PASSWORD,
071: DBConnectionFactory.PROP_PASSWORD);
072: tmpMap.put(ExternalConnectionProvider.PROP_DRIVERCLASS,
073: DBConnectionFactory.PROP_DRIVERCLASS);
074: tmpMap.put(DBConnectionFactory.PROP_OTD_PATH.toUpperCase(),
075: DBConnectionFactory.PROP_OTD_PATH);
076: tmpMap.put(PROP_DBTYPE, DBConnectionFactory.PROP_DBTYPE);
077:
078: AXION_TO_ETL_PROPERTY_MAP = Collections.unmodifiableMap(tmpMap);
079: }
080:
081: /**
082: * Keep the Constructor public, as Axion will try to instantiate, no-arg constructor.
083: */
084: public AxionExternalConnectionProvider() {
085: super ();
086: }
087:
088: private Properties convertAxionProperties(Properties spec) {
089: Properties prop = new Properties();
090: if (AXION_TO_ETL_PROPERTY_MAP != null) {
091: Iterator itr = AXION_TO_ETL_PROPERTY_MAP.keySet()
092: .iterator();
093: String axionKey = null;
094: String eTLKey = null;
095: String val = null;
096: while (itr.hasNext()) {
097: axionKey = (String) itr.next();
098: val = spec.getProperty(axionKey);
099: if (val != null) {
100: eTLKey = (String) AXION_TO_ETL_PROPERTY_MAP
101: .get(axionKey);
102: prop.setProperty(eTLKey, val);
103: }
104: }
105: }
106:
107: return prop;
108: }
109:
110: /*
111: * (non-Javadoc)
112: *
113: * @see org.axiondb.ExternalConnectionProvider#getConnection(java.util.Properties)
114: */
115: public Connection getConnection(Properties spec)
116: throws AxionException {
117: Properties prop = convertAxionProperties(spec);
118: DBConnectionFactory dbcf = DBConnectionFactory.getInstance();
119: try {
120: return dbcf.getConnection(prop);
121: } catch (Exception ex) {
122: throw new AxionException(ex.getMessage());
123: }
124: }
125: }
|