org.eclipse.ditto.connectivity.model.ImmutableEnforcement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ditto-connectivity-model Show documentation
Show all versions of ditto-connectivity-model Show documentation
Eclipse Ditto is a framework for creating and managing digital twins in the IoT.
The newest version!
/*
* Copyright (c) 2017 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*/
package org.eclipse.ditto.connectivity.model;
import java.util.Collections;
import java.util.LinkedHashSet;
import java.util.Objects;
import java.util.Set;
import java.util.function.Predicate;
import java.util.stream.Collectors;
import javax.annotation.concurrent.Immutable;
import org.eclipse.ditto.base.model.json.JsonSchemaVersion;
import org.eclipse.ditto.json.JsonCollectors;
import org.eclipse.ditto.json.JsonFactory;
import org.eclipse.ditto.json.JsonField;
import org.eclipse.ditto.json.JsonObject;
import org.eclipse.ditto.json.JsonObjectBuilder;
import org.eclipse.ditto.json.JsonValue;
/**
* Immutable implementation of {@link Enforcement}.
*/
@Immutable
final class ImmutableEnforcement implements Enforcement {
private final String input;
private final Set filters;
private ImmutableEnforcement(final String input, final Set filters) {
this.input = input;
this.filters = Collections.unmodifiableSet(new LinkedHashSet<>(filters));
}
/**
* Creates a new ImmutableEnforcement instance.
*
* @param input input the string to match against filters.
* @param filters filters to match against the input .
* @return new ImmutableEnforcement instance
*/
static ImmutableEnforcement of(final String input, final Set filters) {
return new ImmutableEnforcement(input, filters);
}
@Override
public String getInput() {
return input;
}
@Override
public Set getFilters() {
return filters;
}
@Override
public JsonObject toJson(final JsonSchemaVersion schemaVersion, final Predicate thePredicate) {
final Predicate predicate = schemaVersion.and(thePredicate);
final JsonObjectBuilder jsonObjectBuilder = JsonFactory.newObjectBuilder();
jsonObjectBuilder.set(JsonFields.INPUT, input, predicate);
jsonObjectBuilder.set(JsonFields.FILTERS, filters.stream()
.map(JsonFactory::newValue)
.collect(JsonCollectors.valuesToArray()), predicate.and(Objects::nonNull));
return jsonObjectBuilder.build();
}
/**
* Creates a new {@code Enforcement} object from the specified JSON object.
*
* @param jsonObject a JSON object which provides the data for the Enforcement to be created.
* @return a new Enforcement which is initialised with the extracted data from {@code jsonObject}.
* @throws NullPointerException if {@code jsonObject} is {@code null}.
* @throws org.eclipse.ditto.json.JsonParseException if {@code jsonObject} is not an appropriate JSON object.
*/
public static Enforcement fromJson(final JsonObject jsonObject) {
final Set readFilters = jsonObject.getValue(JsonFields.FILTERS)
.map(array -> array.stream()
.map(JsonValue::asString)
.collect(Collectors.toCollection(LinkedHashSet::new)))
.orElseGet(LinkedHashSet::new);
final String readInput =
jsonObject.getValueOrThrow(JsonFields.INPUT);
return new ImmutableEnforcement(readInput, readFilters);
}
@Override
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
final ImmutableEnforcement that = (ImmutableEnforcement) o;
return Objects.equals(input, that.input) &&
Objects.equals(filters, that.filters);
}
@Override
public int hashCode() {
return Objects.hash(input, filters);
}
@Override
public String toString() {
return getClass().getSimpleName() + " [" +
"input=" + input +
", filters=" + filters +
"]";
}
}