]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-cronexpr/main.go
657cd146d05356c6d8436cc402e0d11f48ff7157
[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-2021 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.Fprintf(os.Stderr, nncp.UsageHeader())
35         fmt.Fprintf(os.Stderr, "nncp-cronexpr -- cron expression checker\n\n")
36         fmt.Fprintf(os.Stderr, "Usage: %s [-num XXX] CRON-EXPRESSION\n", os.Args[0])
37         flag.PrintDefaults()
38 }
39
40 func main() {
41         var (
42                 num      = flag.Uint("num", 10, "Number of future entries to print")
43                 version  = flag.Bool("version", false, "Print version information")
44                 warranty = flag.Bool("warranty", false, "Print warranty information")
45         )
46         log.SetFlags(log.Lshortfile)
47         flag.Usage = usage
48         flag.Parse()
49         if *warranty {
50                 fmt.Println(nncp.Warranty)
51                 return
52         }
53         if *version {
54                 fmt.Println(nncp.VersionGet())
55                 return
56         }
57
58         expr, err := cronexpr.Parse(strings.Join(flag.Args(), " "))
59         if err != nil {
60                 log.Fatalln(err)
61         }
62         now := time.Now()
63         fmt.Printf("Now:\t%s\n", now.UTC().Format(time.RFC3339Nano))
64         for n, t := range expr.NextN(now, *num) {
65                 fmt.Printf("%d:\t%s\n", n, t.UTC().Format(time.RFC3339Nano))
66         }
67 }