• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
      • Kestrel-books
        • Crypto-hdwallet
        • Apt
        • Error-checking
        • Fty-extensions
        • Isar
        • Kestrel-utilities
        • Set
        • Soft
        • C
        • Bv
        • Imp-language
        • Event-macros
        • Java
        • Bitcoin
        • Ethereum
        • Yul
        • Zcash
        • ACL2-programming-language
        • Prime-fields
        • Json
        • Syntheto
        • File-io-light
        • Cryptography
        • Number-theory
        • Lists-light
        • Axe
          • R1cs-verification-with-axe
          • Prove-equal-with-axe
          • Dags
          • Stp
          • Lifters
          • Read-jar
            • Read-class
          • Builtins
          • Solidity
          • Helpers
          • Htclient
          • Typed-lists-light
          • Arithmetic-light
        • X86isa
        • Axe
          • R1cs-verification-with-axe
          • Prove-equal-with-axe
          • Dags
          • Stp
          • Lifters
          • Read-jar
            • Read-class
          • Execloader
        • Math
        • Testing-utilities
      • Axe

      Read-jar

      Read in a .jar file and parse and register classes for use by Axe.

      General Form:

      (read-jar jar-path
                &key
                :dir      ; default nil
                :classes  ; default :all
                :verbosep ; default nil
                )

      Inputs:

      jar-path — (required)

      A path to a .jar file, relative to the directory indicated by the dir argument.

      :dir — default nil

      Either nil, in which case the class-file is interpreted relative to the cbd, or a keyword indicating a directory registered with add-include-book-dir or add-include-book-dir!.

      :classes — default :all

      Classes to read from the .jar. Either :all, or a list of strings representing class or interface names (usually fully-qualified). Note that using :all on a large .jar file may cause a huge amount of code to be read in.

      :verbosep — default nil

      Whether to print information about the unzipping process.