12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /**
- * @author jarrodconnolly [jarrod@nestedquotes.ca]
- * @copyright Crown Copyright 2019
- * @license Apache-2.0
- */
- import Operation from "../Operation.mjs";
- import OperationError from "../errors/OperationError.mjs";
- import avro from "avsc";
- /**
- * Avro to JSON operation
- */
- class AvroToJSON extends Operation {
- /**
- * AvroToJSON constructor
- */
- constructor() {
- super();
- this.name = "Avro to JSON";
- this.module = "Serialise";
- this.description = "Converts Avro encoded data into JSON.";
- this.infoURL = "https://wikipedia.org/wiki/Apache_Avro";
- this.inputType = "ArrayBuffer";
- this.outputType = "string";
- this.args = [
- {
- name: "Force Valid JSON",
- type: "boolean",
- value: true
- }
- ];
- }
- /**
- * @param {ArrayBuffer} input
- * @param {Object[]} args
- * @returns {string}
- */
- run(input, args) {
- if (input.byteLength <= 0) {
- throw new OperationError("Please provide an input.");
- }
- const forceJSON = args[0];
- return new Promise((resolve, reject) => {
- const result = [];
- const inpArray = new Uint8Array(input);
- const decoder = new avro.streams.BlockDecoder();
- decoder
- .on("data", function (obj) {
- result.push(obj);
- })
- .on("error", function () {
- reject(new OperationError("Error parsing Avro file."));
- })
- .on("end", function () {
- if (forceJSON) {
- resolve(result.length === 1 ? JSON.stringify(result[0], null, 4) : JSON.stringify(result, null, 4));
- } else {
- const data = result.reduce((result, current) => result + JSON.stringify(current) + "\n", "");
- resolve(data);
- }
- });
- decoder.write(inpArray);
- decoder.end();
- });
- }
- }
- export default AvroToJSON;
|