| /* |
| * Copyright (C) 2016 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.telephony.mbms; |
| |
| import android.os.Parcel; |
| import android.os.Parcelable; |
| import android.text.TextUtils; |
| |
| import java.util.Date; |
| import java.util.HashMap; |
| import java.util.Locale; |
| import java.util.Map; |
| import java.util.Set; |
| |
| /** |
| * A Parcelable class with Cell-Broadcast service information. |
| * @hide |
| */ |
| public class ServiceInfo implements Parcelable { |
| // arbitrary limit on the number of locale -> name pairs we support |
| final static int MAP_LIMIT = 1000; |
| /** |
| * User displayable names listed by language. Unmodifiable. |
| */ |
| final Map<Locale, String> names; |
| |
| /** |
| * The class name for this service - used to catagorize and filter |
| */ |
| final String className; |
| |
| /** |
| * The language for this service content |
| */ |
| final Locale locale; |
| |
| /** |
| * The carrier's identifier for the service. |
| */ |
| final String serviceId; |
| |
| /** |
| * The start time indicating when this service will be available. |
| */ |
| final Date sessionStartTime; |
| |
| /** |
| * The end time indicating when this sesion stops being available. |
| */ |
| final Date sessionEndTime; |
| |
| |
| public ServiceInfo(Map<Locale, String> newNames, String newClassName, Locale newLocale, |
| String newServiceId, Date start, Date end) { |
| if (newNames == null || newNames.isEmpty() || TextUtils.isEmpty(newClassName) |
| || newLocale == null || TextUtils.isEmpty(newServiceId) |
| || start == null || end == null) { |
| throw new IllegalArgumentException("Bad ServiceInfo construction"); |
| } |
| if (newNames.size() > MAP_LIMIT) { |
| throw new RuntimeException("bad map length" + newNames.size()); |
| } |
| names = new HashMap(newNames.size()); |
| names.putAll(newNames); |
| className = newClassName; |
| locale = (Locale)newLocale.clone(); |
| serviceId = newServiceId; |
| sessionStartTime = (Date)start.clone(); |
| sessionEndTime = (Date)end.clone(); |
| } |
| |
| public static final Parcelable.Creator<FileServiceInfo> CREATOR = |
| new Parcelable.Creator<FileServiceInfo>() { |
| @Override |
| public FileServiceInfo createFromParcel(Parcel source) { |
| return new FileServiceInfo(source); |
| } |
| |
| @Override |
| public FileServiceInfo[] newArray(int size) { |
| return new FileServiceInfo[size]; |
| } |
| }; |
| |
| ServiceInfo(Parcel in) { |
| int mapCount = in.readInt(); |
| if (mapCount > MAP_LIMIT || mapCount < 0) { |
| throw new RuntimeException("bad map length" + mapCount); |
| } |
| names = new HashMap(mapCount); |
| while (mapCount-- > 0) { |
| Locale locale = (java.util.Locale) in.readSerializable(); |
| String name = in.readString(); |
| names.put(locale, name); |
| } |
| className = in.readString(); |
| locale = (java.util.Locale) in.readSerializable(); |
| serviceId = in.readString(); |
| sessionStartTime = (java.util.Date) in.readSerializable(); |
| sessionEndTime = (java.util.Date) in.readSerializable(); |
| } |
| |
| @Override |
| public void writeToParcel(Parcel dest, int flags) { |
| Set<Locale> keySet = names.keySet(); |
| dest.writeInt(keySet.size()); |
| for (Locale l : keySet) { |
| dest.writeSerializable(l); |
| dest.writeString(names.get(l)); |
| } |
| dest.writeString(className); |
| dest.writeSerializable(locale); |
| dest.writeString(serviceId); |
| dest.writeSerializable(sessionStartTime); |
| dest.writeSerializable(sessionEndTime); |
| } |
| |
| @Override |
| public int describeContents() { |
| return 0; |
| } |
| |
| public Map<Locale, String> getNames() { |
| return names; |
| } |
| |
| public String getClassName() { |
| return className; |
| } |
| |
| public Locale getLocale() { |
| return locale; |
| } |
| |
| public String getServiceId() { |
| return serviceId; |
| } |
| |
| public Date getSessionStartTime() { |
| return sessionStartTime; |
| } |
| |
| public Date getSessionEndTime() { |
| return sessionEndTime; |
| } |
| |
| } |