Branch data Line data Source code
1 : : /****************************************************************************** 2 : : * Top contributors (to current version): 3 : : * Andrew Reynolds 4 : : * 5 : : * This file is part of the cvc5 project. 6 : : * 7 : : * Copyright (c) 2009-2024 by the authors listed in the file AUTHORS 8 : : * in the top-level source directory and their institutional affiliations. 9 : : * All rights reserved. See the file COPYING in the top-level source 10 : : * directory for licensing information. 11 : : * **************************************************************************** 12 : : * 13 : : * input class. 14 : : */ 15 : : 16 : : #include "cvc5parser_public.h" 17 : : 18 : : #ifndef CVC5__PARSER__INPUT_H 19 : : #define CVC5__PARSER__INPUT_H 20 : : 21 : : #include <memory> 22 : : #include <sstream> 23 : : #include <string> 24 : : 25 : : namespace cvc5 { 26 : : namespace parser { 27 : : 28 : : /** 29 : : * Wrapper to setup the necessary information for constructing a flex Lexer. 30 : : * 31 : : * Currently this is std::istream& obtainable via getStream. 32 : : */ 33 : : class Input 34 : : { 35 : : public: 36 : : Input(); 37 : 23013 : virtual ~Input() {} 38 : : /** Set the input for the given file. 39 : : * 40 : : * @param filename the input filename 41 : : */ 42 : : static std::unique_ptr<Input> mkFileInput(const std::string& filename); 43 : : 44 : : /** Set the input for the given stream. 45 : : * 46 : : * @param input the input stream 47 : : * @param name the name of the stream, for use in error messages 48 : : */ 49 : : static std::unique_ptr<Input> mkStreamInput(std::istream& input); 50 : : 51 : : /** Set the input for the given string 52 : : * 53 : : * @param input the input string 54 : : * @param name the name of the stream, for use in error messages 55 : : */ 56 : : static std::unique_ptr<Input> mkStringInput(const std::string& input); 57 : : /** Get the stream to pass to the flex lexer. */ 58 : : virtual std::istream* getStream() = 0; 59 : : /** 60 : : * Is the stream of this input an interactive input? If so, we will read 61 : : * it character-by-character. 62 : : */ 63 : : virtual bool isInteractive() const; 64 : : }; 65 : : 66 : : } // namespace parser 67 : : } // namespace cvc5 68 : : 69 : : #endif /* CVC5__PARSER__SMT2_H */