This file is indexed.

/usr/share/acl2-6.5/books/regex/regex-parse-brace.lisp is in acl2-books-source 6.5-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
;; Parsing of brace expressions such as {3}, {4,}, {2,5} etc


(in-package "ACL2")


(include-book "regex-defs")
(include-book "input-list")
(include-book "tools/mv-nth" :dir :system)

;; Digit parsing, for brace expressions
(defun get-digit-char (c)
  (declare (xargs :guard (characterp c)))
  (let ((n (char-code c)))
    (if (and (<= (char-code #\0) n) (<= n (char-code #\9)))
        (- n (char-code #\0))
    nil)))

(defthm get-digit-nonneg
  (or (not (get-digit-char c))
      (and (integerp (get-digit-char c))
           (<= 0 (get-digit-char c))))
  :rule-classes :type-prescription)

(in-theory (disable get-digit-char))

(defun parse-int (str idx)
  (declare (xargs :guard (and (stringp str)
                              (indexp idx str))
                  :measure (string-index-measure idx str)
                  :verify-guards nil))
  (if (string-index-end idx str)
      (mv nil idx 1)
    (let ((dig (get-digit-char (char str idx))))
      (if dig
          (mv-let (num rest power) (parse-int str (1+ idx))
                  (if num
                      (mv (+ (* power dig) num) rest (* 10 power))
                    (mv dig (1+ idx) 10)))
        (mv nil idx 1)))))


(defthm parse-int-type3
  (and (integerp (mv-nth 2 (parse-int str idx)))
       (<= 0 (mv-nth 2 (parse-int str idx))))
  :rule-classes (:rewrite :type-prescription))

(defthm parse-int-type1
  (or (not (mv-nth 0 (parse-int str idx)))
      (and (integerp (mv-nth 0 (parse-int str idx)))
           (<= 0 (mv-nth 0 (parse-int str idx)))))
  :rule-classes ((:rewrite 
                  :corollary (implies (mv-nth 0 (parse-int str idx))
                                      (and (integerp (mv-nth 0 (parse-int str idx)))
                                           (<= 0 (mv-nth 0 (parse-int str idx))))))
                  :type-prescription))

(defthm parse-int-type2-weak
  (implies (natp idx)
           (and (integerp (mv-nth 1 (parse-int str idx)))
                (<= 0 (mv-nth 1 (parse-int str idx)))
                (<= idx (mv-nth 1 (parse-int str idx)))))
  :rule-classes (:rewrite 
                 (:type-prescription
                  :corollary
                  (implies (natp idx)
                           (natp (mv-nth 1 (parse-int str idx)))))
                 (:linear
                  :corollary 
                  (implies (natp idx)
                           (and (<= 0 (mv-nth 1 (parse-int str idx)))
                                (<= idx (mv-nth 1 (parse-int str idx))))))))

(defthm parse-int-type2-strong
  (implies (indexp idx str)
           (<= (mv-nth 1 (parse-int str idx)) (length str)))
  :rule-classes (:rewrite 
                 (:linear 
                  :corollary 
                  (implies 
                   (indexp idx str)
                   (<= (mv-nth 1 (parse-int str idx)) (length str))))))


(verify-guards parse-int)
;; (defthm character-list-cdr-character-list
;;   (implies (character-listp str)
;;            (character-listp (cdr str)))
;;   :rule-classes
;;   (:rewrite
;;    (:forward-chaining
;;     :trigger-terms ((character-listp (cdr str))))))


(defun close-brace-p (str idx opts)
  (declare (xargs :guard (and (stringp str)
                              (indexp idx str)
                              (parse-options-p opts))))
  (if (not (string-index-end idx str))
      (if (eq 'ere (parse-options-type opts))
          (if (equal (char str idx) #\})
              (mv t (1+ idx))
            (mv nil idx))
        (if (and (equal (char str idx) #\\)
                 (not (string-index-end (1+ idx) str))
                 (equal (char str (1+ idx)) #\}))
            (mv t (+ 2 idx))
          (mv nil idx)))
    (mv nil idx)))

(defthm close-brace-p-yes
  (implies (and (integerp idx)
                (mv-nth 0 (close-brace-p str idx opts)))
           (< idx (mv-nth 1 (close-brace-p str idx opts))))
  :rule-classes 
  (:rewrite
   (:linear
    :corollary (implies (and (integerp idx)
                             (mv-nth 0 (close-brace-p str idx opts)))
                        (< idx (mv-nth 1 (close-brace-p str idx opts)))))))

(defthm close-brace-p-always
  (implies (integerp idx)
           (and (integerp (mv-nth 1 (close-brace-p str idx opts)))
                (<= idx (mv-nth 1 (close-brace-p str idx opts)))))
  :rule-classes
  (:rewrite
   (:type-prescription
    :corollary (implies (and (integerp idx)
                             (mv-nth 0 (close-brace-p str idx opts)))
                        (integerp (mv-nth 1 (close-brace-p str idx opts)))))
   (:type-prescription
    :corollary (implies (and (natp idx)
                             (mv-nth 0 (close-brace-p str idx opts)))
                        (natp (mv-nth 1 (close-brace-p str idx opts)))))
   (:linear
    :corollary (implies (integerp idx)
                        (<= idx (mv-nth 1 (close-brace-p str idx opts)))))))

(defthm close-brace-p-len
  (implies (indexp idx str)
           (<= (mv-nth 1 (close-brace-p str idx opts)) (length str)))
  :rule-classes (:rewrite :linear))


(defthm close-brace-p-no
  (implies (not (mv-nth 0 (close-brace-p str idx opts)))
           (= (mv-nth 1 (close-brace-p str idx opts))
              idx)))

(defthm close-brace-parse-int
  (implies (indexp idx str)
           (<= (mv-nth 1 (close-brace-p str
                                        (mv-nth 1 (parse-int str idx))
                                        opts))
               (length str)))
  :rule-classes (:rewrite :linear))

(in-theory (disable close-brace-p))
                              
                 


(defun has-closing-brace (str idx opts)
  (declare (xargs :guard (and (stringp str)
                              (indexp idx str)
                              (parse-options-p opts))
                  :measure (string-index-measure idx str)))
  (if (string-index-end idx str)
      nil
    (mv-let (close rest) (close-brace-p str idx opts)
            (declare (ignore rest))
            (or close
                (has-closing-brace str (1+ idx) opts)))))


;; Parses brace expressions which may look like the following
;; {n}  matches exactly n
;; {n,m} matches between n and m inclusive (m >= n)
;; {,n} matches up to n
;; {n,} matches n or more
(defun parse-brace (str idx reg opts)
  (declare (xargs :guard (and (stringp str)
                              (indexp idx str)
                              (regex-p reg)
                              (parse-options-p opts))))
  (if (has-closing-brace str idx opts)
      ;; Grep doesn't allow opening comma;
      ;; use {0,n} instead
      ;; (if (equal (car str) #\,)
;;           (mv-let 
;;            (num rest pow) (parse-int (cdr str))
;;            (declare (ignore pow))
;;            (if num
;;                (mv-let (close rest) (close-brace-p rest opts)
;;                        (if close
;;                            (mv `(repeat ,reg 0 ,num ) rest)
;;                          (mv "Bad character after number in brace" rest)))
;;              (mv "Bad character after comma beginning brace" rest)))
        (mv-let 
         (num1 rest pow) (parse-int str idx)
         (declare (ignore pow))
         (if num1
             (if (and (not (string-index-end rest str))
                      (equal (char str rest) #\,)
                      (not (string-index-end (1+ rest) str)))
                 (mv-let 
                  (close rest) (close-brace-p str (1+ rest) opts)
                  (if close
                      (mv (r-repeat reg num1 -1) rest)
                    (mv-let 
                     (num2 rest pow) (parse-int str rest)
                     (declare (ignore pow))
                     (mv-let (close rest) (close-brace-p str rest opts)
                             (if (and num2 
                                      (<= num1 num2) 
                                      close)
                                 (mv (r-repeat reg num1 num2)
                                     rest)
                               (mv "Bad figure after comma in brace" rest))))))
               (mv-let (close rest) (close-brace-p str rest opts)
                       (if close
                           (mv (r-repeat reg num1 num1) rest)
                         (mv "Bad character after number in brace" rest))))
           (mv "Bad character begins brace" rest)))
    (mv "No closing brace" idx)))

  
(defthm parse-brace-index-weak
  (implies (natp idx)
           (and (integerp (mv-nth 1 (parse-brace str idx reg opts)))
                (<= 0  (mv-nth 1 (parse-brace str idx reg opts)))
                (<= idx (mv-nth 1 (parse-brace str idx reg opts)))))
  :rule-classes
  (:rewrite 
   (:type-prescription
    :corollary (implies (natp idx)
                        (natp (mv-nth 1 (parse-brace str idx reg opts)))))
   (:linear 
    :corollary 
    (implies (natp idx)
             (and (<= 0  (mv-nth 1 (parse-brace str idx reg opts)))
                  (<= idx (mv-nth 1 (parse-brace str idx reg opts))))))))

(defthm parse-brace-index-strong
  (implies (indexp idx str)
           (<= (mv-nth 1 (parse-brace str idx reg opts)) (length str)))
  :rule-classes (:rewrite :linear)
  :hints (("Goal" :in-theory (disable length))))

(defthm parse-brace-regexp
  (implies (and (regex-p reg)
                (not (stringp (mv-nth 0 (parse-brace str idx reg opts)))))
           (regex-p (mv-nth 0 (parse-brace str idx reg opts))))
  :rule-classes
  (:rewrite
   (:forward-chaining
    :trigger-terms ((mv-nth 0 (parse-brace str idx reg opts))))))

(defthm parse-brace-nonnil
  (mv-nth 0 (parse-brace str idx reg opts)))

(in-theory (disable parse-brace))