Working log code

Closes #7 #17
This commit is contained in:
ppom 2023-04-27 10:42:19 +02:00
parent aeb9af37be
commit a2be5a566c
4 changed files with 74 additions and 47 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/reaction.db

View File

@ -2,6 +2,7 @@ package app
import ( import (
"encoding/gob" "encoding/gob"
"errors"
"fmt" "fmt"
"io" "io"
"log" "log"
@ -55,10 +56,10 @@ type Action struct {
} }
type LogEntry struct { type LogEntry struct {
t time.Time T time.Time
pattern string Pattern string
stream, filter string Stream, Filter string
exec bool Exec bool
} }
func (c *Conf) setup() { func (c *Conf) setup() {
@ -135,6 +136,9 @@ func (c *Conf) setup() {
} }
action.afterDuration = afterDuration action.afterDuration = afterDuration
} }
if filter.longuestActionDuration == nil || filter.longuestActionDuration.Milliseconds() < action.afterDuration.Milliseconds() {
filter.longuestActionDuration = &action.afterDuration
}
} }
} }
} }
@ -143,22 +147,40 @@ func (c *Conf) setup() {
var DBname = "./reaction.db" var DBname = "./reaction.db"
var DBnewName = "./reaction.new.db" var DBnewName = "./reaction.new.db"
func (c *Conf) updateFromDB() { func (c *Conf) updateFromDB() *gob.Encoder {
file, err := os.Open(DBname) file, err := os.Open(DBname)
if err != nil { if err != nil {
if err == os.ErrNotExist { if errors.Is(err, os.ErrNotExist) {
log.Printf("WARN: No DB found at %s\n", DBname) log.Printf("WARN: No DB found at %s\n", DBname)
return
file, err := os.Create(DBname)
if err != nil {
log.Fatalln("Failed to create DB:", err)
}
return gob.NewEncoder(file)
} }
log.Fatalln("Failed to open DB:", err) log.Fatalln("Failed to open DB:", err)
} }
dec := gob.NewDecoder(&file) dec := gob.NewDecoder(file)
newfile, err := os.Create(DBnewName) newfile, err := os.Create(DBnewName)
if err != nil { if err != nil {
log.Fatalln("Failed to open DB:", err) log.Fatalln("Failed to create new DB:", err)
} }
enc := gob.NewEncoder(&newfile) enc := gob.NewEncoder(newfile)
defer func() {
err := file.Close()
if err != nil {
log.Fatalln("ERRO: Failed to close old DB:", err)
}
// It should be ok to rename an open file
err = os.Rename(DBnewName, DBname)
if err != nil {
log.Fatalln("ERRO: Failed to replace old DB with new one:", err)
}
}()
// This extra code is made to warn only one time for each non-existant filter // This extra code is made to warn only one time for each non-existant filter
type SF struct{ s, f string } type SF struct{ s, f string }
@ -171,7 +193,7 @@ func (c *Conf) updateFromDB() {
} }
} }
if malformedEntries > 0 { if malformedEntries > 0 {
log.Printf("WARN: %v malformed entry discarded from the DB\n", malformedEntries) log.Printf("WARN: %v malformed entries discarded from the DB\n", malformedEntries)
} }
}() }()
@ -191,52 +213,39 @@ func (c *Conf) updateFromDB() {
err = dec.Decode(&entry) err = dec.Decode(&entry)
if err != nil { if err != nil {
if err == io.EOF { if err == io.EOF {
return return enc
} }
malformedEntries++ malformedEntries++
continue continue
} }
// retrieve related filter // retrieve related filter
if s := c.Streams[entry.stream]; stream != nil { if stream := c.Streams[entry.Stream]; stream != nil {
filter = stream.Filters[entry.filter] filter = stream.Filters[entry.Filter]
} }
if filter == nil { if filter == nil {
discardedEntries[SF{entry.stream, entry.filter}] = true discardedEntries[SF{entry.Stream, entry.Filter}] = true
continue continue
} }
// store matches // store matches
if !entry.exec && entry.t+filter.retryDuration > now { if !entry.Exec && entry.T.Add(filter.retryDuration).Unix() > now.Unix() {
filter.matches[entry.pattern] = append(f.matches[entry.pattern], entry.t) filter.matches[entry.Pattern] = append(filter.matches[entry.Pattern], entry.T)
encodeOrFatal(entry) encodeOrFatal(entry)
} }
// replay executions // replay executions
if entry.exec && entry.t+filter.longuestActionDuration > now { if entry.Exec && entry.T.Add(*filter.longuestActionDuration).Unix() > now.Unix() {
delete(filter.matches, match) delete(filter.matches, entry.Pattern)
filter.execActions(match, now-entry.t) filter.execActions(entry.Pattern, now.Sub(entry.T))
encodeOrFatal(entry) encodeOrFatal(entry)
} }
} }
err = os.Rename(DBnewName, DBname)
if err != nil {
log.Fatalln("ERRO: Failed to replace old DB with new one:", err)
}
} }
func openDB() { func parseConf(filename string) (*Conf, *gob.Encoder) {
f, err := os.OpenFile(DBname, os.O_APPEND|os.O_WRONLY, 0600)
if err != nil {
log.Fatalln("Failed to open DB:", err)
}
return gob.NewEncoder(&f)
}
func parseConf(filename string) *Conf {
data, err := os.ReadFile(filename) data, err := os.ReadFile(filename)
@ -251,6 +260,7 @@ func parseConf(filename string) *Conf {
} }
conf.setup() conf.setup()
enc := conf.updateFromDB()
return &conf return &conf, enc
} }

View File

@ -4,11 +4,13 @@ import (
"bufio" "bufio"
"encoding/gob" "encoding/gob"
"flag" "flag"
"syscall"
// "fmt" // "fmt"
"log" "log"
"os" "os"
"os/exec" "os/exec"
"os/signal"
"strings" "strings"
"sync" "sync"
"time" "time"
@ -107,9 +109,9 @@ func (f *Filter) handle() chan *string {
f.matches[match] = append(f.matches[match], time.Now()) f.matches[match] = append(f.matches[match], time.Now())
if len(f.matches[match]) >= f.Retry { if len(f.matches[match]) >= f.Retry {
entry.exec = true entry.Exec = true
delete(f.matches, match) delete(f.matches, match)
f.execActions(match, nil) f.execActions(match, time.Duration(0))
} }
db.Encode(&entry) db.Encode(&entry)
@ -154,9 +156,12 @@ func (s *Stream) handle(signal chan *Stream) {
var wgActions sync.WaitGroup var wgActions sync.WaitGroup
var db gob.Encoder var db *gob.Encoder
func Main() { func Main() {
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
confFilename := flag.String("c", "", "configuration file. see an example at https://framagit.org/ppom/reaction/-/blob/main/reaction.yml") confFilename := flag.String("c", "", "configuration file. see an example at https://framagit.org/ppom/reaction/-/blob/main/reaction.yml")
flag.Parse() flag.Parse()
@ -165,22 +170,33 @@ func Main() {
os.Exit(2) os.Exit(2)
} }
conf := parseConf(*confFilename) conf, localdb := parseConf(*confFilename)
db = localdb
db = openDB()
endSignals := make(chan *Stream) endSignals := make(chan *Stream)
noStreamsInExecution := len(conf.Streams)
for _, stream := range conf.Streams { for _, stream := range conf.Streams {
go stream.handle(endSignals) go stream.handle(endSignals)
} }
for i := 0; i < len(conf.Streams); i++ { for {
finishedStream := <-endSignals select {
case finishedStream := <-endSignals:
log.Printf("ERR %s stream finished", finishedStream.name) log.Printf("ERR %s stream finished", finishedStream.name)
noStreamsInExecution--
if noStreamsInExecution == 0 {
quit()
}
case <-sigs:
log.Printf("Received SIGINT or SIGTERM, exiting")
quit()
}
}
} }
func quit() {
// TODO replace with advanced execution of all WIP actions
wgActions.Wait() wgActions.Wait()
os.Exit(3) os.Exit(3)
} }

View File

@ -10,10 +10,10 @@ streams:
regex: regex:
- found <ip> - found <ip>
retry: 2 retry: 2
retry-period: 5s retry-period: 1m
actions: actions:
damn: damn:
cmd: [ "echo", "<ip>" ] cmd: [ "echo", "<ip>" ]
sleepdamn: sleepdamn:
cmd: [ "echo", "sleep", "<ip>" ] cmd: [ "echo", "sleep", "<ip>" ]
after: 1s after: 10s