-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathvalidate.ts
52 lines (48 loc) · 1.27 KB
/
validate.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import { schemaXML } from "@mml-io/mml-schema";
import { XmlDocument, XmlError, XmlValidateError, XsdValidator } from "libxml2-wasm";
export interface ValidationError extends Error {
/**
* The message of the error during processing.
*/
message: string;
/**
* The filename
*/
file?: string;
/**
* The line number of the xml file, where the error is occurred.
*/
line: number;
/**
* The column number of the xml file, where the error is occurred.
*/
col: number;
}
export function validateMMLDocument(xml: string | Buffer): null | ValidationError[] {
const parsedXML = XmlDocument.fromString(xml.toString());
const parsedSchema = XmlDocument.fromString(schemaXML.toString());
const validator = XsdValidator.fromDoc(parsedSchema);
let error: XmlValidateError | XmlError | null = null;
try {
validator.validate(parsedXML);
} catch (e) {
error = e;
}
parsedXML.dispose();
parsedSchema.dispose();
validator.dispose();
if (error) {
if (error instanceof XmlValidateError) {
return error.details.map((detail) => ({
name: "ValidationError",
message: detail.message,
file: detail.file,
line: detail.line,
col: detail.col,
}));
} else {
throw error;
}
}
return null;
}