ACE读取配置文件

    我一直觉得ACE_Service_Config是非常高层次,非常麻烦的咚咚,今天仅仅在里面抽取了一点内容用来读取配置文件,格式类似于windows的ini,但不同的是这里面区分大小写。ACE里面支持对Win32注册表的读取,我个人对此不感兴趣,因为这丧失了跨平台的特性。
#include "ace/Configuration.h"
#include "ace/Configuration_Import_Export.h"
class CConfigTool  
{
public :
       int GetString ( const char * szSection , const char * szKey , ACE_TString & strValue );
       int GetInteger ( const char * szSection , const char * szKey , int & nValue );
       int open ( const ACE_TCHAR * filename );
       int close ();
       CConfigTool ();
       virtual ~ CConfigTool ();
private :
       ACE_Configuration_Section_Key root_key_ ;
       ACE_Ini_ImpExp * impExp_ ;
       ACE_Configuration_Heap config ;
};
CConfigTool :: CConfigTool (): impExp_ ( NULL )
{
 
}
 
CConfigTool ::~ CConfigTool ()
{
       if ( impExp_ )
              delete impExp_ ;
       impExp_ = NULL ;
}
 
int CConfigTool :: open ( const ACE_TCHAR * filename )
{
       if ( this -> config . open () == -1)
              return -1;
      
       this -> impExp_ = new ACE_Ini_ImpExp ( config );
 
       return this -> impExp_ -> import_config ( filename );
}
 
int CConfigTool :: GetString ( const char * szSection , const char * szKey , ACE_TString & strValue )
{
       if ( config . open_section ( config . root_section (), ACE_TEXT ( szSection ),0, this -> root_key_ )==-1)
              return -1;
       return config . get_string_value ( this -> root_key_ , szKey , strValue );
}
 
int CConfigTool :: GetInteger ( const char * szSection , const char * szKey , int & nValue )
{
       ACE_TString strValue ;
       if ( config . open_section ( config . root_section (), ACE_TEXT ( szSection ),0, this -> root_key_ )==-1)
              return -1;
       if ( config . get_string_value ( this -> root_key_ , szKey , strValue ) == -1)
              return -1;
       nValue = ACE_OS :: atoi ( strValue . c_str ());

       if (nValue == 0 && strValue != "0")

              return -1;
       return nValue ;
}
 
int CConfigTool :: close ()
{
       if ( impExp_ )
       {
              delete impExp_ ;
              impExp_ = NULL ;
       }
       return 0;
}
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值