]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-log/main.go
Remove huge usage headers, -warranty exists anyway
[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-2023 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.Fprint(os.Stderr, "nncp-log -- read logs\n\n")
34         fmt.Fprintf(os.Stderr, "Usage: %s [options]\nOptions:\n", os.Args[0])
35         flag.PrintDefaults()
36 }
37
38 func main() {
39         var (
40                 cfgPath  = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
41                 logPath  = flag.String("log", "", "Override path to logfile")
42                 debug    = flag.Bool("debug", false, "Print debug messages")
43                 version  = flag.Bool("version", false, "Print version information")
44                 warranty = flag.Bool("warranty", false, "Print warranty information")
45         )
46         log.SetFlags(log.Lshortfile)
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         ctx, err := nncp.CtxFromCmdline(*cfgPath, "", *logPath, false, false, false, *debug)
59         if err != nil {
60                 log.Fatalln("Error during initialization:", err)
61         }
62
63         fd, err := os.Open(ctx.LogPath)
64         if err != nil {
65                 log.Fatalln("Can not open log:", err)
66         }
67         r := recfile.NewReader(fd)
68         for {
69                 le, err := r.NextMap()
70                 if err != nil {
71                         if err == io.EOF {
72                                 break
73                         }
74                         log.Fatalln("Can not read log:", err)
75                 }
76                 if *debug {
77                         fmt.Println(le)
78                 }
79                 s, err := ctx.Humanize(le)
80                 if err != nil {
81                         s = fmt.Sprintf("Can not humanize: %s\n%s", err, le)
82                 }
83                 fmt.Println(s)
84         }
85 }