/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.tinkerpop.gremlin.process.computer.util; import org.apache.commons.configuration.AbstractConfiguration; import org.apache.commons.configuration.Configuration; import org.apache.tinkerpop.gremlin.process.computer.VertexComputeKey; import org.apache.tinkerpop.gremlin.process.traversal.Step; import org.apache.tinkerpop.gremlin.process.traversal.Traversal; import org.apache.tinkerpop.gremlin.process.traversal.step.map.EdgeVertexStep; import org.apache.tinkerpop.gremlin.process.traversal.step.map.VertexStep; import org.apache.tinkerpop.gremlin.util.Serializer; import java.io.IOException; import java.util.Arrays; import java.util.HashSet; import java.util.Set; /** * @author Marko A. Rodriguez (http://markorodriguez.com) */ public final class VertexProgramHelper { private VertexProgramHelper() { } public static Set<String> vertexComputeKeysAsSet(final Set<VertexComputeKey> vertexComputeKeySet) { final Set<String> set = new HashSet<>(vertexComputeKeySet.size()); for (final VertexComputeKey key : vertexComputeKeySet) { set.add(key.getKey()); } return set; } public static boolean isTransientVertexComputeKey(final String key, final Set<VertexComputeKey> vertexComputeKeySet) { for (final VertexComputeKey vertexComputeKey : vertexComputeKeySet) { if (vertexComputeKey.getKey().equals(key)) return vertexComputeKey.isTransient(); } throw new IllegalArgumentException("Could not find key in vertex compute key set: " + key); } public static String[] vertexComputeKeysAsArray(final Set<VertexComputeKey> vertexComputeKeySet) { return VertexProgramHelper.vertexComputeKeysAsSet(vertexComputeKeySet).toArray(new String[vertexComputeKeySet.size()]); } public static void serialize(final Object object, final Configuration configuration, final String key) { if (configuration instanceof AbstractConfiguration) ((AbstractConfiguration) configuration).setDelimiterParsingDisabled(true); try { final String byteString = Arrays.toString(Serializer.serializeObject(object)); configuration.setProperty(key, byteString.substring(1, byteString.length() - 1)); } catch (final IOException e) { throw new IllegalArgumentException(e.getMessage(), e); } } public static <T> T deserialize(final Configuration configuration, final String key) { try { final String[] stringBytes = configuration.getString(key).split(","); byte[] bytes = new byte[stringBytes.length]; for (int i = 0; i < stringBytes.length; i++) { bytes[i] = Byte.valueOf(stringBytes[i].trim()); } return (T) Serializer.deserializeObject(bytes); } catch (final IOException | ClassNotFoundException e) { throw new IllegalArgumentException(e.getMessage(), e); } } public static <S, E> Traversal.Admin<S, E> reverse(final Traversal.Admin<S, E> traversal) { for (final Step step : traversal.getSteps()) { if (step instanceof VertexStep) ((VertexStep) step).reverseDirection(); if (step instanceof EdgeVertexStep) ((EdgeVertexStep) step).reverseDirection(); } return traversal; } public static void legalConfigurationKeyValueArray(final Object... configurationKeyValues) throws IllegalArgumentException { if (configurationKeyValues.length % 2 != 0) throw new IllegalArgumentException("The provided arguments must have a size that is a factor of 2"); for (int i = 0; i < configurationKeyValues.length; i = i + 2) { if (!(configurationKeyValues[i] instanceof String)) throw new IllegalArgumentException("The provided key/value array must have a String key on even array indices"); } } }