Proofs- and cores-related segfault fixes (mainly a usability issue), thanks Christoph...
[cvc5.git] / src / main / driver_unified.cpp
1 /********************* */
2 /*! \file driver_unified.cpp
3 ** \verbatim
4 ** Original author: Kshitij Bansal
5 ** Major contributors: Morgan Deters
6 ** Minor contributors (to current version): Francois Bobot
7 ** This file is part of the CVC4 project.
8 ** Copyright (c) 2009-2014 New York University and The University of Iowa
9 ** See the file COPYING in the top-level source directory for licensing
10 ** information.\endverbatim
11 **
12 ** \brief Driver for CVC4 executable (cvc4) unified for both
13 ** sequential and portfolio versions
14 **/
15
16 #include <cstdlib>
17 #include <cstring>
18 #include <fstream>
19 #include <iostream>
20 #include <new>
21 #include <unistd.h>
22
23 #include <stdio.h>
24 #include <unistd.h>
25
26 #include "cvc4autoconfig.h"
27 #include "main/main.h"
28 #include "main/interactive_shell.h"
29 #include "main/options.h"
30 #include "parser/parser.h"
31 #include "parser/parser_builder.h"
32 #include "parser/parser_exception.h"
33 #include "expr/expr_manager.h"
34 #include "expr/command.h"
35 #include "util/configuration.h"
36 #include "options/options.h"
37 #include "main/command_executor.h"
38 # ifdef PORTFOLIO_BUILD
39 # include "main/command_executor_portfolio.h"
40 # endif
41 #include "main/options.h"
42 #include "smt/options.h"
43 #include "theory/uf/options.h"
44 #include "util/output.h"
45 #include "util/result.h"
46 #include "util/statistics_registry.h"
47
48 using namespace std;
49 using namespace CVC4;
50 using namespace CVC4::parser;
51 using namespace CVC4::main;
52
53 namespace CVC4 {
54 namespace main {
55 /** Global options variable */
56 CVC4_THREADLOCAL(Options*) pOptions;
57
58 /** Full argv[0] */
59 const char *progPath;
60
61 /** Just the basename component of argv[0] */
62 const char *progName;
63
64 /** A pointer to the CommandExecutor (the signal handlers need it) */
65 CVC4::main::CommandExecutor* pExecutor = NULL;
66
67 /** A pointer to the totalTime driver stat (the signal handlers need it) */
68 CVC4::TimerStat* pTotalTime = NULL;
69
70 }/* CVC4::main namespace */
71 }/* CVC4 namespace */
72
73
74 void printUsage(Options& opts, bool full) {
75 stringstream ss;
76 ss << "usage: " << opts[options::binary_name] << " [options] [input-file]" << endl
77 << endl
78 << "Without an input file, or with `-', CVC4 reads from standard input." << endl
79 << endl
80 << "CVC4 options:" << endl;
81 if(full) {
82 Options::printUsage( ss.str(), *opts[options::out] );
83 } else {
84 Options::printShortUsage( ss.str(), *opts[options::out] );
85 }
86 }
87
88 void printStatsFilterZeros(std::ostream& out, const std::string& statsString) {
89 // read each line, if a number, check zero and skip if so
90 // Stat are assumed to one-per line: "<statName>, <statValue>"
91
92 std::istringstream iss(statsString);
93 std::string statName, statValue;
94
95 std::getline(iss, statName, ',');
96
97 while( !iss.eof() ) {
98
99 std::getline(iss, statValue, '\n');
100
101 double curFloat;
102 bool isFloat = (std::istringstream(statValue) >> curFloat);
103
104 if( (isFloat && curFloat == 0) ||
105 statValue == " \"0\"" ||
106 statValue == " \"[]\"") {
107 // skip
108 } else {
109 out << statName << "," << statValue << std::endl;
110 }
111
112 std::getline(iss, statName, ',');
113 }
114
115 }
116
117 int runCvc4(int argc, char* argv[], Options& opts) {
118
119 // Timer statistic
120 pTotalTime = new TimerStat("totalTime");
121 pTotalTime->start();
122
123 // For the signal handlers' benefit
124 pOptions = &opts;
125
126 // Initialize the signal handlers
127 cvc4_init();
128
129 progPath = argv[0];
130
131 // Parse the options
132 vector<string> filenames = opts.parseOptions(argc, argv);
133
134 # ifndef PORTFOLIO_BUILD
135 if( opts.wasSetByUser(options::threads) ||
136 opts.wasSetByUser(options::threadStackSize) ||
137 ! opts[options::threadArgv].empty() ) {
138 throw OptionException("Thread options cannot be used with sequential CVC4. Please build and use the portfolio binary `pcvc4'.");
139 }
140 # else
141 if( opts[options::checkProofs] ) {
142 throw OptionException("Cannot run portfolio in check-proofs mode.");
143 }
144 # endif
145
146 progName = opts[options::binary_name].c_str();
147
148 if( opts[options::help] ) {
149 printUsage(opts, true);
150 exit(1);
151 } else if( opts[options::languageHelp] ) {
152 Options::printLanguageHelp(*opts[options::out]);
153 exit(1);
154 } else if( opts[options::version] ) {
155 *opts[options::out] << Configuration::about().c_str() << flush;
156 exit(0);
157 }
158
159 segvSpin = opts[options::segvSpin];
160
161 // If in competition mode, set output stream option to flush immediately
162 #ifdef CVC4_COMPETITION_MODE
163 *opts[options::out] << unitbuf;
164 #endif /* CVC4_COMPETITION_MODE */
165
166 // We only accept one input file
167 if(filenames.size() > 1) {
168 throw Exception("Too many input files specified.");
169 }
170
171 // If no file supplied we will read from standard input
172 const bool inputFromStdin = filenames.empty() || filenames[0] == "-";
173
174 // if we're reading from stdin on a TTY, default to interactive mode
175 if(!opts.wasSetByUser(options::interactive)) {
176 opts.set(options::interactive, inputFromStdin && isatty(fileno(stdin)));
177 }
178
179 // Auto-detect input language by filename extension
180 const char* filename = inputFromStdin ? "<stdin>" : filenames[0].c_str();
181
182 if(opts[options::inputLanguage] == language::input::LANG_AUTO) {
183 if( inputFromStdin ) {
184 // We can't do any fancy detection on stdin
185 opts.set(options::inputLanguage, language::input::LANG_CVC4);
186 } else {
187 unsigned len = strlen(filename);
188 if(len >= 5 && !strcmp(".smt2", filename + len - 5)) {
189 opts.set(options::inputLanguage, language::input::LANG_SMTLIB_V2);
190 } else if(len >= 4 && !strcmp(".smt", filename + len - 4)) {
191 opts.set(options::inputLanguage, language::input::LANG_SMTLIB_V1);
192 } else if(len >= 5 && !strcmp(".smt1", filename + len - 5)) {
193 opts.set(options::inputLanguage, language::input::LANG_SMTLIB_V1);
194 } else if((len >= 2 && !strcmp(".p", filename + len - 2))
195 || (len >= 5 && !strcmp(".tptp", filename + len - 5))) {
196 opts.set(options::inputLanguage, language::input::LANG_TPTP);
197 } else if(( len >= 4 && !strcmp(".cvc", filename + len - 4) )
198 || ( len >= 5 && !strcmp(".cvc4", filename + len - 5) )) {
199 opts.set(options::inputLanguage, language::input::LANG_CVC4);
200 }
201 }
202 }
203
204 if(opts[options::outputLanguage] == language::output::LANG_AUTO) {
205 opts.set(options::outputLanguage, language::toOutputLanguage(opts[options::inputLanguage]));
206 }
207
208 // Determine which messages to show based on smtcomp_mode and verbosity
209 if(Configuration::isMuzzledBuild()) {
210 DebugChannel.setStream(CVC4::null_os);
211 TraceChannel.setStream(CVC4::null_os);
212 NoticeChannel.setStream(CVC4::null_os);
213 ChatChannel.setStream(CVC4::null_os);
214 MessageChannel.setStream(CVC4::null_os);
215 WarningChannel.setStream(CVC4::null_os);
216 }
217
218 // important even for muzzled builds (to get result output right)
219 *opts[options::out] << Expr::setlanguage(opts[options::outputLanguage]);
220
221 // Create the expression manager using appropriate options
222 ExprManager* exprMgr;
223 # ifndef PORTFOLIO_BUILD
224 exprMgr = new ExprManager(opts);
225 pExecutor = new CommandExecutor(*exprMgr, opts);
226 # else
227 vector<Options> threadOpts = parseThreadSpecificOptions(opts);
228 if(opts.wasSetByUser(options::incrementalSolving) &&
229 opts[options::incrementalSolving] &&
230 !opts[options::incrementalParallel]) {
231 Notice() << "Notice: In --incremental mode, using the sequential solver unless forced by...\n"
232 << "Notice: ...the experimental --incremental-parallel option.\n";
233 exprMgr = new ExprManager(opts);
234 pExecutor = new CommandExecutor(*exprMgr, opts);
235 } else {
236 exprMgr = new ExprManager(threadOpts[0]);
237 pExecutor = new CommandExecutorPortfolio(*exprMgr, opts, threadOpts);
238 }
239 # endif
240
241 Parser* replayParser = NULL;
242 if( opts[options::replayFilename] != "" ) {
243 ParserBuilder replayParserBuilder(exprMgr, opts[options::replayFilename], opts);
244
245 if( opts[options::replayFilename] == "-") {
246 if( inputFromStdin ) {
247 throw OptionException("Replay file and input file can't both be stdin.");
248 }
249 replayParserBuilder.withStreamInput(cin);
250 }
251 replayParser = replayParserBuilder.build();
252 opts.set(options::replayStream, new Parser::ExprStream(replayParser));
253 }
254 if( opts[options::replayLog] != NULL ) {
255 *opts[options::replayLog] << Expr::setlanguage(opts[options::outputLanguage]) << Expr::setdepth(-1);
256 }
257
258 int returnValue = 0;
259 {
260 // Timer statistic
261 RegisterStatistic statTotalTime(&pExecutor->getStatisticsRegistry(), pTotalTime);
262
263 // Filename statistics
264 ReferenceStat< const char* > s_statFilename("filename", filename);
265 RegisterStatistic statFilenameReg(&pExecutor->getStatisticsRegistry(), &s_statFilename);
266
267 // Parse and execute commands until we are done
268 Command* cmd;
269 bool status = true;
270 if(opts[options::interactive] && inputFromStdin) {
271 if(opts[options::tearDownIncremental]) {
272 throw OptionException("--tear-down-incremental doesn't work in interactive mode");
273 }
274 #ifndef PORTFOLIO_BUILD
275 if(!opts.wasSetByUser(options::incrementalSolving)) {
276 cmd = new SetOptionCommand("incremental", true);
277 cmd->setMuted(true);
278 pExecutor->doCommand(cmd);
279 delete cmd;
280 }
281 #endif /* PORTFOLIO_BUILD */
282 InteractiveShell shell(*exprMgr, opts);
283 if(opts[options::interactivePrompt]) {
284 Message() << Configuration::getPackageName()
285 << " " << Configuration::getVersionString();
286 if(Configuration::isGitBuild()) {
287 Message() << " [" << Configuration::getGitId() << "]";
288 } else if(Configuration::isSubversionBuild()) {
289 Message() << " [" << Configuration::getSubversionId() << "]";
290 }
291 Message() << (Configuration::isDebugBuild() ? " DEBUG" : "")
292 << " assertions:"
293 << (Configuration::isAssertionBuild() ? "on" : "off")
294 << endl;
295 }
296 if(replayParser != NULL) {
297 // have the replay parser use the declarations input interactively
298 replayParser->useDeclarationsFrom(shell.getParser());
299 }
300 while((cmd = shell.readCommand())) {
301 status = pExecutor->doCommand(cmd) && status;
302 delete cmd;
303 }
304 } else if(opts[options::tearDownIncremental]) {
305 if(opts[options::incrementalSolving]) {
306 if(opts.wasSetByUser(options::incrementalSolving)) {
307 throw OptionException("--tear-down-incremental incompatible with --incremental");
308 }
309
310 cmd = new SetOptionCommand("incremental", false);
311 cmd->setMuted(true);
312 pExecutor->doCommand(cmd);
313 delete cmd;
314 }
315
316 ParserBuilder parserBuilder(exprMgr, filename, opts);
317
318 if( inputFromStdin ) {
319 #if defined(CVC4_COMPETITION_MODE) && !defined(CVC4_SMTCOMP_APPLICATION_TRACK)
320 parserBuilder.withStreamInput(cin);
321 #else /* CVC4_COMPETITION_MODE && !CVC4_SMTCOMP_APPLICATION_TRACK */
322 parserBuilder.withLineBufferedStreamInput(cin);
323 #endif /* CVC4_COMPETITION_MODE && !CVC4_SMTCOMP_APPLICATION_TRACK */
324 }
325
326 vector< vector<Command*> > allCommands;
327 allCommands.push_back(vector<Command*>());
328 Parser *parser = parserBuilder.build();
329 if(replayParser != NULL) {
330 // have the replay parser use the file's declarations
331 replayParser->useDeclarationsFrom(parser);
332 }
333 bool needReset = false;
334 while((status || opts[options::continuedExecution]) && (cmd = parser->nextCommand())) {
335 if(dynamic_cast<PushCommand*>(cmd) != NULL) {
336 if(needReset) {
337 pExecutor->reset();
338 for(size_t i = 0; i < allCommands.size(); ++i) {
339 for(size_t j = 0; j < allCommands[i].size(); ++j) {
340 Command* cmd = allCommands[i][j]->clone();
341 cmd->setMuted(true);
342 pExecutor->doCommand(cmd);
343 delete cmd;
344 }
345 }
346 needReset = false;
347 }
348 *opts[options::out] << CommandSuccess();
349 allCommands.push_back(vector<Command*>());
350 } else if(dynamic_cast<PopCommand*>(cmd) != NULL) {
351 allCommands.pop_back(); // fixme leaks cmds here
352 pExecutor->reset();
353 for(size_t i = 0; i < allCommands.size(); ++i) {
354 for(size_t j = 0; j < allCommands[i].size(); ++j) {
355 Command* cmd = allCommands[i][j]->clone();
356 cmd->setMuted(true);
357 pExecutor->doCommand(cmd);
358 delete cmd;
359 }
360 }
361 *opts[options::out] << CommandSuccess();
362 } else if(dynamic_cast<CheckSatCommand*>(cmd) != NULL ||
363 dynamic_cast<QueryCommand*>(cmd) != NULL) {
364 if(needReset) {
365 pExecutor->reset();
366 for(size_t i = 0; i < allCommands.size(); ++i) {
367 for(size_t j = 0; j < allCommands[i].size(); ++j) {
368 Command* cmd = allCommands[i][j]->clone();
369 cmd->setMuted(true);
370 pExecutor->doCommand(cmd);
371 delete cmd;
372 }
373 }
374 }
375 status = pExecutor->doCommand(cmd);
376 needReset = true;
377 } else {
378 Command* copy = cmd->clone();
379 allCommands.back().push_back(copy);
380 status = pExecutor->doCommand(cmd);
381 if(dynamic_cast<QuitCommand*>(cmd) != NULL) {
382 delete cmd;
383 break;
384 }
385 }
386 delete cmd;
387 }
388 // Remove the parser
389 delete parser;
390 } else {
391 if(!opts.wasSetByUser(options::incrementalSolving)) {
392 cmd = new SetOptionCommand("incremental", false);
393 cmd->setMuted(true);
394 pExecutor->doCommand(cmd);
395 delete cmd;
396 }
397
398 ParserBuilder parserBuilder(exprMgr, filename, opts);
399
400 if( inputFromStdin ) {
401 #if defined(CVC4_COMPETITION_MODE) && !defined(CVC4_SMTCOMP_APPLICATION_TRACK)
402 parserBuilder.withStreamInput(cin);
403 #else /* CVC4_COMPETITION_MODE && !CVC4_SMTCOMP_APPLICATION_TRACK */
404 parserBuilder.withLineBufferedStreamInput(cin);
405 #endif /* CVC4_COMPETITION_MODE && !CVC4_SMTCOMP_APPLICATION_TRACK */
406 }
407
408 Parser *parser = parserBuilder.build();
409 if(replayParser != NULL) {
410 // have the replay parser use the file's declarations
411 replayParser->useDeclarationsFrom(parser);
412 }
413 while((status || opts[options::continuedExecution]) && (cmd = parser->nextCommand())) {
414 status = pExecutor->doCommand(cmd);
415 if(dynamic_cast<QuitCommand*>(cmd) != NULL) {
416 delete cmd;
417 break;
418 }
419 delete cmd;
420 }
421 // Remove the parser
422 delete parser;
423 }
424
425 if( opts[options::replayStream] != NULL ) {
426 // this deletes the expression parser too
427 delete opts[options::replayStream];
428 opts.set(options::replayStream, NULL);
429 }
430
431 Result result;
432 if(status) {
433 result = pExecutor->getResult();
434 returnValue = 0;
435 } else {
436 // there was some kind of error
437 returnValue = 1;
438 }
439
440 #ifdef CVC4_COMPETITION_MODE
441 *opts[options::out] << flush;
442 // exit, don't return (don't want destructors to run)
443 // _exit() from unistd.h doesn't run global destructors
444 // or other on_exit/atexit stuff.
445 _exit(returnValue);
446 #endif /* CVC4_COMPETITION_MODE */
447
448 ReferenceStat< Result > s_statSatResult("sat/unsat", result);
449 RegisterStatistic statSatResultReg(&pExecutor->getStatisticsRegistry(), &s_statSatResult);
450
451 pTotalTime->stop();
452
453 // Set the global executor pointer to NULL first. If we get a
454 // signal while dumping statistics, we don't want to try again.
455 if(opts[options::statistics]) {
456 if(opts[options::statsHideZeros] == false) {
457 pExecutor->flushStatistics(*opts[options::err]);
458 } else {
459 std::ostringstream ossStats;
460 pExecutor->flushStatistics(ossStats);
461 printStatsFilterZeros(*opts[options::err], ossStats.str());
462 }
463 }
464
465 // make sure to flush replay output log before early-exit
466 if( opts[options::replayLog] != NULL ) {
467 *opts[options::replayLog] << flush;
468 }
469
470 // make sure out and err streams are flushed too
471 *opts[options::out] << flush;
472 *opts[options::err] << flush;
473
474 #ifdef CVC4_DEBUG
475 if(opts[options::earlyExit] && opts.wasSetByUser(options::earlyExit)) {
476 _exit(returnValue);
477 }
478 #else /* CVC4_DEBUG */
479 if(opts[options::earlyExit]) {
480 _exit(returnValue);
481 }
482 #endif /* CVC4_DEBUG */
483 }
484
485 // On exceptional exit, these are leaked, but that's okay... they
486 // need to be around in that case for main() to print statistics.
487 delete pTotalTime;
488 delete pExecutor;
489 delete exprMgr;
490
491 pTotalTime = NULL;
492 pExecutor = NULL;
493
494 return returnValue;
495 }