/** * '$RCSfile$' * Purpose: A Class that implements database utility methods * Copyright: 2008 Regents of the University of California and the * National Center for Ecological Analysis and Synthesis * Authors: Michael Daigle * * '$Author: daigle $' * '$Date: 2008-08-22 16:23:38 -0700 (Fri, 22 Aug 2008) $' * '$Revision: 4297 $' * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package edu.ucsb.nceas.metacat.database; import org.apache.log4j.Logger; import edu.ucsb.nceas.dbadapter.AbstractDatabase; import edu.ucsb.nceas.metacat.properties.PropertyService; import edu.ucsb.nceas.metacat.shared.BaseService; import edu.ucsb.nceas.metacat.shared.ServiceException; public class DatabaseService extends BaseService { private static DatabaseService databaseService = null; private static AbstractDatabase dbAdapter; private static Logger logMetacat = Logger.getLogger(DatabaseService.class); /** * private constructor since this is a singleton */ private DatabaseService() { // Determine our db adapter class and create an instance of that class try { dbAdapter = (AbstractDatabase) createObject(PropertyService.getProperty("database.adapter")); } catch (Exception e) { logMetacat.error("Could not create dbAdaptor" + e.getMessage()); e.printStackTrace(); } } /** * Get the single instance of DatabaseService. * * @return the single instance of DatabaseService */ public static DatabaseService getInstance() { if (databaseService == null) { databaseService = new DatabaseService(); } return databaseService; } public boolean refreshable() { return false; } public void doRefresh() throws ServiceException { return; } public void stop() throws ServiceException { return; } /** * Instantiate a class using the name of the class at runtime * * @param className the fully qualified name of the class to instantiate */ public static Object createObject(String className) throws Exception { Object object = null; try { Class classDefinition = Class.forName(className); object = classDefinition.newInstance(); } catch (InstantiationException e) { throw e; } catch (IllegalAccessException e) { throw e; } catch (ClassNotFoundException e) { throw e; } return object; } /** * gets the database adapter * * @return AbstractDatabase object for this application's database adapter. */ public AbstractDatabase getDBAdapter() { return dbAdapter; } }