/********************************************************************************** * $URL: https://source.sakaiproject.org/svn/kernel/trunk/kernel-impl/src/main/java/org/sakaiproject/user/impl/DbPreferencesService.java $ * $Id: DbPreferencesService.java 105669 2012-03-12 11:56:47Z matthew.buckett@oucs.ox.ac.uk $ *********************************************************************************** * * Copyright (c) 2003, 2004, 2005, 2006, 2008 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.opensource.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.user.impl; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.sakaiproject.db.api.SqlService; import org.sakaiproject.user.api.Preferences; import org.sakaiproject.user.api.PreferencesEdit; import org.sakaiproject.util.BaseDbSingleStorage; import org.sakaiproject.util.SingleStorageUser; /** * <p> * DbPreferencesService is an extension of the BasePreferencesService with database storage. * </p> */ public abstract class DbPreferencesService extends BasePreferencesService { /** Our log (commons). */ private static Log M_log = LogFactory.getLog(DbPreferencesService.class); /** Table name for realms. */ protected String m_tableName = "SAKAI_PREFERENCES"; /** If true, we do our locks in the remote database, otherwise we do them here. */ protected boolean m_locksInDb = true; /********************************************************************************************************************************************************************************************************************************************************** * Dependencies *********************************************************************************************************************************************************************************************************************************************************/ /** * @return the MemoryService collaborator. */ protected abstract SqlService sqlService(); /********************************************************************************************************************************************************************************************************************************************************** * Configuration *********************************************************************************************************************************************************************************************************************************************************/ /** * Configuration: set the table name * * @param path * The table name. */ public void setTableName(String name) { m_tableName = name; } /** * Configuration: set the locks-in-db * * @param value * The locks-in-db value. */ public void setLocksInDb(String value) { m_locksInDb = Boolean.valueOf(value).booleanValue(); } /** Configuration: to run the ddl on init or not. */ protected boolean m_autoDdl = false; /** * Configuration: to run the ddl on init or not. * * @param value * the auto ddl value. */ public void setAutoDdl(String value) { m_autoDdl = Boolean.valueOf(value).booleanValue(); } /********************************************************************************************************************************************************************************************************************************************************** * Init and Destroy *********************************************************************************************************************************************************************************************************************************************************/ /** * Final initialization, once all dependencies are set. */ public void init() { try { // if we are auto-creating our schema, check and create if (m_autoDdl) { sqlService().ddl(this.getClass().getClassLoader(), "sakai_preferences"); } super.init(); M_log.info("init(): table: " + m_tableName + " locks-in-db: " + m_locksInDb); } catch (Exception t) { M_log.warn("init(): ", t); } } /********************************************************************************************************************************************************************************************************************************************************** * BasePreferencesService extensions *********************************************************************************************************************************************************************************************************************************************************/ /** * Construct a Storage object. * * @return The new storage object. */ protected Storage newStorage() { return new DbStorage(this); } /********************************************************************************************************************************************************************************************************************************************************** * Storage implementation *********************************************************************************************************************************************************************************************************************************************************/ /** * Covers for the BaseXmlFileStorage, providing Preferences and PreferencesEdit parameters */ protected class DbStorage extends BaseDbSingleStorage implements Storage { /** * Construct. * * @param realm * The StorageUser class to call back for creation of Resource and Edit objects. */ public DbStorage(SingleStorageUser user) { super(m_tableName, "PREFERENCES_ID", null, m_locksInDb, "preferences", user, sqlService()); } public boolean check(String id) { return super.checkResource(id); } public Preferences get(String id) { return (Preferences) super.getResource(id); } public PreferencesEdit put(String id) { return (PreferencesEdit) super.putResource(id, null); } public PreferencesEdit edit(String id) { return (PreferencesEdit) super.editResource(id); } public void commit(PreferencesEdit edit) { super.commitResource(edit); } public void cancel(PreferencesEdit edit) { super.cancelResource(edit); } public void remove(PreferencesEdit edit) { super.removeResource(edit); } } }