aboutsummaryrefslogtreecommitdiffstats
path: root/cm/lib/main/java/org/cyanogenmod/platform/internal/display/LiveDisplayFeature.java
blob: 5b1e33c24dc8315a2e70e9d91171440563cef358 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/*
 * Copyright (C) 2016 The CyanogenMod 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 org.cyanogenmod.platform.internal.display;

import android.content.ContentResolver;
import android.content.Context;
import android.net.Uri;
import android.os.Handler;
import android.os.UserHandle;
import android.util.Log;

import com.android.server.pm.UserContentObserver;
import com.android.server.twilight.TwilightState;

import java.io.PrintWriter;
import java.util.BitSet;

import cyanogenmod.providers.CMSettings;

public abstract class LiveDisplayFeature {

    protected static final String TAG = "LiveDisplay";
    protected static final boolean DEBUG = Log.isLoggable(TAG, Log.DEBUG);

    protected final Context mContext;
    protected final Handler mHandler;

    private TwilightState mTwilight;
    private boolean mLowPowerMode = false;
    private boolean mScreenOn = false;
    private int mMode = 0;

    private final SettingsObserver mSettingsObserver;

    public LiveDisplayFeature(Context context, Handler handler) {
        mContext = context;
        mHandler = handler;
        mSettingsObserver = new SettingsObserver(handler);
    }

    public abstract boolean onStart();

    public abstract void onSettingsChanged(Uri uri);

    public void onModeChanged(int mode) {
        mMode = mode;
    }

    public void onDisplayStateChanged(boolean screenOn) {
        mScreenOn = screenOn;
    }

    public void onLowPowerModeChanged(boolean lowPowerMode) {
        mLowPowerMode = lowPowerMode;
    }

    public void onTwilightUpdated(TwilightState twilight) {
        mTwilight = twilight;
    }

    public void onDestroy() {
        mSettingsObserver.unregister();
    }

    public abstract void dump(PrintWriter pw);

    abstract void getCapabilities(final BitSet caps);

    protected final void registerSettings(Uri... settings) {
        mSettingsObserver.register(settings);
        onSettingsChanged(null);
    }

    protected final int getInt(String setting, int defaultValue) {
        return CMSettings.System.getIntForUser(mContext.getContentResolver(),
                setting, defaultValue, UserHandle.USER_CURRENT);
    }

    protected final void putInt(String setting, int value) {
        CMSettings.System.putIntForUser(mContext.getContentResolver(),
                setting, value, UserHandle.USER_CURRENT);
    }

    protected final String getString(String setting) {
        return CMSettings.System.getStringForUser(mContext.getContentResolver(),
                setting, UserHandle.USER_CURRENT);
    }

    protected final void putString(String setting, String value) {
        CMSettings.System.putStringForUser(mContext.getContentResolver(),
                setting, value, UserHandle.USER_CURRENT);
    }

    protected final boolean isLowPowerMode() {
        return mLowPowerMode;
    }

    protected final int getMode() {
        return mMode;
    }

    protected final boolean isScreenOn() {
        return mScreenOn;
    }

    protected final TwilightState getTwilight() {
        return mTwilight;
    }

    protected final boolean isNight() {
        return mTwilight != null && mTwilight.isNight();
    }

    final class SettingsObserver extends UserContentObserver {

        public SettingsObserver(Handler handler) {
            super(handler);
        }

        public void register(Uri... uris) {
            final ContentResolver cr = mContext.getContentResolver();
            for (Uri uri : uris) {
                cr.registerContentObserver(uri, false, this, UserHandle.USER_ALL);
            }

            observe();
        }

        public void unregister() {
            mContext.getContentResolver().unregisterContentObserver(this);
            unobserve();
        }

        @Override
        protected void update() {
            onSettingsChanged(null);
        }

        @Override
        public void onChange(boolean selfChange, Uri uri) {
            onSettingsChanged(uri);
        }
    }

}