aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorinwit <inwit@sindominio.net>2023-10-08 11:11:47 +0200
committerRobin Jarry <robin@jarry.cc>2023-10-13 01:05:44 +0200
commit579acf601170b6314d0fc7778d6ed48450976a6e (patch)
tree4431c0b9365420268740794c60713d6d0eb35d2e
parent3376681c21a58481cc5bc0a6a81848c820534f4e (diff)
downloadaerc-579acf601170b6314d0fc7778d6ed48450976a6e.tar.gz
aerc-579acf601170b6314d0fc7778d6ed48450976a6e.zip
notmuch: return all siblings in threads
Notmuch threads can silently drop sibling messages during threading when a thread has multiple "top level messages" (IE a thread where the root is missing). Modify makeThread to return a slice of all encountered siblings and add these as individual threads. Note that the current implementation does not link these threads together with a dummy parent node. This should be done in the future when rendering of these types of threads is implemented Fixes: https://todo.sr.ht/~rjarry/aerc/188 Reported-by: inwit <inwit@sindominio.net> Signed-off-by: Tim Culverhouse <tim@timculverhouse.com> Signed-off-by: inwit <inwit@sindominio.net> Acked-by: Robin Jarry <robin@jarry.cc>
-rw-r--r--worker/notmuch/lib/database.go34
1 files changed, 10 insertions, 24 deletions
diff --git a/worker/notmuch/lib/database.go b/worker/notmuch/lib/database.go
index e7914156..015126c2 100644
--- a/worker/notmuch/lib/database.go
+++ b/worker/notmuch/lib/database.go
@@ -137,7 +137,11 @@ func (db *DB) ThreadsFromQuery(ctx context.Context, q string, entireThread bool)
thread := threads.Thread()
tlm := thread.TopLevelMessages()
root := db.makeThread(nil, &tlm, entireThread)
- res = append(res, root)
+ // if len(root) > 1 {
+ // TODO make a dummy root node and link all the
+ // first level children to it
+ // }
+ res = append(res, root...)
tlm.Close()
thread.Close()
}
@@ -306,8 +310,9 @@ func (db *DB) KeyFromUid(uid uint32) (string, bool) {
return db.uidStore.GetKey(uid)
}
-func (db *DB) makeThread(parent *types.Thread, msgs *notmuch.Messages, threadContext bool) *types.Thread {
+func (db *DB) makeThread(parent *types.Thread, msgs *notmuch.Messages, threadContext bool) []*types.Thread {
var lastSibling *types.Thread
+ var siblings []*types.Thread
for msgs.Next() {
msg := msgs.Message()
defer msg.Close()
@@ -320,7 +325,7 @@ func (db *DB) makeThread(parent *types.Thread, msgs *notmuch.Messages, threadCon
replies := msg.Replies()
defer replies.Close()
if !match && !threadContext {
- parent = db.makeThread(parent, &replies, threadContext)
+ siblings = append(siblings, db.makeThread(parent, &replies, threadContext)...)
continue
}
node := &types.Thread{
@@ -337,30 +342,11 @@ func (db *DB) makeThread(parent *types.Thread, msgs *notmuch.Messages, threadCon
parent.FirstChild = node
}
if lastSibling != nil {
- if lastSibling.NextSibling != nil {
- panic(fmt.Sprintf(
- "%v already had a NextSibling, tried setting it",
- lastSibling))
- }
lastSibling.NextSibling = node
}
lastSibling = node
+ siblings = append(siblings, node)
db.makeThread(node, &replies, threadContext)
}
-
- // We want to return the root node
- var root *types.Thread
- switch {
- case parent != nil:
- root = parent
- case lastSibling != nil:
- root = lastSibling // first iteration has no parent
- default:
- return nil // we don't have any messages at all
- }
-
- for ; root.Parent != nil; root = root.Parent {
- // move to the root
- }
- return root
+ return siblings
}