use of com.networknt.schema.JsonSchemaFactory in project vscode-nextgenas by BowlerHatLLC.
the class ASConfigProjectConfigStrategy method getOptions.
public ProjectOptions getOptions() {
changed = false;
if (asconfigPath == null) {
return null;
}
File asconfigFile = asconfigPath.toFile();
if (!asconfigFile.exists()) {
return null;
}
Path projectRoot = asconfigPath.getParent();
ProjectType type = ProjectType.APP;
String config = "flex";
String[] files = null;
String additionalOptions = null;
CompilerOptions compilerOptions = new CompilerOptions();
try (InputStream schemaInputStream = getClass().getResourceAsStream("/schemas/asconfig.schema.json")) {
JsonSchemaFactory factory = new JsonSchemaFactory();
JsonSchema schema = factory.getSchema(schemaInputStream);
String contents = FileUtils.readFileToString(asconfigFile);
ObjectMapper mapper = new ObjectMapper();
//VSCode allows comments, so we should too
mapper.configure(JsonParser.Feature.ALLOW_COMMENTS, true);
JsonNode json = mapper.readTree(contents);
Set<ValidationMessage> errors = schema.validate(json);
if (!errors.isEmpty()) {
System.err.println("Failed to validate asconfig.json.");
for (ValidationMessage error : errors) {
System.err.println(error.toString());
}
return null;
} else {
if (//optional, defaults to "app"
json.has(ProjectOptions.TYPE)) {
String typeString = json.get(ProjectOptions.TYPE).asText();
type = ProjectType.fromToken(typeString);
}
if (//optional, defaults to "flex"
json.has(ProjectOptions.CONFIG)) {
config = json.get(ProjectOptions.CONFIG).asText();
}
if (//optional
json.has(ProjectOptions.FILES)) {
JsonNode jsonFiles = json.get(ProjectOptions.FILES);
int fileCount = jsonFiles.size();
files = new String[fileCount];
for (int i = 0; i < fileCount; i++) {
String pathString = jsonFiles.get(i).asText();
Path filePath = projectRoot.resolve(pathString);
files[i] = filePath.toString();
}
}
if (//optional
json.has(ProjectOptions.COMPILER_OPTIONS)) {
JsonNode jsonCompilerOptions = json.get(ProjectOptions.COMPILER_OPTIONS);
if (jsonCompilerOptions.has(CompilerOptions.DEBUG)) {
compilerOptions.debug = jsonCompilerOptions.get(CompilerOptions.DEBUG).asBoolean();
}
if (jsonCompilerOptions.has(CompilerOptions.DEFINE)) {
HashMap<String, String> defines = new HashMap<>();
JsonNode jsonDefine = jsonCompilerOptions.get(CompilerOptions.DEFINE);
for (int i = 0, count = jsonDefine.size(); i < count; i++) {
JsonNode jsonNamespace = jsonDefine.get(i);
String name = jsonNamespace.get(CompilerOptions.DEFINE_NAME).asText();
JsonNode jsonValue = jsonNamespace.get(CompilerOptions.DEFINE_VALUE);
String value = jsonValue.asText();
if (jsonValue.isTextual()) {
value = "\"" + value + "\"";
}
defines.put(name, value.toString());
}
compilerOptions.defines = defines;
}
if (jsonCompilerOptions.has(CompilerOptions.EXTERNAL_LIBRARY_PATH)) {
JsonNode jsonExternalLibraryPath = jsonCompilerOptions.get(CompilerOptions.EXTERNAL_LIBRARY_PATH);
compilerOptions.externalLibraryPath = jsonPathsToList(jsonExternalLibraryPath, projectRoot);
}
if (jsonCompilerOptions.has(CompilerOptions.JS_EXTERNAL_LIBRARY_PATH)) {
JsonNode jsonExternalLibraryPath = jsonCompilerOptions.get(CompilerOptions.JS_EXTERNAL_LIBRARY_PATH);
compilerOptions.jsExternalLibraryPath = jsonPathsToList(jsonExternalLibraryPath, projectRoot);
}
if (jsonCompilerOptions.has(CompilerOptions.SWF_EXTERNAL_LIBRARY_PATH)) {
JsonNode jsonExternalLibraryPath = jsonCompilerOptions.get(CompilerOptions.SWF_EXTERNAL_LIBRARY_PATH);
compilerOptions.swfExternalLibraryPath = jsonPathsToList(jsonExternalLibraryPath, projectRoot);
}
if (jsonCompilerOptions.has(CompilerOptions.INCLUDE_CLASSES)) {
JsonNode jsonIncludeClasses = jsonCompilerOptions.get(CompilerOptions.INCLUDE_CLASSES);
ArrayList<String> includeClasses = new ArrayList<>();
for (int i = 0, count = jsonIncludeClasses.size(); i < count; i++) {
String qualifiedName = jsonIncludeClasses.get(i).asText();
includeClasses.add(qualifiedName);
}
compilerOptions.includeClasses = includeClasses;
}
if (jsonCompilerOptions.has(CompilerOptions.INCLUDE_NAMESPACES)) {
JsonNode jsonIncludeNamespaces = jsonCompilerOptions.get(CompilerOptions.INCLUDE_NAMESPACES);
ArrayList<String> includeNamespaces = new ArrayList<>();
for (int i = 0, count = jsonIncludeNamespaces.size(); i < count; i++) {
String namespaceURI = jsonIncludeNamespaces.get(i).asText();
includeNamespaces.add(namespaceURI);
}
compilerOptions.includeNamespaces = includeNamespaces;
}
if (jsonCompilerOptions.has(CompilerOptions.INCLUDE_SOURCES)) {
JsonNode jsonIncludeSources = jsonCompilerOptions.get(CompilerOptions.INCLUDE_SOURCES);
compilerOptions.includeSources = jsonPathsToList(jsonIncludeSources, projectRoot);
}
if (jsonCompilerOptions.has(CompilerOptions.JS_OUTPUT_TYPE)) {
String jsonJSOutputType = jsonCompilerOptions.get(CompilerOptions.JS_OUTPUT_TYPE).asText();
compilerOptions.jsOutputType = jsonJSOutputType;
}
if (jsonCompilerOptions.has(CompilerOptions.NAMESPACE)) {
JsonNode jsonLibraryPath = jsonCompilerOptions.get(CompilerOptions.NAMESPACE);
ArrayList<MXMLNamespaceMapping> namespaceMappings = new ArrayList<>();
for (int i = 0, count = jsonLibraryPath.size(); i < count; i++) {
JsonNode jsonNamespace = jsonLibraryPath.get(i);
String uri = jsonNamespace.get(CompilerOptions.NAMESPACE_URI).asText();
String manifest = jsonNamespace.get(CompilerOptions.NAMESPACE_MANIFEST).asText();
MXMLNamespaceMapping mapping = new MXMLNamespaceMapping(uri, manifest);
namespaceMappings.add(mapping);
}
compilerOptions.namespaceMappings = namespaceMappings;
}
if (jsonCompilerOptions.has(CompilerOptions.LIBRARY_PATH)) {
JsonNode jsonLibraryPath = jsonCompilerOptions.get(CompilerOptions.LIBRARY_PATH);
compilerOptions.libraryPath = jsonPathsToList(jsonLibraryPath, projectRoot);
}
if (jsonCompilerOptions.has(CompilerOptions.JS_LIBRARY_PATH)) {
JsonNode jsonLibraryPath = jsonCompilerOptions.get(CompilerOptions.JS_LIBRARY_PATH);
compilerOptions.jsLibraryPath = jsonPathsToList(jsonLibraryPath, projectRoot);
}
if (jsonCompilerOptions.has(CompilerOptions.SWF_LIBRARY_PATH)) {
JsonNode jsonLibraryPath = jsonCompilerOptions.get(CompilerOptions.SWF_LIBRARY_PATH);
compilerOptions.swfLibraryPath = jsonPathsToList(jsonLibraryPath, projectRoot);
}
if (jsonCompilerOptions.has(CompilerOptions.SOURCE_PATH)) {
JsonNode jsonSourcePath = jsonCompilerOptions.get(CompilerOptions.SOURCE_PATH);
compilerOptions.sourcePath = jsonPathsToList(jsonSourcePath, projectRoot);
}
if (jsonCompilerOptions.has(CompilerOptions.TARGETS)) {
JsonNode jsonTargets = jsonCompilerOptions.get(CompilerOptions.TARGETS);
ArrayList<String> targets = new ArrayList<>();
for (int i = 0, count = jsonTargets.size(); i < count; i++) {
String target = jsonTargets.get(i).asText();
targets.add(target);
}
compilerOptions.targets = targets;
}
if (jsonCompilerOptions.has(CompilerOptions.WARNINGS)) {
compilerOptions.warnings = jsonCompilerOptions.get(CompilerOptions.WARNINGS).asBoolean();
}
}
//these options are formatted as if sent in through the command line
if (//optional
json.has(ProjectOptions.ADDITIONAL_OPTIONS)) {
additionalOptions = json.get(ProjectOptions.ADDITIONAL_OPTIONS).asText();
}
}
} catch (Exception e) {
System.err.println("Failed to parse asconfig.json: " + e);
e.printStackTrace();
return null;
}
//include-sources compiler option
if (type == ProjectType.LIB && files != null) {
if (compilerOptions.includeSources == null) {
compilerOptions.includeSources = new ArrayList<>();
}
for (int i = 0, count = files.length; i < count; i++) {
String filePath = files[i];
compilerOptions.includeSources.add(new File(filePath));
}
files = null;
}
ProjectOptions options = new ProjectOptions();
options.type = type;
options.config = config;
options.files = files;
options.compilerOptions = compilerOptions;
options.additionalOptions = additionalOptions;
return options;
}
use of com.networknt.schema.JsonSchemaFactory in project SONG by overture-stack.
the class schemaValidationTests method getJsonSchemaFromClasspath.
protected JsonSchema getJsonSchemaFromClasspath(String name) throws Exception {
JsonSchemaFactory factory = new JsonSchemaFactory();
InputStream is = Thread.currentThread().getContextClassLoader().getResourceAsStream(name);
JsonSchema schema = factory.getSchema(is);
return schema;
}
use of com.networknt.schema.JsonSchemaFactory in project SONG by overture-stack.
the class JsonSchemaUtils method getJsonSchemaFromClasspath.
@SneakyThrows
public static JsonSchema getJsonSchemaFromClasspath(String fileName) {
JsonSchemaFactory factory = new JsonSchemaFactory();
InputStream is = Thread.currentThread().getContextClassLoader().getResourceAsStream(fileName);
JsonSchema schema = factory.getSchema(is);
return schema;
}
use of com.networknt.schema.JsonSchemaFactory in project SONG by overture-stack.
the class JsonSchemaUtils method getJsonSchema.
@SneakyThrows
public static JsonSchema getJsonSchema(JsonNode node) {
JsonSchemaFactory factory = new JsonSchemaFactory();
JsonSchema schema = factory.getSchema(node);
return schema;
}
use of com.networknt.schema.JsonSchemaFactory in project fabric8-maven-plugin by fabric8io.
the class ResourceValidator method getJsonSchema.
private JsonSchema getJsonSchema(URI schemaUrl, String kind) throws IOException {
checkIfKindPropertyExists(kind);
JsonSchemaFactory factory = new JsonSchemaFactory();
JSONObject jsonSchema = getSchemaJson(schemaUrl);
getResourceProperties(kind, jsonSchema);
return factory.getSchema(jsonSchema.toString());
}
Aggregations