UNPKG

gremlin

Version:

JavaScript Gremlin Language Variant

70 lines (58 loc) 2.25 kB
/* * 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. */ /** * @author Igor Ostapenko */ 'use strict'; const { Buffer } = require('buffer'); const { TraversalStrategySerializer: GraphsonTraversalStrategySerializer } = require('../../type-serializers'); module.exports = class TraversalStrategySerializer { constructor(ioc) { this.ioc = ioc; this.graphsonTraversalStrategySerializer = new GraphsonTraversalStrategySerializer(); } canBeUsedFor(value) { return this.graphsonTraversalStrategySerializer.canBeUsedFor(value); } serialize(item, fullyQualifiedFormat = true) { if (item === undefined || item === null) { if (fullyQualifiedFormat) { return Buffer.from([this.ioc.DataType.TRAVERSALSTRATEGY, 0x01]); } const strategy_class = [0x00, 0x00, 0x00, 0x00]; // '' const configuration = [0x00, 0x00, 0x00, 0x00]; // {} return Buffer.from([...strategy_class, ...configuration]); } const bufs = []; if (fullyQualifiedFormat) { bufs.push(Buffer.from([this.ioc.DataType.TRAVERSALSTRATEGY, 0x00])); } const conf = {}; for (const k in item.configuration) { if (item.configuration.hasOwnProperty(k)) { conf[k] = item.configuration[k]; } } // {strategy_class} bufs.push(this.ioc.classSerializer.serialize(item.constructor, false)); // {configuration} bufs.push(this.ioc.mapSerializer.serialize(conf, false)); return Buffer.concat(bufs); } };