
net.fchauvel.trio.analytics.threats.ThreatRanking Maven / Gradle / Ivy
The newest version!
/**
* This file is part of TRIO.
*
* TRIO 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.
*
* TRIO 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 TRIO. If not, see .
*/
/**
* This file is part of TRIO :: Core.
*
* TRIO :: Core 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.
*
* TRIO :: Core 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 TRIO :: Core. If not, see .
*/
/**
* This file is part of TRIO.
*
* TRIO 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.
*
* TRIO 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 TRIO. If not, see .
*/
/**
* ====
* This file is part of TRIO :: Core.
*
* TRIO :: Core 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.
*
* TRIO :: Core 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 TRIO :: Core. If not, see .
* ====
*
* ====
* This file is part of TRIO.
*
* TRIO 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.
*
* TRIO 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 TRIO. If not, see .
* ====
*
*
* This file is part of TRIO.
*
* TRIO 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.
*
* TRIO 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 TRIO. If not, see .
*/
/**
* This file is part of TRIO :: Core.
*
* TRIO :: Core 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.
*
* TRIO :: Core 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 TRIO :: Core. If not, see .
*/
/**
* This file is part of TRIO.
*
* TRIO 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.
*
* TRIO 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 TRIO. If not, see .
*/
/**
*
* This file is part of TRIO.
*
* TRIO 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.
*
* TRIO 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 TRIO. If not, see .
*/
package net.fchauvel.trio.analytics.threats;
import net.fchauvel.trio.analytics.events.IdleStatisticListener;
import net.fchauvel.trio.analytics.robustness.FailureSequence;
import net.fchauvel.trio.analytics.events.StatisticListener;
import net.fchauvel.trio.analytics.events.Statistic;
import net.fchauvel.trio.simulation.events.IdleSimulationListener;
import net.fchauvel.trio.simulation.events.SimulationListener;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* Listen to the simulation and to the statistics that are published, and ranks
* failure sequences with respect to their threat level.
*/
public class ThreatRanking {
public static final String KEY_THREAT_RANKING = "threat ranking";
private final StatisticListener results;
private final Map rankings;
private final SimulationHandler simulationHandler;
private final StatisticHandler statisticHandler;
public ThreatRanking(StatisticListener results) {
statisticHandler = new StatisticHandler();
this.results = results;
this.rankings = new HashMap();
this.simulationHandler = new SimulationHandler();
}
public SimulationListener getSimulationHandler() {
return this.simulationHandler;
}
public StatisticListener getStatisticHandler() {
return statisticHandler;
}
/**
* Handle the publication of statistics
*/
private class StatisticHandler extends IdleStatisticListener {
@Override
public void onFailureSequence(Statistic context, FailureSequence sequence) {
final Ranking ranking = rankings.get(context.getScenarioId());
if (ranking == null) {
final String description = String.format("Invalid scenario ID %d", context.getScenarioId());
throw new IllegalStateException(description);
}
ranking.record(sequence);
}
}
/**
* Handle specific simulation events
*/
private class SimulationHandler extends IdleSimulationListener {
@Override
public void simulationInitiated(int simulationId) {
if (rankings.containsKey(simulationId)) {
final String description = String.format("Duplicated scenario ID %d", simulationId);
throw new IllegalStateException(description);
}
final Ranking ranking = new Ranking();
rankings.put(simulationId, ranking);
}
@Override
public void simulationComplete(int simulationId) {
Ranking ranking = rankings.get(simulationId);
if (ranking == null) {
final String description = String.format("Unknown simulation ID %d", simulationId);
throw new IllegalStateException(description);
}
results.onThreatRanking(new Statistic(simulationId, -1, KEY_THREAT_RANKING), ranking.rank());
}
}
private static class Ranking {
private final Map threats;
private int sequenceCount;
public Ranking() {
this.threats = new HashMap();
this.sequenceCount = 0;
}
private void record(FailureSequence sequence) {
this.sequenceCount += 1;
final String failureSequences = sequence.sequence().toString();
Threat threat = threats.get(failureSequences);
if (threat == null) {
threat = new Threat(failureSequences, sequence.normalizedRobustness());
threats.put(sequence.sequence().toString(), threat);
}
threat.newInstance();
}
public List rank() {
final List results = new ArrayList(threats.values());
for (Threat eachThreat : results) {
eachThreat.setTotal(sequenceCount);
}
Collections.sort(results);
return results;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy