com.apicatalog.jsonld.api.FlatteningApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of titanium-json-ld Show documentation
Show all versions of titanium-json-ld Show documentation
A JSON-LD 1.1 Processor & API
/*
* Copyright 2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.apicatalog.jsonld.api;
import java.net.URI;
import com.apicatalog.jsonld.JsonLdError;
import com.apicatalog.jsonld.JsonLdOptions;
import com.apicatalog.jsonld.JsonLdVersion;
import com.apicatalog.jsonld.document.Document;
import com.apicatalog.jsonld.document.JsonDocument;
import com.apicatalog.jsonld.loader.DocumentLoader;
import com.apicatalog.jsonld.processor.FlatteningProcessor;
import com.apicatalog.jsonld.uri.UriUtils;
import jakarta.json.JsonStructure;
public final class FlatteningApi implements CommonApi, LoaderApi, ContextApi {
// required
private final URI documentUri;
private final Document document;
// optional
private Document context;
private URI contextUri;
private JsonLdOptions options;
public FlatteningApi(URI documentUri) {
this.document = null;
this.documentUri = documentUri;
this.context = null;
this.contextUri = null;
this.options = new JsonLdOptions();
}
public FlatteningApi(Document document) {
this.document = document;
this.documentUri = null;
this.context = null;
this.contextUri = null;
this.options = new JsonLdOptions();
}
@Override
public FlatteningApi options(JsonLdOptions options) {
if (options == null) {
throw new IllegalArgumentException("Parameter 'options' is null.");
}
this.options = options;
return this;
}
@Override
public FlatteningApi mode(JsonLdVersion processingMode) {
options.setProcessingMode(processingMode);
return this;
}
@Override
public FlatteningApi base(URI baseUri) {
options.setBase(baseUri);
return this;
}
public FlatteningApi compactArrays(boolean enable) {
options.setCompactArrays(enable);
return this;
}
public FlatteningApi compactArrays() {
return compactArrays(true);
}
@Override
public FlatteningApi loader(DocumentLoader loader) {
options.setDocumentLoader(loader);
return this;
}
@Override
public FlatteningApi ordered(boolean enable) {
options.setOrdered(enable);
return this;
}
@Override
public FlatteningApi context(URI contextUri) {
this.contextUri = contextUri;
return this;
}
@Override
public FlatteningApi context(final String contextLocation) {
URI contextUri = null;
if (contextLocation != null) {
contextUri = UriUtils.create(contextLocation);
if (contextUri == null) {
throw new IllegalArgumentException("Context location must be valid URI or null but is [" + contextLocation + ".");
}
}
return context(contextUri);
}
@Override
public FlatteningApi context(JsonStructure context) {
this.context = context != null ? JsonDocument.of(context) : null;
return this;
}
@Override
public FlatteningApi context(Document context) {
this.context = context;
return this;
}
/**
* Get the result of flattening.
*
* @return {@link JsonStructure} representing flattened document
* @throws JsonLdError
*/
public JsonStructure get() throws JsonLdError {
if (document != null && context != null) {
return FlatteningProcessor.flatten(document, context, options);
}
if (document != null && contextUri != null) {
return FlatteningProcessor.flatten(document, contextUri, options);
}
if (document != null) {
return FlatteningProcessor.flatten(document, (Document)null, options);
}
if (documentUri != null && context != null) {
return FlatteningProcessor.flatten(documentUri, context, options);
}
if (documentUri != null && contextUri != null) {
return FlatteningProcessor.flatten(documentUri, contextUri, options);
}
if (documentUri != null) {
return FlatteningProcessor.flatten(documentUri, (Document)null, options);
}
throw new IllegalStateException();
}
}