blob: 9142b91af15160eb18630891a4cdd4d3b2ae4bcb [file] [log] [blame]
/*
* Copyright (C) 2019 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.google.android.car.bugreport;
/** Defines {@link MetaBugReport} statuses. */
public enum Status {
// Bugreport is being written
STATUS_WRITE_PENDING(0),
// Writing bugreport failed
STATUS_WRITE_FAILED(1),
// Bugreport is waiting to be uploaded
STATUS_UPLOAD_PENDING(2),
// Bugreport uploaded successfully
STATUS_UPLOAD_SUCCESS(3),
// Bugreport failed to upload
STATUS_UPLOAD_FAILED(4),
// Bugreport is cancelled by user
STATUS_USER_CANCELLED(5),
// Bugreport is pending user choice on whether to upload or copy.
STATUS_PENDING_USER_ACTION(6),
// Bugreport was moved successfully.
STATUS_MOVE_SUCCESSFUL(7),
// Bugreport move has failed.
STATUS_MOVE_FAILED(8);
private final int mValue;
Status(int value) {
mValue = value;
}
/** Returns integer value of the status. */
public int getValue() {
return mValue;
}
/** Generates human-readable string from a status value. */
public static String toString(int value) {
switch (value) {
case 0:
return "Write pending";
case 1:
return "Write failed";
case 2:
return "Upload pending";
case 3:
return "Upload successful";
case 4:
return "Upload failed";
case 5:
return "User cancelled";
case 6:
return "Pending user action";
case 7:
return "Move successful";
case 8:
return "Move failed";
}
return "unknown";
}
}