2019-01-24 20:15:10 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2018-12-11 18:24:31 +00:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
2019-01-01 09:41:27 +00:00
|
|
|
"log"
|
2018-12-11 18:24:31 +00:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
2019-01-01 09:41:27 +00:00
|
|
|
"github.com/zeebo/errs"
|
2018-12-11 18:24:31 +00:00
|
|
|
|
2019-01-01 09:41:27 +00:00
|
|
|
"storj.io/storj/cmd/statreceiver/luacfg"
|
2019-01-08 14:05:14 +00:00
|
|
|
"storj.io/storj/internal/fpath"
|
2018-12-11 18:24:31 +00:00
|
|
|
"storj.io/storj/pkg/cfgstruct"
|
|
|
|
"storj.io/storj/pkg/process"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Config is the set of configuration values we care about
|
|
|
|
var Config struct {
|
|
|
|
Input string `default:"" help:"path to configuration file"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2019-01-01 09:41:27 +00:00
|
|
|
defaultConfDir := fpath.ApplicationDir("storj", "statreceiver")
|
|
|
|
|
2018-12-11 18:24:31 +00:00
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: os.Args[0],
|
|
|
|
Short: "stat receiving",
|
|
|
|
RunE: Main,
|
|
|
|
}
|
2019-04-19 19:17:30 +01:00
|
|
|
defaults := cfgstruct.DefaultsFlag(cmd)
|
|
|
|
cfgstruct.Bind(cmd.Flags(), &Config, defaults, cfgstruct.ConfDir(defaultConfDir))
|
2019-01-01 09:41:27 +00:00
|
|
|
cmd.Flags().String("config", filepath.Join(defaultConfDir, "config.yaml"), "path to configuration")
|
2018-12-11 18:24:31 +00:00
|
|
|
process.Exec(cmd)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Main is the real main method
|
|
|
|
func Main(cmd *cobra.Command, args []string) error {
|
|
|
|
var input io.Reader
|
|
|
|
switch Config.Input {
|
|
|
|
case "":
|
|
|
|
return fmt.Errorf("--input path to script is required")
|
|
|
|
case "stdin":
|
|
|
|
input = os.Stdin
|
|
|
|
default:
|
2019-01-01 09:41:27 +00:00
|
|
|
inputFile, err := os.Open(Config.Input)
|
2018-12-11 18:24:31 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-01-01 09:41:27 +00:00
|
|
|
defer func() {
|
|
|
|
if err := inputFile.Close(); err != nil {
|
|
|
|
log.Printf("Failed to close input: %scope", err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
input = inputFile
|
2018-12-11 18:24:31 +00:00
|
|
|
}
|
|
|
|
|
2019-01-01 09:41:27 +00:00
|
|
|
scope := luacfg.NewScope()
|
|
|
|
err := errs.Combine(
|
|
|
|
scope.RegisterVal("deliver", Deliver),
|
|
|
|
scope.RegisterVal("filein", NewFileSource),
|
|
|
|
scope.RegisterVal("fileout", NewFileDest),
|
|
|
|
scope.RegisterVal("udpin", NewUDPSource),
|
|
|
|
scope.RegisterVal("udpout", NewUDPDest),
|
|
|
|
scope.RegisterVal("parse", NewParser),
|
|
|
|
scope.RegisterVal("print", NewPrinter),
|
|
|
|
scope.RegisterVal("pcopy", NewPacketCopier),
|
|
|
|
scope.RegisterVal("mcopy", NewMetricCopier),
|
|
|
|
scope.RegisterVal("pbuf", NewPacketBuffer),
|
|
|
|
scope.RegisterVal("mbuf", NewMetricBuffer),
|
|
|
|
scope.RegisterVal("packetfilter", NewPacketFilter),
|
|
|
|
scope.RegisterVal("appfilter", NewApplicationFilter),
|
|
|
|
scope.RegisterVal("instfilter", NewInstanceFilter),
|
|
|
|
scope.RegisterVal("keyfilter", NewKeyFilter),
|
|
|
|
scope.RegisterVal("sanitize", NewSanitizer),
|
|
|
|
scope.RegisterVal("graphite", NewGraphiteDest),
|
|
|
|
scope.RegisterVal("db", NewDBDest),
|
|
|
|
scope.RegisterVal("pbufprep", NewPacketBufPrep),
|
|
|
|
scope.RegisterVal("mbufprep", NewMetricBufPrep),
|
2018-12-11 18:24:31 +00:00
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-01-01 09:41:27 +00:00
|
|
|
|
|
|
|
err = scope.Run(input)
|
2018-12-11 18:24:31 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
select {}
|
|
|
|
}
|