Package com.graphaware.example

Source Code of com.graphaware.example.ChangeLogger

/*
* Copyright (c) 2013 GraphAware
*
* This file is part of GraphAware.
*
* GraphAware is free software: you can redistribute it and/or modify it under the terms of
* the GNU General Public License as published by the Free Software Foundation, either
* version 3 of the License, or (at your option) any later version.
*
* This program 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 General Public License for more details. You should have received a copy of
* the GNU General Public License along with this program.  If not, see
* <http://www.gnu.org/licenses/>.
*/

package com.graphaware.example;

import com.graphaware.tx.event.improved.api.Change;
import com.graphaware.tx.event.improved.api.ImprovedTransactionData;
import com.graphaware.tx.event.improved.api.LazyTransactionData;
import org.neo4j.graphdb.Node;
import org.neo4j.graphdb.Relationship;
import org.neo4j.graphdb.event.TransactionData;
import org.neo4j.graphdb.event.TransactionEventHandler;

import java.util.HashSet;
import java.util.Set;

import static com.graphaware.common.util.PropertyContainerUtils.nodeToString;
import static com.graphaware.common.util.PropertyContainerUtils.relationshipToString;

/**
* Example of a Neo4j {@link org.neo4j.graphdb.event.TransactionEventHandler} that uses GraphAware {@link ImprovedTransactionData}
* to do its job, which is counting the total strength of all friendships in the database and writing that to a special
* node created for that purpose.
*/
public class ChangeLogger extends TransactionEventHandler.Adapter<Void> {

    /**
     * {@inheritDoc}
     */
    @Override
    public Void beforeCommit(TransactionData data) throws Exception {
        logChanges(new LazyTransactionData(data));

        return null;
    }

    private void logChanges(ImprovedTransactionData improvedData) {
        Set<String> changes = new HashSet<>();

        for (Node createdNode : improvedData.getAllCreatedNodes()) {
            changes.add("Created node " + nodeToString(createdNode));
        }

        for (Node deletedNode : improvedData.getAllDeletedNodes()) {
            changes.add("Deleted node " + nodeToString(deletedNode));
        }

        for (Change<Node> changedNode : improvedData.getAllChangedNodes()) {
            changes.add("Changed node " + nodeToString(changedNode.getPrevious()) + " to " + nodeToString(changedNode.getCurrent()));
        }

        for (Relationship createdRelationship : improvedData.getAllCreatedRelationships()) {
            changes.add("Created relationship " + relationshipToString(createdRelationship));
        }

        for (Relationship deletedRelationship : improvedData.getAllDeletedRelationships()) {
            changes.add("Deleted relationship " + relationshipToString(deletedRelationship));
        }

        for (Change<Relationship> changedRelationship : improvedData.getAllChangedRelationships()) {
            changes.add("Changed relationship " + relationshipToString(changedRelationship.getPrevious()) + " to " + relationshipToString(changedRelationship.getCurrent()));
        }

        for (String change : changes) {
            System.out.println(change);
        }
    }
}
TOP

Related Classes of com.graphaware.example.ChangeLogger

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.