1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /**
- * @author GCHQ Contributor [3]
- * @copyright Crown Copyright 2019
- * @license Apache-2.0
- */
- import Operation from "../Operation.mjs";
- import OperationError from "../errors/OperationError.mjs";
- import Protobuf from "../lib/Protobuf.mjs";
- /**
- * Protobuf Decode operation
- */
- class ProtobufDecode extends Operation {
- /**
- * ProtobufDecode constructor
- */
- constructor() {
- super();
- this.name = "Protobuf Decode";
- this.module = "Default";
- this.description = "Decodes any Protobuf encoded data to a JSON representation of the data using the field number as the field key.";
- this.infoURL = "https://wikipedia.org/wiki/Protocol_Buffers";
- this.inputType = "ArrayBuffer";
- this.outputType = "JSON";
- this.args = [];
- }
- /**
- * @param {ArrayBuffer} input
- * @param {Object[]} args
- * @returns {JSON}
- */
- run(input, args) {
- input = new Uint8Array(input);
- try {
- return Protobuf.decode(input);
- } catch (err) {
- throw new OperationError(err);
- }
- }
- }
- export default ProtobufDecode;
|