summaryrefslogtreecommitdiff
path: root/cook/parse.scm
blob: ae645f66e9799077532db8a4c02ce86d110ed75c (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#|
https://github.com/cooklang/spec/blob/main/EBNF.md
|#
(define-record-type <amount>
  (make-amount quantity unit)
  amount?
  (quantity amount-quantity)
  (unit amount-unit))

(define-record-type <component>
  (make-component name amount)
  component?
  (name component-name)
  (amount component-amount))

(define-record-type <ingredient>
  (make-ingredient name amount)
  ingredient?
  (name ingredient-name)
  (amount ingredient-amount))

(define (component->ingredient comp)
  (make-ingredient (component-name comp) (component-amount comp)))

(define-record-type <cookware>
  (make-cookware name amount)
  cookware?
  (name cookware-name)
  (amount cookware-amount))

(define (component->cookware comp)
  (make-cookware (component-name comp) (component-amount comp)))

(define-record-type <timer>
  (make-timer name amount)
  timer?
  (name timer-name)
  (amount timer-amount))

(define (component->timer comp)
  (make-timer (component-name comp) (component-amount comp)))

(define-record-type <metadata-line>
  (make-metadata-line key value)
  metadata-line?
  (key metadata-line-key)
  (value metadata-line-value))

(define-record-type <step>
  (make-step elements)
  step?
  (elements step-elements))

(define-record-type <comment>
  (make-comment text)
  comment?
  (text comment-text))

(define (metadata-line-list->hash-table meta-lines)
  (let ((metadata (make-hash-table)))
    (for-each (lambda (line)
                (hash-table-set! metadata
                                 (metadata-line-key line)
                                 (metadata-line-value line)))
              meta-lines)
    metadata))



(define newline-chars     (char-set #\x000A #\x000D #\x0085 #\x2028 #\x2029))
(define punctuation-chars (char-set #\. #\{ #\})) ;; TODO: do it right
(define word-chars      (char-set-difference char-set:full
                                             punctuation-chars
                                             char-set:whitespace))
(define any-text-chars  (char-set-difference char-set:full
                                             newline-chars))
(define text-chars      (char-set-difference any-text-chars
                                             (char-set #\@ #\# #\~)))
(define unit-chars      (char-set-difference text-chars (char-set #\})))
(define component-chars (char-set-difference text-chars (char-set #\{ #\})))
(define quantity-chars  (char-set-difference text-chars (char-set #\} #\%)))
(define metadata-chars  (char-set-difference text-chars (char-set #\:)))

(define-grammar cook
    (nl             ((+ ,newline-chars)))
    (whitespace     ((+ ,char-set:whitespace)))

    (any-text-item  ((: (=> c (+ ,any-text-chars)))
                     (list->string c)))
    (text-item      ((: (=> c (+ ,text-chars)))
                     (list->string c)))

    (comment        ((: "--" (=> c (+ ,any-text-chars)) ,nl)
                     (make-comment (list->string c)))
                    ((: "[-" (=> c (* any)) "-]")
                     (make-comment (list->string c))))

    (word           ((=> w (+ ,word-chars))
                     (list->string w)))
    (unit           ((=> u (+ ,unit-chars))
                     (list->string u)))
    (quantity       ((=> q (+ ,quantity-chars))
                     (string->number (list->string q))))
    (meta-key       ((=> k (+ ,metadata-chars))
                     (list->string k)))

    (amount         ((: (=> q  ,quantity) "%" (=> u ,unit))
                     (make-amount q u))
                    ((=> q ,quantity)
                     (make-amount q #f)))

    (no-word-component ((: (=> x (? ,component-chars))
                           "{" (? (=> a ,amount)) "}")
                        (make-component (list->string x) a)))
    (component      ((: (=> x (+ ,word)) (? (:"{" (=> a ,amount) "}")))
                     (make-component x a))
                    ((: (=> x (+ ,component-chars)) "{" (? (=> a ,amount)) "}")
                     (make-component (list->string x) a)))

    (timer          ((: "~" (=> c (or ,component ,no-word-component)))
                     (component->timer c)))
    (cookware       ((: "#" (=> c ,component))
                     (component->cookware c)))
    (ingredient     ((: "@" (=> c ,component))
                     (component->ingredient c)))

    (step           ((: (=> s (+ (or ,ingredient
                                     ,cookware
                                     ,timer
                                     ,text-item)))
                        ,nl)
                     (make-step s)))

    (metadata       ((: bol ">>" (* ,whitespace)
                        (=> k ,meta-key)
                        (* ,whitespace) ":" (* ,whitespace)
                        (=> v ,any-text-item) (* ,whitespace) ,nl)
                     (make-metadata-line k v)))

    (recipe         ((* (or (=> m (+ ,metadata))
                            (=> c (+ ,comment)))
                            (=> s (+ ,step)))
                     (list 'recipe (metadata-line-list->hash-table m) s))))

(define (parse-cook str)
  (parse-fully recipe str))