diff options
author | Moritz Poldrack <git@moritz.sh> | 2022-07-31 14:32:48 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-08-04 21:58:01 +0200 |
commit | 978d35d356e8752bdd272884df48a6289d88b40a (patch) | |
tree | 3910243e688ef503159d07ce44b22cfea5d6c6fd /worker/imap/idler.go | |
parent | c882cf9960be691fe55617b87cdfcfbabd5d5557 (diff) | |
download | aerc-978d35d356e8752bdd272884df48a6289d88b40a.tar.gz |
lint: homogenize operations and minor fixes (gocritic)
Apply GoDoc comment policy (comments for humans should have a space
after the //; machine-readable comments shouldn't)
Use strings.ReplaceAll instead of strings.Replace when appropriate
Remove if/else chains by replacing them with switches
Use short assignment/increment notation
Replace single case switches with if statements
Combine else and if when appropriate
Signed-off-by: Moritz Poldrack <moritz@poldrack.dev>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'worker/imap/idler.go')
-rw-r--r-- | worker/imap/idler.go | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/worker/imap/idler.go b/worker/imap/idler.go index a658521a..4c2ce6e8 100644 --- a/worker/imap/idler.go +++ b/worker/imap/idler.go @@ -61,7 +61,8 @@ func (i *idler) isReady() bool { } func (i *idler) Start() { - if i.isReady() { + switch { + case i.isReady(): i.stop = make(chan struct{}) go func() { @@ -87,16 +88,17 @@ func (i *idler) Start() { } }() - } else if i.isWaiting() { + case i.isWaiting(): i.log("not started: wait for idle to exit") - } else { + default: i.log("not started: client not ready") } } func (i *idler) Stop() error { var reterr error - if i.isReady() { + switch { + case i.isReady(): close(i.stop) select { case err := <-i.done: @@ -118,10 +120,10 @@ func (i *idler) Stop() error { reterr = errIdleTimeout } - } else if i.isWaiting() { + case i.isWaiting(): i.log("not stopped: still idleing/hanging") reterr = errIdleModeHangs - } else { + default: i.log("not stopped: client not ready") reterr = nil } |