File: read-file-objects.lisp

package info (click to toggle)
acl2 8.5dfsg-5
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 991,452 kB
  • sloc: lisp: 15,567,759; javascript: 22,820; cpp: 13,929; ansic: 12,092; perl: 7,150; java: 4,405; xml: 3,884; makefile: 3,507; sh: 3,187; ruby: 2,633; ml: 763; python: 746; yacc: 723; awk: 295; csh: 186; php: 171; lex: 154; tcl: 49; asm: 23; haskell: 17
file content (179 lines) | stat: -rw-r--r-- 7,433 bytes parent folder | download | duplicates (5)
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
; Standard IO Library
; read-file-objects.lisp -- originally part of the Unicode library
; Copyright (C) 2005-2013 Kookamara LLC
;
; Contact:
;
;   Kookamara LLC
;   11410 Windermere Meadows
;   Austin, TX 78759, USA
;   http://www.kookamara.com/
;
; License: (An MIT/X11-style license)
;
;   Permission is hereby granted, free of charge, to any person obtaining a
;   copy of this software and associated documentation files (the "Software"),
;   to deal in the Software without restriction, including without limitation
;   the rights to use, copy, modify, merge, publish, distribute, sublicense,
;   and/or sell copies of the Software, and to permit persons to whom the
;   Software is furnished to do so, subject to the following conditions:
;
;   The above copyright notice and this permission notice shall be included in
;   all copies or substantial portions of the Software.
;
;   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
;   IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
;   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
;   AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
;   LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
;   FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
;   DEALINGS IN THE SOFTWARE.
;
; Original author: Jared Davis <jared@kookamara.com>

(in-package "ACL2")
(include-book "file-measure")
(include-book "std/lists/list-defuns" :dir :system)
(include-book "std/util/bstar" :dir :system)
(local (include-book "base"))
(local (include-book "std/lists/rev" :dir :system))
(local (include-book "std/lists/append" :dir :system))
(local (include-book "std/lists/revappend" :dir :system))
(local (include-book "tools/mv-nth" :dir :system))
(set-state-ok t)


(defsection read-object-all
  :parents (read-file-objects)
  :short "@(call read-object-all) reads all remaining objects from a file."

  :long "<p>This is the main loop inside @(see read-file-objects).  It reads
everything in the file, but doesn't handle opening or closing the file.</p>"

  (defund tr-read-object-all (channel state acc)
    (declare (xargs :guard (and (state-p state)
                                (symbolp channel)
                                (open-input-channel-p channel :object state))
                    :measure (file-measure channel state)))
    (b* (((unless (mbt (state-p state)))
          (mv acc state))
         ((mv eofp obj state) (read-object channel state))
         ((when eofp)
          (mv acc state)))
      (tr-read-object-all channel state (cons obj acc))))

  (defund read-object-all (channel state)
    (declare (xargs :guard (and (state-p state)
                                (symbolp channel)
                                (open-input-channel-p channel :object state))
                    :measure (file-measure channel state)
                    :verify-guards nil))
    (mbe :logic (b* (((unless (state-p state))
                      (mv nil state))
                     ((mv eofp obj state) (read-object channel state))
                     ((when eofp)
                      (mv nil state))
                     ((mv rest state)
                      (read-object-all channel state)))
                  (mv (cons obj rest) state))
         :exec (b* (((mv acc state)
                     (tr-read-object-all channel state nil)))
                 (mv (reverse acc) state))))

  (local (in-theory (enable tr-read-object-all read-object-all)))

  (local (defthm lemma-decompose-impl
           (equal (tr-read-object-all channel state acc)
                  (list (mv-nth 0 (tr-read-object-all channel state acc))
                        (mv-nth 1 (tr-read-object-all channel state acc))))
           :rule-classes nil))

  (local (defthm lemma-decompose-spec
           (equal (read-object-all channel state)
                  (list (mv-nth 0 (read-object-all channel state))
                        (mv-nth 1 (read-object-all channel state))))
           :rule-classes nil))

  (local (defthm lemma-data-equiv
           (equal (mv-nth 0 (tr-read-object-all channel state acc))
                  (revappend (mv-nth 0 (read-object-all channel state)) acc))))

  (local (defthm lemma-state-equiv
           (equal (mv-nth 1 (tr-read-object-all channel state acc))
                  (mv-nth 1 (read-object-all channel state)))))

  (defthm tr-read-object-all-removal
    (equal (tr-read-object-all channel state nil)
           (mv (rev (mv-nth 0 (read-object-all channel state)))
               (mv-nth 1 (read-object-all channel state))))
    :hints(("Goal" :in-theory (disable tr-read-object-all read-object-all)
            :use ((:instance lemma-decompose-impl (acc nil))
                  (:instance lemma-decompose-spec)
                  (:instance lemma-data-equiv (acc nil))))))

  (defthm true-listp-of-read-object-all
    (true-listp (mv-nth 0 (read-object-all channel state)))
    :rule-classes :type-prescription)

  (verify-guards read-object-all)

  (defthm state-p1-of-read-object-all
    (implies (and (force (state-p1 state))
                  (force (symbolp channel))
                  (force (open-input-channel-p1 channel :object state)))
             (state-p1 (mv-nth 1 (read-object-all channel state)))))

  (defthm open-input-channel-p1-of-read-object-all
    (implies (and (force (state-p1 state))
                  (force (symbolp channel))
                  (force (open-input-channel-p1 channel :object state)))
             (open-input-channel-p1 channel :object
                                    (mv-nth 1 (read-object-all channel state))))))





(defsection read-file-objects
  :parents (std/io)
  :short "Read an entire file into a list of ACL2 objects."

  :long "<p><b>Signature:</b> @(call read-file-objects) returns @('(mv contents state)').</p>

<p>On success, @('contents') is a @(see true-listp) of ACL2 objects that have
were found in the file, obtained by repeatedly calling @(see read-object).</p>

<p>On failure, e.g., perhaps @('filename') does not exist, @('contents') will
be a @(see stringp) saying that we failed to open the file.</p>"

  (defund read-file-objects (filename state)
    "Returns (MV ERRMSG/OBJECTS STATE)"
    (declare (xargs :guard (and (state-p state)
                                (stringp filename))))
    (b* ((filename (mbe :logic (if (stringp filename) filename "")
                        :exec filename))
         ((mv channel state)
          (open-input-channel filename :object state))
         ((unless channel)
          (mv (concatenate 'string "Error opening file " filename)
              state))
         ((mv data state)
          (read-object-all channel state))
         (state (close-input-channel channel state)))
      (mv data state)))

  (local (in-theory (enable read-file-objects)))

  (defthm state-p1-of-read-file-objects
    (implies (force (state-p1 state))
             (state-p1 (mv-nth 1 (read-file-objects filename state)))))

  (defthm true-listp-of-read-file-objects
    (equal (true-listp (mv-nth 0 (read-file-objects filename state)))
           (not (stringp (mv-nth 0 (read-file-objects filename state))))))

  (defthm type-of-read-file-objects
    (or (stringp (mv-nth 0 (read-file-objects filename state)))
        (true-listp (mv-nth 0 (read-file-objects filename state))))
    :rule-classes :type-prescription))