From e7b9eb56b9b313dad2bae54c06c00bf395d614c6 Mon Sep 17 00:00:00 2001 From: M66B Date: Thu, 13 Jun 2019 13:43:34 +0200 Subject: [PATCH] Fixed/improved operation counts --- app/src/main/java/eu/faircode/email/Core.java | 1 + .../java/eu/faircode/email/DaoOperation.java | 17 +++++++++++++---- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/app/src/main/java/eu/faircode/email/Core.java b/app/src/main/java/eu/faircode/email/Core.java index 2a9f41cf4b..060b918694 100644 --- a/app/src/main/java/eu/faircode/email/Core.java +++ b/app/src/main/java/eu/faircode/email/Core.java @@ -691,6 +691,7 @@ class Core { Log.i(folder.name + " queuing ADD id=" + message.id + ":" + target); EntityOperation operation = new EntityOperation(); + operation.account = message.account; operation.folder = target; operation.message = message.id; operation.name = EntityOperation.ADD; diff --git a/app/src/main/java/eu/faircode/email/DaoOperation.java b/app/src/main/java/eu/faircode/email/DaoOperation.java index a20012791b..f7e427b4df 100644 --- a/app/src/main/java/eu/faircode/email/DaoOperation.java +++ b/app/src/main/java/eu/faircode/email/DaoOperation.java @@ -34,7 +34,7 @@ public interface DaoOperation { " FROM operation" + " JOIN folder ON folder.id = operation.folder" + " LEFT JOIN message ON message.id = operation.message" + - " LEFT JOIN account ON account.id = message.account OR account.id = folder.account" + + " LEFT JOIN account ON account.id = operation.account OR account.id = folder.account" + " LEFT JOIN identity ON identity.id = message.identity" + " ORDER BY" + " CASE WHEN operation.name = '" + EntityOperation.SYNC + "' THEN" + @@ -47,7 +47,7 @@ public interface DaoOperation { String GET_OPS_FOLDER = "SELECT operation.* FROM operation" + " JOIN folder ON folder.id = operation.folder" + " LEFT JOIN message ON message.id = operation.message" + - " LEFT JOIN account ON account.id = message.account" + + " LEFT JOIN account ON account.id = operation.account" + " LEFT JOIN identity ON identity.id = message.identity" + " WHERE operation.folder = :folder" + " AND (account.synchronize IS NULL OR account.synchronize)" + @@ -67,11 +67,20 @@ public interface DaoOperation { @Query("SELECT COUNT(operation.id) AS pending" + ", SUM(CASE WHEN operation.error IS NULL THEN 0 ELSE 1 END) AS errors" + - " FROM operation") + " FROM operation" + + " JOIN folder ON folder.id = operation.folder" + + " LEFT JOIN message ON message.id = operation.message" + + " LEFT JOIN account ON account.id = operation.account" + + " LEFT JOIN identity ON identity.id = message.identity" + + " WHERE (account.synchronize IS NULL OR account.synchronize)" + + " AND (NOT folder.account IS NULL OR identity.synchronize IS NULL OR identity.synchronize)") LiveData liveStats(); @Query("SELECT COUNT(operation.id) FROM operation" + - " WHERE operation.name = '" + EntityOperation.SEND + "'") + " JOIN message ON message.id = operation.message" + + " JOIN identity ON identity.id = message.identity" + + " WHERE operation.name = '" + EntityOperation.SEND + "'" + + " AND identity.synchronize") LiveData liveUnsent(); @Query("SELECT * FROM operation ORDER BY id")