/src/com/android/settings/notification/ServiceListing.java

http://github.com/CyanogenMod/android_packages_apps_Settings · Java · 206 lines · 165 code · 25 blank · 16 comment · 29 complexity · c3f48ed855ffdd2ff701a6648a79902f MD5 · raw file

  1. /*
  2. * Copyright (C) 2015 The Android Open Source Project
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.android.settings.notification;
  17. import android.app.ActivityManager;
  18. import android.content.BroadcastReceiver;
  19. import android.content.ComponentName;
  20. import android.content.ContentResolver;
  21. import android.content.Context;
  22. import android.content.Intent;
  23. import android.content.IntentFilter;
  24. import android.content.pm.PackageManager;
  25. import android.content.pm.ResolveInfo;
  26. import android.content.pm.ServiceInfo;
  27. import android.database.ContentObserver;
  28. import android.net.Uri;
  29. import android.os.Handler;
  30. import android.provider.Settings;
  31. import android.util.Slog;
  32. import com.android.settings.notification.ManagedServiceSettings.Config;
  33. import java.util.ArrayList;
  34. import java.util.HashSet;
  35. import java.util.List;
  36. public class ServiceListing {
  37. private final ContentResolver mContentResolver;
  38. private final Context mContext;
  39. private final Config mConfig;
  40. private final HashSet<ComponentName> mEnabledServices = new HashSet<ComponentName>();
  41. private final List<ServiceInfo> mServices = new ArrayList<ServiceInfo>();
  42. private final List<Callback> mCallbacks = new ArrayList<Callback>();
  43. private boolean mListening;
  44. public ServiceListing(Context context, Config config) {
  45. mContext = context;
  46. mConfig = config;
  47. mContentResolver = context.getContentResolver();
  48. }
  49. public void addCallback(Callback callback) {
  50. mCallbacks.add(callback);
  51. }
  52. public void removeCallback(Callback callback) {
  53. mCallbacks.remove(callback);
  54. }
  55. public void setListening(boolean listening) {
  56. if (mListening == listening) return;
  57. mListening = listening;
  58. if (mListening) {
  59. // listen for package changes
  60. IntentFilter filter = new IntentFilter();
  61. filter.addAction(Intent.ACTION_PACKAGE_ADDED);
  62. filter.addAction(Intent.ACTION_PACKAGE_CHANGED);
  63. filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
  64. filter.addAction(Intent.ACTION_PACKAGE_REPLACED);
  65. filter.addDataScheme("package");
  66. mContext.registerReceiver(mPackageReceiver, filter);
  67. mContentResolver.registerContentObserver(Settings.Secure.getUriFor(mConfig.setting),
  68. false, mSettingsObserver);
  69. } else {
  70. mContext.unregisterReceiver(mPackageReceiver);
  71. mContentResolver.unregisterContentObserver(mSettingsObserver);
  72. }
  73. }
  74. public static int getEnabledServicesCount(Config config, Context context) {
  75. final String flat = Settings.Secure.getString(context.getContentResolver(), config.setting);
  76. if (flat == null || "".equals(flat)) return 0;
  77. final String[] components = flat.split(":");
  78. return components.length;
  79. }
  80. public static int getServicesCount(Config c, PackageManager pm) {
  81. return getServices(c, null, pm);
  82. }
  83. public static ServiceInfo findService(Context context, Config config, final ComponentName cn) {
  84. final ServiceListing listing = new ServiceListing(context, config);
  85. final List<ServiceInfo> services = listing.reload();
  86. for (ServiceInfo service : services) {
  87. final ComponentName serviceCN = new ComponentName(service.packageName, service.name);
  88. if (serviceCN.equals(cn)) {
  89. return service;
  90. }
  91. }
  92. return null;
  93. }
  94. private static int getServices(Config c, List<ServiceInfo> list, PackageManager pm) {
  95. int services = 0;
  96. if (list != null) {
  97. list.clear();
  98. }
  99. final int user = ActivityManager.getCurrentUser();
  100. List<ResolveInfo> installedServices = pm.queryIntentServicesAsUser(
  101. new Intent(c.intentAction),
  102. PackageManager.GET_SERVICES | PackageManager.GET_META_DATA,
  103. user);
  104. for (int i = 0, count = installedServices.size(); i < count; i++) {
  105. ResolveInfo resolveInfo = installedServices.get(i);
  106. ServiceInfo info = resolveInfo.serviceInfo;
  107. if (!c.permission.equals(info.permission)) {
  108. Slog.w(c.tag, "Skipping " + c.noun + " service "
  109. + info.packageName + "/" + info.name
  110. + ": it does not require the permission "
  111. + c.permission);
  112. continue;
  113. }
  114. if (list != null) {
  115. list.add(info);
  116. }
  117. services++;
  118. }
  119. return services;
  120. }
  121. private void saveEnabledServices() {
  122. StringBuilder sb = null;
  123. for (ComponentName cn : mEnabledServices) {
  124. if (sb == null) {
  125. sb = new StringBuilder();
  126. } else {
  127. sb.append(':');
  128. }
  129. sb.append(cn.flattenToString());
  130. }
  131. Settings.Secure.putString(mContentResolver, mConfig.setting,
  132. sb != null ? sb.toString() : "");
  133. }
  134. private void loadEnabledServices() {
  135. mEnabledServices.clear();
  136. final String flat = Settings.Secure.getString(mContentResolver, mConfig.setting);
  137. if (flat != null && !"".equals(flat)) {
  138. final String[] names = flat.split(":");
  139. for (int i = 0; i < names.length; i++) {
  140. final ComponentName cn = ComponentName.unflattenFromString(names[i]);
  141. if (cn != null) {
  142. mEnabledServices.add(cn);
  143. }
  144. }
  145. }
  146. }
  147. public List<ServiceInfo> reload() {
  148. loadEnabledServices();
  149. getServices(mConfig, mServices, mContext.getPackageManager());
  150. for (Callback callback : mCallbacks) {
  151. callback.onServicesReloaded(mServices);
  152. }
  153. return mServices;
  154. }
  155. public boolean isEnabled(ComponentName cn) {
  156. return mEnabledServices.contains(cn);
  157. }
  158. public void setEnabled(ComponentName cn, boolean enabled) {
  159. if (enabled) {
  160. mEnabledServices.add(cn);
  161. } else {
  162. mEnabledServices.remove(cn);
  163. }
  164. saveEnabledServices();
  165. }
  166. private final ContentObserver mSettingsObserver = new ContentObserver(new Handler()) {
  167. @Override
  168. public void onChange(boolean selfChange, Uri uri) {
  169. reload();
  170. }
  171. };
  172. private final BroadcastReceiver mPackageReceiver = new BroadcastReceiver() {
  173. @Override
  174. public void onReceive(Context context, Intent intent) {
  175. reload();
  176. }
  177. };
  178. public interface Callback {
  179. void onServicesReloaded(List<ServiceInfo> services);
  180. }
  181. }