forked from jonathan-beard/simple_wc_example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmc_driver.cpp
109 lines (97 loc) · 1.89 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
#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 );
delete(scanner);
try
{
scanner = new MC::MC_Scanner( &in_file );
}
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";
}
}
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 << "Uppercase: " << uppercase << "\n";
stream << "Lowercase: " << lowercase << "\n";
stream << "Lines: " << lines << "\n";
stream << "Words: " << words << "\n";
stream << "Characters: " << chars << "\n";
return(stream);
}