8 |
|
#include "Collector.hpp" |
9 |
|
#include "Publisher.hpp" |
10 |
|
|
11 |
+ |
#include <menes-api/exename.hpp> |
12 |
+ |
#include <menes-app/application.hpp> |
13 |
+ |
|
14 |
|
#include <algorithm> |
15 |
|
#include <cstring> |
16 |
|
#include <iterator> |
22 |
|
#include <unistd.h> |
23 |
|
} |
24 |
|
|
25 |
< |
int zoe(const std::vector<const char*> args) |
25 |
> |
struct ZoeCommand : public app::Application |
26 |
|
{ |
27 |
< |
Zoe::program = args[0]; |
25 |
< |
|
26 |
< |
for (int index(1); index < args.size(); ++index) |
27 |
> |
virtual int Run(const app::ArgumentList& args) |
28 |
|
{ |
29 |
< |
ext::String arg(args[index]); |
29 |
< |
Matcher matcher; |
29 |
> |
Zoe::program = api::GetExecutableName(); |
30 |
|
|
31 |
< |
if (arg == matcher("^-config=(.*)$")) |
32 |
< |
{ |
33 |
< |
Zoe::config = matcher[1]; |
34 |
< |
} |
35 |
< |
else if (arg == "-collector") |
36 |
< |
{ |
37 |
< |
if (!Zoe::collector) Zoe::collector = true; |
38 |
< |
} |
39 |
< |
else if (arg == "-publisher") |
40 |
< |
{ |
41 |
< |
if (!Zoe::publisher) Zoe::publisher = true; |
42 |
< |
} |
43 |
< |
else if (arg == "-color") |
44 |
< |
{ |
45 |
< |
if (!Zoe::color) Zoe::color = true; |
46 |
< |
} |
47 |
< |
else if (arg == "-D") |
31 |
> |
for (size_t index(0); index < args.GetSize(); ++index) |
32 |
|
{ |
33 |
< |
if (!Zoe::debug) Zoe::debug = true; |
34 |
< |
} |
51 |
< |
else Zoe::usage(); |
52 |
< |
} |
33 |
> |
ext::String arg(args[index]); |
34 |
> |
Matcher matcher; |
35 |
|
|
36 |
< |
Zoe zoe; |
37 |
< |
|
38 |
< |
return 0; |
39 |
< |
} |
36 |
> |
if (arg == matcher("^-config=(.*)$")) |
37 |
> |
{ |
38 |
> |
Zoe::config = matcher[1]; |
39 |
> |
} |
40 |
> |
else if (arg == "-collector") |
41 |
> |
{ |
42 |
> |
if (!Zoe::collector) Zoe::collector = true; |
43 |
> |
} |
44 |
> |
else if (arg == "-publisher") |
45 |
> |
{ |
46 |
> |
if (!Zoe::publisher) Zoe::publisher = true; |
47 |
> |
} |
48 |
> |
else if (arg == "-color") |
49 |
> |
{ |
50 |
> |
if (!Zoe::color) Zoe::color = true; |
51 |
> |
} |
52 |
> |
else if (arg == "-D") |
53 |
> |
{ |
54 |
> |
if (!Zoe::debug) Zoe::debug = true; |
55 |
> |
} |
56 |
> |
else Zoe::usage(); |
57 |
> |
} |
58 |
|
|
59 |
< |
int main(int argc, char* argv[]) |
60 |
< |
{ |
61 |
< |
std::vector<const char*> args(argv, argv + argc); |
59 |
> |
Zoe zoe; |
60 |
|
|
61 |
< |
return app::be::ThreadMain_(etl::BindAll(&zoe, args)); |
62 |
< |
} |
61 |
> |
return 0; |
62 |
> |
} |
63 |
> |
} zoe; |
64 |
|
|
65 |
|
Zoe::Zoe() |
66 |
|
{ |
74 |
|
} |
75 |
|
|
76 |
|
bool Zoe::debug(false), Zoe::collector(false), Zoe::publisher(false), |
77 |
< |
Zoe::color(false); |
77 |
> |
Zoe::color(false); |
78 |
|
ext::String Zoe::program, Zoe::config("zoe.xml"); |
79 |
|
|
80 |
|
void Zoe::usage() |