|
4 | 4 |
|
5 | 5 | #include "mc_driver.hpp"
|
6 | 6 |
|
7 |
| -#ifndef FAIL |
8 |
| -#define FAIL -1 |
| 7 | +// wamckee 2013 APR 2 - Instead of testing for == FAIL below, |
| 8 | +// we test for != ACCEPT (in which ACCEPT has a value of zero). |
| 9 | +// When compiling on a MSVC 2010 platform using cygwin's Flex and Bison, |
| 10 | +// we note that the return value from parse() is not -1 but rather +1. |
| 11 | +// It is more likely that on different platforms the return value of zero |
| 12 | +// will be used consistantly to indicate an accept state. Whereas, the |
| 13 | +// value of the abort or fail state will be more likely not to be a specific |
| 14 | +// value but rather a value that is not equal to zero. |
| 15 | + |
| 16 | +#ifndef ACCEPT |
| 17 | +#define ACCEPT 0 |
9 | 18 | #endif
|
10 | 19 |
|
11 | 20 | MC::MC_Driver::~MC_Driver(){
|
12 |
| - if( scanner != nullptr ) delete(scanner); |
13 |
| - if( parser != nullptr ) delete(parser); |
| 21 | + delete(scanner); // wamckee 2013 APR 2 |
| 22 | + delete(parser); // wamckee 2013 APR 2 |
14 | 23 | }
|
15 | 24 |
|
16 | 25 | void MC::MC_Driver::parse( const char *filename ){
|
17 | 26 | assert( filename != nullptr );
|
18 | 27 | std::ifstream in_file( filename );
|
19 | 28 | if( ! in_file.good() ) exit( EXIT_FAILURE );
|
| 29 | + |
| 30 | + delete(scanner); // wamckee 2013 APR 2 |
20 | 31 | scanner = new MC::MC_Scanner( &in_file );
|
21 | 32 | /* check to see if its initialized */
|
22 | 33 | assert( scanner != nullptr );
|
| 34 | + |
| 35 | + delete(parser); // wamckee 2013 APR 2 |
23 | 36 | parser = new MC::MC_Parser( (*scanner) /* scanner */,
|
24 | 37 | (*this) /* driver */ );
|
25 | 38 | assert( parser != nullptr );
|
26 |
| - if(parser->parse() == FAIL) |
| 39 | + |
| 40 | + if(parser->parse() != ACCEPT) // wamckee 2013 APR 2 |
27 | 41 | {
|
28 | 42 | std::cerr << "Parse failed!!\n";
|
29 | 43 | }
|
|
0 commit comments