Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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 io.trino.sql.tree;
import com.google.common.collect.ImmutableList;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import static com.google.common.base.Preconditions.checkArgument;
import static io.trino.sql.tree.JsonValue.EmptyOrErrorBehavior.DEFAULT;
import static java.util.Objects.requireNonNull;
public class JsonValue
extends Expression
{
private final JsonPathInvocation jsonPathInvocation;
private final Optional returnedType;
private final EmptyOrErrorBehavior emptyBehavior;
private final Optional emptyDefault;
private final EmptyOrErrorBehavior errorBehavior;
private final Optional errorDefault;
public JsonValue(
Optional location,
JsonPathInvocation jsonPathInvocation,
Optional returnedType,
EmptyOrErrorBehavior emptyBehavior,
Optional emptyDefault,
EmptyOrErrorBehavior errorBehavior,
Optional errorDefault)
{
super(location);
requireNonNull(jsonPathInvocation, "jsonPathInvocation is null");
requireNonNull(returnedType, "returnedType is null");
requireNonNull(emptyBehavior, "emptyBehavior is null");
requireNonNull(emptyDefault, "emptyDefault is null");
checkArgument(emptyBehavior == DEFAULT || !emptyDefault.isPresent(), "default value can be specified only for DEFAULT ... ON EMPTY option");
checkArgument(emptyBehavior != DEFAULT || emptyDefault.isPresent(), "DEFAULT ... ON EMPTY option requires default value");
requireNonNull(errorBehavior, "errorBehavior is null");
requireNonNull(errorDefault, "errorDefault is null");
checkArgument(errorBehavior == DEFAULT || !errorDefault.isPresent(), "default value can be specified only for DEFAULT ... ON ERROR option");
checkArgument(errorBehavior != DEFAULT || errorDefault.isPresent(), "DEFAULT ... ON ERROR option requires default value");
this.jsonPathInvocation = jsonPathInvocation;
this.returnedType = returnedType;
this.emptyBehavior = emptyBehavior;
this.emptyDefault = emptyDefault;
this.errorBehavior = errorBehavior;
this.errorDefault = errorDefault;
}
public enum EmptyOrErrorBehavior
{
NULL, // default
ERROR,
DEFAULT
}
public JsonPathInvocation getJsonPathInvocation()
{
return jsonPathInvocation;
}
public Optional getReturnedType()
{
return returnedType;
}
public EmptyOrErrorBehavior getEmptyBehavior()
{
return emptyBehavior;
}
public Optional getEmptyDefault()
{
return emptyDefault;
}
public EmptyOrErrorBehavior getErrorBehavior()
{
return errorBehavior;
}
public Optional getErrorDefault()
{
return errorDefault;
}
@Override
public R accept(AstVisitor visitor, C context)
{
return visitor.visitJsonValue(this, context);
}
@Override
public List extends Node> getChildren()
{
ImmutableList.Builder children = ImmutableList.builder();
children.add(jsonPathInvocation);
emptyDefault.ifPresent(children::add);
errorDefault.ifPresent(children::add);
return children.build();
}
@Override
public boolean equals(Object o)
{
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
JsonValue that = (JsonValue) o;
return Objects.equals(jsonPathInvocation, that.jsonPathInvocation) &&
Objects.equals(returnedType, that.returnedType) &&
emptyBehavior == that.emptyBehavior &&
Objects.equals(emptyDefault, that.emptyDefault) &&
errorBehavior == that.errorBehavior &&
Objects.equals(errorDefault, that.errorDefault);
}
@Override
public int hashCode()
{
return Objects.hash(jsonPathInvocation, returnedType, emptyBehavior, emptyDefault, errorBehavior, errorDefault);
}
@Override
public boolean shallowEquals(Node other)
{
if (!sameClass(this, other)) {
return false;
}
JsonValue otherJsonValue = (JsonValue) other;
return returnedType.equals(otherJsonValue.returnedType) &&
emptyBehavior == otherJsonValue.emptyBehavior &&
errorBehavior == otherJsonValue.errorBehavior;
}
}