2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-09-02 07:05:09 +00:00

Merge branch 'albertvaka/sms-lock-fix'

This commit is contained in:
Albert Vaca
2019-07-05 14:59:40 +02:00

View File

@@ -163,18 +163,15 @@ public class SMSPlugin extends Plugin {
private final Lock mostRecentTimestampLock = new ReentrantLock(); private final Lock mostRecentTimestampLock = new ReentrantLock();
private class MessageContentObserver extends ContentObserver { private class MessageContentObserver extends ContentObserver {
final SMSPlugin mPlugin;
/** /**
* Create a ContentObserver to watch the Messages database. onChange is called for * Create a ContentObserver to watch the Messages database. onChange is called for
* every subscribed change * every subscribed change
* *
* @param parent Plugin which owns this observer
* @param handler Handler object used to make the callback * @param handler Handler object used to make the callback
*/ */
MessageContentObserver(SMSPlugin parent, Handler handler) { MessageContentObserver(Handler handler) {
super(handler); super(handler);
mPlugin = parent;
} }
/** /**
@@ -185,29 +182,28 @@ public class SMSPlugin extends Plugin {
*/ */
@Override @Override
public void onChange(boolean selfChange) { public void onChange(boolean selfChange) {
if (mPlugin.mostRecentTimestamp == 0) { // Lock so no one uses the mostRecentTimestamp between the moment we read it and the
// moment we update it. This is because reading the Messages DB can take long.
mostRecentTimestampLock.lock();
if (mostRecentTimestamp == 0) {
// Since the timestamp has not been initialized, we know that nobody else // Since the timestamp has not been initialized, we know that nobody else
// has requested a message. That being the case, there is most likely // has requested a message. That being the case, there is most likely
// nobody listening for message updates, so just drop them // nobody listening for message updates, so just drop them
mostRecentTimestampLock.unlock();
return; return;
} }
mostRecentTimestampLock.lock();
// Grab the mostRecentTimestamp into the local stack because reading the Messages
// database could potentially be a long operation
long mostRecentTimestamp = mPlugin.mostRecentTimestamp;
mostRecentTimestampLock.unlock();
SMSHelper.Message message = SMSHelper.getNewestMessage(mPlugin.context); SMSHelper.Message message = SMSHelper.getNewestMessage(context);
if (message.date <= mostRecentTimestamp) { if (message == null || message.date <= mostRecentTimestamp) {
// Our onChange often gets called many times for a single message. Don't make unnecessary // onChange can trigger many times for a single message. Don't make unnecessary noise
// noise mostRecentTimestampLock.unlock();
return; return;
} }
// Update the most recent counter // Update the most recent counter
mostRecentTimestampLock.lock(); mostRecentTimestamp = message.date;
mPlugin.mostRecentTimestamp = message.date;
mostRecentTimestampLock.unlock(); mostRecentTimestampLock.unlock();
// Send the alert about the update // Send the alert about the update
@@ -281,7 +277,7 @@ public class SMSPlugin extends Plugin {
context.registerReceiver(receiver, filter); context.registerReceiver(receiver, filter);
Looper helperLooper = SMSHelper.MessageLooper.getLooper(); Looper helperLooper = SMSHelper.MessageLooper.getLooper();
ContentObserver messageObserver = new MessageContentObserver(this, new Handler(helperLooper)); ContentObserver messageObserver = new MessageContentObserver(new Handler(helperLooper));
SMSHelper.registerObserver(messageObserver, context); SMSHelper.registerObserver(messageObserver, context);
return true; return true;