]> Cypherpunks.ru repositories - nncp.git/blob - src/cypherpunks.ru/nncp/cmd/nncp-file/main.go
Fifx nncp-file -minsize specified in bytes, instead of KiBs
[nncp.git] / src / cypherpunks.ru / nncp / cmd / nncp-file / main.go
1 /*
2 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
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 // Send file via NNCP
20 package main
21
22 import (
23         "flag"
24         "fmt"
25         "io/ioutil"
26         "log"
27         "os"
28         "strings"
29
30         "cypherpunks.ru/nncp"
31 )
32
33 func usage() {
34         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
35         fmt.Fprintln(os.Stderr, "nncp-file -- send file\n")
36         fmt.Fprintf(os.Stderr, "Usage: %s [options] SRC NODE:[DST]\nOptions:\n", os.Args[0])
37         flag.PrintDefaults()
38         fmt.Fprint(os.Stderr, `
39 If SRC equals to -, then read data from stdin to temporary file.
40 `)
41 }
42
43 func main() {
44         var (
45                 cfgPath   = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
46                 niceRaw   = flag.Int("nice", nncp.DefaultNiceFile, "Outbound packet niceness")
47                 minSize   = flag.Uint64("minsize", 0, "Minimal required resulting packet size, in KiB")
48                 chunkSize = flag.Uint64("chunked", 0, "Split file on specified size chunks, in KiB")
49                 quiet     = flag.Bool("quiet", false, "Print only errors")
50                 debug     = flag.Bool("debug", false, "Print debug messages")
51                 version   = flag.Bool("version", false, "Print version information")
52                 warranty  = flag.Bool("warranty", false, "Print warranty information")
53         )
54         flag.Usage = usage
55         flag.Parse()
56         if *warranty {
57                 fmt.Println(nncp.Warranty)
58                 return
59         }
60         if *version {
61                 fmt.Println(nncp.VersionGet())
62                 return
63         }
64         if flag.NArg() != 2 {
65                 usage()
66                 os.Exit(1)
67         }
68         if *niceRaw < 1 || *niceRaw > 255 {
69                 log.Fatalln("-nice must be between 1 and 255")
70         }
71         nice := uint8(*niceRaw)
72
73         cfgRaw, err := ioutil.ReadFile(nncp.CfgPathFromEnv(cfgPath))
74         if err != nil {
75                 log.Fatalln("Can not read config:", err)
76         }
77         ctx, err := nncp.CfgParse(cfgRaw)
78         if err != nil {
79                 log.Fatalln("Can not parse config:", err)
80         }
81         if ctx.Self == nil {
82                 log.Fatalln("Config lacks private keys")
83         }
84         ctx.Quiet = *quiet
85         ctx.Debug = *debug
86
87         splitted := strings.SplitN(flag.Arg(1), ":", 2)
88         if len(splitted) != 2 {
89                 usage()
90                 os.Exit(1)
91         }
92         node, err := ctx.FindNode(splitted[0])
93         if err != nil {
94                 log.Fatalln("Invalid NODE specified:", err)
95         }
96
97         if *chunkSize == 0 {
98                 err = ctx.TxFile(
99                         node,
100                         nice,
101                         flag.Arg(0),
102                         splitted[1],
103                         int64(*minSize)*1024,
104                 )
105         } else {
106                 err = ctx.TxFileChunked(
107                         node,
108                         nice,
109                         flag.Arg(0),
110                         splitted[1],
111                         int64(*minSize)*1024,
112                         int64(*chunkSize)*1024,
113                 )
114         }
115         if err != nil {
116                 log.Fatalln(err)
117         }
118 }