本文整理汇总了C++中Daemon::Run方法的典型用法代码示例。如果您正苦于以下问题:C++ Daemon::Run方法的具体用法?C++ Daemon::Run怎么用?C++ Daemon::Run使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Daemon
的用法示例。
在下文中一共展示了Daemon::Run方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
/**
*
* @param argc
* @param argv
* @return
*/
int main(int argc, char** argv) {
bool foreground = false;
// TODO: Check for foreground flag
// TODO: Add other flags
// Check startup flags
try {
po::options_description desc("Allowed options");
desc.add_options()
("help,h", "Display this message")
("version,v", "Display version information")
("foreground,f", "Run in foreground, logging errors to console")
;
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);
// Display help message
if (vm.count("help")) {
cout << desc << "\n";
return 0;
}
// Display version information
if (vm.count("version")) {
printf("[%s] - Version %s\n", argv[0], VERSION);
return 0;
}
if (vm.count("fg")) {
foreground = true;
}
} catch (exception &e) {
printf("[%s] Exception caught getting options: %s\n", argv[0], e.what());
return 1;
}
// Fork to background, if we weren't told not to do it
if (!foreground) {
fork();
}
// Setup logging
openlog("tievox", LOG_PERROR | LOG_PID | LOG_CONS, LOG_DAEMON);
// Setup wiringPi, using physical pin numbers.
wiringPiSetupPhys();
// Run daemon
Daemon *daemon = new Daemon();
int result = daemon->Run();
// Cleanup after ourselves
closelog();
return result;
}