blob: 5652556b03b6f6d83a28f185a0c63424dafdadbe [file] [log] [blame]
/**
* Copyright (C) 2022 The Android Open Source Project
*
* 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.android.remoteprovisioner;
import android.annotation.IntDef;
import android.security.IGenerateRkpKeyService.Status;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* Represents an error that occurred while contacting the remote key provisioning server.
*/
public final class RemoteProvisioningException extends Exception {
/** @hide */
@Retention(RetentionPolicy.SOURCE)
@IntDef(flag = true, value = {
Status.NO_NETWORK_CONNECTIVITY,
Status.NETWORK_COMMUNICATION_ERROR,
Status.DEVICE_NOT_REGISTERED,
Status.HTTP_CLIENT_ERROR,
Status.HTTP_SERVER_ERROR,
Status.HTTP_UNKNOWN_ERROR,
Status.INTERNAL_ERROR,
})
public @interface ErrorCode {
}
private static final int HTTP_STATUS_DEVICE_NOT_REGISTERED = 444;
private static final int HTTP_CLIENT_ERROR_HUNDREDS_DIGIT = 4;
private static final int HTTP_SERVER_ERROR_HUNDREDS_DIGIT = 5;
@ErrorCode
private final int mErrorCode;
/**
* @param errorCode the underlying ServerInterface error
* @param message describes the exception
*/
public RemoteProvisioningException(@ErrorCode int errorCode, String message) {
super(message);
mErrorCode = errorCode;
}
/**
* @param errorCode the underlying ServerInterface error
* @param message describes the exception
* @param cause the underlying error that led this exception
*/
public RemoteProvisioningException(@ErrorCode int errorCode, String message, Throwable cause) {
super(message, cause);
mErrorCode = errorCode;
}
/**
* @param httpStatus the HTTP status that lead to the error
* @return a newly created RemoteProvisioningException that indicates an HTTP error occurred
*/
public static RemoteProvisioningException createFromHttpError(@ErrorCode int httpStatus) {
String message = "HTTP error status encountered: " + httpStatus;
if (httpStatus == HTTP_STATUS_DEVICE_NOT_REGISTERED) {
return new RemoteProvisioningException(Status.DEVICE_NOT_REGISTERED, message);
}
if ((httpStatus / 100) == HTTP_CLIENT_ERROR_HUNDREDS_DIGIT) {
return new RemoteProvisioningException(Status.HTTP_CLIENT_ERROR, message);
}
if ((httpStatus / 100) == HTTP_SERVER_ERROR_HUNDREDS_DIGIT) {
return new RemoteProvisioningException(Status.HTTP_SERVER_ERROR, message);
}
return new RemoteProvisioningException(Status.HTTP_UNKNOWN_ERROR, message);
}
/**
* @return the underlying error that caused the failure
*/
@ErrorCode
public int getErrorCode() {
return mErrorCode;
}
}