123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350 |
- package common
- import (
- "archive/zip"
- "encoding/json"
- "fmt"
- "github.com/benbjohnson/clock"
- "github.com/emqx/kuiper/xstream/api"
- "github.com/go-yaml/yaml"
- "github.com/keepeye/logrus-filename"
- "github.com/lestrrat-go/file-rotatelogs"
- "github.com/sirupsen/logrus"
- "io"
- "io/ioutil"
- "os"
- "path"
- "path/filepath"
- "strings"
- "time"
- )
- const (
- logFileName = "stream.log"
- etc_dir = "/etc/"
- data_dir = "/data/"
- log_dir = "/log/"
- StreamConf = "kuiper.yaml"
- KuiperBaseKey = "KuiperBaseKey"
- KuiperSyslogKey = "KuiperSyslogKey"
- MetaKey = "__meta"
- )
- var (
- Log *logrus.Logger
- Config *KuiperConf
- IsTesting bool
- Clock clock.Clock
- logFile *os.File
- LoadFileType = "relative"
- )
- func LoadConf(confName string) ([]byte, error) {
- confDir, err := GetConfLoc()
- if err != nil {
- return nil, err
- }
- file := path.Join(confDir, confName)
- b, err := ioutil.ReadFile(file)
- if err != nil {
- return nil, err
- }
- return b, nil
- }
- type tlsConf struct {
- Certfile string `yaml:"certfile"`
- Keyfile string `yaml:"keyfile"`
- }
- type KuiperConf struct {
- Basic struct {
- Debug bool `yaml:"debug"`
- ConsoleLog bool `yaml:"consoleLog"`
- FileLog bool `yaml:"fileLog"`
- RotateTime int `yaml:"rotateTime"`
- MaxAge int `yaml:"maxAge"`
- Ip string `yaml:"ip"`
- Port int `yaml:"port"`
- RestIp string `yaml:"restIp"`
- RestPort int `yaml:"restPort"`
- RestTls *tlsConf `yaml:"restTls"`
- Prometheus bool `yaml:"prometheus"`
- PrometheusPort int `yaml:"prometheusPort"`
- PluginHosts string `yaml:"pluginHosts"`
- }
- Rule api.RuleOption
- Sink struct {
- CacheThreshold int `yaml:"cacheThreshold"`
- CacheTriggerCount int `yaml:"cacheTriggerCount"`
- DisableCache bool `yaml:"disableCache""`
- }
- }
- func init() {
- Log = logrus.New()
- initSyslog()
- filenameHook := filename.NewHook()
- filenameHook.Field = "file"
- Log.AddHook(filenameHook)
- Log.SetFormatter(&logrus.TextFormatter{
- TimestampFormat: "2006-01-02 15:04:05",
- DisableColors: true,
- FullTimestamp: true,
- })
- Log.Debugf("init with args %s", os.Args)
- for _, arg := range os.Args {
- if strings.HasPrefix(arg, "-test.") {
- IsTesting = true
- break
- }
- }
- if IsTesting {
- Log.Debugf("running in testing mode")
- Clock = clock.NewMock()
- } else {
- Clock = clock.New()
- }
- }
- func InitConf() {
- b, err := LoadConf(StreamConf)
- if err != nil {
- Log.Fatal(err)
- }
- kc := KuiperConf{
- Rule: api.RuleOption{
- LateTol: 1000,
- Concurrency: 1,
- BufferLength: 1024,
- CheckpointInterval: 300000, //5 minutes
- SendError: true,
- },
- }
- if err := yaml.Unmarshal(b, &kc); err != nil {
- Log.Fatal(err)
- } else {
- Config = &kc
- }
- if 0 == len(Config.Basic.Ip) {
- Config.Basic.Ip = "0.0.0.0"
- }
- if 0 == len(Config.Basic.RestIp) {
- Config.Basic.RestIp = "0.0.0.0"
- }
- if Config.Basic.Debug {
- Log.SetLevel(logrus.DebugLevel)
- }
- if Config.Basic.FileLog {
- logDir, err := GetLoc(log_dir)
- if err != nil {
- Log.Fatal(err)
- }
- file := path.Join(logDir, logFileName)
- logWriter, err := rotatelogs.New(
- file+".%Y-%m-%d_%H-%M-%S",
- rotatelogs.WithLinkName(file),
- rotatelogs.WithRotationTime(time.Hour*time.Duration(Config.Basic.RotateTime)),
- rotatelogs.WithMaxAge(time.Hour*time.Duration(Config.Basic.MaxAge)),
- )
- if err != nil {
- fmt.Println("Failed to init log file settings..." + err.Error())
- Log.Infof("Failed to log to file, using default stderr.")
- } else if Config.Basic.ConsoleLog {
- mw := io.MultiWriter(os.Stdout, logWriter)
- Log.SetOutput(mw)
- } else if !Config.Basic.ConsoleLog {
- Log.SetOutput(logWriter)
- }
- } else if Config.Basic.ConsoleLog {
- Log.SetOutput(os.Stdout)
- }
- }
- func CloseLogger() {
- if logFile != nil {
- logFile.Close()
- }
- }
- func GetConfLoc() (string, error) {
- return GetLoc(etc_dir)
- }
- func GetDataLoc() (string, error) {
- if IsTesting {
- dataDir, err := GetLoc(data_dir)
- if err != nil {
- return "", err
- }
- d := path.Join(path.Dir(dataDir), "test")
- if _, err := os.Stat(d); os.IsNotExist(err) {
- err = os.MkdirAll(d, 0755)
- if err != nil {
- return "", err
- }
- }
- return d, nil
- }
- return GetLoc(data_dir)
- }
- func absolutePath(subdir string) (dir string, err error) {
- subdir = strings.TrimLeft(subdir, `/`)
- subdir = strings.TrimRight(subdir, `/`)
- switch subdir {
- case "etc":
- dir = "/etc/kuiper/"
- break
- case "data":
- dir = "/var/lib/kuiper/data/"
- break
- case "log":
- dir = "/var/log/kuiper/"
- break
- case "plugins":
- dir = "/var/lib/kuiper/plugins/"
- break
- }
- if 0 == len(dir) {
- return "", fmt.Errorf("no find such file : %s", subdir)
- }
- return dir, nil
- }
- func GetLoc(subdir string) (string, error) {
- if "relative" == LoadFileType {
- return relativePath(subdir)
- }
- if "absolute" == LoadFileType {
- return absolutePath(subdir)
- }
- return "", fmt.Errorf("Unrecognized loading method.")
- }
- func relativePath(subdir string) (dir string, err error) {
- dir, err = os.Getwd()
- if err != nil {
- return "", err
- }
- if base := os.Getenv(KuiperBaseKey); base != "" {
- Log.Infof("Specified Kuiper base folder at location %s.\n", base)
- dir = base
- }
- confDir := dir + subdir
- if _, err := os.Stat(confDir); os.IsNotExist(err) {
- lastdir := dir
- for len(dir) > 0 {
- dir = filepath.Dir(dir)
- if lastdir == dir {
- break
- }
- confDir = dir + subdir
- if _, err := os.Stat(confDir); os.IsNotExist(err) {
- lastdir = dir
- continue
- } else {
- //Log.Printf("Trying to load file from %s", confDir)
- return confDir, nil
- }
- }
- } else {
- //Log.Printf("Trying to load file from %s", confDir)
- return confDir, nil
- }
- return "", fmt.Errorf("conf dir not found, please set KuiperBaseKey program environment variable correctly.")
- }
- func ProcessPath(p string) (string, error) {
- if abs, err := filepath.Abs(p); err != nil {
- return "", nil
- } else {
- if _, err := os.Stat(abs); os.IsNotExist(err) {
- return "", err
- }
- return abs, nil
- }
- }
- func ReadJsonUnmarshal(path string, ret interface{}) error {
- sliByte, err := ioutil.ReadFile(path)
- if nil != err {
- return err
- }
- err = json.Unmarshal(sliByte, ret)
- if nil != err {
- return err
- }
- return nil
- }
- func WriteYamlMarshal(path string, data interface{}) error {
- y, err := yaml.Marshal(data)
- if nil != err {
- return err
- }
- return ioutil.WriteFile(path, y, 0666)
- }
- func ReadYamlUnmarshal(path string, ret interface{}) error {
- sliByte, err := ioutil.ReadFile(path)
- if nil != err {
- return err
- }
- err = yaml.Unmarshal(sliByte, ret)
- if nil != err {
- return err
- }
- return nil
- }
- func UnzipTo(f *zip.File, fpath string) error {
- _, err := os.Stat(fpath)
- if f.FileInfo().IsDir() {
- // Make Folder
- if _, err := os.Stat(fpath); os.IsNotExist(err) {
- if err := os.MkdirAll(fpath, os.ModePerm); err != nil {
- return err
- }
- }
- return nil
- }
- if err == nil || !os.IsNotExist(err) {
- if err = os.RemoveAll(fpath); err != nil {
- return fmt.Errorf("failed to delete file %s", fpath)
- }
- }
- if _, err := os.Stat(filepath.Dir(fpath)); os.IsNotExist(err) {
- if err := os.MkdirAll(filepath.Dir(fpath), os.ModePerm); err != nil {
- return err
- }
- }
- outFile, err := os.OpenFile(fpath, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, f.Mode())
- if err != nil {
- return err
- }
- rc, err := f.Open()
- if err != nil {
- return err
- }
- _, err = io.Copy(outFile, rc)
- outFile.Close()
- rc.Close()
- return err
- }
|