-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmr_sequential.cc
206 lines (170 loc) · 5.42 KB
/
mr_sequential.cc
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
//
// A simple sequential MapReduce for WordCount
//
#include <string>
#include <sstream>
#include <fstream>
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
typedef struct {
string key;
string val;
}
KeyVal;
bool is_leagal(string &str){
if (str.size()<=0){
return false;
}
else {
for (int i=0; i<str.size(); ++i){
if (!((str[i]>='A' && str[i]<='Z') || (str[i]>='a' && str[i]<='z'))){
return false;
}
}
}
return true;
}
//
// The map function is called once for each file of input. The first
// argument is the name of the input file, and the second is the
// file's complete contents. You should ignore the input file name,
// and look only at the contents argument. The return value is a slice
// of key/value pairs.
//
vector<KeyVal> Map(const string &filename, const string &content)
{
// Your code goes here
// Hints: split contents into an array of words.
// // for debug
// std::ofstream fout("/home/stu/cse-lab/mr_log.txt", std::ios::app);
// fout << "---------map begin----------" << std::endl;
// fout.close();
// 返回结果
vector<KeyVal> vec;
// 文件长度
int length = content.length();
// // for debug
// fout.open("/home/stu/cse-lab/mr_log.txt", std::ios::app);
// fout << "content length is: " << length << std::endl;
// fout.close();
// 单词开始的位置
int start = 0;
for (int i=0; i < length; ++i){
if ((content[i] >= 'A' && content[i] <= 'Z')
|| (content[i] >= 'a' && content[i] <= 'z')){
continue;
}
else {
string word = content.substr(start, i-start);
if (is_leagal(word)){
KeyVal tmp;
tmp.key = word;
tmp.val = "1";
vec.push_back(tmp);
}
start = i+1;
}
}
// // for debug
// for (int i=0; i<vec.size(); ++i){
// if (vec[i].key == " " || vec[i].key.size() == 0){
// // for debug
// fout.open("/home/stu/cse-lab/mr_log.txt", std::ios::app);
// fout << "where is the block from???????????????" << std::endl;
// fout.close();
// }
// }
// fout.open("/home/stu/cse-lab/mr_log.txt", std::ios::app);
// fout << "vec size is: " << vec.size() << std::endl;
// fout << "---------map end------------" << std::endl;
// fout << std::endl;
// fout.close();
return vec;
}
//
// The reduce function is called once for each key generated by the
// map tasks, with a list of all the values created for that key by
// any map task.
//
string Reduce(const string &key, const vector <string> &values)
{
// Your code goes here
// Hints: return the number of occurrences of the word.
int num = 0;
for (long unsigned int i = 0; i < values.size(); ++i){
num += atoi(values[i].c_str());
}
return std::to_string(num);
}
int main(int argc, char ** argv)
{
if (argc < 2) {
cout << "Usage: mrsequential inputfiles...\n";
exit(1);
}
vector <string> filename;
vector <KeyVal> intermediate;
// // for debug
// std::ofstream fout("/home/stu/cse-lab/mr_log.txt", std::ios::app);
// fout << "map reduce begin" << std::endl;
// fout << std::endl;
// fout.close();
//
// read each input file,
// pass it to Map,
// accumulate the intermediate Map output.
//
for (int i = 1; i < argc; ++i) {
string filename = argv[i];
string content;
// Read the whole file into the buffer.
getline(ifstream(filename), content, '\0');
vector <KeyVal> KVA = Map(filename, content);
intermediate.insert(intermediate.end(), KVA.begin(), KVA.end());
}
// // for debug
// fout.open("/home/stu/cse-lab/mr_log.txt", std::ios::app);
// fout << "after map" << std::endl;
// fout << "intermediate size is: " << intermediate.size() << std::endl;
// fout << std::endl;
// fout.close();
//
// a big difference from real MapReduce is that all the
// intermediate data is in one place, intermediate[],
// rather than being partitioned into NxM buckets.
//
sort(intermediate.begin(), intermediate.end(),
[](KeyVal const & a, KeyVal const & b) {
return a.key < b.key;
});
// // for debug
// fout.open("/home/stu/cse-lab/mr_log.txt", std::ios::app);
// fout << "after sort" << std::endl;
// fout << "intermediate size is: " << intermediate.size() << std::endl;
// fout << std::endl;
// fout.close();
//
// call Reduce on each distinct key in intermediate[],
// and print the result to mr-out-0.
//
for (unsigned int i = 0; i < intermediate.size();) {
unsigned int j = i + 1;
for (; j < intermediate.size() && intermediate[j].key == intermediate[i].key;)
j++;
vector < string > values;
for (unsigned int k = i; k < j; k++) {
values.push_back(intermediate[k].val);
}
string output = Reduce(intermediate[i].key, values);
printf("%s %s\n", intermediate[i].key.data(), output.data());
// // for debug
// fout.open("/home/stu/cse-lab/mr_log.txt", std::ios::app);
// fout << "word: " << intermediate[i].key.data() << " count: " << output.data() << std::endl;
// fout << std::endl;
// fout.close();
i = j;
}
return 0;
}