org.restheart.graphql.scalars.bsonCoercing.GraphQLBsonInt64Coercing Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of restheart-graphql Show documentation
Show all versions of restheart-graphql Show documentation
RESTHeart MongoDB - GraphQL plugin
/*-
* ========================LICENSE_START=================================
* restheart-graphql
* %%
* Copyright (C) 2020 - 2024 SoftInstigate
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
* =========================LICENSE_END==================================
*/
package org.restheart.graphql.scalars.bsonCoercing;
import java.util.Locale;
import org.bson.BsonInt64;
import org.bson.BsonNull;
import static org.restheart.graphql.scalars.bsonCoercing.CoercingUtils.typeName;
import graphql.GraphQLContext;
import graphql.execution.CoercedVariables;
import graphql.language.Value;
import graphql.schema.Coercing;
import graphql.schema.CoercingParseLiteralException;
import graphql.schema.CoercingParseValueException;
import graphql.schema.CoercingSerializeException;
public class GraphQLBsonInt64Coercing implements Coercing {
@Override
public Long serialize(Object input, GraphQLContext graphQLContext, Locale locale) throws CoercingSerializeException {
if(input == null || input instanceof BsonNull) {
return null;
} else if (input instanceof BsonInt64 bsonInt64) {
return bsonInt64.getValue();
} else if (input instanceof Long value) {
return value;
}else {
throw new CoercingParseValueException("Expected types 'Long' or 'BsonInt64' but was '" + typeName(input) + ".");
}
}
@Override
public Long parseValue(Object input, GraphQLContext graphQLContext, Locale locale) throws CoercingParseValueException {
return (Long) CoercingUtils.builtInCoercing.get("Long").parseValue(input, graphQLContext, locale);
}
@Override
public Long parseLiteral(Value> input, CoercedVariables variables, GraphQLContext graphQLContext, Locale locale) throws CoercingParseLiteralException {
return (Long) CoercingUtils.builtInCoercing.get("Long").parseLiteral(input, variables, graphQLContext, locale);
}
@Override
public Value> valueToLiteral(Object input, GraphQLContext graphQLContext, Locale locale) {
return CoercingUtils.builtInCoercing.get("Long").valueToLiteral(input, graphQLContext, locale);
}
}