Files
frameworks_base/location/java/com/android/internal/location/ProviderRequest.java
Soonil Nagarkar c3107caf22 Fix parceling bug in ProviderRequest
Forgot to add worksource write in addition to worksource read.

Bug: 148129736
Test: manual
Change-Id: Idac06b9191ada54bed0c79e9c799d8cd1ab0ebac
2020-01-22 14:58:16 -08:00

217 lines
7.4 KiB
Java

/*
* Copyright (C) 2012 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.android.internal.location;
import android.compat.annotation.UnsupportedAppUsage;
import android.location.LocationRequest;
import android.os.Parcel;
import android.os.Parcelable;
import android.os.WorkSource;
import android.util.TimeUtils;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
/** @hide */
public final class ProviderRequest implements Parcelable {
public static final ProviderRequest EMPTY_REQUEST = new ProviderRequest(false, Long.MAX_VALUE,
false, false,
Collections.emptyList(), new WorkSource());
/** Location reporting is requested (true) */
@UnsupportedAppUsage
public final boolean reportLocation;
/** The smallest requested interval */
@UnsupportedAppUsage
public final long interval;
/**
* Whether provider shall make stronger than normal tradeoffs to substantially restrict power
* use.
*/
public final boolean lowPowerMode;
/**
* When this flag is true, providers should ignore all location settings, user consents, power
* restrictions or any other restricting factors and always satisfy this request to the best of
* their ability. This flag should only be used in event of an emergency.
*/
public final boolean locationSettingsIgnored;
/**
* A more detailed set of requests.
* <p>Location Providers can optionally use this to
* fine tune location updates, for example when there
* is a high power slow interval request and a
* low power fast interval request.
*/
@UnsupportedAppUsage
public final List<LocationRequest> locationRequests;
public final WorkSource workSource;
private ProviderRequest(boolean reportLocation, long interval, boolean lowPowerMode,
boolean locationSettingsIgnored, List<LocationRequest> locationRequests,
WorkSource workSource) {
this.reportLocation = reportLocation;
this.interval = interval;
this.lowPowerMode = lowPowerMode;
this.locationSettingsIgnored = locationSettingsIgnored;
this.locationRequests = Objects.requireNonNull(locationRequests);
this.workSource = Objects.requireNonNull(workSource);
}
public static final Parcelable.Creator<ProviderRequest> CREATOR =
new Parcelable.Creator<ProviderRequest>() {
@Override
public ProviderRequest createFromParcel(Parcel in) {
boolean reportLocation = in.readInt() == 1;
long interval = in.readLong();
boolean lowPowerMode = in.readBoolean();
boolean locationSettingsIgnored = in.readBoolean();
int count = in.readInt();
ArrayList<LocationRequest> locationRequests = new ArrayList<>(count);
for (int i = 0; i < count; i++) {
locationRequests.add(LocationRequest.CREATOR.createFromParcel(in));
}
WorkSource workSource = in.readParcelable(null);
return new ProviderRequest(reportLocation, interval, lowPowerMode,
locationSettingsIgnored, locationRequests, workSource);
}
@Override
public ProviderRequest[] newArray(int size) {
return new ProviderRequest[size];
}
};
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel parcel, int flags) {
parcel.writeInt(reportLocation ? 1 : 0);
parcel.writeLong(interval);
parcel.writeBoolean(lowPowerMode);
parcel.writeBoolean(locationSettingsIgnored);
parcel.writeInt(locationRequests.size());
for (LocationRequest request : locationRequests) {
request.writeToParcel(parcel, flags);
}
parcel.writeParcelable(workSource, flags);
}
@Override
public String toString() {
StringBuilder s = new StringBuilder();
s.append("ProviderRequest[");
if (reportLocation) {
s.append("interval=");
TimeUtils.formatDuration(interval, s);
if (lowPowerMode) {
s.append(", lowPowerMode");
}
if (locationSettingsIgnored) {
s.append(", locationSettingsIgnored");
}
} else {
s.append("OFF");
}
s.append(']');
return s.toString();
}
/**
* A Builder for {@link ProviderRequest}s.
*/
public static class Builder {
private long mInterval = Long.MAX_VALUE;
private boolean mLowPowerMode;
private boolean mLocationSettingsIgnored;
private List<LocationRequest> mLocationRequests = Collections.emptyList();
private WorkSource mWorkSource = new WorkSource();
public long getInterval() {
return mInterval;
}
/** Sets the request interval. */
public Builder setInterval(long interval) {
this.mInterval = interval;
return this;
}
public boolean isLowPowerMode() {
return mLowPowerMode;
}
/** Sets whether low power mode is enabled. */
public Builder setLowPowerMode(boolean lowPowerMode) {
this.mLowPowerMode = lowPowerMode;
return this;
}
public boolean isLocationSettingsIgnored() {
return mLocationSettingsIgnored;
}
/** Sets whether location settings should be ignored. */
public Builder setLocationSettingsIgnored(boolean locationSettingsIgnored) {
this.mLocationSettingsIgnored = locationSettingsIgnored;
return this;
}
public List<LocationRequest> getLocationRequests() {
return mLocationRequests;
}
/** Sets the {@link LocationRequest}s associated with this request. */
public Builder setLocationRequests(List<LocationRequest> locationRequests) {
this.mLocationRequests = Objects.requireNonNull(locationRequests);
return this;
}
public WorkSource getWorkSource() {
return mWorkSource;
}
/** Sets the work source. */
public Builder setWorkSource(WorkSource workSource) {
mWorkSource = Objects.requireNonNull(workSource);
return this;
}
/**
* Builds a ProviderRequest object with the set information.
*/
public ProviderRequest build() {
if (mInterval == Long.MAX_VALUE) {
return EMPTY_REQUEST;
} else {
return new ProviderRequest(true, mInterval, mLowPowerMode,
mLocationSettingsIgnored, mLocationRequests, mWorkSource);
}
}
}
}