com.arangodb.internal.velocypack.VPackSerializers Maven / Gradle / Ivy
/*
* DISCLAIMER
*
* Copyright 2016 ArangoDB GmbH, Cologne, Germany
*
* Licensed 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.
*
* Copyright holder is ArangoDB GmbH, Cologne, Germany
*/
package com.arangodb.internal.velocypack;
import com.arangodb.entity.*;
import com.arangodb.entity.arangosearch.*;
import com.arangodb.internal.velocystream.internal.AuthenticationRequest;
import com.arangodb.model.CollectionSchema;
import com.arangodb.model.TraversalOptions;
import com.arangodb.model.TraversalOptions.Order;
import com.arangodb.model.arangosearch.ArangoSearchPropertiesOptions;
import com.arangodb.velocypack.*;
import com.arangodb.velocystream.Request;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
/**
* @author Mark Vollmary
*/
public class VPackSerializers {
public static final VPackSerializer REQUEST = (builder, attribute, value, context) -> {
builder.add(attribute, ValueType.ARRAY);
builder.add(value.getVersion());
builder.add(value.getType());
builder.add(value.getDatabase());
builder.add(value.getRequestType().getType());
builder.add(value.getRequest());
builder.add(ValueType.OBJECT);
for (final Entry entry : value.getQueryParam().entrySet()) {
builder.add(entry.getKey(), entry.getValue());
}
builder.close();
builder.add(ValueType.OBJECT);
for (final Entry entry : value.getHeaderParam().entrySet()) {
builder.add(entry.getKey(), entry.getValue());
}
builder.close();
builder.close();
};
public static final VPackSerializer AUTH_REQUEST = (builder, attribute, value, context) -> {
builder.add(attribute, ValueType.ARRAY);
builder.add(value.getVersion());
builder.add(value.getType());
builder.add(value.getEncryption());
builder.add(value.getUser());
builder.add(value.getPassword());
builder.close();
};
public static final VPackSerializer COLLECTION_TYPE = (builder, attribute, value, context) -> builder.add(attribute, value.getType());
public static final VPackSerializer BASE_DOCUMENT = (builder, attribute, value, context) -> {
final Map doc = new HashMap<>(value.getProperties());
doc.put(DocumentField.Type.ID.getSerializeName(), value.getId());
doc.put(DocumentField.Type.KEY.getSerializeName(), value.getKey());
doc.put(DocumentField.Type.REV.getSerializeName(), value.getRevision());
context.serialize(builder, attribute, doc);
};
public static final VPackSerializer BASE_EDGE_DOCUMENT = (builder, attribute, value, context) -> {
final Map doc = new HashMap<>(value.getProperties());
doc.put(DocumentField.Type.ID.getSerializeName(), value.getId());
doc.put(DocumentField.Type.KEY.getSerializeName(), value.getKey());
doc.put(DocumentField.Type.REV.getSerializeName(), value.getRevision());
doc.put(DocumentField.Type.FROM.getSerializeName(), value.getFrom());
doc.put(DocumentField.Type.TO.getSerializeName(), value.getTo());
context.serialize(builder, attribute, doc);
};
public static final VPackSerializer TRAVERSAL_ORDER = (builder, attribute, value, context) -> {
if (Order.preorder_expander == value) {
builder.add(attribute, "preorder-expander");
} else {
builder.add(attribute, value.name());
}
};
public static final VPackSerializer LOG_LEVEL = (builder, attribute, value, context) -> builder.add(attribute, value.getLevel());
public static final VPackSerializer PERMISSIONS = (builder, attribute, value, context) -> builder.add(attribute, value.toString().toLowerCase());
public static final VPackSerializer REPLICATION_FACTOR = (builder, attribute, value, context) -> {
final Boolean satellite = value.getSatellite();
if (Boolean.TRUE == satellite) {
builder.add(attribute, "satellite");
} else if (value.getReplicationFactor() != null) {
builder.add(attribute, value.getReplicationFactor());
}
};
public static final VPackSerializer MIN_REPLICATION_FACTOR = (builder, attribute, value, context) -> {
if (value.getMinReplicationFactor() != null) {
builder.add(attribute, value.getMinReplicationFactor());
}
};
public static final VPackSerializer VIEW_TYPE = (builder, attribute, value, context) -> {
final String type = value == ViewType.ARANGO_SEARCH ? "arangosearch" : value.name().toLowerCase();
builder.add(attribute, type);
};
public static final VPackSerializer ARANGO_SEARCH_PROPERTIES_OPTIONS = (builder, attribute, value, context) -> {
builder.add(ValueType.OBJECT);
context.serialize(builder, attribute, value.getProperties());
builder.close();
};
public static final VPackSerializer ARANGO_SEARCH_PROPERTIES = (builder, attribute, value, context) -> {
final Long consolidationIntervalMsec = value.getConsolidationIntervalMsec();
if (consolidationIntervalMsec != null) {
builder.add("consolidationIntervalMsec", consolidationIntervalMsec);
}
final Long commitIntervalMsec = value.getCommitIntervalMsec();
if (commitIntervalMsec != null) {
builder.add("commitIntervalMsec", commitIntervalMsec);
}
final Long cleanupIntervalStep = value.getCleanupIntervalStep();
if (cleanupIntervalStep != null) {
builder.add("cleanupIntervalStep", cleanupIntervalStep);
}
context.serialize(builder, "consolidationPolicy", value.getConsolidationPolicy());
final Collection links = value.getLinks();
if (!links.isEmpty()) {
builder.add("links", ValueType.OBJECT);
for (final CollectionLink collectionLink : links) {
builder.add(collectionLink.getName(), ValueType.OBJECT);
final Collection analyzers = collectionLink.getAnalyzers();
if (!analyzers.isEmpty()) {
builder.add("analyzers", ValueType.ARRAY);
for (final String analyzer : analyzers) {
builder.add(analyzer);
}
builder.close();
}
final Boolean includeAllFields = collectionLink.getIncludeAllFields();
if (includeAllFields != null) {
builder.add("includeAllFields", includeAllFields);
}
final Boolean trackListPositions = collectionLink.getTrackListPositions();
if (trackListPositions != null) {
builder.add("trackListPositions", trackListPositions);
}
final StoreValuesType storeValues = collectionLink.getStoreValues();
if (storeValues != null) {
builder.add("storeValues", storeValues.name().toLowerCase());
}
serializeFieldLinks(builder, collectionLink.getFields());
builder.close();
}
builder.close();
}
final Collection primarySorts = value.getPrimarySort();
if (!primarySorts.isEmpty()) {
builder.add("primarySort", ValueType.ARRAY); // open array
for (final PrimarySort primarySort : primarySorts) {
builder.add(ValueType.OBJECT); // open object
builder.add("field", primarySort.getFieldName());
builder.add("asc", primarySort.getAscending());
builder.close(); // close object
}
builder.close(); // close array
}
final ArangoSearchCompression primarySortCompression = value.getPrimarySortCompression();
if (primarySortCompression != null) {
builder.add("primarySortCompression", primarySortCompression.getValue());
}
final Collection storedValues = value.getStoredValues();
if (!storedValues.isEmpty()) {
builder.add("storedValues", ValueType.ARRAY); // open array
for (final StoredValue storedValue : storedValues) {
builder.add(ValueType.OBJECT); // open object
builder.add("fields", ValueType.ARRAY);
for (final String field : storedValue.getFields()) {
builder.add(field);
}
builder.close();
builder.add("compression", storedValue.getCompression().getValue());
builder.close(); // close object
}
builder.close(); // close array
}
};
private static void serializeFieldLinks(final VPackBuilder builder, final Collection links) {
if (!links.isEmpty()) {
builder.add("fields", ValueType.OBJECT);
for (final FieldLink fieldLink : links) {
builder.add(fieldLink.getName(), ValueType.OBJECT);
final Collection analyzers = fieldLink.getAnalyzers();
if (!analyzers.isEmpty()) {
builder.add("analyzers", ValueType.ARRAY);
for (final String analyzer : analyzers) {
builder.add(analyzer);
}
builder.close();
}
final Boolean includeAllFields = fieldLink.getIncludeAllFields();
if (includeAllFields != null) {
builder.add("includeAllFields", includeAllFields);
}
final Boolean trackListPositions = fieldLink.getTrackListPositions();
if (trackListPositions != null) {
builder.add("trackListPositions", trackListPositions);
}
final StoreValuesType storeValues = fieldLink.getStoreValues();
if (storeValues != null) {
builder.add("storeValues", storeValues.name().toLowerCase());
}
serializeFieldLinks(builder, fieldLink.getFields());
builder.close();
}
builder.close();
}
}
public static final VPackSerializer CONSOLIDATE_TYPE = (builder, attribute, value, context) -> builder.add(attribute, value.toString().toLowerCase());
public static final VPackSerializer COLLECTION_VALIDATION = (builder, attribute, value, context) -> {
VPackParser parser = new VPackParser.Builder().build();
VPackSlice rule = parser.fromJson(value.getRule(), true);
final Map doc = new HashMap<>();
doc.put("message", value.getMessage());
doc.put("level", value.getLevel().getValue());
doc.put("rule", rule);
context.serialize(builder, attribute, doc);
};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy