论坛首页 编程语言技术论坛

ACE读取配置文件代码

浏览 2158 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2009-03-16   最后修改:2009-03-16
C++
bool Rao_Msg_Queue::InitConfig()
{
char configfileName[100] = "MessageProxy.conf";
ACE_Configuration_Heap config;
ACE_Configuration_Section_Key status_section;
if (config.open() == -1) return false;
ACE_Registry_ImpExp config_importer(config);

if (config_importer.import_config (configfileName) == -1)
{
ACE_ERROR((LM_ERROR,"'config_importer.import_config' error \n"));
return false;
}
if (config.open_section(config.root_section(),ACE_TEXT("CONNECTION"),0,status_section) == -1)
{
ACE_ERROR((LM_ERROR,"'config.open_section' error\n"));
return false;
}

if (config.get_string_value(status_section,ACE_TEXT("RomoteIP"),Rao_Msg_Queue::IfConfig.RemoteName) == -1)
{
ACE_ERROR((LM_ERROR,"'RomoteIP = ' does not exists\n"));
return false;
}
if (config.get_integer_value(status_section,ACE_TEXT("RemotePort"),Rao_Msg_Queue::IfConfig.ConnPort) == -1)
{
ACE_ERROR((LM_ERROR,"'RemotePort = ' does not exists\n"));
return false;
}
return true;
}
论坛首页 编程语言技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics