Package org.structr.core.graph

Source Code of org.structr.core.graph.BulkSetUuidCommand

/**
* Copyright (C) 2010-2014 Morgner UG (haftungsbeschränkt)
*
* This file is part of Structr <http://structr.org>.
*
* Structr 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.
*
* Structr 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 Structr.  If not, see <http://www.gnu.org/licenses/>.
*/
package org.structr.core.graph;

import java.util.LinkedList;
import org.neo4j.graphdb.GraphDatabaseService;
import org.neo4j.tooling.GlobalGraphOperations;

import org.structr.common.SecurityContext;
import org.structr.common.error.FrameworkException;
import org.structr.core.entity.AbstractNode;
import org.structr.core.entity.AbstractRelationship;

//~--- JDK imports ------------------------------------------------------------

import java.util.List;
import java.util.Map;
import java.util.UUID;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.structr.core.GraphObject;
import org.structr.core.app.StructrApp;
import org.structr.schema.SchemaHelper;

//~--- classes ----------------------------------------------------------------

/**
* Sets a new UUID on each graph object of the given type. For nodes, set type,
* for relationships relType.
*
* @author Axel Morgner
*/
public class BulkSetUuidCommand extends NodeServiceCommand implements MaintenanceCommand {

  private static final Logger logger = Logger.getLogger(BulkSetUuidCommand.class.getName());

  //~--- methods --------------------------------------------------------

  @Override
  public void execute(Map<String, Object> attributes) throws FrameworkException {

    final String entityType                = (String) attributes.get("type");
    final String relType                   = (String) attributes.get("relType");
    final GraphDatabaseService graphDb     = (GraphDatabaseService) arguments.get("graphDb");
    final SecurityContext superUserContext = SecurityContext.getSuperUserInstance();
    final NodeFactory nodeFactory          = new NodeFactory(superUserContext);
    final RelationshipFactory relFactory   = new RelationshipFactory(superUserContext);

    if (entityType != null) {

      final Class type = SchemaHelper.getEntityClassForRawType(entityType);

      if (type != null) {

        final List<AbstractNode> nodes = new LinkedList<>();

        // instantiate all nodes in a single list
        try (final Tx tx = StructrApp.getInstance().tx()) {
          nodes.addAll(nodeFactory.bulkInstantiate(GlobalGraphOperations.at(graphDb).getAllNodes()));
        }

        logger.log(Level.INFO, "Start setting UUID on all nodes of type {0}", new Object[] { type.getSimpleName() });

        long count = bulkGraphOperation(securityContext, nodes, 1000, "SetNodeProperties", new BulkGraphOperation<AbstractNode>() {

          @Override
          public void handleGraphObject(SecurityContext securityContext, AbstractNode node) {

            if (!node.getClass().equals(type)) {

              return;
            }

            try {

              node.setProperty(GraphObject.id, UUID.randomUUID().toString().replaceAll("[\\-]+", ""));

            } catch (FrameworkException fex) {

              logger.log(Level.WARNING, "Unable to set UUID of node {0}: {1}", new Object[] { node, fex.getMessage() });

            }

          }
          @Override
          public void handleThrowable(SecurityContext securityContext, Throwable t, AbstractNode node) {

            logger.log(Level.WARNING, "Unable to set UUID of node {0}: {1}", new Object[] { node, t.getMessage() });

          }
          @Override
          public void handleTransactionFailure(SecurityContext securityContext, Throwable t) {

            logger.log(Level.WARNING, "Unable to set UUID on node: {0}", t.getMessage());

          }

        });

        logger.log(Level.INFO, "Done with setting UUID on {0} nodes", count);

        return;
      }

    } else if (relType != null) {

      final List<AbstractRelationship> rels = new LinkedList<>();

      // instantiate all rels in a single list
      try (final Tx tx = StructrApp.getInstance().tx()) {
        rels.addAll(relFactory.instantiate(GlobalGraphOperations.at(graphDb).getAllRelationships()));
      }

      logger.log(Level.INFO, "Start setting UUID on all rels of type {0}", new Object[] { relType });

      long count = bulkGraphOperation(securityContext, rels, 1000, "SetRelationshipUuid", new BulkGraphOperation<AbstractRelationship>() {

        @Override
        public void handleGraphObject(SecurityContext securityContext, AbstractRelationship rel) {

          if (!rel.getType().equals(relType)) {

            return;
          }

          try {

            rel.setProperty(AbstractRelationship.id, UUID.randomUUID().toString().replaceAll("[\\-]+", ""));

          } catch (FrameworkException fex) {

            logger.log(Level.WARNING, "Unable to set UUID of relationship {0}: {1}", new Object[] { rel, fex.getMessage() });

          }

        }
        @Override
        public void handleThrowable(SecurityContext securityContext, Throwable t, AbstractRelationship rel) {

          logger.log(Level.WARNING, "Unable to set UUID of relationship {0}: {1}", new Object[] { rel, t.getMessage() });

        }
        @Override
        public void handleTransactionFailure(SecurityContext securityContext, Throwable t) {

          logger.log(Level.WARNING, "Unable to set UUID on relationship: {0}", t.getMessage());

        }

      });

      logger.log(Level.INFO, "Done with setting UUID on {0} relationships", count);

      return;
    }

    logger.log(Level.INFO, "Unable to determine entity type to set UUID.");

  }

  @Override
  public boolean requiresEnclosingTransaction() {
    return false;
  }
}
TOP

Related Classes of org.structr.core.graph.BulkSetUuidCommand

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.