blob: 3f51ba6d6641095c6d33c4e9a9ce302c32e6bad6 [file] [log] [blame]
/*
* 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.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;
/**
* @author Marko A. Rodriguez (http://markorodriguez.com)
*/
public final class VertexProgramHelper {
private VertexProgramHelper() {
}
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");
}
}
}