move program options for routed/simpleclient into common header
This commit is contained in:
parent
d91382208d
commit
26ab8755b6
@ -24,16 +24,25 @@ Custom validators for use with boost::program_options.
|
|||||||
#ifndef PROGAM_OPTIONS_H
|
#ifndef PROGAM_OPTIONS_H
|
||||||
#define PROGAM_OPTIONS_H
|
#define PROGAM_OPTIONS_H
|
||||||
|
|
||||||
|
#include "GitDescription.h"
|
||||||
#include "OSRMException.h"
|
#include "OSRMException.h"
|
||||||
|
#include "SimpleLogger.h"
|
||||||
|
|
||||||
#include <boost/any.hpp>
|
#include <boost/any.hpp>
|
||||||
#include <boost/filesystem.hpp>
|
#include <boost/filesystem.hpp>
|
||||||
#include <boost/program_options.hpp>
|
#include <boost/program_options.hpp>
|
||||||
#include <boost/regex.hpp>
|
#include <boost/regex.hpp>
|
||||||
|
#include <boost/unordered_map.hpp>
|
||||||
|
|
||||||
|
#include <fstream>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
typedef boost::unordered_map<
|
||||||
|
const std::string,
|
||||||
|
boost::filesystem::path
|
||||||
|
> ServerPaths;
|
||||||
|
|
||||||
namespace boost {
|
namespace boost {
|
||||||
namespace filesystem {
|
namespace filesystem {
|
||||||
// Validator for boost::filesystem::path, that verifies that the file
|
// Validator for boost::filesystem::path, that verifies that the file
|
||||||
@ -58,14 +67,206 @@ namespace boost {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//support old capitalized option names by downcasing them with a regex replace
|
// support old capitalized option names by downcasing them with a regex replace
|
||||||
//read from file and store in a stringstream that can be passed to boost::program_options
|
// read from file and store in a stringstream that can be passed to
|
||||||
inline void PrepareConfigFile(const boost::filesystem::path& path, std::string& output ) {
|
// boost::program_options
|
||||||
std::ifstream config_stream(path.c_str());
|
inline void PrepareConfigFile(
|
||||||
std::string input_str( (std::istreambuf_iterator<char>(config_stream)), std::istreambuf_iterator<char>() );
|
const boost::filesystem::path& path,
|
||||||
|
std::string& output
|
||||||
|
) {
|
||||||
|
std::ifstream config_stream(path.string().c_str());
|
||||||
|
std::string input_str(
|
||||||
|
(std::istreambuf_iterator<char>(config_stream)),
|
||||||
|
std::istreambuf_iterator<char>()
|
||||||
|
);
|
||||||
boost::regex regex( "^([^=]*)" ); //match from start of line to '='
|
boost::regex regex( "^([^=]*)" ); //match from start of line to '='
|
||||||
std::string format( "\\L$1\\E" ); //replace with downcased substring
|
std::string format( "\\L$1\\E" ); //replace with downcased substring
|
||||||
output = boost::regex_replace( input_str, regex, format );
|
output = boost::regex_replace( input_str, regex, format );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// generate boost::program_options object for the routing part
|
||||||
|
bool GenerateServerProgramOptions(
|
||||||
|
const int argc,
|
||||||
|
const char * argv[],
|
||||||
|
ServerPaths & paths,
|
||||||
|
std::string & ip_address,
|
||||||
|
int & ip_port,
|
||||||
|
int & requested_num_threads
|
||||||
|
) {
|
||||||
|
|
||||||
|
// declare a group of options that will be allowed only on command line
|
||||||
|
boost::program_options::options_description generic_options("Options");
|
||||||
|
generic_options.add_options()
|
||||||
|
("version,v", "Show version")
|
||||||
|
("help,h", "Show this help message")
|
||||||
|
(
|
||||||
|
"config,c",
|
||||||
|
boost::program_options::value<boost::filesystem::path>(
|
||||||
|
&paths["config"]
|
||||||
|
)->default_value("server.ini"),
|
||||||
|
"Path to a configuration file"
|
||||||
|
);
|
||||||
|
|
||||||
|
// declare a group of options that will be allowed both on command line
|
||||||
|
// as well as in a config file
|
||||||
|
boost::program_options::options_description config_options("Configuration");
|
||||||
|
config_options.add_options()
|
||||||
|
(
|
||||||
|
"hsgrdata",
|
||||||
|
boost::program_options::value<boost::filesystem::path>(&paths["hsgrdata"]),
|
||||||
|
".hsgr file"
|
||||||
|
)
|
||||||
|
(
|
||||||
|
"nodesdata",
|
||||||
|
boost::program_options::value<boost::filesystem::path>(&paths["nodesdata"]),
|
||||||
|
".nodes file"
|
||||||
|
)
|
||||||
|
(
|
||||||
|
"edgesdata",
|
||||||
|
boost::program_options::value<boost::filesystem::path>(&paths["edgesdata"]),
|
||||||
|
".edges file")
|
||||||
|
(
|
||||||
|
"ramindex",
|
||||||
|
boost::program_options::value<boost::filesystem::path>(&paths["ramindex"]),
|
||||||
|
".ramIndex file")
|
||||||
|
(
|
||||||
|
"fileindex",
|
||||||
|
boost::program_options::value<boost::filesystem::path>(&paths["fileindex"]),
|
||||||
|
"File index file")
|
||||||
|
(
|
||||||
|
"namesdata",
|
||||||
|
boost::program_options::value<boost::filesystem::path>(&paths["namesdata"]),
|
||||||
|
".names file")
|
||||||
|
(
|
||||||
|
"timestamp",
|
||||||
|
boost::program_options::value<boost::filesystem::path>(&paths["timestamp"]),
|
||||||
|
".timestamp file")
|
||||||
|
(
|
||||||
|
"ip,i",
|
||||||
|
boost::program_options::value<std::string>(&ip_address)->default_value("0.0.0.0"),
|
||||||
|
"IP address"
|
||||||
|
)
|
||||||
|
(
|
||||||
|
"port,p",
|
||||||
|
boost::program_options::value<int>(&ip_port)->default_value(5000),
|
||||||
|
"TCP/IP port"
|
||||||
|
)
|
||||||
|
(
|
||||||
|
"threads,t",
|
||||||
|
boost::program_options::value<int>(&requested_num_threads)->default_value(8),
|
||||||
|
"Number of threads to use"
|
||||||
|
);
|
||||||
|
|
||||||
|
// hidden options, will be allowed both on command line and in config
|
||||||
|
// file, but will not be shown to the user
|
||||||
|
boost::program_options::options_description hidden_options("Hidden options");
|
||||||
|
hidden_options.add_options()
|
||||||
|
(
|
||||||
|
"base,b",
|
||||||
|
boost::program_options::value<boost::filesystem::path>(&paths["base"]),
|
||||||
|
"base path to .osrm file"
|
||||||
|
);
|
||||||
|
|
||||||
|
// positional option
|
||||||
|
boost::program_options::positional_options_description positional_options;
|
||||||
|
positional_options.add("base", 1);
|
||||||
|
|
||||||
|
// combine above options for parsing
|
||||||
|
boost::program_options::options_description cmdline_options;
|
||||||
|
cmdline_options.add(generic_options).add(config_options).add(hidden_options);
|
||||||
|
|
||||||
|
boost::program_options::options_description config_file_options;
|
||||||
|
config_file_options.add(config_options).add(hidden_options);
|
||||||
|
|
||||||
|
boost::program_options::options_description visible_options(
|
||||||
|
boost::filesystem::basename(argv[0]) + " <base.osrm> [<options>]"
|
||||||
|
);
|
||||||
|
visible_options.add(generic_options).add(config_options);
|
||||||
|
|
||||||
|
// parse command line options
|
||||||
|
boost::program_options::variables_map option_variables;
|
||||||
|
boost::program_options::store(
|
||||||
|
boost::program_options::command_line_parser(argc, argv).options(cmdline_options).positional(positional_options).run(),
|
||||||
|
option_variables
|
||||||
|
);
|
||||||
|
|
||||||
|
if(option_variables.count("version")) {
|
||||||
|
SimpleLogger().Write() << g_GIT_DESCRIPTION;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(option_variables.count("help")) {
|
||||||
|
SimpleLogger().Write() << visible_options;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
boost::program_options::notify(option_variables);
|
||||||
|
|
||||||
|
// parse config file
|
||||||
|
if(boost::filesystem::is_regular_file(paths["config"])) {
|
||||||
|
SimpleLogger().Write() <<
|
||||||
|
"Reading options from: " << paths["config"].c_str();
|
||||||
|
std::string config_str;
|
||||||
|
PrepareConfigFile( paths["config"], config_str );
|
||||||
|
std::stringstream config_stream( config_str );
|
||||||
|
boost::program_options::store(parse_config_file(config_stream, config_file_options), option_variables);
|
||||||
|
boost::program_options::notify(option_variables);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!option_variables.count("hsgrdata")) {
|
||||||
|
if(!option_variables.count("base")) {
|
||||||
|
throw OSRMException("hsgrdata (or base) must be specified");
|
||||||
|
}
|
||||||
|
paths["hsgrdata"] = std::string( paths["base"].c_str()) + ".hsgr";
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!option_variables.count("nodesdata")) {
|
||||||
|
if(!option_variables.count("base")) {
|
||||||
|
throw OSRMException("nodesdata (or base) must be specified");
|
||||||
|
}
|
||||||
|
paths["nodesdata"] = std::string( paths["base"].c_str()) + ".nodes";
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!option_variables.count("edgesdata")) {
|
||||||
|
if(!option_variables.count("base")) {
|
||||||
|
throw OSRMException("edgesdata (or base) must be specified");
|
||||||
|
}
|
||||||
|
paths["edgesdata"] = std::string( paths["base"].c_str()) + ".edges";
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!option_variables.count("ramindex")) {
|
||||||
|
if(!option_variables.count("base")) {
|
||||||
|
throw OSRMException("ramindex (or base) must be specified");
|
||||||
|
}
|
||||||
|
paths["ramindex"] = std::string( paths["base"].c_str()) + ".ramIndex";
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!option_variables.count("fileindex")) {
|
||||||
|
if(!option_variables.count("base")) {
|
||||||
|
throw OSRMException("fileindex (or base) must be specified");
|
||||||
|
}
|
||||||
|
paths["fileindex"] = std::string( paths["base"].c_str()) + ".fileIndex";
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!option_variables.count("namesdata")) {
|
||||||
|
if(!option_variables.count("base")) {
|
||||||
|
throw OSRMException("namesdata (or base) must be specified");
|
||||||
|
}
|
||||||
|
paths["namesdata"] = std::string( paths["base"].c_str()) + ".names";
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!option_variables.count("timestamp")) {
|
||||||
|
if(!option_variables.count("base")) {
|
||||||
|
throw OSRMException("timestamp (or base) must be specified");
|
||||||
|
}
|
||||||
|
paths["timestamp"] = std::string( paths["base"].c_str()) + ".timestamp";
|
||||||
|
}
|
||||||
|
|
||||||
|
if(1 > requested_num_threads) {
|
||||||
|
throw OSRMException("Number of threads must be a positive number");
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
#endif /* PROGRAM_OPTIONS_H */
|
#endif /* PROGRAM_OPTIONS_H */
|
||||||
|
203
routed.cpp
203
routed.cpp
@ -62,176 +62,56 @@ BOOL WINAPI console_ctrl_handler(DWORD ctrl_type)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int main (int argc, char * argv[]) {
|
int main (int argc, const char * argv[]) {
|
||||||
try {
|
try {
|
||||||
LogPolicy::GetInstance().Unmute();
|
LogPolicy::GetInstance().Unmute();
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
if(!mlockall(MCL_CURRENT | MCL_FUTURE)) {
|
if(!mlockall(MCL_CURRENT | MCL_FUTURE)) {
|
||||||
SimpleLogger().Write(logWARNING) << "Process " << argv[0] << "could not be locked to RAM";
|
SimpleLogger().Write(logWARNING) <<
|
||||||
|
"Process " << argv[0] << "could not be locked to RAM";
|
||||||
}
|
}
|
||||||
|
installCrashHandler(argv[0]);
|
||||||
#endif
|
#endif
|
||||||
#ifdef __linux__
|
|
||||||
|
|
||||||
installCrashHandler(argv[0]);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
boost::unordered_map<const std::string,boost::filesystem::path> paths;
|
|
||||||
std::string ip_address;
|
std::string ip_address;
|
||||||
int ip_port, requested_num_threads;
|
int ip_port, requested_num_threads;
|
||||||
|
|
||||||
// declare a group of options that will be allowed only on command line
|
ServerPaths server_paths;
|
||||||
boost::program_options::options_description generic_options("Options");
|
if( !GenerateServerProgramOptions(
|
||||||
generic_options.add_options()
|
argc,
|
||||||
("version,v", "Show version")
|
argv,
|
||||||
("help,h", "Show this help message")
|
server_paths,
|
||||||
("config,c", boost::program_options::value<boost::filesystem::path>(&paths["config"])->default_value("server.ini"),
|
ip_address,
|
||||||
"Path to a configuration file");
|
ip_port,
|
||||||
|
requested_num_threads
|
||||||
// declare a group of options that will be allowed both on command line and in config file
|
)
|
||||||
boost::program_options::options_description config_options("Configuration");
|
) {
|
||||||
config_options.add_options()
|
|
||||||
("hsgrdata", boost::program_options::value<boost::filesystem::path>(&paths["hsgrdata"]),
|
|
||||||
"HSGR file")
|
|
||||||
("nodesdata", boost::program_options::value<boost::filesystem::path>(&paths["nodesdata"]),
|
|
||||||
"Nodes file")
|
|
||||||
("edgesdata", boost::program_options::value<boost::filesystem::path>(&paths["edgesdata"]),
|
|
||||||
"Edges file")
|
|
||||||
("ramindex", boost::program_options::value<boost::filesystem::path>(&paths["ramindex"]),
|
|
||||||
"RAM index file")
|
|
||||||
("fileindex", boost::program_options::value<boost::filesystem::path>(&paths["fileindex"]),
|
|
||||||
"File index file")
|
|
||||||
("namesdata", boost::program_options::value<boost::filesystem::path>(&paths["namesdata"]),
|
|
||||||
"Names file")
|
|
||||||
("timestamp", boost::program_options::value<boost::filesystem::path>(&paths["timestamp"]),
|
|
||||||
"Timestamp file")
|
|
||||||
("ip,i", boost::program_options::value<std::string>(&ip_address)->default_value("0.0.0.0"),
|
|
||||||
"IP address")
|
|
||||||
("port,p", boost::program_options::value<int>(&ip_port)->default_value(5000),
|
|
||||||
"IP Port")
|
|
||||||
("threads,t", boost::program_options::value<int>(&requested_num_threads)->default_value(8),
|
|
||||||
"Number of threads to use");
|
|
||||||
|
|
||||||
// hidden options, will be allowed both on command line and in config file, but will not be shown to the user
|
|
||||||
boost::program_options::options_description hidden_options("Hidden options");
|
|
||||||
hidden_options.add_options()
|
|
||||||
("base,b", boost::program_options::value<boost::filesystem::path>(&paths["base"]),
|
|
||||||
"base path to .osrm file, other wil be located in the same folder");
|
|
||||||
|
|
||||||
// positional option
|
|
||||||
boost::program_options::positional_options_description positional_options;
|
|
||||||
positional_options.add("base", 1);
|
|
||||||
|
|
||||||
// combine above options for parsing
|
|
||||||
boost::program_options::options_description cmdline_options;
|
|
||||||
cmdline_options.add(generic_options).add(config_options).add(hidden_options);
|
|
||||||
|
|
||||||
boost::program_options::options_description config_file_options;
|
|
||||||
config_file_options.add(config_options).add(hidden_options);
|
|
||||||
|
|
||||||
boost::program_options::options_description visible_options(boost::filesystem::basename(argv[0]) + " <base.osrm> [<options>]");
|
|
||||||
visible_options.add(generic_options).add(config_options);
|
|
||||||
|
|
||||||
// parse command line options
|
|
||||||
boost::program_options::variables_map option_variables;
|
|
||||||
boost::program_options::store(boost::program_options::command_line_parser(argc, argv).
|
|
||||||
options(cmdline_options).positional(positional_options).run(), option_variables);
|
|
||||||
|
|
||||||
if(option_variables.count("version")) {
|
|
||||||
SimpleLogger().Write() << g_GIT_DESCRIPTION;
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(option_variables.count("help")) {
|
|
||||||
SimpleLogger().Write() << visible_options;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
boost::program_options::notify(option_variables);
|
|
||||||
|
|
||||||
// parse config file
|
|
||||||
if(boost::filesystem::is_regular_file(paths["config"])) {
|
|
||||||
SimpleLogger().Write() << "Reading options from: " << paths["config"].c_str();
|
|
||||||
std::string config_str;
|
|
||||||
PrepareConfigFile( paths["config"], config_str );
|
|
||||||
std::stringstream config_stream( config_str );
|
|
||||||
boost::program_options::store(parse_config_file(config_stream, config_file_options), option_variables);
|
|
||||||
boost::program_options::notify(option_variables);
|
|
||||||
}
|
|
||||||
|
|
||||||
if(!option_variables.count("hsgrdata")) {
|
|
||||||
if(!option_variables.count("base")) {
|
|
||||||
SimpleLogger().Write(logWARNING) << "hsgrdata (or base) must be specified";
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
paths["hsgrdata"] = std::string( paths["base"].c_str()) + ".hsgr";
|
|
||||||
}
|
|
||||||
|
|
||||||
if(!option_variables.count("nodesdata")) {
|
|
||||||
if(!option_variables.count("base")) {
|
|
||||||
SimpleLogger().Write(logWARNING) << "nodesdata (or base) must be specified";
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
paths["nodesdata"] = std::string( paths["base"].c_str()) + ".nodes";
|
|
||||||
}
|
|
||||||
|
|
||||||
if(!option_variables.count("edgesdata")) {
|
|
||||||
if(!option_variables.count("base")) {
|
|
||||||
SimpleLogger().Write(logWARNING) << "edgesdata (or base) must be specified";
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
paths["edgesdata"] = std::string( paths["base"].c_str()) + ".edges";
|
|
||||||
}
|
|
||||||
|
|
||||||
if(!option_variables.count("ramindex")) {
|
|
||||||
if(!option_variables.count("base")) {
|
|
||||||
SimpleLogger().Write(logWARNING) << "ramindex (or base) must be specified";
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
paths["ramindex"] = std::string( paths["base"].c_str()) + ".ramIndex";
|
|
||||||
}
|
|
||||||
|
|
||||||
if(!option_variables.count("fileindex")) {
|
|
||||||
if(!option_variables.count("base")) {
|
|
||||||
SimpleLogger().Write(logWARNING) << "fileindex (or base) must be specified";
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
paths["fileindex"] = std::string( paths["base"].c_str()) + ".fileIndex";
|
|
||||||
}
|
|
||||||
|
|
||||||
if(!option_variables.count("namesdata")) {
|
|
||||||
if(!option_variables.count("base")) {
|
|
||||||
SimpleLogger().Write(logWARNING) << "namesdata (or base) must be specified";
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
paths["namesdata"] = std::string( paths["base"].c_str()) + ".names";
|
|
||||||
}
|
|
||||||
|
|
||||||
if(!option_variables.count("timestamp")) {
|
|
||||||
if(!option_variables.count("base")) {
|
|
||||||
SimpleLogger().Write(logWARNING) << "timestamp (or base) must be specified";
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
paths["timestamp"] = std::string( paths["base"].c_str()) + ".timestamp";
|
|
||||||
}
|
|
||||||
|
|
||||||
if(1 > requested_num_threads) {
|
|
||||||
SimpleLogger().Write(logWARNING) << "Number of threads must be 1 or larger";
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
SimpleLogger().Write() <<
|
SimpleLogger().Write() <<
|
||||||
"starting up engines, " << g_GIT_DESCRIPTION << ", compiled at " << __DATE__ << ", " __TIME__;
|
"starting up engines, " << g_GIT_DESCRIPTION << ", " <<
|
||||||
|
"compiled at " << __DATE__ << ", " __TIME__;
|
||||||
SimpleLogger().Write() << "HSGR file:\t" << paths["hsgrdata"].c_str();
|
|
||||||
SimpleLogger().Write() << "Nodes file:\t" << paths["nodesdata"].c_str();
|
SimpleLogger().Write() <<
|
||||||
SimpleLogger().Write() << "Edges file:\t" << paths["edgesdata"].c_str();
|
"HSGR file:\t" << server_paths["hsgrdata"];
|
||||||
SimpleLogger().Write() << "RAM file:\t" << paths["ramindex"].c_str();
|
SimpleLogger().Write() <<
|
||||||
SimpleLogger().Write() << "Index file:\t" << paths["fileindex"].c_str();
|
"Nodes file:\t" << server_paths["nodesdata"];
|
||||||
SimpleLogger().Write() << "Names file:\t" << paths["namesdata"].c_str();
|
SimpleLogger().Write() <<
|
||||||
SimpleLogger().Write() << "Timestamp file:\t" << paths["timestamp"].c_str();
|
"Edges file:\t" << server_paths["edgesdata"];
|
||||||
SimpleLogger().Write() << "Threads:\t" << requested_num_threads;
|
SimpleLogger().Write() <<
|
||||||
SimpleLogger().Write() << "IP address:\t" << ip_address;
|
"RAM file:\t" << server_paths["ramindex"];
|
||||||
SimpleLogger().Write() << "IP port:\t" << ip_port;
|
SimpleLogger().Write() <<
|
||||||
|
"Index file:\t" << server_paths["fileindex"];
|
||||||
|
SimpleLogger().Write() <<
|
||||||
|
"Names file:\t" << server_paths["namesdata"];
|
||||||
|
SimpleLogger().Write() <<
|
||||||
|
"Timestamp file:\t" << server_paths["timestamp"];
|
||||||
|
SimpleLogger().Write() <<
|
||||||
|
"Threads:\t" << requested_num_threads;
|
||||||
|
SimpleLogger().Write() <<
|
||||||
|
"IP address:\t" << ip_address;
|
||||||
|
SimpleLogger().Write() <<
|
||||||
|
"IP port:\t" << ip_port;
|
||||||
|
|
||||||
#ifndef _WIN32
|
#ifndef _WIN32
|
||||||
int sig = 0;
|
int sig = 0;
|
||||||
@ -241,8 +121,12 @@ int main (int argc, char * argv[]) {
|
|||||||
pthread_sigmask(SIG_BLOCK, &new_mask, &old_mask);
|
pthread_sigmask(SIG_BLOCK, &new_mask, &old_mask);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
OSRM routing_machine(paths);
|
OSRM routing_machine(server_paths);
|
||||||
Server * s = ServerFactory::CreateServer(ip_address,ip_port,requested_num_threads);
|
Server * s = ServerFactory::CreateServer(
|
||||||
|
ip_address,
|
||||||
|
ip_port,
|
||||||
|
requested_num_threads
|
||||||
|
);
|
||||||
s->GetRequestHandlerPtr().RegisterRoutingMachine(&routing_machine);
|
s->GetRequestHandlerPtr().RegisterRoutingMachine(&routing_machine);
|
||||||
|
|
||||||
boost::thread t(boost::bind(&Server::Run, s));
|
boost::thread t(boost::bind(&Server::Run, s));
|
||||||
@ -264,7 +148,6 @@ int main (int argc, char * argv[]) {
|
|||||||
std::cout << "[server] running and waiting for requests" << std::endl;
|
std::cout << "[server] running and waiting for requests" << std::endl;
|
||||||
s->Run();
|
s->Run();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
std::cout << "[server] initiating shutdown" << std::endl;
|
std::cout << "[server] initiating shutdown" << std::endl;
|
||||||
s->Stop();
|
s->Stop();
|
||||||
std::cout << "[server] stopping threads" << std::endl;
|
std::cout << "[server] stopping threads" << std::endl;
|
||||||
|
Loading…
Reference in New Issue
Block a user