-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmain.cpp
38 lines (28 loc) · 876 Bytes
/
main.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
#include <iostream>
#include "Crawler.h"
#include "Crawler.cpp"
// gives a Crawler object named `myCrawler` from default
using namespace std;
using namespace std::chrono;
int main(int argc, const char *argv[])
{
srand(time(0));
// Crawler: maxLinks pagesLimit threads
myCrawler.maxLinks = stoi(argv[1]);
myCrawler.pagesLimit = stoi(argv[2]);
myCrawler.maxThreads = stoi(argv[3]);
auto t1 = chrono::steady_clock::now();
myCrawler.initialize();
myCrawler.runCrawler();
myCrawler.showResults();
auto t2 = chrono::steady_clock::now();
int res = duration_cast<milliseconds>(t2 - t1).count();
cout << "FINISHED." << endl;
cout<< RED << "Elapsed time in milliseconds : "
<< res
<< C_END << endl;
ofstream fout("OUTPUT/crawler_timings.csv", std::ios_base::app);
fout << myCrawler.maxThreads << ", " << res << endl;
fout.close();
return 0;
}