import {AxdrType} from "../asn1.axdr/AxdrType"; import {ReverseByteArrayOutputStream} from "../ReverseByteArrayOutputStream"; import {Buffer} from "buffer"; import {PIID} from "./PIID"; import {OAD} from "./OAD"; import {ReverseByteArrayInputStream} from "../ReverseByteArrayInputStream"; export class GetRequestNormal implements AxdrType { dataCode: Buffer | null = null; piid: PIID | null = null; oad: OAD | null = null; constructor() { } set_dataCode(dataCode : Buffer){ this.dataCode = dataCode; } set_all(piid : PIID, oad : OAD){ this.piid = piid; this.oad = oad; } setOAD(oad: OAD) { this.oad = oad; } setPIID(piid: PIID) { this.piid = piid; } decode(input: ReverseByteArrayInputStream): number { let codeLength = 0; this.piid = new PIID(); this.piid.setNumBit(8); codeLength += this.piid.decode(input); this.oad = new OAD(); codeLength += this.oad.decode(input); return codeLength; } encode(output: ReverseByteArrayOutputStream): number { let codeLength; if (this.dataCode != null) { codeLength = this.dataCode.length; for (let i = this.dataCode.length - 1; i >= 0; i--) { output.write(this.dataCode[i]); } } else { if (this.oad != null && this.piid != null) { codeLength = 0; codeLength += this.oad.encode(output); codeLength += this.piid.encode(output); } else { throw new Error("oad or piid is null"); } } return codeLength; } encodeAndSave(encodingSizeGuess: number) { let revOStream = new ReverseByteArrayOutputStream(); revOStream.setBufSize(encodingSizeGuess); this.encode(revOStream); this.dataCode = revOStream.getArray(); } toString(): string { if (this.piid != null && this.oad != null) { return "sequence: {" + "piid: " + this.piid + ", oad: " + this.oad + "}"; } else { return "piid || oad is null"; } } }