summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrint E. Kriebel <bekit@cyngn.com>2014-11-03 18:34:29 -0800
committerBrint E. Kriebel <bekit@cyngn.com>2014-11-03 18:34:29 -0800
commit52da5ca92b0531b82e700d2ce3e21a797031ebce (patch)
treeb93717321909b2971c2f01ccf6f24e70b01688ce
parentc02a9f141683e3a273f485b82399d5758d4b25a0 (diff)
parent67ae00a8916e35f366d9d2d4ec547bf4c8da465e (diff)
downloadandroid_packages_providers_ThemesProvider-stable/cm-11.0.tar.gz
android_packages_providers_ThemesProvider-stable/cm-11.0.tar.bz2
android_packages_providers_ThemesProvider-stable/cm-11.0.zip
-rw-r--r--AndroidManifest.xml3
-rw-r--r--res/values-gl/strings.xml21
-rw-r--r--res/values-lb/strings.xml21
-rw-r--r--res/values-lv/strings.xml21
-rw-r--r--src/org/cyanogenmod/themes/provider/AppReceiver.java60
-rw-r--r--src/org/cyanogenmod/themes/provider/PreferenceUtils.java66
6 files changed, 180 insertions, 12 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index f759f2a..292567b 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -43,6 +43,9 @@
<data android:scheme="package" />
</intent-filter>
+ <intent-filter>
+ <action android:name="android.intent.action.THEME_RESOURCES_CACHED" />
+ </intent-filter>
</receiver>
</application>
diff --git a/res/values-gl/strings.xml b/res/values-gl/strings.xml
new file mode 100644
index 0000000..c3d75c1
--- /dev/null
+++ b/res/values-gl/strings.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--Generated by crowdin.com-->
+<!--
+ Copyright (C) 2014 The CyanogenMod 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.
+-->
+<resources>
+ <string name="app_name">Fornecedor de temas</string>
+ <string name="unknown_app_name">Descoñecido</string>
+</resources>
diff --git a/res/values-lb/strings.xml b/res/values-lb/strings.xml
new file mode 100644
index 0000000..95a58e3
--- /dev/null
+++ b/res/values-lb/strings.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--Generated by crowdin.com-->
+<!--
+ Copyright (C) 2014 The CyanogenMod 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.
+-->
+<resources>
+ <string name="app_name">Designliwwerant</string>
+ <string name="unknown_app_name">Onbekannt</string>
+</resources>
diff --git a/res/values-lv/strings.xml b/res/values-lv/strings.xml
new file mode 100644
index 0000000..cb3d389
--- /dev/null
+++ b/res/values-lv/strings.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--Generated by crowdin.com-->
+<!--
+ Copyright (C) 2014 The CyanogenMod 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.
+-->
+<resources>
+ <string name="app_name">Tēmas autors</string>
+ <string name="unknown_app_name">Nezināms</string>
+</resources>
diff --git a/src/org/cyanogenmod/themes/provider/AppReceiver.java b/src/org/cyanogenmod/themes/provider/AppReceiver.java
index cf0d1c3..c856abd 100644
--- a/src/org/cyanogenmod/themes/provider/AppReceiver.java
+++ b/src/org/cyanogenmod/themes/provider/AppReceiver.java
@@ -18,32 +18,63 @@ package org.cyanogenmod.themes.provider;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
+import android.content.pm.PackageManager;
import android.content.pm.PackageManager.NameNotFoundException;
+import android.content.res.ThemeManager;
import android.database.Cursor;
import android.net.Uri;
import android.provider.ThemesContract;
import android.util.Log;
+import java.util.Set;
+
public class AppReceiver extends BroadcastReceiver {
public final static String TAG = AppReceiver.class.getName();
@Override
public void onReceive(Context context, Intent intent) {
- Uri uri = intent.getData();
- String pkgName = uri != null ? uri.getSchemeSpecificPart() : null;
- boolean isReplacing = intent.getExtras().getBoolean(Intent.EXTRA_REPLACING, false);
-
+ final Uri uri = intent.getData();
+ final String pkgName = uri != null ? uri.getSchemeSpecificPart() : null;
+ final boolean isReplacing = intent.getExtras().getBoolean(Intent.EXTRA_REPLACING, false);
+ final String action = intent.getAction();
try {
- if (intent.getAction().equals(Intent.ACTION_PACKAGE_ADDED) && !isReplacing) {
- ThemePackageHelper.insertPackage(context, pkgName);
- } else if (intent.getAction().equals(Intent.ACTION_PACKAGE_FULLY_REMOVED)) {
+ if (Intent.ACTION_PACKAGE_ADDED.equals(action) && !isReplacing) {
+ if (!isThemeBeingProcessed(context, pkgName)) {
+ ThemePackageHelper.insertPackage(context, pkgName);
+ } else {
+ // store this package name so we know it's being processed and it can be
+ // added to the DB when ACTION_THEME_RESOURCES_CACHED is received
+ PreferenceUtils.addThemeBeingProcessed(context, pkgName);
+ }
+ } else if (Intent.ACTION_PACKAGE_FULLY_REMOVED.equals(action)) {
ThemePackageHelper.removePackage(context, pkgName);
- } else if (intent.getAction().equals(Intent.ACTION_PACKAGE_REPLACED)) {
- if (themeExistsInProvider(context, pkgName)) {
- ThemePackageHelper.updatePackage(context, pkgName);
+ } else if (Intent.ACTION_PACKAGE_REPLACED.equals(action)) {
+ if (!isThemeBeingProcessed(context, pkgName)) {
+ if (themeExistsInProvider(context, pkgName)) {
+ ThemePackageHelper.updatePackage(context, pkgName);
+ } else {
+ // Edge case where app was not a theme in previous install
+ ThemePackageHelper.insertPackage(context, pkgName);
+ }
} else {
- // Edge case where app was not a theme in previous install
- ThemePackageHelper.insertPackage(context, pkgName);
+ // store this package name so we know it's being processed and it can be
+ // added to the DB when ACTION_THEME_RESOURCES_CACHED is received
+ PreferenceUtils.addThemeBeingProcessed(context, pkgName);
+ }
+ } else if (Intent.ACTION_THEME_RESOURCES_CACHED.equals(action)) {
+ final String themePkgName = intent.getStringExtra(Intent.EXTRA_THEME_PACKAGE_NAME);
+ final int result = intent.getIntExtra(Intent.EXTRA_THEME_RESULT,
+ PackageManager.INSTALL_FAILED_THEME_UNKNOWN_ERROR);
+ Set<String> processingThemes =
+ PreferenceUtils.getInstalledThemesBeingProcessed(context);
+ if (processingThemes != null &&
+ processingThemes.contains(themePkgName) && result >= 0) {
+ if (themeExistsInProvider(context, themePkgName)) {
+ ThemePackageHelper.updatePackage(context, themePkgName);
+ } else {
+ // Edge case where app was not a theme in previous install
+ ThemePackageHelper.insertPackage(context, themePkgName);
+ }
}
}
} catch(NameNotFoundException e) {
@@ -65,4 +96,9 @@ public class AppReceiver extends BroadcastReceiver {
}
return exists;
}
+
+ private boolean isThemeBeingProcessed(Context context, String pkgName) {
+ ThemeManager tm = (ThemeManager) context.getSystemService(Context.THEME_SERVICE);
+ return tm.isThemeBeingProcessed(pkgName);
+ }
}
diff --git a/src/org/cyanogenmod/themes/provider/PreferenceUtils.java b/src/org/cyanogenmod/themes/provider/PreferenceUtils.java
new file mode 100644
index 0000000..09d62bb
--- /dev/null
+++ b/src/org/cyanogenmod/themes/provider/PreferenceUtils.java
@@ -0,0 +1,66 @@
+/*
+ * Copyright (C) 2014 The CyanogenMod 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 org.cyanogenmod.themes.provider;
+
+import android.content.Context;
+import android.content.SharedPreferences;
+
+import java.util.HashSet;
+import java.util.Set;
+
+public class PreferenceUtils {
+ public static final String PREF_INSTALLED_THEMES_PROCESSING = "installed_themes_processing";
+
+ public static SharedPreferences getSharedPreferences(Context context) {
+ if (context == null) return null;
+ return context.getSharedPreferences(context.getPackageName(), Context.MODE_PRIVATE);
+ }
+
+ public static Set<String> getInstalledThemesBeingProcessed(Context context) {
+ SharedPreferences prefs = getSharedPreferences(context);
+ if (prefs == null) return null;
+
+ return prefs.getStringSet(PREF_INSTALLED_THEMES_PROCESSING, null);
+ }
+
+ public static void addThemeBeingProcessed(Context context, String pkgName) {
+ SharedPreferences prefs = getSharedPreferences(context);
+ if (prefs != null) {
+ Set<String> updatedThemes = new HashSet<String>();
+ Set<String> current = prefs.getStringSet(PREF_INSTALLED_THEMES_PROCESSING, null);
+ if (current != null) {
+ updatedThemes.addAll(current);
+ }
+ if (updatedThemes.add(pkgName)) {
+ prefs.edit().putStringSet(PREF_INSTALLED_THEMES_PROCESSING, updatedThemes).apply();
+ }
+ }
+ }
+
+ public static void removeThemeBeingProcessed(Context context, String pkgName) {
+ SharedPreferences prefs = getSharedPreferences(context);
+ if (prefs != null) {
+ Set<String> updatedThemes = new HashSet<String>();
+ Set<String> current = prefs.getStringSet(PREF_INSTALLED_THEMES_PROCESSING, null);
+ if (current != null) {
+ updatedThemes.addAll(current);
+ }
+ if (updatedThemes.remove(pkgName)) {
+ prefs.edit().putStringSet(PREF_INSTALLED_THEMES_PROCESSING, updatedThemes).apply();
+ }
+ }
+ }
+}