aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2013-01-10 19:32:35 +0100
committerDominik Schürmann <dominik@dominikschuermann.de>2013-01-10 19:32:35 +0100
commitb83d82146b10d2c01f5124cddaf68d823cc44c65 (patch)
tree2bb072921b84169f301956e3ffdb14ebf2f641ee
parent275bcc443e869e7106ef0971b8d8cde8f006cf51 (diff)
downloadopen-keychain-b83d82146b10d2c01f5124cddaf68d823cc44c65.tar.gz
open-keychain-b83d82146b10d2c01f5124cddaf68d823cc44c65.tar.bz2
open-keychain-b83d82146b10d2c01f5124cddaf68d823cc44c65.zip
Synchronizing methods in ApgKeyService
-rw-r--r--APG/src/org/thialfihar/android/apg/service/ApgKeyService.java62
1 files changed, 40 insertions, 22 deletions
diff --git a/APG/src/org/thialfihar/android/apg/service/ApgKeyService.java b/APG/src/org/thialfihar/android/apg/service/ApgKeyService.java
index d5325673b..9a184c71f 100644
--- a/APG/src/org/thialfihar/android/apg/service/ApgKeyService.java
+++ b/APG/src/org/thialfihar/android/apg/service/ApgKeyService.java
@@ -32,7 +32,7 @@ import android.os.RemoteException;
/**
* TODO:
*
- * - is this service thread safe? Probably not!
+ * - is this service thread safe?
*
*/
public class ApgKeyService extends Service {
@@ -57,6 +57,43 @@ public class ApgKeyService extends Service {
}
/**
+ * Synchronized implementation of getPublicKeyRings
+ */
+ private synchronized void getPublicKeyRingsSafe(long[] masterKeyIds,
+ boolean asAsciiArmoredStringArray, IApgGetKeyringsHandler handler)
+ throws RemoteException {
+ if (asAsciiArmoredStringArray) {
+ ArrayList<String> output = ProviderHelper.getPublicKeyRingsAsArmoredString(mContext,
+ masterKeyIds);
+
+ handler.onSuccess(null, output);
+ } else {
+ byte[] outputBytes = ProviderHelper
+ .getPublicKeyRingsAsByteArray(mContext, masterKeyIds);
+ handler.onSuccess(outputBytes, null);
+ }
+ }
+
+ /**
+ * Synchronized implementation of getSecretKeyRings
+ */
+ private synchronized void getSecretKeyRingsSafe(long[] masterKeyIds,
+ boolean asAsciiArmoredStringArray, IApgGetKeyringsHandler handler)
+ throws RemoteException {
+ if (asAsciiArmoredStringArray) {
+ ArrayList<String> output = ProviderHelper.getSecretKeyRingsAsArmoredString(mContext,
+ masterKeyIds);
+
+ handler.onSuccess(null, output);
+ } else {
+ byte[] outputBytes = ProviderHelper
+ .getSecretKeyRingsAsByteArray(mContext, masterKeyIds);
+ handler.onSuccess(outputBytes, null);
+ }
+
+ }
+
+ /**
* This is the implementation of the interface IApgKeyService. All methods are oneway, meaning
* asynchronous and return to the client using handlers.
*
@@ -67,32 +104,13 @@ public class ApgKeyService extends Service {
@Override
public void getPublicKeyRings(long[] masterKeyIds, boolean asAsciiArmoredStringArray,
IApgGetKeyringsHandler handler) throws RemoteException {
- if (asAsciiArmoredStringArray) {
- ArrayList<String> output = ProviderHelper.getPublicKeyRingsAsArmoredString(
- mContext, masterKeyIds);
-
- handler.onSuccess(null, output);
- } else {
- byte[] outputBytes = ProviderHelper.getPublicKeyRingsAsByteArray(mContext,
- masterKeyIds);
- handler.onSuccess(outputBytes, null);
- }
+ getPublicKeyRingsSafe(masterKeyIds, asAsciiArmoredStringArray, handler);
}
@Override
public void getSecretKeyRings(long[] masterKeyIds, boolean asAsciiArmoredStringArray,
IApgGetKeyringsHandler handler) throws RemoteException {
- if (asAsciiArmoredStringArray) {
- ArrayList<String> output = ProviderHelper.getSecretKeyRingsAsArmoredString(
- mContext, masterKeyIds);
-
- handler.onSuccess(null, output);
- } else {
- byte[] outputBytes = ProviderHelper.getSecretKeyRingsAsByteArray(mContext,
- masterKeyIds);
- handler.onSuccess(outputBytes, null);
- }
-
+ getSecretKeyRingsSafe(masterKeyIds, asAsciiArmoredStringArray, handler);
}
};