com.github.jsonldjava.tools.Playground Maven / Gradle / Ivy
package com.github.jsonldjava.tools;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStreamReader;
import java.util.Map;
import java.util.Map.Entry;
import java.util.regex.Pattern;
import com.github.jsonldjava.core.JsonLdError;
import com.github.jsonldjava.core.JsonLdOptions;
import com.github.jsonldjava.core.JsonLdProcessor;
import com.github.jsonldjava.utils.JsonUtils;
public class Playground {
static boolean validOption(String opt) {
return "--ignorekeys".equals(opt) || "--expand".equals(opt) || "--compact".equals(opt)
|| "--frame".equals(opt) || "--normalize".equals(opt) || "--simplify".equals(opt)
|| "--debug".equals(opt) || "--base".equals(opt) || "--flatten".equals(opt)
|| "--fromRDF".equals(opt) || "--toRDF".equals(opt) || "--outputForm".equals(opt);
}
static boolean hasContext(String opt) {
return "--compact".equals(opt) || "--frame".equals(opt) || "--flatten".equals(opt);
}
public static void main(String[] args) {
boolean debug = false;
try {
if (args.length < 2 || !args[0].startsWith("--")) {
usage();
} else {
final JsonLdOptions opts = new JsonLdOptions("");
Object inobj = null;
Object ctxobj = null;
String opt = null;
for (int i = 0; i < args.length;) {
if ("--debug".equals(args[i])) {
i++;
debug = true;
} else if ("--base".equals(args[i])) {
i++;
opts.setBase(args[i++]);
} else if ("--outputForm".equals(args[i])) {
i++;
opts.outputForm = args[i++];
} else if (validOption(args[i])) {
if (opt != null) {
System.out
.println("Error: can only do one operation on the input at a time");
usage();
return;
}
opt = args[i];
i++;
if (args.length <= i) {
System.out.println("Error: missing file names after argument "
+ args[i - 1]);
usage();
return;
}
File in = new File(args[i++]);
if (!in.exists()) {
System.out.println("Error: file \"" + args[i - 1] + "\" doesn't exist");
usage();
return;
}
// if base is currently null, set it
if (opts.getBase() == null || opts.getBase().equals("")) {
opts.setBase(in.toURI().toASCIIString());
}
if ("--fromRDF".equals(opt)) {
final BufferedReader buf = new BufferedReader(new InputStreamReader(
new FileInputStream(in), "UTF-8"));
inobj = "";
String line;
while ((line = buf.readLine()) != null) {
line = line.trim();
if (line.length() == 0 || line.charAt(0) == '#') {
continue;
}
inobj = ((String) inobj) + line + "\n";
}
} else {
inobj = JsonUtils.fromInputStream(new FileInputStream(in));
}
if ("--fromRDF".equals(opt) || "--toRDF".equals(opt)
|| "--normalize".equals(opt)) {
// get format option
if (args.length > i && !args[i].startsWith("--")) {
opts.format = args[i++];
// remove any quotes
if (Pattern.matches("^['\"`].*['\"`]$", opts.format)) {
opts.format = opts.format
.substring(1, opts.format.length() - 1);
}
}
// default to nquads
if (opts.format == null || "null".equals(opts.format)) {
opts.format = "application/nquads";
}
} else if (hasContext(opt)) {
if (args.length > i) {
in = new File(args[i++]);
if (!in.exists()) {
if (args[i - 1].startsWith("--")) {
// the frame is optional, so if it turns
// out we have another option after the
// --frame options
// we have to make sure we process it
i--;
} else {
System.out.println("Error: file \"" + args[i - 1]
+ "\" doesn't exist");
usage();
return;
}
}
ctxobj = JsonUtils.fromInputStream(new FileInputStream(in));
}
}
} else {
System.out.println("Invalid option: " + args[i]);
usage();
return;
}
}
if (opt == null) {
System.out.println("Error: missing processing option");
usage();
return;
}
Object outobj = null;
if ("--expand".equals(opt)) {
outobj = JsonLdProcessor.expand(inobj, opts);
} else if ("--compact".equals(opt)) {
if (ctxobj == null) {
System.out.println("Error: The compaction context must not be null.");
usage();
return;
}
outobj = JsonLdProcessor.compact(inobj, ctxobj, opts);
} else if ("--normalize".equals(opt)) {
outobj = JsonLdProcessor.normalize(inobj, opts);
} else if ("--frame".equals(opt)) {
if (ctxobj != null && !(ctxobj instanceof Map)) {
System.out
.println("Invalid JSON-LD syntax; a JSON-LD frame must be a single object.");
usage();
return;
}
outobj = JsonLdProcessor.frame(inobj, ctxobj, opts);
} else if ("--flatten".equals(opt)) {
outobj = JsonLdProcessor.flatten(inobj, ctxobj, opts);
} else if ("--toRDF".equals(opt)) {
opts.useNamespaces = true;
outobj = JsonLdProcessor.toRDF(inobj, opts);
} else if ("--fromRDF".equals(opt)) {
outobj = JsonLdProcessor.fromRDF(inobj, opts);
} else {
System.out.println("Error: invalid option \"" + opt + "\"");
usage();
return;
}
if ("--toRDF".equals(opt) || "--normalize".equals(opt)) {
System.out.println((String) outobj);
} else {
System.out.println(JsonUtils.toPrettyString(outobj));
}
}
} catch (final Exception e) {
System.out.println("ERROR: " + e.getMessage());
if (e instanceof JsonLdError) {
for (final Entry detail : ((JsonLdError) e).getDetails().entrySet()) {
System.out.println(detail.getKey() + ": " + detail.getValue());
}
}
if (debug) {
e.printStackTrace();
}
usage();
return;
}
}
private static void usage() {
System.out.println("Usage: jsonldplayground ");
System.out.println("\tinput: a filename or JsonLdUrl to the rdf input (in rdfxml or n3)");
System.out.println("\toptions:");
System.out
.println("\t\t--ignorekeys : a (space separated) list of keys to ignore (e.g. @geojson)");
System.out.println("\t\t--base : base URI");
System.out.println("\t\t--debug: Print out stack traces when errors occur");
System.out.println("\t\t--expand : expand the input JSON-LD");
System.out
.println("\t\t--compact : compact the input JSON-LD applying the optional context file");
System.out
.println("\t\t--normalize : normalize the input JSON-LD outputting as format (defaults to nquad)");
System.out
.println("\t\t--frame : frame the input JSON-LD with the optional frame file");
System.out
.println("\t\t--flatten : flatten the input JSON-LD applying the optional context file");
System.out
.println("\t\t--fromRDF : generate JSON-LD from the input rdf (format defaults to nquads)");
System.out
.println("\t\t--toRDF : generate RDF from the input JSON-LD (format defaults to nquads)");
System.out
.println("\t\t--outputForm [compacted|expanded|flattened] : the way to output the results from fromRDF (defaults to expanded)");
System.out.println("\t\t--simplify : simplify the input JSON-LD");
System.exit(1);
}
}