5 #include <boost/program_options.hpp>
9 #include <pugixml/pugixml.hpp>
13 #include <sandesh/common/vns_types.h>
14 #include <sandesh/common/vns_constants.h>
17 #include <cmn/buildinfo.h>
38 #include <boost/functional/factory.hpp>
43 namespace opt = boost::program_options;
48 LOG(DEBUG,
"Router ID Dependent modules (Nova and BGP) INITIALIZED");
53 int sock = socket(AF_INET, SOCK_DGRAM, IPPROTO_IP);
54 memset(&ifr, 0,
sizeof(ifr));
55 strcpy(ifr.ifr_name,
"vhost0");
56 int err = ioctl(sock, SIOCGIFFLAGS, &ifr);
57 if (err < 0 || !(ifr.ifr_flags & IFF_UP)) {
59 LOG(DEBUG,
"vhost is down");
62 err = ioctl(sock, SIOCGIFADDR, &ifr);
65 LOG(DEBUG,
"vhost is up, but ip is not set");
76 int main(
int argc,
char *argv[]) {
78 srand(
unsigned(time(NULL)));
82 std::cout <<
"Invalid arguments. ";
83 std::cout << params.
options() << std::endl;
87 opt::variables_map var_map = params.
var_map();
88 if (var_map.count(
"help")) {
89 std::cout << params.
options() << std::endl;
93 if (var_map.count(
"version")) {
96 std::cout << params.
options() << std::endl;
100 string init_file =
"";
101 if (var_map.count(
"config_file")) {
102 init_file = var_map[
"config_file"].as<
string>();
104 if (stat(init_file.c_str(), &s) != 0) {
105 std::cout <<
"Error opening config file <" << init_file
106 <<
">. Error number <" << errno <<
">";
112 params.
Init(init_file, argv[0]);
120 std::cout <<
"INFO: wait vhost0 to be initilaized... "
121 << i <<
"/" << MAX_RETRY << std::endl;
123 std::cout <<
"INFO: vhost0 is ready." << std::endl;
129 if (i == MAX_RETRY) {
130 std::cout <<
"INFO: vhost0 is not ready." << std::endl;
142 init.set_create_vhost(
false);
145 init.set_agent_param(¶ms);
148 if ((ret = init.Start()) != 0) {
156 Agent *agent = init.agent();
static Agent * GetInstance()
static void Initialize(uint32_t thread_count=0, EventManager *evm=NULL)
uint32_t tbb_thread_count() const
const Ip4Address & loopback_ip() const
bool is_vhost_interface_up()
static bool GetBuildInfo(BuildModule id, const std::string &build_info, std::string &result)
static void LogVersionInfo(const std::string str, Category::type categ)
void set_event_manager(EventManager *evm)
void ParseArguments(int argc, char *argv[])
static TaskScheduler * GetInstance()
const boost::program_options::variables_map & var_map() const
VNController * controller() const
EventManager * event_manager() const
boost::asio::ip::address_v4 Ip4Address
boost::program_options::options_description options() const
#define LOG(_Level, _Msg)
void RouterIdDepInit(Agent *agent)
void Init(const std::string &config_file, const std::string &program_name)
bool GetBuildInfo(std::string &build_info_str)
bool cat_is_agent_mocked() const