]> Cypherpunks.ru repositories - nncp.git/blob - src/cypherpunks.ru/nncp/cmd/nncp-stat/main.go
Initial
[nncp.git] / src / cypherpunks.ru / nncp / cmd / nncp-stat / 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 // Show queued NNCP Rx/Tx stats
20 package main
21
22 import (
23         "flag"
24         "fmt"
25         "io/ioutil"
26         "log"
27         "os"
28
29         "cypherpunks.ru/nncp"
30         "github.com/dustin/go-humanize"
31 )
32
33 func usage() {
34         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
35         fmt.Fprintln(os.Stderr, "nncp-stat -- show queued Rx/Tx stats\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                 nodeRaw  = flag.String("node", "", "Process only that node")
44                 debug    = flag.Bool("debug", false, "Enable debugging information")
45                 version  = flag.Bool("version", false, "Print version information")
46                 warranty = flag.Bool("warranty", false, "Print warranty information")
47         )
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         cfgRaw, err := ioutil.ReadFile(*cfgPath)
60         if err != nil {
61                 log.Fatalln("Can not read config:", err)
62         }
63         ctx, err := nncp.CfgParse(cfgRaw)
64         if err != nil {
65                 log.Fatalln("Can not parse config:", err)
66         }
67         ctx.Debug = *debug
68
69         var nodeOnly *nncp.Node
70         if *nodeRaw != "" {
71                 nodeOnly, err = ctx.FindNode(*nodeRaw)
72                 if err != nil {
73                         log.Fatalln("Invalid -node specified:", err)
74                 }
75         }
76
77         for nodeId, node := range ctx.Neigh {
78                 if nodeOnly != nil && nodeId != *nodeOnly.Id {
79                         continue
80                 }
81                 rxNums := make(map[uint8]int)
82                 rxBytes := make(map[uint8]int64)
83                 for job := range ctx.Jobs(&nodeId, nncp.TRx) {
84                         job.Fd.Close()
85                         rxNums[job.PktEnc.Nice] = rxNums[job.PktEnc.Nice] + 1
86                         rxBytes[job.PktEnc.Nice] = rxBytes[job.PktEnc.Nice] + job.Size
87                 }
88                 txNums := make(map[uint8]int)
89                 txBytes := make(map[uint8]int64)
90                 for job := range ctx.Jobs(&nodeId, nncp.TTx) {
91                         job.Fd.Close()
92                         txNums[job.PktEnc.Nice] = txNums[job.PktEnc.Nice] + 1
93                         txBytes[job.PktEnc.Nice] = txBytes[job.PktEnc.Nice] + job.Size
94                 }
95                 fmt.Println(node.Name)
96                 for nice := 0; nice < 256; nice++ {
97                         rxNum, rxExists := rxNums[uint8(nice)]
98                         txNum, txExists := txNums[uint8(nice)]
99                         if !(rxExists || txExists) {
100                                 continue
101                         }
102                         fmt.Printf(
103                                 "\tnice:% 3d | Rx: % 10s, % 3d pkts | Tx: % 10s, % 3d pkts\n",
104                                 nice,
105                                 humanize.IBytes(uint64(rxBytes[uint8(nice)])),
106                                 rxNum,
107                                 humanize.IBytes(uint64(txBytes[uint8(nice)])),
108                                 txNum,
109                         )
110                 }
111         }
112 }