• Top
    • Documentation
    • Books
    • Recursion-and-induction
    • Boolean-reasoning
    • Projects
    • Debugging
    • 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
          • Read-file-lines-no-newlines
          • Print-compressed
          • 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-16ube-n

    (read-16ube-n n channel state) reads n 16-bit, unsigned, big-endian values from the input channel and returns them as a list.

    Definitions and Theorems

    Function: tr-read-16ube-n

    (defun tr-read-16ube-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-16ube channel state)
          (cond ((eq byte nil) (mv 'fail state))
                ((eq byte 'fail) (mv 'fail state))
                (t (tr-read-16ube-n (1- n)
                                    channel state (cons byte acc)))))))

    Function: read-16ube-n

    (defun read-16ube-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-16ube channel state)
               (cond ((eq byte nil) (mv 'fail state))
                     ((eq byte 'fail) (mv 'fail state))
                     (t (mv-let (rest state)
                                (read-16ube-n (1- n) channel state)
                          (mv (if (eq rest 'fail)
                                  'fail
                                (cons byte rest))
                              state))))))
           :exec (tr-read-16ube-n n channel state nil)))

    Theorem: read-16ube-n-state

    (defthm read-16ube-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-16ube-n n channel state)))))

    Theorem: read-16ube-n-open-input-channel

    (defthm read-16ube-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-16ube-n n channel state)))))

    Theorem: read-16ube-n-data

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