All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.cnr.contab.logregistry00.actions.SelezionatoreLogRegistryAction Maven / Gradle / Ivy

/*
 * Copyright (C) 2019  Consiglio Nazionale delle Ricerche
 *
 *     This program is free software: you can redistribute it and/or modify
 *     it under the terms of the GNU Affero General Public License as
 *     published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
 *
 *     You should have received a copy of the GNU Affero General Public License
 *     along with this program.  If not, see .
 */

package it.cnr.contab.logregistry00.actions;

import it.cnr.contab.logregistry00.core.bulk.Log_registryBulk;
import it.cnr.contab.logregistry00.core.bulk.OggettoLogBulk;
import it.cnr.contab.logregistry00.core.bulk.ILogRegistryBulk;

import it.cnr.contab.logregistry00.bp.SelezionatoreLogRegistryBP;
import it.cnr.jada.action.ActionContext;
import it.cnr.jada.action.BusinessProcessException;
import it.cnr.jada.action.Forward;
import it.cnr.jada.util.action.RicercaLiberaBP;
import it.cnr.jada.util.action.Selection;



public class SelezionatoreLogRegistryAction extends it.cnr.jada.util.action.SelezionatoreListaAction {
/**
 * SelezionatoreLogRegistryAction constructor comment.
 */
public SelezionatoreLogRegistryAction() {
	super();
}
public Forward basicDoBringBack(ActionContext context) throws BusinessProcessException {

	SelezionatoreLogRegistryBP bp = (SelezionatoreLogRegistryBP)context.getBusinessProcess();
	Log_registryBulk logReg = (Log_registryBulk)bp.getFocusedElement(context);

	try {
		ILogRegistryBulk prototype = getPrototypeFromTableName(logReg.getNome_table_log());
		return openLogFreeSearch(context, prototype);
	} catch (ClassCastException e) {
		return handleException(context, new it.cnr.jada.comp.ApplicationException(e.getMessage()));
	} catch (Throwable t) {
		return handleException(context, t);
	}
}
private ILogRegistryBulk getPrototypeFromTableName(String tableLog) 
	throws 
		ClassNotFoundException, 
		ClassCastException,
		InstantiationException,
		IllegalAccessException {

	if (tableLog != null) {
		StringBuffer sb = new StringBuffer(tableLog.length());
		sb.append(Character.toUpperCase(tableLog.charAt(0)));
		sb.append(tableLog.substring(1).toLowerCase());
		String bulkName = sb.toString();
		sb = new StringBuffer();
		sb.append(ILogRegistryBulk.PKG_NAME);
		sb.append('.');
		sb.append(bulkName);
		sb.append(ILogRegistryBulk.SUFFIX);

		Class prototypeClass = getClass().getClassLoader().loadClass(sb.toString());
		if (!ILogRegistryBulk.class.isAssignableFrom(prototypeClass))
			throw new ClassCastException("La classe per \"" + tableLog + "\" non è di tipo LogRegistry! Operazione interrotta.");
		return (ILogRegistryBulk)prototypeClass.newInstance();
	}
	return null;
}
private Forward openLogFreeSearch(ActionContext context, ILogRegistryBulk logBulk) {

	try {
		SelezionatoreLogRegistryBP bp = (SelezionatoreLogRegistryBP)context.getBusinessProcess();
		
		RicercaLiberaBP ricercaLiberaBP = (RicercaLiberaBP)context.createBusinessProcess("RicercaLibera");
		ricercaLiberaBP.setSearchProvider(bp);
		ricercaLiberaBP.setFreeSearchSet(null);
		ricercaLiberaBP.setPrototype((OggettoLogBulk)logBulk);
		ricercaLiberaBP.setColumnSet(null);
		ricercaLiberaBP.setCanPerformSearchWithoutClauses(true);
		
		return context.addBusinessProcess(ricercaLiberaBP);
	} catch(Throwable e) {
		return handleException(context,e);
	}
}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy