com.dominion.salud.nomenclator.negocio.service.impl.farmatools.InteracServiceImpl.java Source code

Java tutorial

Introduction

Here is the source code for com.dominion.salud.nomenclator.negocio.service.impl.farmatools.InteracServiceImpl.java

Source

/*
 * Copyright (C) 2015 Dominion Global
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU 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 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 com.dominion.salud.nomenclator.negocio.service.impl.farmatools;

import com.dominion.salud.nomenclator.negocio.entities.aemps.AtcInteracciones;
import com.dominion.salud.nomenclator.negocio.entities.farmatools.Interac;
import com.dominion.salud.nomenclator.negocio.entities.farmatools.InteracPK;
import com.dominion.salud.nomenclator.negocio.entities.farmatools.Practivo;
import com.dominion.salud.nomenclator.negocio.repositories.farmatools.InteracRepository;
import com.dominion.salud.nomenclator.negocio.service.aemps.AtcInteraccionesService;
import com.dominion.salud.nomenclator.negocio.service.farmatools.InteracService;
import com.dominion.salud.nomenclator.negocio.service.farmatools.PractivoService;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
import javax.persistence.NoResultException;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

/**
 *
 * @author jcgonzalez
 */
@Service("interacService")
public class InteracServiceImpl extends AbstractFarmatoolsServiceImpl<Interac, Long> implements InteracService {

    private static final Logger logger = LoggerFactory.getLogger(InteracServiceImpl.class);

    @Autowired
    private InteracRepository interacRepository;
    @Autowired
    private AtcInteraccionesService atcInteraccionesService;
    @Autowired
    private PractivoService practivoService;

    @Override
    public Interac findOne(Interac interac) {
        return interacRepository.findOne(interac);
    }

    @Override
    public void autoload() {
        logger.info("INICIANDO la carga de INTERACCIONES automatizadas");

        Set<String> mensajes = new HashSet<>();
        List<AtcInteracciones> listaAtcInteracciones = atcInteraccionesService.findAll();

        if (listaAtcInteracciones != null && !listaAtcInteracciones.isEmpty()) {
            logger.debug("     Se han obtenido: " + listaAtcInteracciones.size() + " INTERACCIONES");
            Iterator<AtcInteracciones> iteradorAtcInteracciones = listaAtcInteracciones.iterator();
            int contador = 1;

            while (iteradorAtcInteracciones.hasNext()) {
                logger.debug("          Cargando INTERACCION (" + contador + " de " + listaAtcInteracciones.size()
                        + ")");
                AtcInteracciones atcInteracciones = iteradorAtcInteracciones.next();

                try {
                    Interac interac = new Interac();
                    InteracPK interacPK = new InteracPK();

                    Practivo practivo1 = new Practivo();
                    Practivo practivo2 = new Practivo();

                    try {
                        practivo1.setCodigo(atcInteracciones.getAtc().getCodAtc());
                        interacPK.setPrActivo1(practivoService.findByCodAtc(practivo1));

                        practivo2.setCodigo(atcInteracciones.getInteraccion().getCodAtc());
                        interacPK.setPrActivo2(practivoService.findByCodAtc(practivo2));

                        interac.setInteracPK(interacPK);
                        interac.setDesNaturaleza(atcInteracciones.getOrientacion());
                        interac.setDesInterac(atcInteracciones.getEfecto());
                        interac.setObservacion(StringUtils.substring(atcInteracciones.getDescripcion(), 0, 60));

                        try {
                            interac = interacRepository.findOne(interac);
                            logger.debug("               Ya existe la INTERACCION: " + interac.toString());
                        } catch (NoResultException nre) {
                            interacRepository.save(interac);
                        }
                    } catch (NoResultException nre) {
                        logger.warn("               No se ha encontrado ATC para el PRINCIPIO ACTIVO "
                                + practivo1.toString() + ": " + nre.toString());
                    }
                    logger.debug("               INTERACCION creada correctamente");

                    contador++;
                } catch (Exception e) {
                    logger.error("               No se ha podido generar la INTERACCION: " + e.toString());
                    mensajes.add("No se ha podido generar la INTERACCION: " + e.toString());
                }
            }
        }

        if (!mensajes.isEmpty()) {
            logger.warn("     Se han producido los siguientes errores en la carga de registros: ");
            Iterator<String> iteradorMensajes = mensajes.iterator();
            while (iteradorMensajes.hasNext()) {
                logger.warn("          - " + iteradorMensajes.next());
            }
        }

        logger.info("FINALIZANDO la carga de INTERACCIONES automatizadas");
    }
}