replicant-vendor_cmsdk/sdk/src/java/cyanogenmod/profiles/BrightnessSettings.java

223 lines
7.2 KiB
Java

/*
* Copyright (C) 2015 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 cyanogenmod.profiles;
import android.content.Context;
import android.provider.Settings;
import android.os.Parcel;
import android.os.Parcelable;
import cyanogenmod.os.Build;
import cyanogenmod.os.Concierge;
import cyanogenmod.os.Concierge.ParcelInfo;
import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import java.io.IOException;
/**
* The {@link BrightnessSettings} class allows for overriding and setting the brightness level
* of the display. The range for brightness is between 0 -> 255.
*
* <p>Example for setting the brightness to ~25% (255 * .25):
* <pre class="prettyprint">
* BrightnessSettings twentyFivePercent = new BrightnessSettings(63, true)
* profile.setBrightness(twentyFivePercent);
* </pre>
*/
public final class BrightnessSettings implements Parcelable {
private int mValue;
private boolean mOverride;
private boolean mDirty;
/** @hide */
public static final Parcelable.Creator<BrightnessSettings> CREATOR
= new Parcelable.Creator<BrightnessSettings>() {
public BrightnessSettings createFromParcel(Parcel in) {
return new BrightnessSettings(in);
}
@Override
public BrightnessSettings[] newArray(int size) {
return new BrightnessSettings[size];
}
};
/**
* Unwrap {@link BrightnessSettings} from a parcel.
* @param parcel
*/
public BrightnessSettings(Parcel parcel) {
readFromParcel(parcel);
}
/**
* Construct a {@link BrightnessSettings} with a default value of 0.
*/
public BrightnessSettings() {
this(0, false);
}
/**
* Construct a {@link BrightnessSettings} with a default value and whether or not it should
* override user settings.
* @param value ex: 255 (MAX)
* @param override whether or not the setting should override user settings
*/
public BrightnessSettings(int value, boolean override) {
mValue = value;
mOverride = override;
mDirty = false;
}
/**
* Get the default value for the {@link BrightnessSettings}
* @return integer value corresponding with its brightness value
*/
public int getValue() {
return mValue;
}
/**
* Set the default value for the {@link BrightnessSettings}
* @param value ex: 255 (MAX)
*/
public void setValue(int value) {
mValue = value;
mDirty = true;
}
/**
* Set whether or not the {@link BrightnessSettings} should override default user values
* @param override boolean override
*/
public void setOverride(boolean override) {
mOverride = override;
mDirty = true;
}
/**
* Check whether or not the {@link BrightnessSettings} overrides user settings.
* @return true if override
*/
public boolean isOverride() {
return mOverride;
}
/** @hide */
public boolean isDirty() {
return mDirty;
}
/** @hide */
public void processOverride(Context context) {
if (isOverride()) {
final boolean automatic = Settings.System.getInt(context.getContentResolver(),
Settings.System.SCREEN_BRIGHTNESS_MODE,
Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL)
== Settings.System.SCREEN_BRIGHTNESS_MODE_AUTOMATIC;
if (automatic) {
final float current = Settings.System.getFloat(context.getContentResolver(),
Settings.System.SCREEN_AUTO_BRIGHTNESS_ADJ, -2f);
// Convert from [0, 255] to [-1, 1] for SCREEN_AUTO_BRIGHTNESS_ADJ
final float adj = mValue / (255 / 2f) - 1;
if (current != adj) {
Settings.System.putFloat(context.getContentResolver(),
Settings.System.SCREEN_AUTO_BRIGHTNESS_ADJ, adj);
}
} else {
final int current = Settings.System.getInt(context.getContentResolver(),
Settings.System.SCREEN_BRIGHTNESS, -1);
if (current != mValue) {
Settings.System.putInt(context.getContentResolver(),
Settings.System.SCREEN_BRIGHTNESS, mValue);
}
}
}
}
/** @hide */
public static BrightnessSettings fromXml(XmlPullParser xpp, Context context)
throws XmlPullParserException, IOException {
int event = xpp.next();
BrightnessSettings brightnessDescriptor = new BrightnessSettings();
while (event != XmlPullParser.END_TAG || !xpp.getName().equals("brightnessDescriptor")) {
if (event == XmlPullParser.START_TAG) {
String name = xpp.getName();
if (name.equals("value")) {
brightnessDescriptor.mValue = Integer.parseInt(xpp.nextText());
} else if (name.equals("override")) {
brightnessDescriptor.mOverride = Boolean.parseBoolean(xpp.nextText());
}
}
event = xpp.next();
}
return brightnessDescriptor;
}
/** @hide */
public void getXmlString(StringBuilder builder, Context context) {
builder.append("<brightnessDescriptor>\n<value>");
builder.append(mValue);
builder.append("</value>\n<override>");
builder.append(mOverride);
builder.append("</override>\n</brightnessDescriptor>\n");
}
@Override
public int describeContents() {
return 0;
}
/** @hide */
@Override
public void writeToParcel(Parcel dest, int flags) {
// Tell the concierge to prepare the parcel
ParcelInfo parcelInfo = Concierge.prepareParcel(dest);
// === BOYSENBERRY ===
dest.writeInt(mOverride ? 1 : 0);
dest.writeInt(mValue);
dest.writeInt(mDirty ? 1 : 0);
// Complete the parcel info for the concierge
parcelInfo.complete();
}
/** @hide */
public void readFromParcel(Parcel in) {
// Read parcelable version via the Concierge
ParcelInfo parcelInfo = Concierge.receiveParcel(in);
int parcelableVersion = parcelInfo.getParcelVersion();
// Pattern here is that all new members should be added to the end of
// the writeToParcel method. Then we step through each version, until the latest
// API release to help unravel this parcel
if (parcelableVersion >= Build.CM_VERSION_CODES.BOYSENBERRY) {
mOverride = in.readInt() != 0;
mValue = in.readInt();
mDirty = in.readInt() != 0;
}
// Complete parcel info for the concierge
parcelInfo.complete();
}
}