/usr/share/acl2-6.3/books/str/strline.lisp is in acl2-books-source 6.3-5.
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 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 | ; ACL2 String Library
; Copyright (C) 2009-2013 Centaur Technology
;
; Contact:
; Centaur Technology Formal Verification Group
; 7600-C N. Capital of Texas Highway, Suite 300, Austin, TX 78731, USA.
; http://www.centtech.com/
;
; This program is free software; you can redistribute it and/or modify it under
; the terms of the GNU General Public License as published by the Free Software
; Foundation; either version 2 of the License, or (at your option) any later
; version. This program is distributed in the hope that it will be useful but
; WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
; more details. You should have received a copy of the GNU General Public
; License along with this program; if not, write to the Free Software
; Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
;
; Original author: Jared Davis <jared@centtech.com>
(in-package "STR")
(include-book "coerce")
(local (include-book "misc/assert" :dir :system))
(local (include-book "arithmetic"))
;; BOZO move these to arithmetic? Depends, maybe we don't want them to be
;; local...
(defthm position-ac-lower-bound
(implies (and (position-ac item x acc)
(natp acc))
(<= acc (position-ac item x acc)))
:rule-classes ((:rewrite) (:linear))
:hints(("Goal" :in-theory (enable position-ac))))
(defthm position-ac-upper-bound
(implies (natp acc)
(<= (position-ac item x acc)
(+ acc (len x))))
:rule-classes ((:rewrite) (:linear))
:hints(("Goal" :in-theory (enable position-ac))))
(defsection charpos-aux
(defund charpos-aux (x n xl char)
;; Return the first index of character CHAR in X[n:_], or NIL if CHAR does
;; not occur in this range.
(declare (type string x)
(type integer n)
(type integer xl)
(type character char)
(xargs :guard (and (stringp x)
(natp n)
(natp xl)
(<= n xl)
(= xl (length x)))))
(mbe :logic
(position-ac char
(nthcdr n (explode x))
(nfix n))
:exec
(cond ((mbe :logic (zp (- (nfix xl) (nfix n)))
:exec (int= n xl))
nil)
((eql (char x n) char)
(lnfix n))
(t
(charpos-aux x (+ 1 (lnfix n)) xl char)))))
(local (in-theory (enable charpos-aux position-equal-ac)))
(defthm type-of-charpos-aux
(implies (force (natp n))
(or (natp (charpos-aux x n xl char))
(not (charpos-aux x n xl char))))
:rule-classes :type-prescription
:hints(("Goal" :in-theory (enable charpos-aux)))))
(defsection go-to-line
(defund go-to-line (x n xl curr goal)
(declare (xargs :guard (and (stringp x)
(natp n)
(natp xl)
(<= n xl)
(= xl (length x))
(natp curr)
(natp goal))
:measure (nfix (- (nfix xl) (nfix n))))
(type string x)
(type integer n xl curr goal))
(cond ((mbe :logic (zp (- (nfix xl) (nfix n)))
:exec (int= n xl))
nil)
((int= curr goal)
(lnfix n))
(t
(go-to-line x (+ 1 (lnfix n)) xl
(if (eql (char x n) #\Newline)
(+ 1 curr)
curr)
goal))))
(local (in-theory (enable go-to-line)))
(defthm type-of-go-to-line
(or (not (go-to-line x n xl curr goal))
(and (integerp (go-to-line x n xl curr goal))
(<= 0 (go-to-line x n xl curr goal))))
:rule-classes :type-prescription)
(defthm go-to-line-lower-bound
(implies (and (go-to-line x n xl curr goal)
(natp n))
(<= n (go-to-line x n xl curr goal)))
:rule-classes ((:rewrite) (:linear)))
(defthm go-to-line-upper-bound
(implies (natp xl)
(<= (go-to-line x n xl curr goal)
xl))
:rule-classes ((:rewrite) (:linear))))
(defsection strline
:parents (str)
:short "Extract a line from a string by its line number."
:long "<p>@(call strline) extracts the @('n')th line from the string @('x')
and returns it as a string. The string will <b>not</b> contain a newline
character.</p>
<p>Note that we consider the first line of the string to be 1, not 0. This is
intended to agree with the convention followed by many text editors, where the
first line in a file is regarded as line 1 instead of line 0. Accordingly, we
require @('n') to be a @(see posp).</p>
<p>If @('n') does not refer to a valid line number for @('x'), the empty string
is returned.</p>"
(local (in-theory (enable charpos-aux)))
(defund strline (n x)
(declare (xargs :guard (and (posp n)
(stringp x))))
(let* ((x (mbe :logic (if (stringp x) x "")
:exec x))
(xl (length x))
(start (go-to-line x 0 xl 1 n)))
(if (not start)
""
(let ((end (charpos-aux x start xl #\Newline)))
(subseq x start end)))))
(local (in-theory (enable strline)))
(defthm stringp-of-strline
(stringp (strline n x))
:rule-classes :type-prescription)
(local (acl2::assert! (equal "foo" (strline 1 "foo
bar
baz"))))
(local (acl2::assert! (equal "bar" (strline 2 "foo
bar
baz"))))
(local (acl2::assert! (equal "baz" (strline 3 "foo
bar
baz"))))
(local (acl2::assert! (equal "" (strline 4 "foo
bar
baz")))))
(defsection strlines
:parents (str)
:short "Extract a group of lines from a string by their line numbers."
:long "<p>@(call strlines) extracts the lines between line number @('a') and
line number @('b') from the string @('x'), and returns them as a new
string.</p>
<p>The order of @('a') and @('b') is irrelevant; the extracted text will always
be a proper substring of @('x'), that is, the line with the smallest number
will come first.</p>
<p>Note that we consider the first line of the string to be 1, not 0. This is
intended to agree with the convention followed by many text editors, where the
first line in a file is regarded as line 1 instead of line 0. Accordingly, we
require @('a') and @('b') to be @(see posp)s.</p>
<p>Out of bounds conditions. If the larger line number is past the end of the
text, the full text is obtained. In other words, @('(strlines 0 100000 x)') is
likely to just be @('x') except for very large strings. If both line numbers
are past the end of the text, the empty string is returned.</p>
<p>Newline behavior. When both line numbers are in range and do not refer to
the last line in the string, the returned string will have a newline after
every line. If the last line is to be included, then it will have a newline
exactly when @('x') ends with a newline. In the out-of-bounds case where both
indices are too large, the empty string is returned so there are no
newlines.</p>
<p>Efficiency. This function should be much faster than calling @(see strline)
repeatedly and concatenating the resulting lines. Basically it figures out
where the text to extract should start and end, then extracts it all as a
single chunk.</p>"
(defund strlines (a b x)
(declare (type integer a)
(type integer b)
(type string x)
(xargs :guard (and (posp a)
(posp b)
(stringp x))))
(let* ((x (mbe :logic (if (stringp x) x "")
:exec x))
(xl (length x)))
(mv-let
(a b)
(if (<= a b) (mv a b) (mv b a))
(let ((start (go-to-line x 0 xl 1 a)))
(if (not start)
""
(let ((end (go-to-line x start xl a (+ 1 b))))
(subseq x start end)))))))
(local (in-theory (enable strlines)))
(defthm stringp-of-strlines
(stringp (strlines a b x))
:rule-classes :type-prescription)
(local (defconst *txt* "Line 1
Line 2
Line 3
Line 4
Line 5
Line 6"))
(local (assert! (equal (strlines 1 1 *txt*) "Line 1
")))
(local (assert! (equal (strlines 1 2 *txt*) "Line 1
Line 2
")))
(local (assert! (equal (strlines 1 3 *txt*) "Line 1
Line 2
Line 3
")))
(local (assert! (equal (strlines 1 100 *txt*) *txt*)))
(local (assert! (equal (strlines 2 2 *txt*) "Line 2
")))
(local (assert! (equal (strlines 2 3 *txt*) "Line 2
Line 3
")))
(local (assert! (equal (strlines 5 6 *txt*) "Line 5
Line 6"))) ;; Note: no newline after line 6, so none is returned here
(local (assert! (equal (strlines 5 1000 *txt*) "Line 5
Line 6"))) ;; Note: no newline after line 6, so none is returned here
(local (assert! (equal (strlines 5 6 (concatenate 'string *txt* "
")) "Line 5
Line 6
"))) ;; Newline, so it's returned
(local (assert! (equal (strlines 5 1000 (concatenate 'string *txt* "
")) "Line 5
Line 6
"))) ;; Newline, so it's returned
(local (assert! (equal (strlines 7 1000 *txt*) ""))))
|