/********************* */ /*! \file command_executor.h ** \verbatim ** Top contributors (to current version): ** Andrew Reynolds, Kshitij Bansal, Aina Niemetz ** This file is part of the CVC4 project. ** Copyright (c) 2009-2020 by the authors listed in the file AUTHORS ** in the top-level source directory and their institutional affiliations. ** All rights reserved. See the file COPYING in the top-level source ** directory for licensing information.\endverbatim ** ** \brief An additional layer between commands and invoking them. **/ #ifndef CVC4__MAIN__COMMAND_EXECUTOR_H #define CVC4__MAIN__COMMAND_EXECUTOR_H #include #include #include "api/cvc4cpp.h" #include "expr/expr_manager.h" #include "expr/symbol_manager.h" #include "options/options.h" #include "smt/smt_engine.h" #include "util/statistics_registry.h" namespace CVC4 { class Command; namespace main { class CommandExecutor { private: std::string d_lastStatistics; protected: /** * The solver object, which is allocated by this class and is used for * executing most commands (e.g. check-sat). */ std::unique_ptr d_solver; /** * The symbol manager, which is allocated by this class. This manages * all things related to definitions of symbols and their impact on behaviors * for commands (e.g. get-unsat-core, get-model, get-assignment), as well * as tracking expression names. Note the symbol manager is independent from * the parser, which uses this symbol manager given a text input. * * Certain commands (e.g. reset-assertions) have a specific impact on the * symbol manager. */ std::unique_ptr d_symman; SmtEngine* d_smtEngine; Options& d_options; StatisticsRegistry d_stats; api::Result d_result; public: CommandExecutor(Options& options); virtual ~CommandExecutor(); /** * Executes a command. Recursively handles if cmd is a command * sequence. Eventually uses doCommandSingleton (which can be * overridden by a derived class). */ bool doCommand(CVC4::Command* cmd); bool doCommand(std::unique_ptr& cmd) { return doCommand(cmd.get()); } /** Get a pointer to the solver object owned by this CommandExecutor. */ api::Solver* getSolver() { return d_solver.get(); } /** Get a pointer to the symbol manager owned by this CommandExecutor */ SymbolManager* getSymbolManager() { return d_symman.get(); } api::Result getResult() const { return d_result; } void reset(); StatisticsRegistry& getStatisticsRegistry() { return d_stats; } SmtEngine* getSmtEngine() { return d_smtEngine; } /** * Flushes statistics to a file descriptor. */ virtual void flushStatistics(std::ostream& out) const; /** * Flushes statistics to a file descriptor. * Safe to use in a signal handler. */ void safeFlushStatistics(int fd) const; static void printStatsFilterZeros(std::ostream& out, const std::string& statsString); void flushOutputStreams(); protected: /** Executes treating cmd as a singleton */ virtual bool doCommandSingleton(CVC4::Command* cmd); private: CommandExecutor(); }; /* class CommandExecutor */ bool solverInvoke(api::Solver* solver, SymbolManager* sm, Command* cmd, std::ostream* out); }/* CVC4::main namespace */ }/* CVC4 namespace */ #endif /* CVC4__MAIN__COMMAND_EXECUTOR_H */