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

com.jtstand.query.ToDatabase Maven / Gradle / Ivy

/*
 * Copyright (c) 2009 Albert Kurucz. 
 *
 * This file, ToDatabase.java is part of JTStand.
 *
 * JTStand 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 3 of the License, or
 * (at your option) any later version.
 *
 * JTStand 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 GTStand.  If not, see .
 */
package com.jtstand.query;

import com.jtstand.TestSequenceInstance;
import com.jtstand.TestStation;

import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import java.io.File;
import java.util.HashSet;
import java.util.Set;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.script.ScriptException;

/**
 *
 * @author albert_kurucz
 */
public class ToDatabase extends Thread {

    private static final Logger LOGGER = Logger.getLogger(ToDatabase.class.getCanonicalName());
    private File saveDirectory;
    private File savedDirectory;
    private File savedErrorDirectory;
    private boolean aborted = false;
    private FrameInterface model;
    private Set ignoredFiles = new HashSet();
    private TestStation testStation;
    private transient int num = 0;

    public ToDatabase(TestStation testStation, FrameInterface model) throws ScriptException {
        super();
        this.testStation = testStation;
        saveDirectory = testStation.getSaveDirectory();
        savedDirectory = testStation.getSavedDirectory();
        savedErrorDirectory = testStation.getSavedErrorDirectory();
        this.model = model;
        if (saveDirectory == null) {
            System.out.println("Save directory is not defined");
            return;
        }
        if (savedDirectory == null) {
            System.out.println("Saved directory is not defined");
            return;
        }
        if (savedErrorDirectory == null) {
            System.out.println("Saved error directory is not defined");
            return;
        }
        setDaemon(true);
        setPriority(MIN_PRIORITY);
        start();
    }

    public void abort() throws InterruptedException {
        aborted = true;
        this.join();
    }

    public void saveSequenceFileToDatabase(File file) {
        EntityManagerFactory emf;
        EntityManager em = null;
        if (ignoredFiles.contains(file)) {
            return;
        }
        try {
            TestSequenceInstance seq = null;
            if (!file.canWrite()) {
                LOGGER.log(Level.SEVERE, "Output file cannot be written : " + file.getName());
            } else {
                if (file.getName().endsWith(".xml")) {
                    System.out.println("Processing file: " + file.getPath() + " ...");
                    seq = TestSequenceInstance.unmarshal(file);
                }
            }
            if (seq != null) {
                long startTime = System.currentTimeMillis();
                emf = seq.getTestStation().getEntityManagerFactory();
                if (emf == null) {
                    System.out.println("Entity Manager Factory cannot be obtained");
                } else {
                    em = emf.createEntityManager();
                    if (em == null) {
                        System.out.println("Entity Manager cannot be obtained");
                    } else {
//                        seq.connect(em);
                        if (seq.merge(em)) {
                            if (model != null) {
//                                System.out.println("Replace...");
                                model.replace(seq.getCreateTime(), seq.getHostName());
                            }
                            if (file.renameTo(new File(savedDirectory.getPath() + File.separator + file.getName()))) {
//                                System.out.println("Output file successfully moved to: " + file.getName());
                                num++;
                                System.out.println("Processing file: " + file.getPath() + " successfuly completed in " + Long.toString(System.currentTimeMillis() - startTime) + "ms");
//                                System.out.println("Free Memory after processing " + Integer.toString(num) + " times: " + Runtime.getRuntime().freeMemory());
                            } else {
                                System.out.println("Output file cannot be moved: " + file.getName());
                                ignoredFiles.add(file);
                            }
                        } else {
                            LOGGER.log(Level.SEVERE, "Output file cannot be persisted: " + file.getName());
                        }
                    }
                }
            }
        } catch (Throwable ex) {
            Logger.getLogger(ToDatabase.class.getName()).log(Level.SEVERE, null, ex);
            ex.printStackTrace();
            if (file.renameTo(new File(savedErrorDirectory.getPath() + File.separator + file.getName()))) {
//                System.out.println("Output file successfully moved to: " + file.getName());
            } else {
                System.out.println("Output file cannot be moved: " + file.getName());
                ignoredFiles.add(file);
            }
        } finally {
            if (em != null) {
                em.close();
            }
        }
    }

    @Override
    public void run() {
        System.out.println("Processing output directory '" + saveDirectory.toString() + "' started...");
        try {
            while (!aborted) {
                if (!saveDirectory.canRead()) {
                    throw new IllegalArgumentException("Output directory does not exist and cannot be read: " + saveDirectory);
                }
                File[] files = saveDirectory.listFiles();
                for (int i = 0; !aborted && i < files.length; i++) {
                    saveSequenceFileToDatabase(files[i]);
                }
                if (!aborted) {
                    sleep(2500);
                }
            }
        } catch (InterruptedException ex) {
            Logger.getLogger(ToDatabase.class.getName()).log(Level.SEVERE, null, ex);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy