forked from jonathan-beard/simple_wc_example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmc_driver.cpp
134 lines (119 loc) · 2.31 KB
/
mc_driver.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#include <cctype>
#include <fstream>
#include <cassert>
#include "mc_driver.hpp"
MC::MC_Driver::~MC_Driver()
{
delete(scanner);
scanner = nullptr;
delete(parser);
parser = nullptr;
}
void
MC::MC_Driver::parse( const char * const filename )
{
assert( filename != nullptr );
std::ifstream in_file( filename );
if( ! in_file.good() )
{
exit( EXIT_FAILURE );
}
parse_helper( in_file );
return;
}
void
MC::MC_Driver::parse( std::istream &stream )
{
if( ! stream.good() && stream.eof() )
{
return;
}
//else
parse_helper( stream );
return;
}
void
MC::MC_Driver::parse_helper( std::istream &stream )
{
delete(scanner);
try
{
scanner = new MC::MC_Scanner( &stream );
}
catch( std::bad_alloc &ba )
{
std::cerr << "Failed to allocate scanner: (" <<
ba.what() << "), exiting!!\n";
exit( EXIT_FAILURE );
}
delete(parser);
try
{
parser = new MC::MC_Parser( (*scanner) /* scanner */,
(*this) /* driver */ );
}
catch( std::bad_alloc &ba )
{
std::cerr << "Failed to allocate parser: (" <<
ba.what() << "), exiting!!\n";
exit( EXIT_FAILURE );
}
const int accept( 0 );
if( parser->parse() != accept )
{
std::cerr << "Parse failed!!\n";
}
return;
}
void
MC::MC_Driver::add_upper()
{
uppercase++;
chars++;
words++;
}
void
MC::MC_Driver::add_lower()
{
lowercase++;
chars++;
words++;
}
void
MC::MC_Driver::add_word( const std::string &word )
{
words++;
chars += word.length();
for(const char &c : word ){
if( islower( c ) )
{
lowercase++;
}
else if ( isupper( c ) )
{
uppercase++;
}
}
}
void
MC::MC_Driver::add_newline()
{
lines++;
chars++;
}
void
MC::MC_Driver::add_char()
{
chars++;
}
std::ostream&
MC::MC_Driver::print( std::ostream &stream )
{
stream << red << "Results: " << norm << "\n";
stream << blue << "Uppercase: " << norm << uppercase << "\n";
stream << blue << "Lowercase: " << norm << lowercase << "\n";
stream << blue << "Lines: " << norm << lines << "\n";
stream << blue << "Words: " << norm << words << "\n";
stream << blue << "Characters: " << norm << chars << "\n";
return(stream);
}