`

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  
  这代码你自己有测试么?
引用自哪里也没有说!

相关推荐

    C++读写ini配置文件

    1. **读取配置文件**: - 类中可以定义一个成员变量来保存ini文件的内容,如`std::map, std::map, std::string&gt;&gt; data;`,用以存储节和键值对。 - 使用`std::ifstream`打开ini文件,逐行读取,根据行首的`[`判断...

    C++读取配置文件

    在C++编程中,读取配置文件是一项常见的任务,它允许程序员存储和加载应用程序的设置、参数或选项,而无需每次运行时重新编译代码。本篇将详细讲解如何使用C++来实现配置文件的读取功能。 首先,配置文件通常是文本...

    ubuntu系统读取ini配置文件

    本模块提供了一种在Ubuntu环境下使用C++读取INI配置文件的方法,使得开发者能方便地获取和修改配置信息。以下是关于这个功能模块的关键知识点和实现细节: 1. **INI文件格式**:INI文件是一种简单的文本格式,通常...

    C++读取配置文件工具

    本篇将详细介绍一个名为"C++读取配置文件工具"的实用程序,它可以帮助开发者快速、高效地处理配置文件,节约宝贵的开发时间。 这个工具的核心功能在于提供了一种简洁的方式来读取常见的配置文件格式,如INI、XML或...

    C++ 读写ini文件

    在C++编程中,处理配置文件是常见的任务之一,而INI文件因其简洁的结构和易于理解的格式,常被用于存储应用程序的设置和配置。本文将深入探讨如何使用C++来读写INI文件,以及一个封装好的类`CParseIniFile`的实现。 ...

    C++操作配置文件

    本资源聚焦于C++如何封装操作配置文件的类,使得对这些文件的读写更加便捷和高效。 首先,我们要了解配置文件的常见格式,例如`.ini`文件。这种格式是早期Windows系统中广泛使用的,由一系列键值对组成,每一行表示...

    linux c 配置文件读写

    在Linux系统中,C语言开发过程中,经常需要与配置文件打交道,进行读取和写入操作。配置文件通常用于存储程序的设置或用户偏好,使其能够根据不同的环境或需求进行定制。下面我们将深入探讨如何在C语言中实现对配置...

    利用宏简化配置文件读写的类

    首先,我们需要一个基础类`ConfigBase`,它可以提供接口来读取和写入配置文件。宏可以在类中定义方法,以处理这些基本操作。 例如,可以定义一个宏`CONFIG_DEFINE_PROPERTY`,它接受键名和默认值作为参数,生成一个...

    C++配置cfg文件读取和修改

    在C++编程中,处理配置(cfg)文件是一项常见的任务,...通过理解这些基本概念和技巧,可以编写出高效且可靠的程序来管理和更新配置文件。在实际项目中,应根据具体需求调整和优化这些步骤,确保代码的健壮性和易用性。

    c++读写in文件封装类

    本篇将详细介绍如何利用C++创建一个封装类来读写INI配置文件,主要涉及以下知识点: 1. **INI文件结构**: INI文件由多个节(Section)组成,每个节内包含若干键值对(Key-Value Pairs)。例如: ``` [Section1]...

    ReadConfig

    读取配置文件的第一步是选择一个合适的库来解析对应格式的文件。对于JSON,Java有`org.json`库,Python有`json`模块,JavaScript有`JSON.parse()`函数等。解析后,可以访问配置对象并获取IP和端口。 在Python中,这...

    ini 配置文件 C++

    ini配置文件在编程中常...总之,C++处理ini配置文件需要理解其文本格式,并编写相应的解析和写入逻辑。通过自定义函数或第三方库,我们可以方便地管理程序的配置信息。在实际项目中,可以根据需求选择最适合的方法。

    Ini配置文件读写类

    Ini配置文件是软件开发中常用的一种轻量级的配置存储格式,主要由...总之,C++中的Ini配置文件读写类通过自定义的数据结构和一系列操作函数,实现了对ini文件的读取、写入和管理,为开发者提供了方便的配置管理工具。

    通过实例说话,利用tinyxml对配置文件进行读取操作

    这个"ReadConfigFile"例子可能包含了创建一个简单的配置文件读取器的示例代码,帮助初学者理解如何将TinyXML应用到实际项目中。在学习过程中,可以结合这个实例逐步理解和实践每个步骤,加深对TinyXML库的理解,从而...

    STM32 配置文件

    STM32的配置文件通常包括以下几类: 1. **启动文件(Startup Code)**:这是程序运行的第一步,负责初始化堆栈指针、设置中断向量表以及调用主函数。启动文件通常是汇编语言编写,例如`startup_stm32f10x_xx.s`,...

    json处理配置文件

    2. **加载配置文件**:在编程语言中,如JavaScript、Python、Java等,都有库或内置函数支持读取和解析JSON文件。例如,在JavaScript中,可以使用`require()`(Node.js环境)或`fetch()`结合`TextDecoder`来加载和...

    C++ Config Maker-开源

    然后,C++ Config Maker会根据这些输入自动生成相应的C++代码,生成的代码能够自动读取配置文件,创建一个包含配置项的对象,这些对象的成员变量与配置文件中的条目一一对应。这种方式减少了手动编写解析配置文件的...

    ConfigFile

    "ConfigFile"这个标题暗示我们将探讨配置文件的使用和实践。配置文件通常采用特定格式(如XML、JSON、YAML或ini),用于存储可定制的设置,这些设置可以根据用户需求或环境条件进行更改,而无需修改源代码。 配置...

    Iniconfig

    Iniconfig 是一个基于C++编写的库,用于处理INI配置文件的读写操作。INI文件是一种常见的轻量级配置文件格式,广泛应用于各种软件中,用来存储用户设置、应用程序配置等信息。由于Iniconfig没有使用Windows API,这...

    使用QT,C++,编写的http服务器源码

    这些配置项通常存储在配置文件中,通过C++代码读取并应用于服务器运行。 5. **文件操作**:`filetool.cpp`和相应的头文件`filetool.h`可能是用于处理HTTP服务器中的文件请求,如读取、发送静态文件。当客户端请求一...

Global site tag (gtag.js) - Google Analytics