1/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.shell;
18
19import android.content.Context;
20import android.content.SharedPreferences;
21
22/**
23 * Preferences related to bug reports.
24 */
25final class BugreportPrefs {
26    static final String PREFS_BUGREPORT = "bugreports";
27
28    private static final String KEY_WARNING_STATE = "warning-state";
29
30    static final int STATE_UNKNOWN = 0;
31    // Shows the warning dialog.
32    static final int STATE_SHOW = 1;
33    // Skips the warning dialog.
34    static final int STATE_HIDE = 2;
35
36    static int getWarningState(Context context, int def) {
37        final SharedPreferences prefs = context.getSharedPreferences(
38                PREFS_BUGREPORT, Context.MODE_PRIVATE);
39        return prefs.getInt(KEY_WARNING_STATE, def);
40    }
41
42    static void setWarningState(Context context, int value) {
43        final SharedPreferences prefs = context.getSharedPreferences(
44                PREFS_BUGREPORT, Context.MODE_PRIVATE);
45        prefs.edit().putInt(KEY_WARNING_STATE, value).apply();
46    }
47}
48