com.apicatalog.cborld.context.ScalarExpansion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iridium-cbor-ld-jre11 Show documentation
Show all versions of iridium-cbor-ld-jre11 Show documentation
A CBOR-based serialization for Linked Data
The newest version!
/*
* 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.cborld.context;
import java.util.Collection;
import java.util.function.Consumer;
import com.apicatalog.cursor.ValueCursor;
import com.apicatalog.jsonld.JsonLdError;
import com.apicatalog.jsonld.context.ActiveContext;
import com.apicatalog.jsonld.context.TermDefinition;
import com.apicatalog.jsonld.lang.Keywords;
import jakarta.json.JsonValue;
final class ScalarExpansion {
// mandatory
private ActiveContext activeContext;
private JsonValue propertyContext;
private ValueCursor element;
private String activeProperty;
private final Consumer> appliedContexts;
private ScalarExpansion(final ActiveContext activeContext, final JsonValue propertyContext,
final ValueCursor element, final String activeProperty, Consumer> appliedContexts) {
this.activeContext = activeContext;
this.propertyContext = propertyContext;
this.element = element;
this.activeProperty = activeProperty;
this.appliedContexts = appliedContexts;
}
public static final ScalarExpansion with(final ActiveContext activeContext, final JsonValue propertyContext,
final ValueCursor element, final String activeProperty, Consumer> appliedContexts) {
return new ScalarExpansion(activeContext, propertyContext, element, activeProperty, appliedContexts);
}
public JsonValue expand() throws JsonLdError {
/*
* 4.1. If active property is null or @graph, drop the free-floating scalar by
* returning null.
*/
if (activeProperty == null || Keywords.GRAPH.equals(activeProperty)) {
return JsonValue.NULL;
}
/*
* 4.2. If property-scoped context is defined, set active context to the result
* of the Context Processing algorithm, passing active context, property-scoped
* context as local context, and base URL from the term definition for active
* property in active context.
*/
if (propertyContext != null) {
activeContext = activeContext
.newContext()
.create(
propertyContext,
activeContext.getTerm(activeProperty).map(TermDefinition::getBaseUrl).orElse(null)
);
}
return ValueExpasion.with(activeContext, appliedContexts).expand(element, activeProperty);
}
}