`
mylove2060
  • 浏览: 330640 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

C++编写Config类读取配置文件

阅读更多
老外写的一段代码,在Server中编写这个类读取配置文件比较实用
//Config.h
#pragma once

#include <string>
#include <map>
#include <iostream>
#include <fstream>
#include <sstream>


/*
* \brief Generic configuration Class
*
*/
class Config {
	// Data
protected:
	std::string m_Delimiter;  //!< separator between key and value
	std::string m_Comment;    //!< separator between value and comments
	std::map<std::string,std::string> m_Contents;  //!< extracted keys and values

	typedef std::map<std::string,std::string>::iterator mapi;
	typedef std::map<std::string,std::string>::const_iterator mapci;
	// Methods
public:

	Config( std::string filename,std::string delimiter = "=",std::string comment = "#" );
	Config();
	template<class T> T Read( const std::string& in_key ) const;  //!<Search for key and read value or optional default value, call as read<T>
	template<class T> T Read( const std::string& in_key, const T& in_value ) const;
	template<class T> bool ReadInto( T& out_var, const std::string& in_key ) const;
	template<class T>
	bool ReadInto( T& out_var, const std::string& in_key, const T& in_value ) const;
	bool FileExist(std::string filename);
	void ReadFile(std::string filename,std::string delimiter = "=",std::string comment = "#" );

	// Check whether key exists in configuration
	bool KeyExists( const std::string& in_key ) const;

	// Modify keys and values
	template<class T> void Add( const std::string& in_key, const T& in_value );
	void Remove( const std::string& in_key );

	// Check or change configuration syntax
	std::string GetDelimiter() const { return m_Delimiter; }
	std::string GetComment() const { return m_Comment; }
	std::string SetDelimiter( const std::string& in_s )
	{ std::string old = m_Delimiter;  m_Delimiter = in_s;  return old; }  
	std::string SetComment( const std::string& in_s )
	{ std::string old = m_Comment;  m_Comment =  in_s;  return old; }

	// Write or read configuration
	friend std::ostream& operator<<( std::ostream& os, const Config& cf );
	friend std::istream& operator>>( std::istream& is, Config& cf );

protected:
	template<class T> static std::string T_as_string( const T& t );
	template<class T> static T string_as_T( const std::string& s );
	static void Trim( std::string& inout_s );


	// Exception types
public:
	struct File_not_found {
		std::string filename;
		File_not_found( const std::string& filename_ = std::string() )
			: filename(filename_) {} };
		struct Key_not_found {  // thrown only by T read(key) variant of read()
			std::string key;
			Key_not_found( const std::string& key_ = std::string() )
				: key(key_) {} };
};


/* static */
template<class T>
std::string Config::T_as_string( const T& t )
{
	// Convert from a T to a string
	// Type T must support << operator
	std::ostringstream ost;
	ost << t;
	return ost.str();
}


/* static */
template<class T>
T Config::string_as_T( const std::string& s )
{
	// Convert from a string to a T
	// Type T must support >> operator
	T t;
	std::istringstream ist(s);
	ist >> t;
	return t;
}


/* static */
template<>
inline std::string Config::string_as_T<std::string>( const std::string& s )
{
	// Convert from a string to a string
	// In other words, do nothing
	return s;
}


/* static */
template<>
inline bool Config::string_as_T<bool>( const std::string& s )
{
	// Convert from a string to a bool
	// Interpret "false", "F", "no", "n", "0" as false
	// Interpret "true", "T", "yes", "y", "1", "-1", or anything else as true
	bool b = true;
	std::string sup = s;
	for( std::string::iterator p = sup.begin(); p != sup.end(); ++p )
		*p = toupper(*p);  // make string all caps
	if( sup==std::string("FALSE") || sup==std::string("F") ||
		sup==std::string("NO") || sup==std::string("N") ||
		sup==std::string("0") || sup==std::string("NONE") )
		b = false;
	return b;
}


template<class T>
T Config::Read( const std::string& key ) const
{
	// Read the value corresponding to key
	mapci p = m_Contents.find(key);
	if( p == m_Contents.end() ) throw Key_not_found(key);
	return string_as_T<T>( p->second );
}


template<class T>
T Config::Read( const std::string& key, const T& value ) const
{
	// Return the value corresponding to key or given default value
	// if key is not found
	mapci p = m_Contents.find(key);
	if( p == m_Contents.end() ) return value;
	return string_as_T<T>( p->second );
}


template<class T>
bool Config::ReadInto( T& var, const std::string& key ) const
{
	// Get the value corresponding to key and store in var
	// Return true if key is found
	// Otherwise leave var untouched
	mapci p = m_Contents.find(key);
	bool found = ( p != m_Contents.end() );
	if( found ) var = string_as_T<T>( p->second );
	return found;
}


template<class T>
bool Config::ReadInto( T& var, const std::string& key, const T& value ) const
{
	// Get the value corresponding to key and store in var
	// Return true if key is found
	// Otherwise set var to given default
	mapci p = m_Contents.find(key);
	bool found = ( p != m_Contents.end() );
	if( found )
		var = string_as_T<T>( p->second );
	else
		var = value;
	return found;
}


template<class T>
void Config::Add( const std::string& in_key, const T& value )
{
	// Add a key with given value
	std::string v = T_as_string( value );
	std::string key=in_key;
	trim(key);
	trim(v);
	m_Contents[key] = v;
	return;
}




// Config.cpp

#include "Config.h"

using namespace std;


Config::Config( string filename, string delimiter,
			   string comment )
			   : m_Delimiter(delimiter), m_Comment(comment)
{
	// Construct a Config, getting keys and values from given file

	std::ifstream in( filename.c_str() );

	if( !in ) throw File_not_found( filename ); 

	in >> (*this);
}


Config::Config()
: m_Delimiter( string(1,'=') ), m_Comment( string(1,'#') )
{
	// Construct a Config without a file; empty
}



bool Config::KeyExists( const string& key ) const
{
	// Indicate whether key is found
	mapci p = m_Contents.find( key );
	return ( p != m_Contents.end() );
}


/* static */
void Config::Trim( string& inout_s )
{
	// Remove leading and trailing whitespace
	static const char whitespace[] = " \n\t\v\r\f";
	inout_s.erase( 0, inout_s.find_first_not_of(whitespace) );
	inout_s.erase( inout_s.find_last_not_of(whitespace) + 1U );
}


std::ostream& operator<<( std::ostream& os, const Config& cf )
{
	// Save a Config to os
	for( Config::mapci p = cf.m_Contents.begin();
		p != cf.m_Contents.end();
		++p )
	{
		os << p->first << " " << cf.m_Delimiter << " ";
		os << p->second << std::endl;
	}
	return os;
}

void Config::Remove( const string& key )
{
	// Remove key and its value
	m_Contents.erase( m_Contents.find( key ) );
	return;
}

std::istream& operator>>( std::istream& is, Config& cf )
{
	// Load a Config from is
	// Read in keys and values, keeping internal whitespace
	typedef string::size_type pos;
	const string& delim  = cf.m_Delimiter;  // separator
	const string& comm   = cf.m_Comment;    // comment
	const pos skip = delim.length();        // length of separator

	string nextline = "";  // might need to read ahead to see where value ends

	while( is || nextline.length() > 0 )
	{
		// Read an entire line at a time
		string line;
		if( nextline.length() > 0 )
		{
			line = nextline;  // we read ahead; use it now
			nextline = "";
		}
		else
		{
			std::getline( is, line );
		}

		// Ignore comments
		line = line.substr( 0, line.find(comm) );

		// Parse the line if it contains a delimiter
		pos delimPos = line.find( delim );
		if( delimPos < string::npos )
		{
			// Extract the key
			string key = line.substr( 0, delimPos );
			line.replace( 0, delimPos+skip, "" );

			// See if value continues on the next line
			// Stop at blank line, next line with a key, end of stream,
			// or end of file sentry
			bool terminate = false;
			while( !terminate && is )
			{
				std::getline( is, nextline );
				terminate = true;

				string nlcopy = nextline;
				Config::Trim(nlcopy);
				if( nlcopy == "" ) continue;

				nextline = nextline.substr( 0, nextline.find(comm) );
				if( nextline.find(delim) != string::npos )
					continue;

				nlcopy = nextline;
				Config::Trim(nlcopy);
				if( nlcopy != "" ) line += "\n";
				line += nextline;
				terminate = false;
			}

			// Store key and value
			Config::Trim(key);
			Config::Trim(line);
			cf.m_Contents[key] = line;  // overwrites if key is repeated
		}
	}

	return is;
}
bool Config::FileExist(std::string filename)
{
	bool exist= false;
	std::ifstream in( filename.c_str() );
	if( in ) 
		exist = true;
	return exist;
}

void Config::ReadFile( string filename, string delimiter,
					  string comment )
{
	m_Delimiter = delimiter;
	m_Comment = comment;
	std::ifstream in( filename.c_str() );

	if( !in ) throw File_not_found( filename ); 

	in >> (*this);
}



//main.cpp
#include "Config.h"
int main()
{
	int port;
	std::string ipAddress;
	std::string username;
	std::string password;
	const char ConfigFile[]= "config.txt"; 
	Config configSettings(ConfigFile);
	
	port = configSettings.Read("port", 0);
	ipAddress = configSettings.Read("ipAddress", ipAddress);
	username = configSettings.Read("username", username);
	password = configSettings.Read("password", password);
	std::cout<<"port:"<<port<<std::endl;
	std::cout<<"ipAddress:"<<ipAddress<<std::endl;
	std::cout<<"username:"<<username<<std::endl;
	std::cout<<"password:"<<password<<std::endl;
	
	return 0;
}


config.txt的文件内容:
ipAddress=10.10.90.125
port=3001
username=mark
password=2d2df5a


编译运行输出:
port:3001
ipAddress:10.10.90.125
username:mark
password:2d2df5a

这个类还有很多其他的方法,可以调用试试。
分享到:
评论
2 楼 mylove2060 2013-01-08  
navylq 写道
  这代码你自己有测试么?
引用自哪里也没有说!

测过
1 楼 navylq 2012-11-26  
  这代码你自己有测试么?
引用自哪里也没有说!

相关推荐

    ubuntu系统读取ini配置文件

    ubuntu系统使用C++编写的读取ini配置文件的功能模块,可以集成到C++项目工程中,欢迎有需要的朋友进行下载

    flow-disruptor:确定性的按流网络条件故障模拟器

    介绍flow-disruptor是确定性的每流网络状况模拟器。 为了稍微简化一下描述,每个流意味着针对每个... SIGHUP将导致flow-disruptor器重新读取配置文件。 示例:以下配置设置了到10.0.1.56:45004连接的流量配置文件,其中

    Qt Creator 的安装和hello world 程序+其他程序的编写--不是一般的好

    一、Qt Creator 的安装和hello world 程序的编写(原创) 1.首先到Qt 的官方网站上下载Qt Creator,这里我们下载windows 版的。 下载地址:http://qt.nokia.com/downloads 如下图我们下载:Download Qt SDK for ...

    java 面试题 总结

    新类继承了原始类的特性,新类称为原始类的派生类(子类),而原始类称为新类的基类(父类)。派生类可以从它的基类那里继承方法和实例变量,并且类可以修改或增加新的方法使之更适合特殊的需要。 3.封装: 封装是把...

    外文翻译 stus MVC

    The struts-config.xml configuration information is translated into a set of ActionMapping, which are put into container of ActionMappings. (If you have not noticed it, classes that end with s are ...

    asp.net知识库

    革新:.NET 2.0的自定义配置文件体系初探 关于如何在ASP.NET 2.0中定制Expression Builders 怎么在ASP.NET 2.0中使用Membership asp.net 2.0-实现数据访问(1) ASP.NET 2.0 新特性 .NET 2.0里使用强类型数据创建...

    windows驱动开发技术详解-part2

     第3章 Windows驱动编译环境配置、安装及调试  本章将带领读者一步步对驱动程序进行编译、安装和简单的调试工作。这些步骤虽然简单,但往往困 惑着初次接触驱动程序的开发者。  3.1 用C语言还是用C++语言  ...

    Windows驱动开发技术详解的光盘-part1

     第3章 Windows驱动编译环境配置、安装及调试  本章将带领读者一步步对驱动程序进行编译、安装和简单的调试工作。这些步骤虽然简单,但往往困惑着初次接触驱动程序的开发者。  3.1 用C语言还是用C++语言  ...

    超级有影响力霸气的Java面试题大全文档

    新类继承了原始类的特性,新类称为原始类的派生类(子类),而原始类称为新类的基类(父类)。派生类可以从它的基类那里继承方法和实例变量,并且类可以修改或增加新的方法使之更适合特殊的需要。 3.封装:  封装...

    vfp6.0系统免费下载

    由于开发人员常希望与项目有关的各种事件进行交互,比如添加文件或进行连编,因此需要创建一个新类 (ProjectHook) 来支持这些事件的代码。 项目的 ProjectHook 类是可选的。如果象在“项目信息”对话框中指定的那样...

    IONIC 功能全演示

    上述两种构建都只读取该文件内的文件列表进行构建,不在该文件内的js或css文件会被忽略。 - 注意2: 在www目录下的index.html 中,有如下注释标记,构建时用来插入、全部替换其中的内容,删除该标记 将导致无法引用...

    jsr80 java 访问 usb

    目前,大多数一般用途的操作系统都提供了对 USB 设备的支持,并且用 C 或者 C++ 可以相对容易地开发访问这些外设的应用程序。不过,Java 编程语言在设计上对硬件访问提供的支持很少,所以编写与 USB 设备交互的应用...

    华为编程开发规范与案例

    代码编写有误。 思考与启示: 1、极限测试必须注意,测试前应对某项设计的极限做好充分测试规划。 2、测试极限时还要注意多种业务接入点,本例为ISDN。对于交换机来说,任何一种业务都要分别在模拟话机、ISDN...

Global site tag (gtag.js) - Google Analytics