Search in sources :

Example 1 with AttributeCountMonitor

use of au.gov.asd.tac.constellation.graph.monitor.AttributeCountMonitor in project constellation by constellation-app.

the class ListeningTopComponent method newActiveGraph.

@Override
public final void newActiveGraph(final Graph graph) {
    LOGGER.finer("NewActiveGraph");
    if (currentGraph != graph) {
        if (currentGraph != null) {
            currentGraph.removeGraphChangeListener(this);
            currentGraph = null;
        }
        if (graph != null) {
            currentGraph = graph;
            currentGraph.addGraphChangeListener(this);
            ReadableGraph readableGraph = currentGraph.getReadableGraph();
            try {
                final Map<GlobalMonitor, Consumer<Graph>> globalMonitorsCopy;
                synchronized (globalMonitors) {
                    globalMonitorsCopy = new HashMap<>(globalMonitors);
                }
                globalMonitorsCopy.forEach((monitor, handler) -> monitor.update(readableGraph));
                final Map<StructureMonitor, Consumer<Graph>> structureMonitorsCopy;
                synchronized (globalMonitors) {
                    structureMonitorsCopy = new HashMap<>(structureMonitors);
                }
                structureMonitorsCopy.forEach((monitor, handler) -> monitor.update(readableGraph));
                final Map<AttributeCountMonitor, Consumer<Graph>> attributeCountMonitorsCopy;
                synchronized (globalMonitors) {
                    attributeCountMonitorsCopy = new HashMap<>(attributeCountMonitors);
                }
                attributeCountMonitorsCopy.forEach((monitor, handler) -> monitor.update(readableGraph));
                final Map<AttributeValueMonitor, Tuple<Consumer<Graph>, MonitorTransitionFilter>> attributeMonitorsCopy;
                synchronized (globalMonitors) {
                    attributeMonitorsCopy = new HashMap<>(attributeValueMonitors);
                }
                attributeMonitorsCopy.forEach((monitor, handler) -> monitor.update(readableGraph));
            } finally {
                readableGraph.release();
            }
            graphChanged(null);
        }
    }
    handleNewGraph(graph);
}
Also used : ReadableGraph(au.gov.asd.tac.constellation.graph.ReadableGraph) AttributeCountMonitor(au.gov.asd.tac.constellation.graph.monitor.AttributeCountMonitor) AttributeValueMonitor(au.gov.asd.tac.constellation.graph.monitor.AttributeValueMonitor) GlobalMonitor(au.gov.asd.tac.constellation.graph.monitor.GlobalMonitor) ReadableGraph(au.gov.asd.tac.constellation.graph.ReadableGraph) Graph(au.gov.asd.tac.constellation.graph.Graph) Consumer(java.util.function.Consumer) StructureMonitor(au.gov.asd.tac.constellation.graph.monitor.StructureMonitor) Tuple(au.gov.asd.tac.constellation.utilities.datastructure.Tuple)

Example 2 with AttributeCountMonitor

use of au.gov.asd.tac.constellation.graph.monitor.AttributeCountMonitor 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);
}
Also used : ReadableGraph(au.gov.asd.tac.constellation.graph.ReadableGraph) AttributeCountMonitor(au.gov.asd.tac.constellation.graph.monitor.AttributeCountMonitor) AttributeValueMonitor(au.gov.asd.tac.constellation.graph.monitor.AttributeValueMonitor) GlobalMonitor(au.gov.asd.tac.constellation.graph.monitor.GlobalMonitor) ReadableGraph(au.gov.asd.tac.constellation.graph.ReadableGraph) Graph(au.gov.asd.tac.constellation.graph.Graph) MonitorTransitionFilter(au.gov.asd.tac.constellation.graph.monitor.MonitorTransitionFilter) Consumer(java.util.function.Consumer) StructureMonitor(au.gov.asd.tac.constellation.graph.monitor.StructureMonitor) Tuple(au.gov.asd.tac.constellation.utilities.datastructure.Tuple)

Example 3 with AttributeCountMonitor

use of au.gov.asd.tac.constellation.graph.monitor.AttributeCountMonitor in project constellation by constellation-app.

the class ListeningTopComponent method addAttributeCountChangeHandler.

/**
 * Define how your TopComponent handles changes to the number of attributes
 * on the graph.
 *
 * @param handler a {@link Consumer} of {@link Graph} objects which
 * determines how this top component should respond to changes to the number
 * of attributes on the graph.
 * @return the {@link AttributeCountMonitor} attached to your handler.
 */
protected AttributeCountMonitor addAttributeCountChangeHandler(final Consumer<Graph> handler) {
    final AttributeCountMonitor attributeCountMonitor = new AttributeCountMonitor();
    initialiseMonitor(attributeCountMonitor);
    attributeCountMonitors.put(attributeCountMonitor, handler);
    LOGGER.log(Level.FINE, "Added AttributeCountMonitor, count is {0}", attributeCountMonitors.size());
    return attributeCountMonitor;
}
Also used : AttributeCountMonitor(au.gov.asd.tac.constellation.graph.monitor.AttributeCountMonitor)

Aggregations

AttributeCountMonitor (au.gov.asd.tac.constellation.graph.monitor.AttributeCountMonitor)3 Graph (au.gov.asd.tac.constellation.graph.Graph)2 ReadableGraph (au.gov.asd.tac.constellation.graph.ReadableGraph)2 AttributeValueMonitor (au.gov.asd.tac.constellation.graph.monitor.AttributeValueMonitor)2 GlobalMonitor (au.gov.asd.tac.constellation.graph.monitor.GlobalMonitor)2 StructureMonitor (au.gov.asd.tac.constellation.graph.monitor.StructureMonitor)2 Tuple (au.gov.asd.tac.constellation.utilities.datastructure.Tuple)2 Consumer (java.util.function.Consumer)2 MonitorTransitionFilter (au.gov.asd.tac.constellation.graph.monitor.MonitorTransitionFilter)1