]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-log/main.go
c6bd1205e18fe7b4ede681e8eeaf7db43af203e8
[nncp.git] / src / cmd / nncp-log / main.go
1 /*
2 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
3 Copyright (C) 2016-2021 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, version 3 of the License.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 // Read NNCP logs.
19 package main
20
21 import (
22         "flag"
23         "fmt"
24         "io"
25         "log"
26         "os"
27
28         "go.cypherpunks.ru/nncp/v8"
29         "go.cypherpunks.ru/recfile"
30 )
31
32 func usage() {
33         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
34         fmt.Fprintf(os.Stderr, "nncp-log -- read logs\n\n")
35         fmt.Fprintf(os.Stderr, "Usage: %s [options]\nOptions:\n", os.Args[0])
36         flag.PrintDefaults()
37 }
38
39 func main() {
40         var (
41                 cfgPath  = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
42                 logPath  = flag.String("log", "", "Override path to logfile")
43                 debug    = flag.Bool("debug", false, "Print debug messages")
44                 version  = flag.Bool("version", false, "Print version information")
45                 warranty = flag.Bool("warranty", false, "Print warranty information")
46         )
47         log.SetFlags(log.Lshortfile)
48         flag.Usage = usage
49         flag.Parse()
50         if *warranty {
51                 fmt.Println(nncp.Warranty)
52                 return
53         }
54         if *version {
55                 fmt.Println(nncp.VersionGet())
56                 return
57         }
58
59         ctx, err := nncp.CtxFromCmdline(*cfgPath, "", *logPath, false, false, false, *debug)
60         if err != nil {
61                 log.Fatalln("Error during initialization:", err)
62         }
63
64         fd, err := os.Open(ctx.LogPath)
65         if err != nil {
66                 log.Fatalln("Can not open log:", err)
67         }
68         r := recfile.NewReader(fd)
69         for {
70                 le, err := r.NextMap()
71                 if err != nil {
72                         if err == io.EOF {
73                                 break
74                         }
75                         log.Fatalln("Can not read log:", err)
76                 }
77                 if *debug {
78                         fmt.Println(le)
79                 }
80                 s, err := ctx.Humanize(le)
81                 if err != nil {
82                         s = fmt.Sprintf("Can not humanize: %s\n%s", err, le)
83                 }
84                 fmt.Println(s)
85         }
86 }