FSRecoveryTracceImpl.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.monitor.engine.fs_recovery;
import java.io.File;
import java.sql.Connection;
import org.slf4j.Logger;
import org.openspcoop2.core.tracciamento.Traccia;
import org.openspcoop2.core.tracciamento.utils.serializer.JaxbDeserializer;
import org.openspcoop2.protocol.sdk.tracciamento.ITracciaProducer;
import org.openspcoop2.utils.UtilsException;
import org.openspcoop2.utils.UtilsMultiException;
/**
* FSRecoveryTracceImpl
*
* @author Poli Andrea (apoli@link.it)
* @author $Author$
* @version $Rev$, $Date$
*/
public class FSRecoveryTracceImpl extends AbstractFSRecovery {
private ITracciaProducer tracciamentoAppender;
public FSRecoveryTracceImpl(
Logger log,
boolean debug,
ITracciaProducer tracciamentoAppender,
File directory, File directoryDLQ,
int tentativi,
long msAttesaProcessingFile) {
super(log, debug, directory, directoryDLQ, tentativi, msAttesaProcessingFile);
this.tracciamentoAppender = tracciamentoAppender;
}
@Override
public void process(Connection connection) {
this.log.info("Recovery Tracce ...");
super.process(connection);
this.log.info("Recovery Tracce completato");
}
@Override
public void insertObject(File file, Connection connection) throws UtilsException, UtilsMultiException {
JaxbDeserializer deserializer = new JaxbDeserializer();
Traccia traccia = null;
try {
traccia = deserializer.readTraccia(file);
}catch(Exception e) {
throw new UtilsException(e.getMessage(),e);
}
org.openspcoop2.protocol.sdk.tracciamento.Traccia tracciaOp2 = new org.openspcoop2.protocol.sdk.tracciamento.Traccia(traccia);
try {
this.tracciamentoAppender.log(connection, tracciaOp2);
}catch(Exception e) {
throw new UtilsException(e.getMessage(),e);
}
}
}