⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sequencekeygenerator.java

📁 JDBF是一个实现o/r mapping 的软件
💻 JAVA
字号:
/*
 * 03/02/2003 - 21:21:03
 *
 * $RCSfile: SequenceKeyGenerator.java,v $ - JDBF Object Relational mapping system
 * Copyright (C) 2002 JDBF Development Team
 * 
 * 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: SequenceKeyGenerator.java,v 1.5 2004/05/20 22:40:02 gmartone Exp $

*/
package org.jdbf.engine.keygen;
    
import java.sql.*;
import java.util.logging.Logger;
import java.util.logging.Level;

import org.jdbf.castor.Messages;


import org.jdbf.engine.repository.RepositoryView;
import org.jdbf.engine.mapping.MappingException;
import org.jdbf.engine.mapping.SequenceMap;
import org.jdbf.engine.sql.SqlInterface;

/**
 * 
 * <code>SequenceKeyGenerator</code> handles the generation of key
 *  by sequence.<br> The sequence statement is created by specific
 * SqlInterface object.
 * 
 * 
 * The idea for this, the class name, and much of the code  are from 
 * <a href="on@ibis.odessa.ua">Oleg Nitz's </a> work for castor.
 *
 * @author Oleg Nitz's
 * @version $Id: SequenceKeyGenerator.java,v 1.5 2004/05/20 22:40:02 gmartone Exp $ $Date: 2004/05/20 22:40:02 $
 * last changed by $Author: gmartone $
 * 
 */
public class SequenceKeyGenerator implements KeyGenerator{
    
    /**
     * Class name
     */
    private static final String CLASS_NAME = "org.jdbf.engine.keygen.SequenceKeyGenerator";

    /**
     * Logger object
     */
    private Logger logger = Logger.getLogger(CLASS_NAME);
    
    /**
     * Generation of key is before insert.
     */
    public boolean isBeforeInsert(){
		return true;
    }

    
    /**
     * Obtains a key from a sequence table.
     *
     * @param view RepositoryView object
     * @param conn Connection the databas
     * @param vendor name of database vendor may be null
     * @return the key
     * @exception MappingException if an error occurs
     * 
     */
    public Object generateKey(RepositoryView view,
    						  Connection conn,String vendor,
					          SqlInterface sqlInterface)
		throws KeyGenerationException{
	
		Object identity = null;
        ResultSet rs = null;;
		Statement stmt = null;

		logger.log(Level.INFO,Messages.message("SequenceKeyGen.generateKey"));
		// Create SQL sentence of the form
		// "SELECT nextval(sequenceName)"
		try {
	    
	    	SequenceMap sequenceMap = (SequenceMap)view.getBeanDescriptor().getGeneratorMap();
	    	stmt = conn.createStatement();
	    	rs = stmt.executeQuery(
	    			sqlInterface.getSelectSequenceStatement(
	    					sequenceMap.getSequenceName()));
	    	if (rs.next()) {
	        	identity = rs.getObject(1);				
	    	}
	    	else
                logger.throwing(CLASS_NAME,"generateKey()",
			    new KeyGenerationException(Messages.message("mapping.keyGenFailed")
		           ));
                throw new KeyGenerationException(Messages.message("mapping.keyGenFailed"));
		}
		catch (SQLException excep) {
	    	logger.throwing(CLASS_NAME,"generateKey()",
    				new KeyGenerationException(excep)
		           );
	    	throw new KeyGenerationException(excep);
		}
		catch (MappingException excep) {
	    	logger.throwing(CLASS_NAME,"generateKey()",
    				new KeyGenerationException(excep)
		           );
	    	throw new KeyGenerationException(excep);
		}
		finally {
	    	try {
	        	if (rs != null)
		    		rs.close();
				stmt.close();
	    	}
	    	catch (SQLException excep) {
	    		logger.throwing(CLASS_NAME,"generateKey()",
    				new KeyGenerationException(excep)
		           );
	    		throw new KeyGenerationException(excep);	
	    	}
	    	finally {
	        	rs = null;
				stmt = null;
	    	}
			logger.log(Level.INFO,Messages.format("SequenceKeyGen.generatedKey",identity));
			return identity;
		}
	
    }
}

/*
  $Log: SequenceKeyGenerator.java,v $
  Revision 1.5  2004/05/20 22:40:02  gmartone
  Changed for task 99073 (Coverage Javadocs)

  Revision 1.4  2004/04/29 22:38:18  gmartone

  Task 66484 (Logging System)

  
*/

⌨️ 快捷键说明

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