use of au.gov.asd.tac.constellation.graph.monitor.MonitorTransitionFilter in project constellation by constellation-app.
the class ListeningTopComponent method graphChanged.
@Override
public final void graphChanged(final GraphChangeEvent event) {
LOGGER.finer("GraphChange");
if (event != null && ignoredEvents.contains(event.getDescription())) {
LOGGER.log(Level.FINER, "IgnoringEvent::{0}", event.getDescription());
return;
}
ReadableGraph readableGraph = currentGraph.getReadableGraph();
try {
final Map<GlobalMonitor, Consumer<Graph>> globalMonitorsCopy;
synchronized (globalMonitors) {
globalMonitorsCopy = new HashMap<>(globalMonitors);
}
globalMonitorsCopy.forEach((monitor, handler) -> {
LOGGER.finer("GraphChanged::CheckGlobal");
if (monitor.update(readableGraph) == MonitorTransition.CHANGED) {
LOGGER.finer("GraphChanged::UpdateGlobal");
if (handler != null) {
handler.accept(currentGraph);
}
}
});
final Map<StructureMonitor, Consumer<Graph>> structureMonitorsCopy;
synchronized (globalMonitors) {
structureMonitorsCopy = new HashMap<>(structureMonitors);
}
structureMonitorsCopy.forEach((monitor, handler) -> {
LOGGER.finer("GraphChanged::CheckStructure");
if (monitor.update(readableGraph) == MonitorTransition.CHANGED) {
LOGGER.finer("GraphChanged::UpdateStructure");
if (handler != null) {
handler.accept(currentGraph);
}
}
});
final Map<AttributeCountMonitor, Consumer<Graph>> attributeCountMonitorsCopy;
synchronized (globalMonitors) {
attributeCountMonitorsCopy = new HashMap<>(attributeCountMonitors);
}
attributeCountMonitorsCopy.forEach((monitor, handler) -> {
LOGGER.finer("GraphChanged::CheckAttributeCount");
if (monitor.update(readableGraph) == MonitorTransition.CHANGED) {
LOGGER.finer("GraphChanged::UpdateAttributeCount");
if (handler != null) {
handler.accept(currentGraph);
}
}
});
final Map<AttributeValueMonitor, Tuple<Consumer<Graph>, MonitorTransitionFilter>> attributeMonitorsCopy;
synchronized (globalMonitors) {
attributeMonitorsCopy = new HashMap<>(attributeValueMonitors);
}
attributeMonitorsCopy.forEach((monitor, handlerPair) -> {
LOGGER.finer("GraphChanged::CheckAttribute");
final Consumer<Graph> handler = handlerPair.getFirst();
final MonitorTransitionFilter transitionFilter = handlerPair.getSecond();
monitor.update(readableGraph);
if (transitionFilter.matchesTransitions(monitor)) {
LOGGER.log(Level.FINER, "GraphChanged::UpdateAttribute::{0}", monitor.getName());
if (handler != null) {
handler.accept(currentGraph);
}
}
});
} finally {
readableGraph.release();
}
handleGraphChange(event);
}
Aggregations