1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
//go:build notmuch
// +build notmuch
package notmuch
/*
#cgo LDFLAGS: -lnotmuch
#include <stdlib.h>
#include <notmuch.h>
*/
import "C"
import "time"
type Thread struct {
thread *C.notmuch_thread_t
}
// ID returns the thread ID
func (t *Thread) ID() string {
cID := C.notmuch_thread_get_thread_id(t.thread)
return C.GoString(cID)
}
// TotalMessages returns the total number of messages in the thread
func (t *Thread) TotalMessages() int {
return int(C.notmuch_thread_get_total_messages(t.thread))
}
// TotalMessages returns the total number of files in the thread
func (t *Thread) TotalFiles() int {
return int(C.notmuch_thread_get_total_files(t.thread))
}
// TopLevelMessages returns an iterator over the top level messages in the
// thread. Messages are sorted oldest-first
func (t *Thread) TopLevelMessages() Messages {
cMessages := C.notmuch_thread_get_toplevel_messages(t.thread)
return Messages{
messages: cMessages,
}
}
// Messages returns an iterator over the messages in the thread. Messages are
// sorted oldest-first
func (t *Thread) Messages() Messages {
cMessages := C.notmuch_thread_get_messages(t.thread)
return Messages{
messages: cMessages,
}
}
// Matches returns the number of messages in the thread that matched the query
func (t *Thread) Matches() int {
return int(C.notmuch_thread_get_matched_messages(t.thread))
}
// Returns a string of authors of the thread
func (t *Thread) Authors() string {
cAuthors := C.notmuch_thread_get_authors(t.thread)
return C.GoString(cAuthors)
}
// Returns the subject of the thread
func (t *Thread) Subject() string {
cSubject := C.notmuch_thread_get_subject(t.thread)
return C.GoString(cSubject)
}
// Returns the sent-date of the oldest message in the thread
func (t *Thread) OldestDate() time.Time {
cTime := C.notmuch_thread_get_oldest_date(t.thread)
return time.Unix(int64(cTime), 0)
}
// Returns the sent-date of the newest message in the thread
func (t *Thread) NewestDate() time.Time {
cTime := C.notmuch_thread_get_newest_date(t.thread)
return time.Unix(int64(cTime), 0)
}
// Tags returns a slice of all tags in the thread
func (t *Thread) Tags() []string {
cTags := C.notmuch_thread_get_tags(t.thread)
defer C.notmuch_tags_destroy(cTags)
tags := []string{}
for C.notmuch_tags_valid(cTags) > 0 {
tag := C.notmuch_tags_get(cTags)
tags = append(tags, C.GoString(tag))
C.notmuch_tags_move_to_next(cTags)
}
return tags
}
func (t *Thread) Close() {
C.notmuch_thread_destroy(t.thread)
}
|