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

org.yamcs.simulation.simulator.EpsLvpduHandler Maven / Gradle / Ivy

package org.yamcs.simulation.simulator;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Vector;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class EpsLvpduHandler {

    private static final Logger log = LoggerFactory.getLogger(EpsLvpduHandler.class);

    private Vector entries = new Vector<>(100, 100);
    private int currentEntry = 0;

    public EpsLvpduHandler() {
        try (BufferedReader in = new BufferedReader(
                new InputStreamReader(EpsLvpduHandler.class.getResourceAsStream("/landing_data/ESPLVPDU.csv")))) {
            String line;
            in.readLine(); // skip column titles

            while ((line = in.readLine()) != null) {

                line = line.replace(',', '.'); // compatible to decimals with comma (e.g. 1,23)
                String[] parts = line.split(";");

                EpsLvpduData entry = new EpsLvpduData();

                entry.LVPDUStatus = new Integer(parts[0]).intValue();
                entry.LVPDUVoltage = new Float(parts[1]).floatValue();

                entries.add(entry);
            }
        } catch (IOException e) {
            log.warn(e.getMessage(), e);
        }
        log.info("have {} EPS LVPDU data records", entries.size());
    }

    public void fillPacket(CCSDSPacket packet) {
        if (entries.isEmpty()) {
            return;
        }

        if (currentEntry >= entries.size()) {
            currentEntry = 0;
        }

        EpsLvpduData entry = entries.elementAt(currentEntry++);
        entry.fillPacket(packet, 0);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy