]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-freq/main.go
Wrap long lines
[nncp.git] / src / cmd / nncp-freq / 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 // Send file request via NNCP.
19 package main
20
21 import (
22         "flag"
23         "fmt"
24         "log"
25         "os"
26         "path/filepath"
27         "strings"
28
29         "go.cypherpunks.ru/nncp/v8"
30 )
31
32 func usage() {
33         fmt.Fprint(os.Stderr, "nncp-freq -- send file request\n\n")
34         fmt.Fprintf(os.Stderr, "Usage: %s [options] NODE:SRC [DST]\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                 niceRaw = flag.String("nice", nncp.NicenessFmt(nncp.DefaultNiceFreq),
42                         "Outbound packet niceness")
43                 replyNiceRaw = flag.String("replynice", nncp.NicenessFmt(nncp.DefaultNiceFile),
44                         "Reply file packet niceness")
45                 minSize     = flag.Uint64("minsize", 0, "Minimal required resulting packet size, in KiB")
46                 viaOverride = flag.String("via", "", "Override Via path to destination node")
47                 spoolPath   = flag.String("spool", "", "Override path to spool")
48                 logPath     = flag.String("log", "", "Override path to logfile")
49                 quiet       = flag.Bool("quiet", false, "Print only errors")
50                 showPrgrs   = flag.Bool("progress", false, "Force progress showing")
51                 omitPrgrs   = flag.Bool("noprogress", false, "Omit progress showing")
52                 debug       = flag.Bool("debug", false, "Print debug messages")
53                 version     = flag.Bool("version", false, "Print version information")
54                 warranty    = flag.Bool("warranty", false, "Print warranty information")
55         )
56         log.SetFlags(log.Lshortfile)
57         flag.Usage = usage
58         flag.Parse()
59         if *warranty {
60                 fmt.Println(nncp.Warranty)
61                 return
62         }
63         if *version {
64                 fmt.Println(nncp.VersionGet())
65                 return
66         }
67         if flag.NArg() == 0 {
68                 usage()
69                 os.Exit(1)
70         }
71         nice, err := nncp.NicenessParse(*niceRaw)
72         if err != nil {
73                 log.Fatalln(err)
74         }
75         replyNice, err := nncp.NicenessParse(*replyNiceRaw)
76         if err != nil {
77                 log.Fatalln(err)
78         }
79
80         ctx, err := nncp.CtxFromCmdline(
81                 *cfgPath,
82                 *spoolPath,
83                 *logPath,
84                 *quiet,
85                 *showPrgrs,
86                 *omitPrgrs,
87                 *debug,
88         )
89         if err != nil {
90                 log.Fatalln("Error during initialization:", err)
91         }
92         if ctx.Self == nil {
93                 log.Fatalln("Config lacks private keys")
94         }
95
96         splitted := strings.SplitN(flag.Arg(0), ":", 2)
97         if len(splitted) != 2 {
98                 usage()
99                 os.Exit(1)
100         }
101         node, err := ctx.FindNode(splitted[0])
102         if err != nil {
103                 log.Fatalln("Invalid NODE specified:", err)
104         }
105
106         nncp.ViaOverride(*viaOverride, ctx, node)
107         ctx.Umask()
108
109         var dst string
110         if flag.NArg() == 2 {
111                 dst = flag.Arg(1)
112         } else {
113                 dst = filepath.Base(splitted[1])
114         }
115
116         if err = ctx.TxFreq(
117                 node,
118                 nice,
119                 replyNice,
120                 splitted[1],
121                 dst,
122                 int64(*minSize)*1024,
123         ); err != nil {
124                 log.Fatalln(err)
125         }
126 }