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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
|
/*
* Copyright 2017 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 android.hardware.display;
import android.annotation.NonNull;
import android.annotation.Nullable;
import android.annotation.SystemApi;
import android.annotation.TestApi;
import android.os.Parcel;
import android.os.Parcelable;
import java.util.Objects;
/**
* Data about a brightness settings change.
*
* {@see DisplayManager.getBrightnessEvents()}
* @hide
*/
@SystemApi
@TestApi
public final class BrightnessChangeEvent implements Parcelable {
/** Brightness in nits */
public final float brightness;
/** Timestamp of the change {@see System.currentTimeMillis()} */
public final long timeStamp;
/** Package name of focused activity when brightness was changed.
* This will be null if the caller of {@see DisplayManager.getBrightnessEvents()}
* does not have access to usage stats {@see UsageStatsManager} */
public final String packageName;
/** User id of of the user running when brightness was changed.
* @hide */
public final int userId;
/** Lux values of recent sensor data */
public final float[] luxValues;
/** Timestamps of the lux sensor readings {@see System.currentTimeMillis()} */
public final long[] luxTimestamps;
/** Most recent battery level when brightness was changed or Float.NaN */
public final float batteryLevel;
/** Factor applied to brightness due to battery level, 0.0-1.0 */
public final float powerBrightnessFactor;
/** Color filter active to provide night mode */
public final boolean nightMode;
/** If night mode color filter is active this will be the temperature in kelvin */
public final int colorTemperature;
/** Brightness level before slider adjustment */
public final float lastBrightness;
/** Whether brightness configuration is default version */
public final boolean isDefaultBrightnessConfig;
/** Whether brightness curve includes a user brightness point */
public final boolean isUserSetBrightness;
/**
* Histogram counting how many times a pixel of a given value was displayed onscreen for the
* Value component of HSV if the device supports color sampling, if the device does not support
* color sampling the value will be null.
*
* The buckets of the histogram are evenly weighted, the number of buckets is device specific.
* The units are in pixels * milliseconds, with 1 pixel millisecond being 1 pixel displayed
* for 1 millisecond.
* For example if we had {100, 50, 30, 20}, value component was onscreen for 100 pixel
* milliseconds in range 0x00->0x3F, 30 pixel milliseconds in range 0x40->0x7F, etc.
*
* {@see #colorSampleDuration}
*/
@Nullable
public final long[] colorValueBuckets;
/**
* How many milliseconds of data are contained in the colorValueBuckets, if the device does
* not support color sampling the value will be 0L.
*
* {@see #colorValueBuckets}
*/
public final long colorSampleDuration;
/** @hide */
private BrightnessChangeEvent(float brightness, long timeStamp, String packageName,
int userId, float[] luxValues, long[] luxTimestamps, float batteryLevel,
float powerBrightnessFactor, boolean nightMode, int colorTemperature,
float lastBrightness, boolean isDefaultBrightnessConfig, boolean isUserSetBrightness,
long[] colorValueBuckets, long colorSampleDuration) {
this.brightness = brightness;
this.timeStamp = timeStamp;
this.packageName = packageName;
this.userId = userId;
this.luxValues = luxValues;
this.luxTimestamps = luxTimestamps;
this.batteryLevel = batteryLevel;
this.powerBrightnessFactor = powerBrightnessFactor;
this.nightMode = nightMode;
this.colorTemperature = colorTemperature;
this.lastBrightness = lastBrightness;
this.isDefaultBrightnessConfig = isDefaultBrightnessConfig;
this.isUserSetBrightness = isUserSetBrightness;
this.colorValueBuckets = colorValueBuckets;
this.colorSampleDuration = colorSampleDuration;
}
/** @hide */
public BrightnessChangeEvent(BrightnessChangeEvent other, boolean redactPackage) {
this.brightness = other.brightness;
this.timeStamp = other.timeStamp;
this.packageName = redactPackage ? null : other.packageName;
this.userId = other.userId;
this.luxValues = other.luxValues;
this.luxTimestamps = other.luxTimestamps;
this.batteryLevel = other.batteryLevel;
this.powerBrightnessFactor = other.powerBrightnessFactor;
this.nightMode = other.nightMode;
this.colorTemperature = other.colorTemperature;
this.lastBrightness = other.lastBrightness;
this.isDefaultBrightnessConfig = other.isDefaultBrightnessConfig;
this.isUserSetBrightness = other.isUserSetBrightness;
this.colorValueBuckets = other.colorValueBuckets;
this.colorSampleDuration = other.colorSampleDuration;
}
private BrightnessChangeEvent(Parcel source) {
brightness = source.readFloat();
timeStamp = source.readLong();
packageName = source.readString();
userId = source.readInt();
luxValues = source.createFloatArray();
luxTimestamps = source.createLongArray();
batteryLevel = source.readFloat();
powerBrightnessFactor = source.readFloat();
nightMode = source.readBoolean();
colorTemperature = source.readInt();
lastBrightness = source.readFloat();
isDefaultBrightnessConfig = source.readBoolean();
isUserSetBrightness = source.readBoolean();
colorValueBuckets = source.createLongArray();
colorSampleDuration = source.readLong();
}
public static final @android.annotation.NonNull Creator<BrightnessChangeEvent> CREATOR =
new Creator<BrightnessChangeEvent>() {
public BrightnessChangeEvent createFromParcel(Parcel source) {
return new BrightnessChangeEvent(source);
}
public BrightnessChangeEvent[] newArray(int size) {
return new BrightnessChangeEvent[size];
}
};
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeFloat(brightness);
dest.writeLong(timeStamp);
dest.writeString(packageName);
dest.writeInt(userId);
dest.writeFloatArray(luxValues);
dest.writeLongArray(luxTimestamps);
dest.writeFloat(batteryLevel);
dest.writeFloat(powerBrightnessFactor);
dest.writeBoolean(nightMode);
dest.writeInt(colorTemperature);
dest.writeFloat(lastBrightness);
dest.writeBoolean(isDefaultBrightnessConfig);
dest.writeBoolean(isUserSetBrightness);
dest.writeLongArray(colorValueBuckets);
dest.writeLong(colorSampleDuration);
}
/** @hide */
public static class Builder {
private float mBrightness;
private long mTimeStamp;
private String mPackageName;
private int mUserId;
private float[] mLuxValues;
private long[] mLuxTimestamps;
private float mBatteryLevel;
private float mPowerBrightnessFactor;
private boolean mNightMode;
private int mColorTemperature;
private float mLastBrightness;
private boolean mIsDefaultBrightnessConfig;
private boolean mIsUserSetBrightness;
private long[] mColorValueBuckets;
private long mColorSampleDuration;
/** {@see BrightnessChangeEvent#brightness} */
public Builder setBrightness(float brightness) {
mBrightness = brightness;
return this;
}
/** {@see BrightnessChangeEvent#timeStamp} */
public Builder setTimeStamp(long timeStamp) {
mTimeStamp = timeStamp;
return this;
}
/** {@see BrightnessChangeEvent#packageName} */
public Builder setPackageName(String packageName) {
mPackageName = packageName;
return this;
}
/** {@see BrightnessChangeEvent#userId} */
public Builder setUserId(int userId) {
mUserId = userId;
return this;
}
/** {@see BrightnessChangeEvent#luxValues} */
public Builder setLuxValues(float[] luxValues) {
mLuxValues = luxValues;
return this;
}
/** {@see BrightnessChangeEvent#luxTimestamps} */
public Builder setLuxTimestamps(long[] luxTimestamps) {
mLuxTimestamps = luxTimestamps;
return this;
}
/** {@see BrightnessChangeEvent#batteryLevel} */
public Builder setBatteryLevel(float batteryLevel) {
mBatteryLevel = batteryLevel;
return this;
}
/** {@see BrightnessChangeEvent#powerSaveBrightness} */
public Builder setPowerBrightnessFactor(float powerBrightnessFactor) {
mPowerBrightnessFactor = powerBrightnessFactor;
return this;
}
/** {@see BrightnessChangeEvent#nightMode} */
public Builder setNightMode(boolean nightMode) {
mNightMode = nightMode;
return this;
}
/** {@see BrightnessChangeEvent#colorTemperature} */
public Builder setColorTemperature(int colorTemperature) {
mColorTemperature = colorTemperature;
return this;
}
/** {@see BrightnessChangeEvent#lastBrightness} */
public Builder setLastBrightness(float lastBrightness) {
mLastBrightness = lastBrightness;
return this;
}
/** {@see BrightnessChangeEvent#isDefaultBrightnessConfig} */
public Builder setIsDefaultBrightnessConfig(boolean isDefaultBrightnessConfig) {
mIsDefaultBrightnessConfig = isDefaultBrightnessConfig;
return this;
}
/** {@see BrightnessChangeEvent#userBrightnessPoint} */
public Builder setUserBrightnessPoint(boolean isUserSetBrightness) {
mIsUserSetBrightness = isUserSetBrightness;
return this;
}
/** {@see BrightnessChangeEvent#colorValueBuckets}
* {@see BrightnessChangeEvent#colorSampleDuration} */
public Builder setColorValues(@NonNull long[] colorValueBuckets, long colorSampleDuration) {
Objects.requireNonNull(colorValueBuckets);
mColorValueBuckets = colorValueBuckets;
mColorSampleDuration = colorSampleDuration;
return this;
}
/** Builds a BrightnessChangeEvent */
public BrightnessChangeEvent build() {
return new BrightnessChangeEvent(mBrightness, mTimeStamp,
mPackageName, mUserId, mLuxValues, mLuxTimestamps, mBatteryLevel,
mPowerBrightnessFactor, mNightMode, mColorTemperature, mLastBrightness,
mIsDefaultBrightnessConfig, mIsUserSetBrightness, mColorValueBuckets,
mColorSampleDuration);
}
}
}
|