Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: shell/src/Main.cpp

Issue 10252013: Implemented curl support for web requests (Closed)
Patch Set: Unbitrotted the patch Created April 11, 2013, 4:33 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 #include <AdblockPlus.h> 1 #include <AdblockPlus.h>
2 #include <fstream> 2 #include <fstream>
3 #include <iostream> 3 #include <iostream>
4 #include <sstream> 4 #include <sstream>
5 5
6 #include "GcCommand.h" 6 #include "GcCommand.h"
7 #include "HelpCommand.h" 7 #include "HelpCommand.h"
8 #include "FiltersCommand.h" 8 #include "FiltersCommand.h"
9 #include "SubscriptionsCommand.h" 9 #include "SubscriptionsCommand.h"
10 #include "MatchesCommand.h" 10 #include "MatchesCommand.h"
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 lineStream >> name; 52 lineStream >> name;
53 std::getline(lineStream, arguments); 53 std::getline(lineStream, arguments);
54 } 54 }
55 } 55 }
56 56
57 int main() 57 int main()
58 { 58 {
59 try 59 try
60 { 60 {
61 LibFileReader fileReader; 61 LibFileReader fileReader;
62 AdblockPlus::DefaultWebRequest webRequest;
62 CerrErrorCallback errorCallback; 63 CerrErrorCallback errorCallback;
63 AdblockPlus::JsEngine jsEngine(&fileReader, 0, 0); 64 AdblockPlus::JsEngine jsEngine(&fileReader, &webRequest, &errorCallback);
64 AdblockPlus::FilterEngine filterEngine(jsEngine); 65 AdblockPlus::FilterEngine filterEngine(jsEngine);
65 66
66 CommandMap commands; 67 CommandMap commands;
67 Add(commands, new GcCommand(jsEngine)); 68 Add(commands, new GcCommand(jsEngine));
68 Add(commands, new HelpCommand(commands)); 69 Add(commands, new HelpCommand(commands));
69 Add(commands, new FiltersCommand(filterEngine)); 70 Add(commands, new FiltersCommand(filterEngine));
70 Add(commands, new SubscriptionsCommand(filterEngine)); 71 Add(commands, new SubscriptionsCommand(filterEngine));
71 Add(commands, new MatchesCommand(filterEngine)); 72 Add(commands, new MatchesCommand(filterEngine));
72 73
73 std::string commandLine; 74 std::string commandLine;
(...skipping 15 matching lines...) Expand all
89 std::cout << error.what() << std::endl; 90 std::cout << error.what() << std::endl;
90 } 91 }
91 } 92 }
92 } 93 }
93 catch (const std::exception& e) 94 catch (const std::exception& e)
94 { 95 {
95 std::cerr << "Exception: " << e.what() << std::endl; 96 std::cerr << "Exception: " << e.what() << std::endl;
96 } 97 }
97 return 0; 98 return 0;
98 } 99 }
OLDNEW

Powered by Google App Engine
This is Rietveld