aboutsummaryrefslogtreecommitdiff
path: root/module/calp/entry-points/terminal.scm
blob: 5aaa1f2d0aac3a77817e82f67a07cd62b39d01f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
(define-module (calp entry-points terminal)
  :export (main)
  :use-module (calp terminal)
  :use-module (vcomponent)
  :use-module (ice-9 getopt-long)
  :use-module (datetime)
  :use-module (vulgar)
  :use-module (calp util options)
  )

(define options
  '((date (value #t) (single-char #\d)
          (description "Which date to start on."))
    (help (single-char #\t) (description "Print this help."))
    ))

(define (main args)
  (define opts (getopt-long args (getopt-opt options)))

  (when (option-ref opts 'help #f)
    (print-arg-help options)
    (throw 'return))

  (let ((date (or (and=> (option-ref opts 'date #f) parse-freeform-date)
                  (current-date))))
    (with-vulgar
     (lambda () (main-loop date))))
)