io.stargate.sgv2.graphql.schema.graphqlfirst.processor.ProcessingMessage Maven / Gradle / Ivy
/*
* Copyright The Stargate 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 io.stargate.sgv2.graphql.schema.graphqlfirst.processor;
import com.google.errorprone.annotations.FormatMethod;
import com.google.errorprone.annotations.FormatString;
import graphql.ErrorClassification;
import graphql.GraphQLError;
import graphql.language.SourceLocation;
import java.util.Collections;
import java.util.List;
/**
* Custom GraphQL error implementation to surface schema processing issues.
*
* Note that we also reuse this for info/warning logs: they're not errors per se, but since they
* share a similar structure it's convenient to factor the code.
*/
public class ProcessingMessage implements GraphQLError {
private final String message;
private final SourceLocation location;
private final TypeT errorType;
@FormatMethod
public static ProcessingMessage log(
SourceLocation location,
ProcessingLogType type,
@FormatString String format,
Object... arguments) {
return new ProcessingMessage<>(location, type, String.format(format, arguments));
}
@FormatMethod
public static ProcessingMessage error(
SourceLocation location,
ProcessingErrorType type,
@FormatString String format,
Object... arguments) {
return new ProcessingMessage<>(location, type, String.format(format, arguments));
}
private ProcessingMessage(SourceLocation location, TypeT errorType, String message) {
this.errorType = errorType;
this.message = message;
this.location = location;
}
@Override
public String getMessage() {
return message;
}
@Override
public List getLocations() {
return location == null ? Collections.emptyList() : Collections.singletonList(location);
}
@Override
public TypeT getErrorType() {
return errorType;
}
@Override
public String toString() {
return "ProcessingMessage{"
+ "message='"
+ message
+ '\''
+ ", location="
+ location
+ ", errorType="
+ errorType
+ '}';
}
}