IDAccordoFactory.java
/*
* GovWay - A customizable API Gateway
* https://govway.org
*
* Copyright (c) 2005-2024 Link.it srl (https://link.it).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3, as published by
* the Free Software Foundation.
*
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package org.openspcoop2.core.registry.driver;
import org.openspcoop2.core.id.IDAccordo;
import org.openspcoop2.core.id.IDSoggetto;
import org.openspcoop2.core.registry.AccordoServizioParteComune;
import org.openspcoop2.core.registry.beans.AccordoServizioParteComuneSintetico;
/**
* IDAccordoFactory
*
*
* @author Poli Andrea (apoli@link.it)
* @author $Author$
* @version $Rev$, $Date$
*/
public class IDAccordoFactory {
private static final String ACCORDO_NON_FORNITO = "Accordo non fornito";
private static IDAccordoFactory factory = null;
private static synchronized void init(){
if(IDAccordoFactory.factory==null){
IDAccordoFactory.factory = new IDAccordoFactory();
}
}
public static IDAccordoFactory getInstance(){
if(IDAccordoFactory.factory==null){
// spotbugs warning 'SING_SINGLETON_GETTER_NOT_SYNCHRONIZED'
synchronized (IDAccordoFactory.class) {
IDAccordoFactory.init();
}
}
return IDAccordoFactory.factory;
}
private IDAccordoFactory() {}
@SuppressWarnings("deprecation")
private IDAccordo build(String nome,IDSoggetto soggettoReferente,Integer versione){
IDAccordo idAccordo = new IDAccordo();
idAccordo.setNome(nome);
idAccordo.setSoggettoReferente(soggettoReferente);
idAccordo.setVersione(versione);
return idAccordo;
}
public String normalizeUri(String uri) throws DriverRegistroServiziException{
// La uri può non contenere la versione, che invece nella 3.0 è obbligatoria.
// Facendo la doppia conversione, viene aggiunta la versione di default
IDAccordo idAccordo = this.getIDAccordoFromUri(uri);
return this.getUriFromIDAccordo(idAccordo);
}
public String getUriFromIDAccordo(IDAccordo idAccordo) throws DriverRegistroServiziException{
if(idAccordo==null){
throw new DriverRegistroServiziException("IDAccordo non fornito");
}
if(idAccordo.getNome()==null){
throw new DriverRegistroServiziException("Nome accordo non fornito");
}
IDSoggetto soggettoReferente = idAccordo.getSoggettoReferente();
if(soggettoReferente!=null){
if(soggettoReferente.getTipo()==null){
throw new DriverRegistroServiziException("Tipo soggetto referente non fornito?");
}
if(soggettoReferente.getNome()==null){
throw new DriverRegistroServiziException("Nome soggetto referente non fornito?");
}
}
if(soggettoReferente!=null){
return soggettoReferente.toString() + ":" + idAccordo.getNome() + ":" + idAccordo.getVersione();
}else{
return idAccordo.getNome() + ":" + idAccordo.getVersione();
}
}
public String getUriFromAccordo(AccordoServizioParteComune accordo) throws DriverRegistroServiziException{
if(accordo==null){
throw new DriverRegistroServiziException(ACCORDO_NON_FORNITO);
}
IDAccordo idAccordo = this.build(accordo.getNome(),BeanUtilities.getSoggettoReferenteID(accordo.getSoggettoReferente()),accordo.getVersione());
return this.getUriFromIDAccordo(idAccordo);
}
public String getUriFromAccordo(AccordoServizioParteComuneSintetico accordo) throws DriverRegistroServiziException{
if(accordo==null){
throw new DriverRegistroServiziException(ACCORDO_NON_FORNITO);
}
IDAccordo idAccordo = this.build(accordo.getNome(),BeanUtilities.getSoggettoReferenteID(accordo.getSoggettoReferente()),accordo.getVersione());
return this.getUriFromIDAccordo(idAccordo);
}
public String getUriFromValues(String nomeAS,String tipoSoggettoReferente,String nomeSoggettoReferente,Integer ver) throws DriverRegistroServiziException{
if(nomeAS==null){
throw new DriverRegistroServiziException(ACCORDO_NON_FORNITO);
}
IDSoggetto soggettoReferente = null;
if(tipoSoggettoReferente!=null && nomeSoggettoReferente!=null)
soggettoReferente = new IDSoggetto(tipoSoggettoReferente,nomeSoggettoReferente);
IDAccordo idAccordo = this.build(nomeAS,soggettoReferente,ver);
return this.getUriFromIDAccordo(idAccordo);
}
public String getUriFromValues(String nomeAS,IDSoggetto soggettoReferente,Integer ver) throws DriverRegistroServiziException{
if(nomeAS==null){
throw new DriverRegistroServiziException(ACCORDO_NON_FORNITO);
}
if(soggettoReferente==null){
return this.getUriFromValues(nomeAS,null,null,ver);
}else{
return this.getUriFromValues(nomeAS,soggettoReferente.getTipo(),soggettoReferente.getNome(),ver);
}
}
public IDAccordo getIDAccordoFromUri(String uriAccordo) throws DriverRegistroServiziException{
try{
// possibili casi:
// nomeAccordo
// nomeAccordo:versione
// tipoSoggettoReferente/nomeSoggettoReferente:nomeAccordo:versione
if(uriAccordo==null){
throw new DriverRegistroServiziException("Uri accordo non fornita");
}
int primoMarcatore = uriAccordo.indexOf(":");
int secondoMarcatore = -1;
if(primoMarcatore>=0){
secondoMarcatore = uriAccordo.indexOf(":",primoMarcatore+1);
}
int terzoMarcatore = -1;
if(secondoMarcatore>0){
terzoMarcatore = uriAccordo.indexOf(":",secondoMarcatore+1);
if(terzoMarcatore>0){
throw new DriverRegistroServiziException("sintassi non corretta, possibili usi: nomeAccordo nomeAccordo:versione tipoSoggettoReferente/nomeSoggettoReferente:nomeAccordo:versione");
}
}
if(primoMarcatore<0){
return this.build(uriAccordo,null,1);
}
String tmp1 = null;
String tmp2 = null;
String tmp3 = null;
if(primoMarcatore>=0 && secondoMarcatore>0){
tmp1 = uriAccordo.substring(0, primoMarcatore); //soggetto referente
tmp2 = uriAccordo.substring((primoMarcatore+1), secondoMarcatore); // nome accordo
tmp3 = uriAccordo.substring((secondoMarcatore+1),uriAccordo.length()); // versione
int versione = 1;
try{
versione = Integer.parseInt(tmp3);
}catch(Exception e){
throw new DriverRegistroServiziException("sintassi della versione non corretta: "+e.getMessage(),e);
}
int divisorioSoggettoReferente = tmp1.indexOf("/");
if(divisorioSoggettoReferente<=0){
throw new DriverRegistroServiziException("sintassi del soggetto referente non corretta, l'uri deve essere definita con la seguente forma: tipoSoggettoReferente/nomeSoggettoReferente:nomeAccordo:versione");
}
String tipoSoggettoReferente = tmp1.substring(0,divisorioSoggettoReferente);
String nomeSoggettoReferente = tmp1.substring((divisorioSoggettoReferente+1),tmp1.length());
return this.build(tmp2,new IDSoggetto(tipoSoggettoReferente,nomeSoggettoReferente),versione);
}else {
tmp1 = uriAccordo.substring(0, primoMarcatore);
tmp2 = uriAccordo.substring((primoMarcatore+1),uriAccordo.length());
int divisorioSoggettoReferente = tmp1.indexOf("/");
if(divisorioSoggettoReferente<0){
// nomeAccordo:versione
int versione = 1;
try{
versione = Integer.parseInt(tmp2);
}catch(Exception e){
throw new DriverRegistroServiziException("sintassi della versione non corretta: "+e.getMessage(),e);
}
return this.build(tmp1,null,versione);
}else if(divisorioSoggettoReferente==0){
throw new DriverRegistroServiziException("sintassi non corretta, possibili usi: nomeAccordo tipoSoggettoReferente/nomeSoggettoReferente:nomeAccordo nomeAccordo:versione tipoSoggettoReferente/nomeSoggettoReferente:nomeAccordo:versione");
}else{
// tipoSoggettoReferente/nomeSoggettoReferente:nomeAccordo
String tipoSoggettoReferente = tmp1.substring(0,divisorioSoggettoReferente);
String nomeSoggettoReferente = tmp1.substring((divisorioSoggettoReferente+1),tmp1.length());
return this.build(tmp2,new IDSoggetto(tipoSoggettoReferente,nomeSoggettoReferente),1);
}
}
}catch(Exception e){
throw new DriverRegistroServiziException("Parsing uriAccordo["+uriAccordo+"] non riusciuto: "+e.getMessage());
}
}
public IDAccordo getIDAccordoFromAccordo(AccordoServizioParteComune accordo) throws DriverRegistroServiziException{
if(accordo==null){
throw new DriverRegistroServiziException(ACCORDO_NON_FORNITO);
}
return this.build(accordo.getNome(),BeanUtilities.getSoggettoReferenteID(accordo.getSoggettoReferente()),accordo.getVersione());
}
public IDAccordo getIDAccordoFromAccordo(AccordoServizioParteComuneSintetico accordo) throws DriverRegistroServiziException{
if(accordo==null){
throw new DriverRegistroServiziException(ACCORDO_NON_FORNITO);
}
return this.build(accordo.getNome(),BeanUtilities.getSoggettoReferenteID(accordo.getSoggettoReferente()),accordo.getVersione());
}
public IDAccordo getIDAccordoFromValues(String nomeAS,String tipoSoggettoReferente,String nomeSoggettoReferente,Integer ver) throws DriverRegistroServiziException{
if(nomeAS==null){
throw new DriverRegistroServiziException(ACCORDO_NON_FORNITO);
}
IDSoggetto soggettoReferente = null;
if(tipoSoggettoReferente!=null && nomeSoggettoReferente!=null)
soggettoReferente = new IDSoggetto(tipoSoggettoReferente,nomeSoggettoReferente);
return this.build(nomeAS,soggettoReferente,ver);
}
public IDAccordo getIDAccordoFromValuesWithoutCheck(String nomeAS,String tipoSoggettoReferente,String nomeSoggettoReferente,Integer ver) {
IDSoggetto soggettoReferente = new IDSoggetto(tipoSoggettoReferente,nomeSoggettoReferente);
return this.build(nomeAS,soggettoReferente,ver);
}
public IDAccordo getIDAccordoFromValues(String nomeAS,IDSoggetto soggettoReferente,Integer ver) throws DriverRegistroServiziException{
if(soggettoReferente==null){
return this.getIDAccordoFromValues(nomeAS,null,null,ver);
}else{
return this.getIDAccordoFromValues(nomeAS,soggettoReferente.getTipo(),soggettoReferente.getNome(),ver);
}
}
}