UANodeSet.ts 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. import {XMLParser, type X2jOptions} from 'fast-xml-parser';
  2. import axios from 'axios';
  3. import { UAObject } from './UAObject';
  4. import type { UABaseNode } from './UABaseNode';
  5. import { UAVariable } from './UAVariable';
  6. import { NamespaceTable } from './NameSpaceTable';
  7. export class UANodeSet {
  8. constructor(public nodes: UABaseNode[],
  9. public nameSpaceTable: NamespaceTable) {
  10. }
  11. reIndex(nst: NamespaceTable) {
  12. for(const value of this.nameSpaceTable.nsMap.getValues()) {
  13. nst.addUri(value);
  14. }
  15. for(const node of this.nodes) {
  16. node.reIndex(nst, this.nameSpaceTable);
  17. }
  18. }
  19. resolveChildren(nm: Map<string, UABaseNode>) {
  20. for(const node of this.nodes) {
  21. node.resolveChildren(nm);
  22. }
  23. }
  24. static async load(url: string) {
  25. const xml= (await axios.get(url)).data;
  26. const parseOptions:Partial<X2jOptions>={
  27. ignoreAttributes: false,
  28. // eslint-disable-next-line @typescript-eslint/no-unused-vars
  29. isArray: (name, jpath, isLeafNode, isAttribute):boolean => {
  30. if(jpath=='UANodeSet.NamespaceUris.Uri') return true;
  31. if(jpath=='UANodeSet.UAObject.References.Reference') return true;
  32. if(jpath=='UANodeSet.UAVariable.References.Reference') return true;
  33. return false;
  34. }
  35. }
  36. const parser = new XMLParser(parseOptions);
  37. const jObj = parser.parse(xml);
  38. const nodes:UABaseNode[]=[];
  39. const uaObjects=jObj['UANodeSet']['UAObject'];
  40. for(const uaObject of uaObjects) {
  41. nodes.push(UAObject.parse(uaObject));
  42. }
  43. const uaVariables=jObj['UANodeSet']['UAVariable'];
  44. for(const uaVariable of uaVariables) {
  45. nodes.push(UAVariable.parse(uaVariable));
  46. }
  47. const uaNamespaceUris=jObj['UANodeSet']['NamespaceUris'];
  48. const nst=new NamespaceTable();
  49. if(uaNamespaceUris) {
  50. for(const nsUri of uaNamespaceUris['Uri']) {
  51. nst.addUri(nsUri)
  52. }
  53. }
  54. return new UANodeSet(nodes, nst);
  55. }
  56. }