ha_status_dynamic.cpp

来自「ace开发环境 用来开发网络程序 其运用了设计模式、多平台、C++等多种知识」· C++ 代码 · 共 114 行

CPP
114
字号
/** * $Id: HA_Status_Dynamic.cpp 72205 2006-04-20 10:20:34Z jwillemsen $ * * Home Automation Status server. Sample code from The ACE Programmer's Guide, * Copyright 2003 Addison-Wesley. All Rights Reserved. */#include "ace/OS_NS_stdio.h"#include "ace/OS_NS_string.h"#include "ace/Configuration.h"#include "ace/Configuration_Import_Export.h"#include "ace/Get_Opt.h"#include "HA_Status_Dynamic.h"// Listing 1 code/ch19intHA_Status::init (int argc, ACE_TCHAR *argv[]){  static const ACE_TCHAR options[] = ACE_TEXT (":f:");  ACE_Get_Opt cmd_opts (argc, argv, options, 0);  if (cmd_opts.long_option      (ACE_TEXT ("config"), 'f', ACE_Get_Opt::ARG_REQUIRED) == -1)    return -1;  int option;  ACE_TCHAR config_file[MAXPATHLEN];  ACE_OS::strcpy (config_file, ACE_TEXT ("HAStatus.conf"));  while ((option = cmd_opts ()) != EOF)    switch (option)      {      case 'f':        ACE_OS::strncpy (config_file,                         cmd_opts.opt_arg (),                         MAXPATHLEN);        break;      case ':':        ACE_ERROR_RETURN ((LM_ERROR,                           ACE_TEXT ("-%c requires an argument\n"),                           cmd_opts.opt_opt ()),                          -1);      default:        ACE_ERROR_RETURN ((LM_ERROR,                           ACE_TEXT ("Parse error.\n")),                          -1);      }  ACE_Configuration_Heap config;  config.open ();  ACE_Registry_ImpExp config_importer (config);  if (config_importer.import_config (config_file) == -1)    ACE_ERROR_RETURN ((LM_ERROR,                       ACE_TEXT ("%p\n"),                       config_file),                      -1);  ACE_Configuration_Section_Key status_section;  if (config.open_section (config.root_section (),                           ACE_TEXT ("HAStatus"),                           0,                           status_section) == -1)    ACE_ERROR_RETURN ((LM_ERROR,                       ACE_TEXT ("%p\n"),                       ACE_TEXT ("Can't open HAStatus section")),                      -1);  u_int status_port;  if (config.get_integer_value (status_section,                                ACE_TEXT ("ListenPort"),                                status_port) == -1)    ACE_ERROR_RETURN ((LM_ERROR,                       ACE_TEXT ("HAStatus ListenPort ")                       ACE_TEXT ("does not exist\n")),                      -1);  this->listen_addr_.set (static_cast<u_short> (status_port));  if (this->acceptor_.open (this->listen_addr_) != 0)    ACE_ERROR_RETURN ((LM_ERROR,                       ACE_TEXT ("HAStatus %p\n"),                       ACE_TEXT ("accept")),                      -1);  return 0;}// Listing 1// Listing 2 code/ch19intHA_Status::fini (void){  this->acceptor_.close ();  return 0;}// Listing 2// Listing 3 code/ch19intHA_Status::info (ACE_TCHAR **str, size_t len) const  {    ACE_TCHAR buf[BUFSIZ];    ACE_OS::sprintf (buf,                     ACE_TEXT ("HAStatus listening on port %hu\n"),                     this->listen_addr_.get_port_number ());    if (*str == 0)      *str = ACE::strnew (buf);    else      ACE_OS::strncpy (*str, buf, len);    return static_cast<int> (ACE_OS::strlen (*str));  }// Listing 3// Listing 4 code/ch19ACE_FACTORY_DEFINE (HASTATUS, HA_Status)// Listing 4

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?