layermanager.java

来自「JDBF是一个实现o/r mapping 的软件」· Java 代码 · 共 153 行

JAVA
153
字号
/*
 * 09/28/2002 - 12:15:57
 * $RCSfile: LayerManager.java,v $ - JDBF Object Relational mapping system
 * 
 * http://jdbf.sourceforge.net
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

/*

  $Id: LayerManager.java,v 1.13 2004/06/28 22:27:34 gmartone Exp $

 */

package org.jdbf.engine;

import java.io.FileInputStream;
import java.util.logging.*;
import java.util.Collection;


/*
 project's packages and classes
*/
import org.jdbf.engine.database.*;
import org.jdbf.engine.repository.RepositoryFactory;
import org.jdbf.engine.xml.XPathManager;
import org.jdbf.engine.caching.CacheManager;


/**
 * <code>LayerManager</code> is the entry point of layer.<br>
 * 
 * This class load all information from repository, 
 * creates all database connection that are logically 
 * stored in Database object and finally initializes logger
 * system.
 *
 * @author Giovanni Martone,Lucasz Lechert
 * @version $Id: LayerManager.java,v 1.13 2004/06/28 22:27:34 gmartone Exp $
 * last changed by $Author: gmartone $
 */
public class LayerManager {

    /** Current instance */
    private static LayerManager instance;

    /** RepositoryFactory object */
    private RepositoryFactory repFactory;

	/** LogManager object */
	private LogManager logManager;

	/** Logger object */
	private Logger logger;
	
	/** CacheManager object */
	private CacheManager cacheManager;


    /**
     * Creates a LayerManager object.
	 * It loads all repositoryView that are configured in repository
	 * and it initializes logger system.
     *
     * @param  fileName
     * @throws Exception
     *
     */
    protected LayerManager(String fileName,String fNameConf)throws Exception {		
		
		logManager = LogManager.getLogManager();
		logManager.readConfiguration(new FileInputStream(fNameConf));
		XPathManager xPath = new XPathManager(fileName);
		repFactory = xPath.getRepositoryFactory();
		cacheManager = CacheManager.getInstance();
		Collection coll = repFactory.getRepositories().values();
		cacheManager.loadCache(coll);
    }


    /**
     * Retrieves a new instance of database
     *
     * @param  fileNameConf
     * @return Database
     * @throws Exception
     *
     */
    public Database getDatabase(String fileNameConf)throws Exception{

        DatabaseImpl db = new DatabaseImpl(fileNameConf,repFactory,
                                           cacheManager);
	    return db;
    }

    /**
     * Retrieves current instance of this object.
     *
     * @param  fileName
     * @return current instance of LayerManager
     * @throws Expcetion
     *
     */
    public static synchronized LayerManager getInstance(String fileName,String fileNameConf) throws Exception{

       if(instance == null) {

          instance = new LayerManager(fileName,fileNameConf);
       }
       return instance;
    }
 }

/*
  $Log: LayerManager.java,v $
  Revision 1.13  2004/06/28 22:27:34  gmartone
  changes for  task 80429 (Enanchement DCS)

  Revision 1.12  2004/05/20 22:35:44  gmartone
  Changed for task 99073 (Coverage Javadocs)

  Revision 1.11  2004/01/21 17:51:35  gmartone


  Added creation for Logging System

  Revision 1.10  2003/10/29 21:26:15  lechertl
  imprt org.jdbf.engine.xml.* modified

  Revision 1.9  2003/10/29 21:17:19  lechertl
  cvs $Date keyword deleted

  Revision 1.8  2003/10/29 21:16:05  lechertl
  cvs Id keyword modified

  Revision 1.7  2003/10/29 21:08:06  lechertl
  cvs keyword modified

*/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?