LCOV - code coverage report
Current view: top level - buildbot/coverage/build/src/parser - parser.cpp (source / functions) Hit Total Coverage
Test: coverage.info Lines: 62 67 92.5 %
Date: 2025-03-25 12:42:10 Functions: 11 13 84.6 %
Branches: 13 18 72.2 %

           Branch data     Line data    Source code
       1                 :            : /******************************************************************************
       2                 :            :  * Top contributors (to current version):
       3                 :            :  *   Andrew Reynolds, Aina Niemetz, Christopher L. Conway
       4                 :            :  *
       5                 :            :  * This file is part of the cvc5 project.
       6                 :            :  *
       7                 :            :  * Copyright (c) 2009-2025 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                 :            :  * Base class for  parsing.
      14                 :            :  */
      15                 :            : 
      16                 :            : #include "parser/parser.h"
      17                 :            : 
      18                 :            : #include "base/check.h"
      19                 :            : #include "base/output.h"
      20                 :            : #include "parser/commands.h"
      21                 :            : #include "parser/lexer.h"
      22                 :            : #include <cvc5/cvc5_parser.h>
      23                 :            : #include "parser/smt2/smt2_parser.h"
      24                 :            : 
      25                 :            : namespace cvc5 {
      26                 :            : namespace parser {
      27                 :            : 
      28                 :      24761 : Parser::Parser(Solver* solver, SymManager* sm)
      29                 :      24761 :     : d_solver(solver), d_sm(sm), d_lex(nullptr), d_done(true)
      30                 :            : {
      31                 :      24761 : }
      32                 :            : 
      33                 :          0 : void Parser::setLogic(const std::string& name) {}
      34                 :            : 
      35                 :      24412 : void Parser::setFileInput(const std::string& filename)
      36                 :            : {
      37                 :      24412 :   d_flexInput = Input::mkFileInput(filename);
      38                 :      24410 :   initializeInput(filename);
      39                 :      24410 : }
      40                 :            : 
      41                 :        205 : void Parser::setStreamInput(std::istream& input, const std::string& name)
      42                 :            : {
      43                 :        205 :   d_flexInput = Input::mkStreamInput(input);
      44                 :        205 :   initializeInput(name);
      45                 :        205 : }
      46                 :            : 
      47                 :        152 : void Parser::setStringInput(const std::string& input,
      48                 :            :                                 const std::string& name)
      49                 :            : {
      50                 :        152 :   d_flexInput = Input::mkStringInput(input);
      51                 :        152 :   initializeInput(name);
      52                 :        152 : }
      53                 :            : 
      54                 :      24767 : void Parser::initializeInput(const std::string& name)
      55                 :            : {
      56                 :      24767 :   d_done = false;
      57                 :      24767 :   d_lex->initialize(d_flexInput.get(), name);
      58                 :      24767 : }
      59                 :            : 
      60                 :        241 : void Parser::warning(const std::string& msg) { d_lex->warning(msg); }
      61                 :            : 
      62                 :         64 : void Parser::parseError(const std::string& msg) { d_lex->parseError(msg); }
      63                 :            : 
      64                 :          0 : void Parser::unexpectedEOF(const std::string& msg)
      65                 :            : {
      66                 :          0 :   d_lex->parseError(msg, true);
      67                 :          0 : }
      68                 :            : 
      69                 :     727936 : std::unique_ptr<Cmd> Parser::nextCommand()
      70                 :            : {
      71         [ +  - ]:     727936 :   Trace("parser") << "nextCommand()" << std::endl;
      72                 :     727936 :   std::unique_ptr<Cmd> cmd;
      73                 :            :   try
      74                 :            :   {
      75                 :     727936 :     cmd = parseNextCommand();
      76                 :     727876 :     setDone(cmd == nullptr);
      77                 :            :   }
      78                 :         88 :   catch (ParserException& e)
      79                 :            :   {
      80                 :         44 :     setDone();
      81                 :         44 :     throw;
      82                 :            :   }
      83                 :         32 :   catch (std::exception& e)
      84                 :            :   {
      85                 :         16 :     setDone();
      86                 :         48 :     parseError(e.what());
      87                 :            :   }
      88         [ +  - ]:     727876 :   Trace("parser") << "nextCommand() => " << cmd.get() << std::endl;
      89                 :     727876 :   return cmd;
      90                 :            : }
      91                 :            : 
      92                 :        152 : Term Parser::nextTerm()
      93                 :            : {
      94         [ +  - ]:        152 :   Trace("parser") << "nextTerm()" << std::endl;
      95                 :        152 :   Term result;
      96         [ +  + ]:        152 :   if (!d_done)
      97                 :            :   {
      98                 :            :     try
      99                 :            :     {
     100                 :        133 :       result = parseNextTerm();
     101                 :        108 :       setDone(result.isNull());
     102                 :            :     }
     103                 :         38 :     catch (ParserException& e)
     104                 :            :     {
     105                 :         19 :       setDone();
     106                 :         19 :       throw;
     107                 :            :     }
     108                 :         12 :     catch (std::exception& e)
     109                 :            :     {
     110                 :          6 :       setDone();
     111                 :         18 :       parseError(e.what());
     112                 :            :     }
     113                 :            :   }
     114         [ +  - ]:        127 :   Trace("parser") << "nextTerm() => " << result << std::endl;
     115                 :        127 :   return result;
     116                 :            : }
     117                 :            : 
     118                 :        335 : bool Parser::done() const { return d_done; }
     119                 :            : 
     120                 :      24761 : std::unique_ptr<Parser> Parser::mkParser(modes::InputLanguage lang,
     121                 :            :                                          Solver* solver,
     122                 :            :                                          SymManager* sm)
     123                 :            : {
     124                 :      24761 :   std::unique_ptr<Parser> parser;
     125         [ +  + ]:      24761 :   if (lang == modes::InputLanguage::SMT_LIB_2_6
     126         [ +  - ]:        955 :       || lang == modes::InputLanguage::SYGUS_2_1)
     127                 :            :   {
     128                 :      24761 :     bool isSygus = (lang == modes::InputLanguage::SYGUS_2_1);
     129                 :      24761 :     ParsingMode parsingMode = ParsingMode::DEFAULT;
     130                 :      74283 :     std::string mode = solver->getOption("parsing-mode");
     131         [ +  + ]:      24761 :     if (mode == "strict")
     132                 :            :     {
     133                 :         33 :       parsingMode = ParsingMode::STRICT;
     134                 :            :     }
     135         [ +  + ]:      24728 :     else if (mode == "lenient")
     136                 :            :     {
     137                 :          9 :       parsingMode = ParsingMode::LENIENT;
     138                 :            :     }
     139                 :      49522 :     parser.reset(new Smt2Parser(solver, sm, parsingMode, isSygus));
     140                 :            :   }
     141                 :            :   else
     142                 :            :   {
     143                 :          0 :     Unhandled() << "unable to detect input file format, try --lang";
     144                 :            :   }
     145                 :      24761 :   return parser;
     146                 :            : }
     147                 :            : 
     148                 :            : }  // namespace parser
     149                 :            : }  // namespace cvc5

Generated by: LCOV version 1.14