Geocoder APIs are a mess, but this will at least validate the caller properly, and pass the relevant information along to clients. Bug: 158318462 Test: presubmits Change-Id: I47b09962598a2346bd79caa643ba1d83069c0c19
126 lines
3.8 KiB
Java
126 lines
3.8 KiB
Java
/*
|
|
* Copyright (C) 2010 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.location;
|
|
|
|
import android.annotation.NonNull;
|
|
import android.annotation.Nullable;
|
|
import android.compat.annotation.UnsupportedAppUsage;
|
|
import android.content.Context;
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import android.os.Process;
|
|
|
|
import java.util.Locale;
|
|
import java.util.Objects;
|
|
|
|
/**
|
|
* This class contains extra parameters to pass to an IGeocodeProvider
|
|
* implementation from the Geocoder class. Currently this contains the
|
|
* language, country and variant information from the Geocoder's locale
|
|
* as well as the Geocoder client's package name for geocoder server
|
|
* logging. This information is kept in a separate class to allow for
|
|
* future expansion of the IGeocodeProvider interface.
|
|
*
|
|
* @hide
|
|
*/
|
|
public class GeocoderParams implements Parcelable {
|
|
|
|
private final int mUid;
|
|
private final String mPackageName;
|
|
private final @Nullable String mAttributionTag;
|
|
private final Locale mLocale;
|
|
|
|
public GeocoderParams(Context context) {
|
|
this(context, Locale.getDefault());
|
|
}
|
|
|
|
public GeocoderParams(Context context, Locale locale) {
|
|
this(Process.myUid(), context.getPackageName(), context.getAttributionTag(), locale);
|
|
}
|
|
|
|
private GeocoderParams(int uid, String packageName, String attributionTag, Locale locale) {
|
|
mUid = uid;
|
|
mPackageName = Objects.requireNonNull(packageName);
|
|
mAttributionTag = attributionTag;
|
|
mLocale = Objects.requireNonNull(locale);
|
|
}
|
|
|
|
/**
|
|
* Returns the client UID.
|
|
*/
|
|
@UnsupportedAppUsage
|
|
public int getClientUid() {
|
|
return mUid;
|
|
}
|
|
|
|
/**
|
|
* Returns the client package name.
|
|
*/
|
|
@UnsupportedAppUsage
|
|
public @NonNull String getClientPackage() {
|
|
return mPackageName;
|
|
}
|
|
|
|
/**
|
|
* Returns the client attribution tag.
|
|
*/
|
|
@UnsupportedAppUsage
|
|
public @Nullable String getClientAttributionTag() {
|
|
return mAttributionTag;
|
|
}
|
|
|
|
/**
|
|
* Returns the locale.
|
|
*/
|
|
@UnsupportedAppUsage
|
|
public @NonNull Locale getLocale() {
|
|
return mLocale;
|
|
}
|
|
|
|
public static final @NonNull Parcelable.Creator<GeocoderParams> CREATOR =
|
|
new Parcelable.Creator<GeocoderParams>() {
|
|
public GeocoderParams createFromParcel(Parcel in) {
|
|
int uid = in.readInt();
|
|
String packageName = in.readString();
|
|
String attributionTag = in.readString();
|
|
String language = in.readString();
|
|
String country = in.readString();
|
|
String variant = in.readString();
|
|
|
|
return new GeocoderParams(uid, packageName, attributionTag,
|
|
new Locale(language, country, variant));
|
|
}
|
|
|
|
public GeocoderParams[] newArray(int size) {
|
|
return new GeocoderParams[size];
|
|
}
|
|
};
|
|
|
|
public int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public void writeToParcel(Parcel parcel, int flags) {
|
|
parcel.writeInt(mUid);
|
|
parcel.writeString(mPackageName);
|
|
parcel.writeString(mAttributionTag);
|
|
parcel.writeString(mLocale.getLanguage());
|
|
parcel.writeString(mLocale.getCountry());
|
|
parcel.writeString(mLocale.getVariant());
|
|
}
|
|
}
|