2017-04-10 18:54:12 +02:00
|
|
|
package logging
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This database type is just for,
|
|
|
|
* - debugging without a influxconn
|
|
|
|
* - example for other developers for new databases
|
|
|
|
*/
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/FreifunkBremen/yanic/database"
|
|
|
|
"github.com/FreifunkBremen/yanic/runtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Connection struct {
|
|
|
|
database.Connection
|
|
|
|
config Config
|
|
|
|
file *os.File
|
|
|
|
}
|
|
|
|
|
|
|
|
type Config map[string]interface{}
|
|
|
|
|
|
|
|
func (c Config) Path() string {
|
|
|
|
return c["path"].(string)
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2017-04-17 20:42:06 +02:00
|
|
|
database.RegisterAdapter("logging", Connect)
|
2017-04-10 18:54:12 +02:00
|
|
|
}
|
|
|
|
|
2017-12-31 05:26:17 +01:00
|
|
|
func Connect(configuration map[string]interface{}) (database.Connection, error) {
|
2017-04-10 18:54:12 +02:00
|
|
|
var config Config
|
2017-12-31 05:26:17 +01:00
|
|
|
config = configuration
|
2017-04-10 18:54:12 +02:00
|
|
|
|
|
|
|
file, err := os.OpenFile(config.Path(), os.O_APPEND|os.O_WRONLY|os.O_CREATE, 0600)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &Connection{config: config, file: file}, nil
|
|
|
|
}
|
|
|
|
|
2017-04-18 01:48:38 +02:00
|
|
|
func (conn *Connection) InsertNode(node *runtime.Node) {
|
|
|
|
conn.log("InsertNode: [", node.Statistics.NodeID, "] clients: ", node.Statistics.Clients.Total)
|
2017-04-10 18:54:12 +02:00
|
|
|
}
|
|
|
|
|
2017-09-27 13:55:02 +02:00
|
|
|
func (conn *Connection) InsertLink(link *runtime.Link, time time.Time) {
|
|
|
|
conn.log("InsertLink: ", link)
|
|
|
|
}
|
|
|
|
|
2018-01-17 20:20:35 +01:00
|
|
|
func (conn *Connection) InsertGlobals(stats *runtime.GlobalStats, time time.Time, site string, domain string) {
|
|
|
|
conn.log("InsertGlobals: [", time.String(), "] site: ", site, " domain: ", domain, ", nodes: ", stats.Nodes, ", clients: ", stats.Clients, " models: ", len(stats.Models))
|
2017-04-10 18:54:12 +02:00
|
|
|
}
|
|
|
|
|
2017-04-17 20:42:06 +02:00
|
|
|
func (conn *Connection) PruneNodes(deleteAfter time.Duration) {
|
|
|
|
conn.log("PruneNodes")
|
2017-04-10 18:54:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (conn *Connection) Close() {
|
|
|
|
conn.log("Close")
|
|
|
|
conn.file.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (conn *Connection) log(v ...interface{}) {
|
2019-01-17 13:26:16 +01:00
|
|
|
fmt.Println(v...)
|
2017-04-10 18:54:12 +02:00
|
|
|
conn.file.WriteString(fmt.Sprintln("[", time.Now().String(), "]", v))
|
|
|
|
}
|