]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-file/main.go
Operations progress
[nncp.git] / src / cmd / nncp-file / main.go
1 /*
2 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
3 Copyright (C) 2016-2019 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 via NNCP.
19 package main
20
21 import (
22         "flag"
23         "fmt"
24         "log"
25         "os"
26         "strings"
27
28         "go.cypherpunks.ru/nncp/v5"
29 )
30
31 func usage() {
32         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
33         fmt.Fprintf(os.Stderr, "nncp-file -- send file\n\n")
34         fmt.Fprintf(os.Stderr, "Usage: %s [options] SRC NODE:[DST]\nOptions:\n", os.Args[0])
35         flag.PrintDefaults()
36         fmt.Fprint(os.Stderr, `
37 If SRC equals to -, then read data from stdin to temporary file.
38
39 -minsize/-chunked take NODE's freq.minsize/freq.chunked configuration
40 options by default. You can forcefully turn them off by specifying 0 value.
41 `)
42 }
43
44 func main() {
45         var (
46                 cfgPath      = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
47                 niceRaw      = flag.String("nice", nncp.NicenessFmt(nncp.DefaultNiceFile), "Outbound packet niceness")
48                 argMinSize   = flag.Int64("minsize", -1, "Minimal required resulting packet size, in KiB")
49                 argChunkSize = flag.Int64("chunked", -1, "Split file on specified size chunks, in KiB")
50                 viaOverride  = flag.String("via", "", "Override Via path to destination node")
51                 spoolPath    = flag.String("spool", "", "Override path to spool")
52                 logPath      = flag.String("log", "", "Override path to logfile")
53                 quiet        = flag.Bool("quiet", false, "Print only errors")
54                 showPrgrs    = flag.Bool("progress", false, "Force progress showing")
55                 omitPrgrs    = flag.Bool("noprogress", false, "Omit progress showing")
56                 debug        = flag.Bool("debug", false, "Print debug messages")
57                 version      = flag.Bool("version", false, "Print version information")
58                 warranty     = flag.Bool("warranty", false, "Print warranty information")
59         )
60         flag.Usage = usage
61         flag.Parse()
62         if *warranty {
63                 fmt.Println(nncp.Warranty)
64                 return
65         }
66         if *version {
67                 fmt.Println(nncp.VersionGet())
68                 return
69         }
70         if flag.NArg() != 2 {
71                 usage()
72                 os.Exit(1)
73         }
74         nice, err := nncp.NicenessParse(*niceRaw)
75         if err != nil {
76                 log.Fatalln(err)
77         }
78
79         ctx, err := nncp.CtxFromCmdline(
80                 *cfgPath,
81                 *spoolPath,
82                 *logPath,
83                 *quiet,
84                 *showPrgrs,
85                 *omitPrgrs,
86                 *debug,
87         )
88         if err != nil {
89                 log.Fatalln("Error during initialization:", err)
90         }
91         if ctx.Self == nil {
92                 log.Fatalln("Config lacks private keys")
93         }
94
95         splitted := strings.SplitN(flag.Arg(1), ":", 2)
96         if len(splitted) != 2 {
97                 usage()
98                 os.Exit(1)
99         }
100         node, err := ctx.FindNode(splitted[0])
101         if err != nil {
102                 log.Fatalln("Invalid NODE specified:", err)
103         }
104
105         nncp.ViaOverride(*viaOverride, ctx, node)
106         ctx.Umask()
107
108         var minSize int64
109         if *argMinSize < 0 {
110                 minSize = node.FreqMinSize
111         } else if *argMinSize > 0 {
112                 minSize = *argMinSize * 1024
113         }
114
115         var chunkSize int64
116         if *argChunkSize < 0 {
117                 chunkSize = node.FreqChunked
118         } else if *argChunkSize > 0 {
119                 chunkSize = *argChunkSize * 1024
120         }
121         if chunkSize == 0 {
122                 chunkSize = nncp.MaxFileSize
123         }
124
125         if err = ctx.TxFile(
126                 node,
127                 nice,
128                 flag.Arg(0),
129                 splitted[1],
130                 chunkSize,
131                 minSize,
132                 nncp.MaxFileSize,
133         ); err != nil {
134                 log.Fatalln(err)
135         }
136 }