mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-17 17:47:03 +00:00
- Clean up vars in retention.go - Check globalShutdown in several parts of the retention scanner - smtpd.Drain() now waits for scanner to shut down - Closes #22
168 lines
4.2 KiB
Go
168 lines
4.2 KiB
Go
package smtpd
|
|
|
|
import (
|
|
"container/list"
|
|
"expvar"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/jhillyerd/inbucket/config"
|
|
"github.com/jhillyerd/inbucket/log"
|
|
)
|
|
|
|
var (
|
|
retentionScanCompleted = time.Now()
|
|
retentionScanCompletedMu sync.RWMutex
|
|
|
|
// Indicates Inbucket needs to shut down
|
|
globalShutdown chan bool
|
|
// Indicates the retention scanner has shut down
|
|
retentionShutdown chan bool
|
|
|
|
// History counters
|
|
expRetentionDeletesTotal = new(expvar.Int)
|
|
expRetentionPeriod = new(expvar.Int)
|
|
expRetainedCurrent = new(expvar.Int)
|
|
|
|
// History of certain stats
|
|
retentionDeletesHist = list.New()
|
|
retainedHist = list.New()
|
|
|
|
// History rendered as comma delimited string
|
|
expRetentionDeletesHist = new(expvar.String)
|
|
expRetainedHist = new(expvar.String)
|
|
)
|
|
|
|
// StartRetentionScanner launches a go-routine that scans for expired
|
|
// messages, following the configured interval
|
|
func StartRetentionScanner(ds DataStore, shutdownChannel chan bool) {
|
|
globalShutdown = shutdownChannel
|
|
retentionShutdown = make(chan bool)
|
|
cfg := config.GetDataStoreConfig()
|
|
expRetentionPeriod.Set(int64(cfg.RetentionMinutes * 60))
|
|
if cfg.RetentionMinutes > 0 {
|
|
// Retention scanning enabled
|
|
log.Infof("Retention configured for %v minutes", cfg.RetentionMinutes)
|
|
go retentionScanner(ds, time.Duration(cfg.RetentionMinutes)*time.Minute,
|
|
time.Duration(cfg.RetentionSleep)*time.Millisecond)
|
|
} else {
|
|
log.Infof("Retention scanner disabled")
|
|
close(retentionShutdown)
|
|
}
|
|
}
|
|
|
|
func retentionScanner(ds DataStore, maxAge time.Duration, sleep time.Duration) {
|
|
start := time.Now()
|
|
retentionLoop:
|
|
for {
|
|
// Prevent scanner from running more than once a minute
|
|
since := time.Since(start)
|
|
if since < time.Minute {
|
|
dur := time.Minute - since
|
|
log.Tracef("Retention scanner sleeping for %v", dur)
|
|
select {
|
|
case _ = <-globalShutdown:
|
|
break retentionLoop
|
|
case _ = <-time.After(dur):
|
|
}
|
|
}
|
|
|
|
// Kickoff scan
|
|
start = time.Now()
|
|
if err := doRetentionScan(ds, maxAge, sleep); err != nil {
|
|
log.Errorf("Error during retention scan: %v", err)
|
|
}
|
|
|
|
// Check for global shutdown
|
|
select {
|
|
case _ = <-globalShutdown:
|
|
break retentionLoop
|
|
default:
|
|
}
|
|
}
|
|
|
|
log.Tracef("Retention scanner shut down")
|
|
close(retentionShutdown)
|
|
}
|
|
|
|
// doRetentionScan does a single pass of all mailboxes looking for messages that can be purged
|
|
func doRetentionScan(ds DataStore, maxAge time.Duration, sleep time.Duration) error {
|
|
log.Tracef("Starting retention scan")
|
|
cutoff := time.Now().Add(-1 * maxAge)
|
|
mboxes, err := ds.AllMailboxes()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
retained := 0
|
|
for _, mb := range mboxes {
|
|
messages, err := mb.GetMessages()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, msg := range messages {
|
|
if msg.Date().Before(cutoff) {
|
|
log.Tracef("Purging expired message %v", msg.ID())
|
|
err = msg.Delete()
|
|
if err != nil {
|
|
// Log but don't abort
|
|
log.Errorf("Failed to purge message %v: %v", msg.ID(), err)
|
|
} else {
|
|
expRetentionDeletesTotal.Add(1)
|
|
}
|
|
} else {
|
|
retained++
|
|
}
|
|
}
|
|
// Check for shutdown
|
|
select {
|
|
case _ = <-globalShutdown:
|
|
log.Tracef("Retention scan aborted due to shutdown")
|
|
return nil
|
|
default:
|
|
}
|
|
// Sleep after completing a mailbox
|
|
time.Sleep(sleep)
|
|
}
|
|
|
|
setRetentionScanCompleted(time.Now())
|
|
expRetainedCurrent.Set(int64(retained))
|
|
|
|
return nil
|
|
}
|
|
|
|
// RetentionJoin does not retun until the retention scanner has shut down
|
|
func RetentionJoin() {
|
|
select {
|
|
case _ = <-retentionShutdown:
|
|
}
|
|
}
|
|
|
|
func setRetentionScanCompleted(t time.Time) {
|
|
retentionScanCompletedMu.Lock()
|
|
defer retentionScanCompletedMu.Unlock()
|
|
|
|
retentionScanCompleted = t
|
|
}
|
|
|
|
func getRetentionScanCompleted() time.Time {
|
|
retentionScanCompletedMu.RLock()
|
|
defer retentionScanCompletedMu.RUnlock()
|
|
|
|
return retentionScanCompleted
|
|
}
|
|
|
|
func secondsSinceRetentionScanCompleted() interface{} {
|
|
return time.Since(getRetentionScanCompleted()) / time.Second
|
|
}
|
|
|
|
func init() {
|
|
rm := expvar.NewMap("retention")
|
|
rm.Set("SecondsSinceScanCompleted", expvar.Func(secondsSinceRetentionScanCompleted))
|
|
rm.Set("DeletesHist", expRetentionDeletesHist)
|
|
rm.Set("DeletesTotal", expRetentionDeletesTotal)
|
|
rm.Set("Period", expRetentionPeriod)
|
|
rm.Set("RetainedHist", expRetainedHist)
|
|
rm.Set("RetainedCurrent", expRetainedCurrent)
|
|
}
|