/* * 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.drm; import java.util.ArrayList; import java.util.Iterator; /** * An entity class that wraps the capability of each DRM plug-in (agent), * such as the MIME type and file suffix the DRM plug-in can handle. *
* Plug-in developers can expose the capability of their plug-in by passing an instance of this
* class to an application.
*
*/
public class DrmSupportInfo {
private final ArrayListequals
implementation. Two DrmSupportInfo objects
* are considered being equal if they support exactly the same set of mime
* types, file suffixes, and has exactly the same description.
*
* @param object The object to be compared.
* @return True if equal; false if not equal.
*/
public boolean equals(Object object) {
if (object instanceof DrmSupportInfo) {
DrmSupportInfo info = (DrmSupportInfo) object;
return mFileSuffixList.equals(info.mFileSuffixList) &&
mMimeTypeList.equals(info.mMimeTypeList) &&
mDescription.equals(info.mDescription);
}
return false;
}
/**
* Determines whether a given MIME type is supported.
*
* @param mimeType MIME type.
* @return True if Mime type is supported; false if MIME type is not supported.
* Null or empty string is not a supported mimeType.
*/
/* package */ boolean isSupportedMimeType(String mimeType) {
if (null != mimeType && !mimeType.equals("")) {
for (int i = 0; i < mMimeTypeList.size(); i++) {
String completeMimeType = mMimeTypeList.get(i);
// The reason that equals() is not used is that sometimes,
// content distributor might just append something to
// the basic MIME type. startsWith() is used to avoid
// frequent update of DRM agent.
if (completeMimeType.startsWith(mimeType)) {
return true;
}
}
}
return false;
}
/**
* Determines whether a given file suffix is supported.
*
* @param fileSuffix File suffix.
* @return True if file suffix is supported; false if file suffix is not supported.
*/
/* package */ boolean isSupportedFileSuffix(String fileSuffix) {
return mFileSuffixList.contains(fileSuffix);
}
}