]> Cypherpunks.ru repositories - nncp.git/blob - src/cypherpunks.ru/nncp/cmd/nncp-log/main.go
Initial
[nncp.git] / src / cypherpunks.ru / nncp / cmd / nncp-log / main.go
1 /*
2 NNCP -- Node-to-Node CoPy
3 Copyright (C) 2016-2017 Sergey Matveev <stargrave@stargrave.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 // Read NNCP logs
20 package main
21
22 import (
23         "bufio"
24         "flag"
25         "fmt"
26         "io/ioutil"
27         "log"
28         "os"
29
30         "cypherpunks.ru/nncp"
31 )
32
33 func usage() {
34         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
35         fmt.Fprintln(os.Stderr, "nncp-log -- read logs\n")
36         fmt.Fprintln(os.Stderr, "Usage: %s [options]\nOptions:", os.Args[0])
37         flag.PrintDefaults()
38 }
39
40 func main() {
41         var (
42                 cfgPath  = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
43                 debug    = flag.Bool("debug", false, "Enable debugging information")
44                 version  = flag.Bool("version", false, "Print version information")
45                 warranty = flag.Bool("warranty", false, "Print warranty information")
46         )
47         flag.Usage = usage
48         flag.Parse()
49         if *warranty {
50                 fmt.Println(nncp.Warranty)
51                 return
52         }
53         if *version {
54                 fmt.Println(nncp.VersionGet())
55                 return
56         }
57
58         cfgRaw, err := ioutil.ReadFile(*cfgPath)
59         if err != nil {
60                 log.Fatalln("Can not read config:", err)
61         }
62         ctx, err := nncp.CfgParse(cfgRaw)
63         if err != nil {
64                 log.Fatalln("Can not parse config:", err)
65         }
66
67         fd, err := os.Open(ctx.LogPath)
68         if err != nil {
69                 log.Fatalln("Can not open log:", err)
70         }
71         scanner := bufio.NewScanner(fd)
72         for scanner.Scan() {
73                 t := scanner.Text()
74                 if *debug {
75                         fmt.Println(t)
76                 }
77                 fmt.Println(ctx.Humanize(t))
78         }
79         if err = scanner.Err(); err != nil {
80                 log.Fatalln("Can not read log:", err)
81         }
82 }