• Top
    • Documentation
    • Books
    • Recursion-and-induction
    • Boolean-reasoning
    • Debugging
    • Projects
    • Std
      • Std/lists
      • Std/alists
      • Obags
      • Std/util
      • Std/strings
      • Std/io
        • Open-channel-lemmas
        • Std/io/read-char$
        • Std/io/read-object
        • Std/io/open-output-channel
        • Unsound-read
        • Read-string
        • Read-bytes$
        • File-measure
        • Read-bytes$-n
          • Read-64ule-n
          • Read-64ube-n
          • Read-64sle-n
          • Read-64sbe-n
          • Read-32ule-n
          • Read-32ube-n
          • Read-32sle-n
          • Read-32sbe-n
          • Read-16ule-n
          • Read-16ube-n
          • Read-16sle-n
          • Read-16sbe-n
          • Read-byte$-n
          • Read-8s-n
          • Std/io/read-byte$
          • Std/io/open-input-channel
          • Print-compressed
          • Read-file-lines-no-newlines
          • Nthcdr-bytes
          • Read-file-lines
          • Std/io/close-output-channel
          • Read-file-characters
          • Read-file-bytes
          • Print-legibly
          • Std/io/close-input-channel
          • Read-file-objects
          • Logical-story-of-io
          • Take-bytes
          • Std/io/peek-char$
          • Read-file-characters-rev
          • Read-file-as-string
          • Std/io/write-byte$
          • Std/io/set-serialize-character
          • Std/io/print-object$
          • Std/io/princ$
          • Std/io/read-file-into-string
          • *file-types*
        • Std/osets
        • Std/system
        • Std/basic
        • Std/typed-lists
        • Std/bitsets
        • Std/testing
        • Std/typed-alists
        • Std/stobjs
        • Std-extensions
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Testing-utilities
      • Math
    • Read-bytes$-n

    Read-8s-n

    (read-8s-n n channel state) reads n signed bytes from the input channel and returns them as a list.

    Definitions and Theorems

    Function: tr-read-8s-n

    (defun
     tr-read-8s-n (n channel state acc)
     (declare (xargs :guard (and (natp n)
                                 (state-p state)
                                 (symbolp channel)
                                 (open-input-channel-p channel
                                                       :byte state)
                                 (true-listp acc))))
     (if
      (mbe :logic (zp n) :exec (= 0 n))
      (mv (reverse acc) state)
      (mv-let (byte state)
              (read-8s channel state)
              (cond ((eq byte nil) (mv 'fail state))
                    (t (tr-read-8s-n (1- n)
                                     channel state (cons byte acc)))))))

    Function: read-8s-n

    (defun
      read-8s-n (n channel state)
      (declare (xargs :guard (and (natp n)
                                  (state-p state)
                                  (symbolp channel)
                                  (open-input-channel-p channel
                                                        :byte state))))
      (mbe :logic
           (if (zp n)
               (mv nil state)
               (mv-let (byte state)
                       (read-8s channel state)
                       (cond ((eq byte nil) (mv 'fail state))
                             (t (mv-let (rest state)
                                        (read-8s-n (1- n) channel state)
                                        (mv (if (eq rest 'fail)
                                                'fail
                                                (cons byte rest))
                                            state))))))
           :exec (tr-read-8s-n n channel state nil)))

    Theorem: read-8s-n-state

    (defthm read-8s-n-state
            (implies (and (force (state-p1 state))
                          (force (symbolp channel))
                          (force (open-input-channel-p1 channel
                                                        :byte state)))
                     (state-p1 (mv-nth 1 (read-8s-n n channel state)))))

    Theorem: read-8s-n-open-input-channel

    (defthm
         read-8s-n-open-input-channel
         (implies (and (force (state-p1 state))
                       (force (symbolp channel))
                       (force (open-input-channel-p1 channel
                                                     :byte state)))
                  (open-input-channel-p1
                       channel
                       :byte (mv-nth 1 (read-8s-n n channel state)))))

    Theorem: read-8s-n-data

    (defthm
       read-8s-n-data
       (implies (not (equal (mv-nth 0 (read-8s-n n channel state))
                            'fail))
                (and (true-listp (mv-nth 0 (read-8s-n n channel state)))
                     (equal (len (mv-nth 0 (read-8s-n n channel state)))
                            (nfix n)))))