]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-cronexpr/main.go
Remove huge usage headers, -warranty exists anyway
[nncp.git] / src / cmd / nncp-cronexpr / 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 // NNCP cron expression checker.
19 package main
20
21 import (
22         "flag"
23         "fmt"
24         "log"
25         "os"
26         "strings"
27         "time"
28
29         "github.com/gorhill/cronexpr"
30         "go.cypherpunks.ru/nncp/v8"
31 )
32
33 func usage() {
34         fmt.Fprint(os.Stderr, "nncp-cronexpr -- cron expression checker\n\n")
35         fmt.Fprintf(os.Stderr, "Usage: %s [-num XXX] CRON-EXPRESSION\n", os.Args[0])
36         flag.PrintDefaults()
37 }
38
39 func main() {
40         var (
41                 num      = flag.Uint("num", 10, "Number of future entries to print")
42                 version  = flag.Bool("version", false, "Print version information")
43                 warranty = flag.Bool("warranty", false, "Print warranty information")
44         )
45         log.SetFlags(log.Lshortfile)
46         flag.Usage = usage
47         flag.Parse()
48         if *warranty {
49                 fmt.Println(nncp.Warranty)
50                 return
51         }
52         if *version {
53                 fmt.Println(nncp.VersionGet())
54                 return
55         }
56
57         expr, err := cronexpr.Parse(strings.Join(flag.Args(), " "))
58         if err != nil {
59                 log.Fatalln(err)
60         }
61         now := time.Now()
62         fmt.Printf("Now:\t%s\n", now.UTC().Format(time.RFC3339Nano))
63         for n, t := range expr.NextN(now, *num) {
64                 fmt.Printf("%d:\t%s\n", n, t.UTC().Format(time.RFC3339Nano))
65         }
66 }