/********************************************************************************** * $URL: https://source.sakaiproject.org/svn/sam/trunk/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/shared/SakaiBootStrap.java $ * $Id: SakaiBootStrap.java 9273 2006-05-10 22:34:28Z daisyf@stanford.edu $ *********************************************************************************** * * Copyright (c) 2004, 2005, 2006, 2007, 2008 The Sakai Foundation * * Licensed under the Educational Community License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.osedu.org/licenses/ECL-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * **********************************************************************************/ package org.sakaiproject.tool.assessment.shared; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.sakaiproject.component.cover.ServerConfigurationService; import org.sakaiproject.db.api.SqlService; /** * This class will be used to initialize the state of the application. * * @author <a href="mailto:lance@indiana.edu">Lance Speelmon</a> * @version $Id: SakaiBootStrap.java 9273 2006-05-10 22:34:28Z daisyf@stanford.edu $ */ public class SakaiBootStrap { private static final String SAKAI_SAMIGO_DDL_NAME = "sakai_samigo"; private static final String SQL_UPDATE_SCRIPT_NAME = "sakai_samigo_post_schema_update"; private static final String SAKAI_AUTO_DDL_PROPERTY = "auto.ddl"; private static final Log LOG = LogFactory.getLog(SakaiBootStrap.class); /** Dependency: SqlService. */ private SqlService sqlService; /** Configuration: to run the ddl on init or not. */ private boolean autoDdl = false; public SakaiBootStrap() { LOG.debug("new SakaiBootStrap()"); ; // no behavior } public void init() { //LOG.debug("**** init() SakaiBootStrap for samigo"); autoDdl = ServerConfigurationService.getBoolean(SAKAI_AUTO_DDL_PROPERTY, autoDdl); sqlService = org.sakaiproject.db.cover.SqlService .getInstance(); if (sqlService == null) { LOG.error("SakaiBootStrap.init(): SqlService cannot be found!"); throw new IllegalStateException("SqlService cannot be found!"); } if (autoDdl) { LOG.info("SakaiBootStrap.init(): autoDdl enabled; running DDL..."); sqlService.ddl(this.getClass().getClassLoader(), SQL_UPDATE_SCRIPT_NAME); sqlService.ddl(this.getClass().getClassLoader(), SAKAI_SAMIGO_DDL_NAME); } else { LOG.debug("****autoDdl disabled."); } //LOG.debug("***** init() completed successfully"); } /** * Configuration: to run the ddl on init or not. * * @param value * the auto ddl value. */ public void setAutoDdl(String value) { if (LOG.isDebugEnabled()) { LOG.debug("setAutoDdl(String " + value + ")"); } //autoDdl = new Boolean(value).booleanValue(); if (("true").equals(value)){ autoDdl = true; } } }