]> Cypherpunks.ru repositories - nncp.git/blob - src/cypherpunks.ru/nncp/cmd/nncp-rm/main.go
Merge branch 'develop'
[nncp.git] / src / cypherpunks.ru / nncp / cmd / nncp-rm / 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 // Remove packet from the queue
20 package main
21
22 import (
23         "flag"
24         "fmt"
25         "io/ioutil"
26         "log"
27         "os"
28         "path/filepath"
29
30         "cypherpunks.ru/nncp"
31 )
32
33 func usage() {
34         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
35         fmt.Fprintln(os.Stderr, "nncp-rm -- remove packet\n")
36         fmt.Fprintf(os.Stderr, "Usage: %s [options] NODE PKT\nOptions:\n", 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                 quiet    = flag.Bool("quiet", false, "Print only errors")
44                 debug    = flag.Bool("debug", false, "Print debug messages")
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         if flag.NArg() != 2 {
59                 usage()
60                 os.Exit(1)
61         }
62
63         cfgRaw, err := ioutil.ReadFile(nncp.CfgPathFromEnv(cfgPath))
64         if err != nil {
65                 log.Fatalln("Can not read config:", err)
66         }
67         ctx, err := nncp.CfgParse(cfgRaw)
68         if err != nil {
69                 log.Fatalln("Can not parse config:", err)
70         }
71         ctx.Quiet = *quiet
72         ctx.Debug = *debug
73
74         node, err := ctx.FindNode(flag.Arg(0))
75         if err != nil {
76                 log.Fatalln("Invalid NODE specified:", err)
77         }
78
79         pktName := flag.Arg(1)
80         remove := func(xx nncp.TRxTx) bool {
81                 for job := range ctx.Jobs(node.Id, xx) {
82                         job.Fd.Close()
83                         if filepath.Base(job.Fd.Name()) == pktName {
84                                 if err = os.Remove(job.Fd.Name()); err != nil {
85                                         log.Fatalln("Can not remove packet:", err)
86                                 }
87                                 return true
88                         }
89                 }
90                 return false
91         }
92
93         if !(remove(nncp.TRx) || remove(nncp.TTx)) {
94                 log.Fatalln("Have not found specified packet")
95         }
96 }