aboutsummaryrefslogtreecommitdiff
path: root/worker/notmuch/eventhandlers.go
blob: e279dbc437392e0a9f7c66049a62296b009304a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package notmuch

func (w *worker) handleNotmuchEvent(et eventType) error {
	switch ev := et.(type) {
	case *updateDirCounts:
		return w.handleUpdateDirCounts(ev)
	default:
		return errUnsupported
	}
}

func (w *worker) handleUpdateDirCounts(ev eventType) error {
	for name, query := range w.nameQueryMap {
		info, err := w.gatherDirectoryInfo(name, query)
		if err != nil {
			w.w.Logger.Printf("could not gather DirectoryInfo: %v\n", err)
			continue
		}
		w.w.PostMessage(info, nil)
	}
	return nil
}