blob: 7548ee76cd5d5b440ac1ade0e6b1c506f39f5254 (
plain)
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
|
// Copyright (C) 2012-2016 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#include <config.h>
#include <perfdhcp/test_control.h>
#include <perfdhcp/command_options.h>
#include <exceptions/exceptions.h>
#include <iostream>
#include <stdint.h>
using namespace isc::perfdhcp;
int
main(int argc, char* argv[]) {
CommandOptions& command_options = CommandOptions::instance();
std::string diags(command_options.getDiags());
int ret_code = 0;
try {
// If parser returns true it means that user specified
// 'h' or 'v' command line option. Program shows the
// help or version message and exits here.
// The third argument indicates that the command line
// should be printed when it gets parsed. This is useful
// in particular when the command line needs to be
// extracted from the log file.
if (command_options.parse(argc, argv, true)) {
return (ret_code);
}
} catch(isc::Exception& e) {
ret_code = 1;
command_options.usage();
std::cerr << "Error parsing command line options: "
<< e.what() << std::endl;
if (diags.find('e') != std::string::npos) {
std::cerr << "Fatal error" << std::endl;
}
return (ret_code);
}
try{
TestControl& test_control = TestControl::instance();
ret_code = test_control.run();
} catch (std::exception& e) {
ret_code = 1;
std::cerr << "Error running perfdhcp: " << e.what() << std::endl;
if (diags.find('e') != std::string::npos) {
std::cerr << "Fatal error" << std::endl;
}
}
return (ret_code);
}
|