blob: 58260329e328de3c1d1a65f2822a8df545682322 [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.
*/
/**
* @author Igor Ostapenko
*/
import { Buffer } from 'buffer';
import { P } from '../../../../process/traversal.js';
export default class PSerializer {
constructor(ioc) {
this.ioc = ioc;
this.ioc.serializers[ioc.DataType.P] = this;
}
canBeUsedFor(value) {
return value instanceof P;
}
serialize(item, fullyQualifiedFormat = true) {
if (item === undefined || item === null) {
if (fullyQualifiedFormat) {
return Buffer.from([this.ioc.DataType.P, 0x01]);
}
const name = [0x00, 0x00, 0x00, 0x00]; // ''
const values_length = [0x00, 0x00, 0x00, 0x00]; // 0
return Buffer.from([...name, ...values_length]);
}
const bufs = [];
if (fullyQualifiedFormat) {
bufs.push(Buffer.from([this.ioc.DataType.P, 0x00]));
}
// {name}
bufs.push(this.ioc.stringSerializer.serialize(item.operator, false));
// {values_length}{value_0}...{value_n}
//
// This is a tricky part due to the nature of t.P.
// GraphBinary states that {name} is followed by list only,
// but t.P may be constructed such way that its item.value can be
// a usual string or something, that's why we should care here
// to get it wrapped into a list.
//
// It tries to resemble the same if-else structure as
// GraphSON.PSerializer.serialize() does.
let list;
if (item.other === undefined || item.other === null) {
if (Array.isArray(item.value)) {
list = item.value;
} else {
list = [item.value];
}
} else {
list = [item.value, item.other];
}
bufs.push(this.ioc.listSerializer.serialize(list, false));
return Buffer.concat(bufs);
}
deserialize(buffer, fullyQualifiedFormat = true) {
let len = 0;
let cursor = buffer;
try {
if (buffer === undefined || buffer === null || !(buffer instanceof Buffer)) {
throw new Error('buffer is missing');
}
if (buffer.length < 1) {
throw new Error('buffer is empty');
}
if (fullyQualifiedFormat) {
const type_code = cursor.readUInt8();
len++;
if (type_code !== this.ioc.DataType.P) {
throw new Error('unexpected {type_code}');
}
cursor = cursor.slice(1);
if (cursor.length < 1) {
throw new Error('{value_flag} is missing');
}
const value_flag = cursor.readUInt8();
len++;
if (value_flag === 1) {
return { v: null, len };
}
if (value_flag !== 0) {
throw new Error('unexpected {value_flag}');
}
cursor = cursor.slice(1);
}
let name, name_len;
try {
({ v: name, len: name_len } = this.ioc.stringSerializer.deserialize(cursor, false));
len += name_len;
} catch (err) {
err.message = '{name}: ' + err.message;
throw err;
}
cursor = cursor.slice(name_len);
let values, values_len;
try {
({ v: values, len: values_len } = this.ioc.listSerializer.deserialize(cursor, false));
len += values_len;
} catch (err) {
err.message = '{values}: ' + err.message;
throw err;
}
cursor = cursor.slice(values_len);
if (values.length < 1) {
return { v: new P(''), len };
}
let v;
const P_static = P[name];
if (typeof P_static === 'function') {
v = P_static(...values); // it's better to follow existing logic which may depend on an operator name
} else {
v = new P(name, ...values);
}
return { v, len };
} catch (err) {
throw this.ioc.utils.des_error({ serializer: this, args: arguments, cursor, err });
}
}
}