跳至主要内容

【转】用STL快速编写ini配置文件识别类

作者:Winter

ini文件是技术人员经常用到的一种系统配置方法,如何读取和快速识别ini文件中的内容实现起来比较繁琐。STL强大的功能在于能快速的实现排序、查找、 识别等功能。本文通过STL中的map,string,vector,ifstream等,来快速实现ini文件的识别类class IniFile? 。IniFile可以实现常见查找功能,并提供完整的源码。

1 设计需求:

ini文件的格式一般如下:

[section1] key1=value1 key2=value2 ......  [section2] key1=value1 key2=value2    #注释 ...... 实际的例子是:  #ini for path [path] dictfile = /home/tmp/dict.dat inputfile= /home/tmp/input.txt outputfile= /home/tmp/output.txt  #ini for exe [exe] user= winter       //user name passwd= 1234567    #pass word database= mydatabase 

其中有五种元素:section 名,Key名,value值,注释 #或者//开头,标志字符"[" "]" "="。查找项的对应关系为sectiong-key和value对应。需要得到是value。class IniFile? 要实现的是两个函数:读入ini文件,读取sect-key对应的value值。即实现下面的接口:

class IniFile{ public:     IniFile();     //打开ini文件     bool open(const char* pinipath);     //读取value值     const char* read(const char* psect, const char*pkey);   }; 

2 设计实现:

用ifstream按行读入ini文件的内容

识别每一行的字符串,分析出sectiong,key,value,和注释。

用map<string, string, less >来记录所有的sectiong-key和value。

重新定义class IniFile?

typedef map<string, string, less<string> > strMap; typedef strMap::iterator strMapIt;  const char*const MIDDLESTRING = "_____***_______"; class IniFile { public:     IniFile( ){};     ~IniFile( ){};     bool open(const char* pinipath)     {         return do_open(pinipath);     }     string read(const char*psect, const char*pkey)     {         string mapkey = psect;         mapkey += MIDDLESTRING;         mapkey += pkey;         strMapIt it = c_inimap.find(mapkey);         if(it == c_inimap.end())             return "";         else             return it->second;     } protected:     bool do_open(const char* pinipath)     {         ifstream fin(pinipath);         if(!fin.is_open())             return false;         vector<string> strvect;         while(!fin.eof())         {             string inbuf;             getline(fin, inbuf,'\n');             strvect.push_back(inbuf);         }         if(strvect.empty())             return false;         for_each(strvect.begin(), strvect.end(), analyzeini(c_inimap));         return !c_inimap.empty();     }     strMap c_inimap; }; 

其中do_open是用来真正实现初始化ini内容的函数。先用ifstream fin打开一个文件,然后用is_open判断文件是否正常打开。顺序读取文件的时候用eof()判断是否到文件尾。getline是一个字符处理函数:直接从fin中读取一行。然后用while循环过滤一行末尾的空格等字符。最后保存到一个vector中,完成读入文本工作。其中比较值得关注的是以下为体,你知道为什么这么做么?

  • 用ifstream和getline来读入而不是用fopen和fread。
  • 用is_open判断是否打开,而不是直接读取。
  • 用vector的push_pack而不是insert。
  • 用empty判断是否为空,而不是用size()==0。

下一步用for_each函数来完成字符串的内容提取工作。声明一个结构,实现对操作符()的重载。代码如下:

truct analyzeini{     string strsect;     strMap *pmap;     analyzeini(strMap & strmap):pmap(&strmap){}     void operator()( const string & strini)     {         int first =strini.find('[');         int last = strini.rfind(']');         if( first != string::npos && last != string::npos && first != last+1)         {             strsect = strini.substr(first+1,last-first-1);             return ;         }         if(strsect.empty())             return ;         if((first=strini.find('='))== string::npos)             return ;         string strtmp1= strini.substr(0,first);         string strtmp2=strini.substr(first+1, string::npos);         first= strtmp1.find_first_not_of(" \t");         last = strtmp1.find_last_not_of(" \t");         if(first == string::npos || last == string::npos)             return ;         string strkey = strtmp1.substr(first, last-first+1);         first = strtmp2.find_first_not_of(" \t");         if(((last = strtmp2.find("\t#", first )) != string::npos) ||             ((last = strtmp2.find(" #", first )) != string::npos) ||             ((last = strtmp2.find("\t//", first )) != string::npos)||             ((last = strtmp2.find(" //", first )) != string::npos))         {             strtmp2 = strtmp2.substr(0, last-first);         }         last = strtmp2.find_last_not_of(" \t");         if(first == string::npos || last == string::npos)             return ;         string value = strtmp2.substr(first, last-first+1);         string mapkey = strsect + MIDDLESTRING;         mapkey += strkey;         (*pmap)[mapkey]=value;         return ;     } }; 
这里大量使用了字符串的查找和字串功能。string的find_last_of系列和find系列,功能确实十分强大。所有在string中没有找到都会返回一个变量string::npos。

函数先找sectiong,然后分离key值和value值。符合要求的,把section和key值通过中间加上MIDDLESTRING组成一个新的string,插入map中。这里值得注意的是:

* for_each的使用,结构可以传递参数。 * string的查找函数及返回值 * string的链接和合并函数。 * map的下标操作符的使用。

3 具体使用

把所有代码放在一个头文件中,以后别人使用的时候,只需要包含头文件就可以了,点击查看inifile.h文件。在使用的过程中,注意判断返回值。使用代码如下:

#include <iostream> #include "inifile.h" using namespace std; int main() {     IniFile ini;     if(!ini.open("test.ini"))        return -1;     string strvalue = ini.read("sect1","key1");     if(strvalue.empty())         return -1;     else         cout<<"value="<<strvalue<<endl;     return 0; }      


  • Set MYTITLE = 用STL快速编写ini配置文件识别类

评论

此博客中的热门博文

【转】VxWorks中的地址映射

在运用嵌入式系统VxWorks和MPC860进行通信系统设计开发时,会遇到一个映射地址不能访问的问题。 缺省情况下,VxWorks系统已经进行了如下地址的映射:   memory地址、bcsr(Board Control and Status)地址、PC_BASE_ADRS(PCMCIA)地址、Internal Memory地址、rom(Flach memory)地址等,但是当你的硬件开发中要加上别的外设时,如(falsh、dsp、FPGA等),对这些外设的访问也是通过地址形式进行读写,如果你没有加相应的地址映射,那么是无法访问这些外设的。   和VxWorks缺省地址映射类似,你也可以进行相应的地址映射。   如下是地址映射原理及实现:   1、 地址映射结构 在Tornado\target\h\vmLib.h文件中 typedef struct phys_mem_desc { void *virtualAddr; void *physicalAddr; UINT len; UINT initialStateMask; /* mask parameter to vmStateSet */ UINT initialState; /* state parameter to vmStateSet */ } PHYS_MEM_DESC; virtualAddr:你要映射的虚拟地址 physicalAddr:硬件设计时定义的实际物理地址 len;要进行映射的地址长度 initialStateMask:可以初始化的地址状态: 有如下状态: #define VM_STATE_MASK_VALID 0x03 #define VM_STATE_MASK_WRITABLE 0x0c #define VM_STATE_MASK_CACHEABLE 0x30 #define VM_STATE_MASK_MEM_COHERENCY 0x40 #define VM_STATE_MASK_GUARDED 0x80 不同的CPU芯片类型还有其特殊状态 initialState:实际初始化的地址状态: 有如下状态: #define VM_STATE_VALID 0x01 #define VM_STATE_VALID_NOT 0x00 #define VM_STATE_WRITA

【转】cs8900网卡的移植至基于linux2.6内核的s3c2410平台

cs8900网卡的移植至基于linux2.6内核的s3c2410平台(转) 2008-03-11 20:58 硬件环境:SBC-2410X开发板(CPU:S3C2410X) 内核版本:2.6.11.1 运行环境:Debian2.6.8 交叉编译环境:gcc-3.3.4-glibc-2.3.3 第一部分 网卡CS8900A驱动程序的移植 一、从网上将Linux内核源代码下载到本机上,并将其解压: #tar jxf linux-2.6.11.1.tar.bz2 二、打开内核顶层目录中的Makefile文件,这个文件中需要修改的内容包括以下两个方面。 (1)指定目标平台。 移植前:         ARCH?= $(SUBARCH) 移植后: ARCH            :=arm (2)指定交叉编译器。 移植前: CROSS_COMPILE ?= 移植后: CROSS_COMPILE   :=/opt/crosstool/arm-s3c2410-linux-gnu/gcc-3.3.4-glibc-2.3.3/bin/arm-s3c2410-linux-gnu- 注:这里假设编译器就放在本机的那个目录下。 三、添加驱动程序源代码,这涉及到以下几个方面。(1)、从网上下载了cs8900.c和cs8900.h两个针对2.6.7的内核的驱动程序源代码,将其放在drivers/net/arm/目录下面。 #cp cs8900.c ./drivers/net/arm/ #cp cs8900.h ./drivers/net/arm/ 并在cs8900_probe()函数中,memset (&priv,0,sizeof (cs8900_t));函数之后添加如下两条语句: __raw_writel(0x2211d110,S3C2410_BWSCON); __raw_writel(0x1f7c,S3C2410_BANKCON3); 注:其原因在"第二部分"解释。 (2)、修改drivers/net/arm/目录下的Kconfig文件,在最后添加如下内容: Config ARM_CS8900    tristate "CS8900 support" depends on NET_ETHERNET && A

【转】多迷人Gtkmm啊

前边已经说过用glade设计界面然后动态装载,接下来再来看看怎么改变程序的皮肤(主题)     首先从 http://art.gnome.org/themes/gtk2 下载喜欢的主题,从压缩包里提取gtk-2.0文件夹让它和我们下边代码生成的可执行文件放在同一个目录下,这里我下载的的 http://art.gnome.org/download/themes/gtk2/1317/GTK2-CillopMidnite.tar.gz     然后用glade设计界面,命名为main.glade,一会让它和我们下边代码生成的可执行程序放在同一个目录下边     然后开始写代码如下: //main.cc #include <gtkmm.h> #include <libglademm/xml.h> int main(int argc, char *argv[]) {     Gtk::Main kit(argc,argv);         Gtk::Window *pWnd;        gtk_rc_parse("E:\\theme-viewer\\themes\\gtk-2.0\\gtkrc");       Glib::RefPtr<Gnome::Glade::Xml> refXml;     try     {         refXml = Gnome::Glade::Xml::create("main.glade");     }     catch(const Gnome::Glade::XmlError& ex)     {         Gtk::MessageDialog dialog("Load glade file failed!", false,       \                                   Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK);         dialog.run();               return 1;     }         refXml->get_widget("main", pWnd);     if(pW