Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
apoc.uuid.UuidHandler Maven / Gradle / Ivy
package apoc.uuid;
import apoc.ApocConfig;
import apoc.ExtendedApocConfig;
import apoc.SystemLabels;
import apoc.SystemPropertyKeys;
import apoc.util.Util;
import org.apache.commons.collections4.IterableUtils;
import org.apache.commons.lang3.tuple.Pair;
import org.neo4j.dbms.api.DatabaseManagementService;
import org.neo4j.graphdb.GraphDatabaseService;
import org.neo4j.graphdb.Label;
import org.neo4j.graphdb.Node;
import org.neo4j.graphdb.Transaction;
import org.neo4j.graphdb.event.LabelEntry;
import org.neo4j.graphdb.event.PropertyEntry;
import org.neo4j.graphdb.event.TransactionData;
import org.neo4j.graphdb.event.TransactionEventListener;
import org.neo4j.graphdb.schema.ConstraintDefinition;
import org.neo4j.graphdb.schema.Schema;
import org.neo4j.kernel.internal.GraphDatabaseAPI;
import org.neo4j.kernel.lifecycle.LifecycleAdapter;
import org.neo4j.logging.Log;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.UUID;
import java.util.concurrent.ConcurrentHashMap;
import java.util.function.Predicate;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import java.util.stream.StreamSupport;
import static apoc.ExtendedApocConfig.APOC_UUID_ENABLED;
import static apoc.ExtendedApocConfig.APOC_UUID_ENABLED_DB;
import static apoc.ExtendedApocConfig.APOC_UUID_FORMAT;
public class UuidHandler extends LifecycleAdapter implements TransactionEventListener {
private final GraphDatabaseAPI db;
private final Log log;
private final DatabaseManagementService databaseManagementService;
private final ApocConfig apocConfig;
private final ConcurrentHashMap configuredLabelAndPropertyNames = new ConcurrentHashMap<>();
private final ExtendedApocConfig.UuidFormatType uuidFormat;
public static final String NOT_ENABLED_ERROR = "UUID have not been enabled." +
" Set 'apoc.uuid.enabled=true' or 'apoc.uuid.enabled.%s=true' in your apoc.conf file located in the $NEO4J_HOME/conf/ directory.";
public UuidHandler(GraphDatabaseAPI db, DatabaseManagementService databaseManagementService, Log log, ApocConfig apocConfig) {
this.db = db;
this.databaseManagementService = databaseManagementService;
this.log = log;
this.apocConfig = apocConfig;
ExtendedApocConfig extendedApocConfig = ExtendedApocConfig.extendedApocConfig();
this.uuidFormat = extendedApocConfig.getEnumProperty(APOC_UUID_FORMAT, ExtendedApocConfig.UuidFormatType.class, ExtendedApocConfig.UuidFormatType.hex);
}
@Override
public void start() {
if (isEnabled()) {
refresh();
databaseManagementService.registerTransactionEventListener(db.databaseName(), this);
}
}
private boolean isEnabled() {
String apocUUIDEnabledDb = String.format(APOC_UUID_ENABLED_DB, this.db.databaseName());
return apocConfig.getConfig().getBoolean(apocUUIDEnabledDb, apocConfig.getBoolean(APOC_UUID_ENABLED));
}
@Override
public void stop() {
if (isEnabled()) {
databaseManagementService.unregisterTransactionEventListener(db.databaseName(), this);
}
}
private void checkAndRestoreUuidProperty(Iterable> nodeProperties, String label, String uuidProperty) {
checkAndRestoreUuidProperty(nodeProperties, label, uuidProperty, null);
}
private void checkAndRestoreUuidProperty(Iterable> nodeProperties, String label, String uuidProperty, Predicate> predicate) {
if (nodeProperties.iterator().hasNext()) {
nodeProperties.forEach(nodePropertyEntry -> {
if (predicate == null) {
if (nodePropertyEntry.entity().hasLabel(Label.label(label)) && nodePropertyEntry.key().equals(uuidProperty)) {
nodePropertyEntry.entity().setProperty(uuidProperty, nodePropertyEntry.previouslyCommittedValue());
}
} else {
if (nodePropertyEntry.entity().hasLabel(Label.label(label)) && nodePropertyEntry.key().equals(uuidProperty) && predicate.test(nodePropertyEntry)) {
nodePropertyEntry.entity().setProperty(uuidProperty, nodePropertyEntry.previouslyCommittedValue());
}
}
});
}
}
@Override
public Void beforeCommit(TransactionData txData, Transaction transaction, GraphDatabaseService databaseService) {
// assignedLabels handles both created nodes and set labels of existing nodes
Iterable> assignedNodeProperties = txData.assignedNodeProperties();
Iterable> removedNodeProperties = txData.removedNodeProperties();
configuredLabelAndPropertyNames.forEach((label, config) -> {
final String propertyName = config.getUuidProperty();
List nodes = config.isAddToSetLabels()
? StreamSupport.stream(txData.assignedLabels().spliterator(), false).map(LabelEntry::node).collect(Collectors.toList())
: IterableUtils.toList(txData.createdNodes());
try {
nodes.forEach(node -> {
if (node.hasLabel(Label.label(label)) && !node.hasProperty(propertyName)) {
String uuid = generateUuidValue();
node.setProperty(propertyName, uuid);
}
});
checkAndRestoreUuidProperty(assignedNodeProperties, label, propertyName,
(nodePropertyEntry) -> nodePropertyEntry.value() == null || nodePropertyEntry.value().equals(""));
checkAndRestoreUuidProperty(removedNodeProperties, label, propertyName);
} catch (Exception e) {
log.warn("Error executing uuid " + label + " in phase before", e);
}
});
return null;
}
@Override
public void afterCommit(TransactionData data, Void state, GraphDatabaseService databaseService) {
}
@Override
public void afterRollback(TransactionData data, Void state, GraphDatabaseService databaseService) {
}
private void checkEnabled() {
if (!isEnabled()) {
throw new RuntimeException(String.format(NOT_ENABLED_ERROR, this.db.databaseName()) );
}
}
private String generateUuidValue() {
UUID uuid = UUID.randomUUID();
switch (uuidFormat) {
case base64:
return UuidUtil.generateBase64Uuid(uuid);
case hex:
default:
return uuid.toString();
}
}
public void checkConstraintUuid(Transaction tx, String label, String propertyName) {
Schema schema = tx.schema();
Stream constraintDefinitionStream = StreamSupport.stream(schema.getConstraints(Label.label(label)).spliterator(), false);
boolean exists = constraintDefinitionStream.anyMatch(constraint -> {
Stream streamPropertyKeys = StreamSupport.stream(constraint.getPropertyKeys().spliterator(), false);
return streamPropertyKeys.anyMatch(property -> property.equals(propertyName));
});
if (!exists) {
String error = String.format("`CREATE CONSTRAINT FOR (%s:%s) REQUIRE %s.%s IS UNIQUE`",
label.toLowerCase(), label, label.toLowerCase(), propertyName);
throw new RuntimeException("No constraint found for label: " + label + ", please add the constraint with the following : " + error);
}
}
public void add(Transaction tx, String label, UuidConfig config) {
checkEnabled();
final String propertyName = config.getUuidProperty();
checkConstraintUuid(tx, label, propertyName);
configuredLabelAndPropertyNames.put(label, config);
try (Transaction sysTx = apocConfig.getSystemDb().beginTx()) {
Node node = Util.mergeNode(sysTx, SystemLabels.ApocUuid, null,
Pair.of(SystemPropertyKeys.database.name(), db.databaseName()),
Pair.of(SystemPropertyKeys.label.name(), label),
Pair.of(SystemPropertyKeys.propertyName.name(), propertyName)
);
node.setProperty(SystemPropertyKeys.addToSetLabel.name(), config.isAddToSetLabels());
sysTx.commit();
}
}
public Map list() {
checkEnabled();
return configuredLabelAndPropertyNames;
}
public void refresh() {
configuredLabelAndPropertyNames.clear();
try (Transaction tx = apocConfig.getSystemDb().beginTx()) {
tx.findNodes(SystemLabels.ApocUuid, SystemPropertyKeys.database.name(), db.databaseName())
.forEachRemaining(node -> {
final UuidConfig config = new UuidConfig(Map.of(
"uuidProperty", node.getProperty(SystemPropertyKeys.propertyName.name()),
"addToSetLabels", node.getProperty(SystemPropertyKeys.addToSetLabel.name(), false)));
configuredLabelAndPropertyNames.put((String)node.getProperty(SystemPropertyKeys.label.name()), config);
});
tx.commit();
}
}
public synchronized UuidConfig remove(String label) {
try (Transaction tx = apocConfig.getSystemDb().beginTx()) {
tx.findNodes(SystemLabels.ApocUuid, SystemPropertyKeys.database.name(), db.databaseName(),
SystemPropertyKeys.label.name(), label)
.forEachRemaining(node -> node.delete());
tx.commit();
}
return configuredLabelAndPropertyNames.remove(label);
}
public synchronized Map removeAll() {
Map retval = new HashMap<>(configuredLabelAndPropertyNames);
configuredLabelAndPropertyNames.clear();
try (Transaction tx = apocConfig.getSystemDb().beginTx()) {
tx.findNodes(SystemLabels.ApocUuid, SystemPropertyKeys.database.name(), db.databaseName() )
.forEachRemaining(node -> node.delete());
tx.commit();
}
return retval;
}
}