-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add SerializableConjureDefinedError and related classes
- Loading branch information
Pritham Marupaka
committed
Oct 22, 2024
1 parent
a6d4cb7
commit ab72159
Showing
11 changed files
with
412 additions
and
121 deletions.
There are no files selected for viewing
72 changes: 72 additions & 0 deletions
72
errors/src/main/java/com/palantir/conjure/java/api/errors/CheckedServiceException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
package com.palantir.conjure.java.api.errors; | ||
|
||
import com.palantir.logsafe.Arg; | ||
import java.util.List; | ||
import javax.annotation.Nullable; | ||
|
||
public abstract class CheckedServiceException extends Exception implements SafeLoggableError { | ||
private static final String EXCEPTION_NAME = "CheckedServiceException"; | ||
|
||
private final ErrorType errorType; | ||
private final List<Arg<?>> args; // unmodifiable | ||
|
||
private final String errorInstanceId; | ||
private final String unsafeMessage; | ||
private final String noArgsMessage; | ||
|
||
/** | ||
* Creates a new exception for the given error. All {@link com.palantir.logsafe.Arg parameters} are propagated to | ||
* clients. | ||
*/ | ||
public CheckedServiceException(ErrorType errorType, Arg<?>... parameters) { | ||
this(errorType, null, parameters); | ||
} | ||
|
||
/** As above, but additionally records the cause of this exception. */ | ||
public CheckedServiceException(ErrorType errorType, @Nullable Throwable cause, Arg<?>... args) { | ||
super(cause); | ||
this.errorInstanceId = SafeLoggableErrorUtils.generateErrorInstanceId(cause); | ||
this.errorType = errorType; | ||
this.args = SafeLoggableErrorUtils.copyToUnmodifiableList(args); | ||
this.unsafeMessage = SafeLoggableErrorUtils.renderUnsafeMessage(EXCEPTION_NAME, errorType, args); | ||
this.noArgsMessage = SafeLoggableErrorUtils.renderNoArgsMessage(EXCEPTION_NAME, errorType); | ||
} | ||
|
||
/** The {@link ErrorType} that gave rise to this exception. */ | ||
@Override | ||
public ErrorType getErrorType() { | ||
return errorType; | ||
} | ||
|
||
/** A unique identifier for (this instance of) this error. */ | ||
@Override | ||
public String getErrorInstanceId() { | ||
return errorInstanceId; | ||
} | ||
|
||
/** | ||
* Java doc. | ||
*/ | ||
@Override | ||
public String getMessage() { | ||
// Including all args here since any logger not configured with safe-logging will log this message. | ||
return unsafeMessage; | ||
} | ||
|
||
/** | ||
* Java doc. | ||
*/ | ||
@Override | ||
public String getLogMessage() { | ||
// Not returning safe args here since the safe-logging framework will log this message + args explicitly. | ||
return noArgsMessage; | ||
} | ||
|
||
/** | ||
* Java doc. | ||
*/ | ||
@Override | ||
public List<Arg<?>> getArgs() { | ||
return args; | ||
} | ||
} |
16 changes: 0 additions & 16 deletions
16
errors/src/main/java/com/palantir/conjure/java/api/errors/ConjureDefinedError.java
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
errors/src/main/java/com/palantir/conjure/java/api/errors/ConjureDefinedRemoteException.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
errors/src/main/java/com/palantir/conjure/java/api/errors/SafeLoggableError.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* (c) Copyright 2024 Palantir Technologies Inc. All rights reserved. | ||
* | ||
* 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.palantir.conjure.java.api.errors; | ||
|
||
import com.palantir.logsafe.SafeLoggable; | ||
|
||
public interface SafeLoggableError extends SafeLoggable { | ||
/** The {@link ErrorType} that gave rise to this exception. */ | ||
ErrorType getErrorType(); | ||
|
||
/** A unique identifier for (this instance of) this error. */ | ||
String getErrorInstanceId(); | ||
} |
101 changes: 101 additions & 0 deletions
101
errors/src/main/java/com/palantir/conjure/java/api/errors/SafeLoggableErrorUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
/* | ||
* (c) Copyright 2024 Palantir Technologies Inc. All rights reserved. | ||
* | ||
* 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.palantir.conjure.java.api.errors; | ||
|
||
import com.palantir.logsafe.Arg; | ||
import com.palantir.tritium.ids.UniqueIds; | ||
import java.util.ArrayList; | ||
import java.util.Collections; | ||
import java.util.IdentityHashMap; | ||
import java.util.List; | ||
import java.util.Set; | ||
import javax.annotation.Nullable; | ||
|
||
final class SafeLoggableErrorUtils { | ||
private SafeLoggableErrorUtils() {} | ||
|
||
/** | ||
* Finds the errorInstanceId of the most recent cause if present, otherwise generates a new random identifier. Note | ||
* that this only searches {@link Throwable#getCause() causal exceptions}, not {@link Throwable#getSuppressed() | ||
* suppressed causes}. | ||
*/ | ||
static String generateErrorInstanceId(@Nullable Throwable cause) { | ||
return generateErrorInstanceId(cause, Collections.newSetFromMap(new IdentityHashMap<>())); | ||
} | ||
|
||
static String generateErrorInstanceId( | ||
@Nullable Throwable cause, | ||
// Guard against cause cycles, see Throwable.printStackTrace(PrintStreamOrWriter) | ||
Set<Throwable> dejaVu) { | ||
if (cause == null || !dejaVu.add(cause)) { | ||
// we don't need cryptographically secure random UUIDs | ||
return UniqueIds.pseudoRandomUuidV4().toString(); | ||
} | ||
if (cause instanceof ServiceException) { | ||
return ((ServiceException) cause).getErrorInstanceId(); | ||
} | ||
if (cause instanceof CheckedServiceException) { | ||
return ((CheckedServiceException) cause).getErrorInstanceId(); | ||
} | ||
if (cause instanceof RemoteException) { | ||
return ((RemoteException) cause).getError().errorInstanceId(); | ||
} | ||
return generateErrorInstanceId(cause.getCause(), dejaVu); | ||
} | ||
|
||
static <T> List<T> copyToUnmodifiableList(T[] elements) { | ||
if (elements == null || elements.length == 0) { | ||
return Collections.emptyList(); | ||
} | ||
List<T> list = new ArrayList<>(elements.length); | ||
for (T item : elements) { | ||
if (item != null) { | ||
list.add(item); | ||
} | ||
} | ||
return Collections.unmodifiableList(list); | ||
} | ||
|
||
static String renderUnsafeMessage(String exceptionName, ErrorType errorType, Arg<?>... args) { | ||
String message = renderNoArgsMessage(exceptionName, errorType); | ||
|
||
if (args == null || args.length == 0) { | ||
return message; | ||
} | ||
|
||
StringBuilder builder = new StringBuilder(); | ||
boolean first = true; | ||
builder.append(message).append(": {"); | ||
for (Arg<?> arg : args) { | ||
if (arg != null) { | ||
if (first) { | ||
first = false; | ||
} else { | ||
builder.append(", "); | ||
} | ||
builder.append(arg.getName()).append("=").append(arg.getValue()); | ||
} | ||
} | ||
builder.append("}"); | ||
|
||
return builder.toString(); | ||
} | ||
|
||
static String renderNoArgsMessage(String exceptionName, ErrorType errorType) { | ||
return exceptionName + ": " + errorType.code() + " (" + errorType.name() + ")"; | ||
} | ||
} |
74 changes: 74 additions & 0 deletions
74
...s/src/main/java/com/palantir/conjure/java/api/errors/SerializableConjureDefinedError.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/* | ||
* (c) Copyright 2024 Palantir Technologies Inc. All rights reserved. | ||
* | ||
* 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.palantir.conjure.java.api.errors; | ||
|
||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.fasterxml.jackson.databind.annotation.JsonDeserialize; | ||
import com.fasterxml.jackson.databind.annotation.JsonSerialize; | ||
import java.io.Serializable; | ||
import java.util.List; | ||
import org.immutables.value.Value; | ||
|
||
@SuppressWarnings("ImmutablesStyle") | ||
@JsonDeserialize(builder = SerializableConjureDefinedError.Builder.class) | ||
@JsonSerialize(as = ImmutableSerializableConjureDefinedError.class) | ||
@Value.Immutable | ||
@Value.Style(overshadowImplementation = false) | ||
@JsonIgnoreProperties(ignoreUnknown = true) | ||
public abstract class SerializableConjureDefinedError implements Serializable { | ||
|
||
@JsonProperty("errorCode") | ||
public abstract String errorCode(); | ||
|
||
@JsonProperty("errorName") | ||
public abstract String errorName(); | ||
|
||
@JsonProperty("errorInstanceId") | ||
@Value.Default | ||
@SuppressWarnings("checkstyle:designforextension") | ||
public String errorInstanceId() { | ||
return ""; | ||
} | ||
|
||
/** A set of parameters that further explain the error. It's up to the creator of this object to serialize the value | ||
* in SerializableConjureErrorParameter. | ||
**/ | ||
public abstract List<SerializableConjureErrorParameter> parameters(); | ||
|
||
// In Conjure-Java - ConjureExceptions.java we'd create this object: | ||
// public static SerializableConjureDefinedError forException(CheckedServiceException exception) { | ||
// return builder() | ||
// .errorCode(exception.getErrorType().code().name()) | ||
// .errorName(exception.getErrorType().name()) | ||
// .errorInstanceId(exception.getErrorInstanceId()) | ||
// .parameters(exception.getArgs().stream() | ||
// .map(arg -> SerializableConjureErrorParameter.builder() | ||
// .name(arg.getName()) | ||
// .serializedValue() // Serialize the parameter | ||
// .isSafeForLogging(arg.isSafeForLogging()) | ||
// .build()) | ||
// .toList()) | ||
// .build(); | ||
// } | ||
|
||
public static final class Builder extends ImmutableSerializableConjureDefinedError.Builder {} | ||
|
||
public static Builder builder() { | ||
return new Builder(); | ||
} | ||
} |
49 changes: 49 additions & 0 deletions
49
...src/main/java/com/palantir/conjure/java/api/errors/SerializableConjureErrorParameter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
* (c) Copyright 2024 Palantir Technologies Inc. All rights reserved. | ||
* | ||
* 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.palantir.conjure.java.api.errors; | ||
|
||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.fasterxml.jackson.databind.annotation.JsonDeserialize; | ||
import com.fasterxml.jackson.databind.annotation.JsonSerialize; | ||
import java.io.Serializable; | ||
import org.immutables.value.Value; | ||
|
||
@SuppressWarnings("ImmutablesStyle") | ||
@JsonDeserialize(builder = SerializableConjureErrorParameter.Builder.class) | ||
@JsonSerialize(as = ImmutableSerializableConjureErrorParameter.class) | ||
@Value.Immutable | ||
// This ensures that build() will return the concrete ImmutableSer... and not the abstract type. | ||
@Value.Style(overshadowImplementation = false) | ||
@JsonIgnoreProperties(ignoreUnknown = true) | ||
public abstract class SerializableConjureErrorParameter implements Serializable { | ||
|
||
@JsonProperty("name") | ||
public abstract String name(); | ||
|
||
@JsonProperty("serializedValue") | ||
public abstract String serializedValue(); | ||
|
||
@JsonProperty("isSafeForLogging") | ||
public abstract boolean isSafeForLogging(); | ||
|
||
public static final class Builder extends ImmutableSerializableConjureErrorParameter.Builder {} | ||
|
||
public static Builder builder() { | ||
return new Builder(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.