| 
									
										
										
										
											2015-05-24 06:55:12 +02:00
										 |  |  | // Copyright 2008 Dolphin Emulator Project
 | 
					
						
							| 
									
										
										
										
											2015-05-18 01:08:10 +02:00
										 |  |  | // Licensed under GPLv2+
 | 
					
						
							| 
									
										
										
										
											2013-04-17 23:09:55 -04:00
										 |  |  | // Refer to the license.txt file included.
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | // see IniFile.h
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include <algorithm>
 | 
					
						
							| 
									
										
										
										
											2014-02-20 04:11:52 +01:00
										 |  |  | #include <cstddef>
 | 
					
						
							|  |  |  | #include <cstring>
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include <fstream>
 | 
					
						
							| 
									
										
										
										
											2014-02-20 04:11:52 +01:00
										 |  |  | #include <map>
 | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | #include <string>
 | 
					
						
							| 
									
										
										
										
											2014-02-20 04:11:52 +01:00
										 |  |  | #include <utility>
 | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | #include <vector>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-20 04:11:52 +01:00
										 |  |  | #include "Common/CommonTypes.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include "Common/FileUtil.h"
 | 
					
						
							|  |  |  | #include "Common/IniFile.h"
 | 
					
						
							|  |  |  | #include "Common/StringUtil.h"
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-29 11:47:56 -05:00
										 |  |  | void IniFile::ParseLine(const std::string& line, std::string* keyOut, std::string* valueOut) | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-08-11 09:19:46 -04:00
										 |  |  | 	if (line[0] == '#') | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-14 20:36:57 -04:00
										 |  |  | 	size_t firstEquals = line.find("=", 0); | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-14 20:36:57 -04:00
										 |  |  | 	if (firstEquals != std::string::npos) | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		// Yes, a valid line!
 | 
					
						
							| 
									
										
										
										
											2014-05-14 20:36:57 -04:00
										 |  |  | 		*keyOut = StripSpaces(line.substr(0, firstEquals)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (valueOut) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			*valueOut = StripQuotes(StripSpaces(line.substr(firstEquals + 1, std::string::npos))); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | const std::string& IniFile::NULL_STRING = ""; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void IniFile::Section::Set(const std::string& key, const std::string& newValue) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-09-06 19:56:19 +02:00
										 |  |  | 	auto it = values.find(key); | 
					
						
							|  |  |  | 	if (it != values.end()) | 
					
						
							|  |  |  | 		it->second = newValue; | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2013-09-06 19:56:19 +02:00
										 |  |  | 		values[key] = newValue; | 
					
						
							|  |  |  | 		keys_order.push_back(key); | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | void IniFile::Section::Set(const std::string& key, const std::string& newValue, const std::string& defaultValue) | 
					
						
							| 
									
										
										
										
											2010-06-05 05:30:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (newValue != defaultValue) | 
					
						
							|  |  |  | 		Set(key, newValue); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		Delete(key); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | void IniFile::Section::Set(const std::string& key, const std::vector<std::string>& newValues) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 	std::string temp; | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 	// Join the strings with ,
 | 
					
						
							| 
									
										
										
										
											2014-02-12 16:00:34 +01:00
										 |  |  | 	for (const std::string& value : newValues) | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2014-02-12 16:00:34 +01:00
										 |  |  | 		temp = value + ","; | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 	// remove last ,
 | 
					
						
							|  |  |  | 	temp.resize(temp.length() - 1); | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | 	Set(key, temp); | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | bool IniFile::Section::Get(const std::string& key, std::string* value, const std::string& defaultValue) const | 
					
						
							| 
									
										
										
										
											2013-09-06 19:56:19 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	auto it = values.find(key); | 
					
						
							|  |  |  | 	if (it != values.end()) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		*value = it->second; | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | 	else if (&defaultValue != &NULL_STRING) | 
					
						
							| 
									
										
										
										
											2013-09-06 19:56:19 +02:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		*value = defaultValue; | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return false; | 
					
						
							| 
									
										
										
										
											2013-09-06 19:56:19 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | bool IniFile::Section::Get(const std::string& key, std::vector<std::string>* out) const | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	std::string temp; | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | 	bool retval = Get(key, &temp); | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 	if (!retval || temp.empty()) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// ignore starting comma, if any
 | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 	size_t subStart = temp.find_first_not_of(","); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | 	// split by comma
 | 
					
						
							| 
									
										
										
										
											2013-10-29 01:09:01 -04:00
										 |  |  | 	while (subStart != std::string::npos) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | 		// Find next comma
 | 
					
						
							| 
									
										
										
										
											2015-03-24 08:17:19 -04:00
										 |  |  | 		size_t subEnd = temp.find(',', subStart); | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 		if (subStart != subEnd) | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			// take from first char until next comma
 | 
					
						
							| 
									
										
										
										
											2014-03-15 03:29:53 +01:00
										 |  |  | 			out->push_back(StripSpaces(temp.substr(subStart, subEnd - subStart))); | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Find the next non-comma char
 | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 		subStart = temp.find_first_not_of(",", subEnd); | 
					
						
							| 
									
										
										
										
											2013-10-29 01:09:01 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | bool IniFile::Section::Get(const std::string& key, int* value, int defaultValue) const | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	std::string temp; | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | 	bool retval = Get(key, &temp); | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | 	if (retval && TryParse(temp, value)) | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 	*value = defaultValue; | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 	return false; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | bool IniFile::Section::Get(const std::string& key, u32* value, u32 defaultValue) const | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 	std::string temp; | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | 	bool retval = Get(key, &temp); | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-10 04:12:31 +00:00
										 |  |  | 	if (retval && TryParse(temp, value)) | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 	*value = defaultValue; | 
					
						
							|  |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | bool IniFile::Section::Get(const std::string& key, bool* value, bool defaultValue) const | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	std::string temp; | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | 	bool retval = Get(key, &temp); | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | 	if (retval && TryParse(temp, value)) | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 	*value = defaultValue; | 
					
						
							|  |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | bool IniFile::Section::Get(const std::string& key, float* value, float defaultValue) const | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	std::string temp; | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | 	bool retval = Get(key, &temp); | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | 	if (retval && TryParse(temp, value)) | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 	*value = defaultValue; | 
					
						
							|  |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | bool IniFile::Section::Get(const std::string& key, double* value, double defaultValue) const | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	std::string temp; | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | 	bool retval = Get(key, &temp); | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | 	if (retval && TryParse(temp, value)) | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2015-08-19 22:22:28 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 	*value = defaultValue; | 
					
						
							|  |  |  | 	return false; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | bool IniFile::Section::Exists(const std::string& key) const | 
					
						
							| 
									
										
										
										
											2009-03-20 11:51:22 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-09-06 19:56:19 +02:00
										 |  |  | 	return values.find(key) != values.end(); | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | bool IniFile::Section::Delete(const std::string& key) | 
					
						
							| 
									
										
										
										
											2010-06-05 05:30:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-09-06 19:56:19 +02:00
										 |  |  | 	auto it = values.find(key); | 
					
						
							|  |  |  | 	if (it == values.end()) | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	values.erase(it); | 
					
						
							|  |  |  | 	keys_order.erase(std::find(keys_order.begin(), keys_order.end(), key)); | 
					
						
							|  |  |  | 	return true; | 
					
						
							| 
									
										
										
										
											2010-06-05 05:30:23 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | // IniFile
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | const IniFile::Section* IniFile::GetSection(const std::string& sectionName) const | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-02-12 16:00:34 +01:00
										 |  |  | 	for (const Section& sect : sections) | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | 		if (!strcasecmp(sect.name.c_str(), sectionName.c_str())) | 
					
						
							| 
									
										
										
										
											2013-10-29 01:09:01 -04:00
										 |  |  | 			return (&(sect)); | 
					
						
							| 
									
										
										
										
											2014-03-09 21:14:26 +01:00
										 |  |  | 	return nullptr; | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | IniFile::Section* IniFile::GetSection(const std::string& sectionName) | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-02-12 16:00:34 +01:00
										 |  |  | 	for (Section& sect : sections) | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | 		if (!strcasecmp(sect.name.c_str(), sectionName.c_str())) | 
					
						
							| 
									
										
										
										
											2013-10-29 01:09:01 -04:00
										 |  |  | 			return (&(sect)); | 
					
						
							| 
									
										
										
										
											2014-03-09 21:14:26 +01:00
										 |  |  | 	return nullptr; | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | IniFile::Section* IniFile::GetOrCreateSection(const std::string& sectionName) | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	Section* section = GetSection(sectionName); | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 	if (!section) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2015-02-04 10:36:42 -05:00
										 |  |  | 		sections.emplace_back(sectionName); | 
					
						
							| 
									
										
										
										
											2014-06-24 12:28:02 -05:00
										 |  |  | 		section = §ions.back(); | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return section; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | bool IniFile::DeleteSection(const std::string& sectionName) | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	Section* s = GetSection(sectionName); | 
					
						
							|  |  |  | 	if (!s) | 
					
						
							|  |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2014-02-12 16:00:34 +01:00
										 |  |  | 	for (auto iter = sections.begin(); iter != sections.end(); ++iter) | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		if (&(*iter) == s) | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | 			sections.erase(iter); | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return false; | 
					
						
							| 
									
										
										
										
											2009-03-20 11:51:22 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | bool IniFile::Exists(const std::string& sectionName, const std::string& key) const | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	const Section* section = GetSection(sectionName); | 
					
						
							|  |  |  | 	if (!section) | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	return section->Exists(key); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | void IniFile::SetLines(const std::string& sectionName, const std::vector<std::string> &lines) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 	Section* section = GetOrCreateSection(sectionName); | 
					
						
							| 
									
										
										
										
											2013-09-06 19:56:19 +02:00
										 |  |  | 	section->lines = lines; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-01-28 16:09:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | bool IniFile::DeleteKey(const std::string& sectionName, const std::string& key) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 	Section* section = GetSection(sectionName); | 
					
						
							|  |  |  | 	if (!section) | 
					
						
							|  |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2013-09-06 19:56:19 +02:00
										 |  |  | 	return section->Delete(key); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | // Return a list of all keys in a section
 | 
					
						
							| 
									
										
										
										
											2014-03-15 03:29:53 +01:00
										 |  |  | bool IniFile::GetKeys(const std::string& sectionName, std::vector<std::string>* keys) const | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 	const Section* section = GetSection(sectionName); | 
					
						
							|  |  |  | 	if (!section) | 
					
						
							| 
									
										
										
										
											2014-03-15 03:29:53 +01:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2014-03-15 03:29:53 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	*keys = section->keys_order; | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 	return true; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | // Return a list of all lines in a section
 | 
					
						
							| 
									
										
										
										
											2014-03-15 03:29:53 +01:00
										 |  |  | bool IniFile::GetLines(const std::string& sectionName, std::vector<std::string>* lines, const bool remove_comments) const | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-06-02 19:04:04 -04:00
										 |  |  | 	lines->clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 	const Section* section = GetSection(sectionName); | 
					
						
							|  |  |  | 	if (!section) | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-29 01:09:01 -04:00
										 |  |  | 	for (std::string line : section->lines) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2013-10-29 01:09:01 -04:00
										 |  |  | 		line = StripSpaces(line); | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-23 05:22:12 +00:00
										 |  |  | 		if (remove_comments) | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2014-05-14 20:36:57 -04:00
										 |  |  | 			size_t commentPos = line.find('#'); | 
					
						
							| 
									
										
										
										
											2010-07-23 05:22:12 +00:00
										 |  |  | 			if (commentPos == 0) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				continue; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-14 20:36:57 -04:00
										 |  |  | 			if (commentPos != std::string::npos) | 
					
						
							| 
									
										
										
										
											2010-07-23 05:22:12 +00:00
										 |  |  | 			{ | 
					
						
							|  |  |  | 				line = StripSpaces(line.substr(0, commentPos)); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-15 03:29:53 +01:00
										 |  |  | 		lines->push_back(line); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return true; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | void IniFile::SortSections() | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-06-24 12:28:02 -05:00
										 |  |  | 	sections.sort(); | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | bool IniFile::Load(const std::string& filename, bool keep_current_data) | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-09-06 19:56:19 +02:00
										 |  |  | 	if (!keep_current_data) | 
					
						
							|  |  |  | 		sections.clear(); | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 	// first section consists of the comments before the first real section
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Open file
 | 
					
						
							|  |  |  | 	std::ifstream in; | 
					
						
							| 
									
										
										
										
											2013-02-28 19:33:39 -06:00
										 |  |  | 	OpenFStream(in, filename, std::ios::in); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-28 20:15:59 -04:00
										 |  |  | 	if (in.fail()) | 
					
						
							|  |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-09 21:14:26 +01:00
										 |  |  | 	Section* current_section = nullptr; | 
					
						
							| 
									
										
										
										
											2015-06-05 18:32:58 +02:00
										 |  |  | 	bool first_line = true; | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 	while (!in.eof()) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2014-05-23 03:17:19 -04:00
										 |  |  | 		std::string line; | 
					
						
							| 
									
										
										
										
											2014-05-28 20:15:59 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (!std::getline(in, line)) | 
					
						
							| 
									
										
										
										
											2014-05-28 12:18:28 -04:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			if (in.eof()) | 
					
						
							|  |  |  | 				return true; | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				return false; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-09-06 19:56:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 18:32:58 +02:00
										 |  |  | 		// Skips the UTF-8 BOM at the start of files. Notepad likes to add this.
 | 
					
						
							|  |  |  | 		if (first_line && line.substr(0, 3) == "\xEF\xBB\xBF") | 
					
						
							|  |  |  | 			line = line.substr(3); | 
					
						
							|  |  |  | 		first_line = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | #ifndef _WIN32
 | 
					
						
							|  |  |  | 		// Check for CRLF eol and convert it to LF
 | 
					
						
							|  |  |  | 		if (!line.empty() && line.at(line.size()-1) == '\r') | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			line.erase(line.size()-1); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (line.size() > 0) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 			if (line[0] == '[') | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 				size_t endpos = line.find("]"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if (endpos != std::string::npos) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 				{ | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 					// New section!
 | 
					
						
							|  |  |  | 					std::string sub = line.substr(1, endpos - 1); | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | 					current_section = GetOrCreateSection(sub); | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2013-09-06 19:56:19 +02:00
										 |  |  | 				if (current_section) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					std::string key, value; | 
					
						
							|  |  |  | 					ParseLine(line, &key, &value); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-17 16:31:51 +02:00
										 |  |  | 					// Lines starting with '$', '*' or '+' are kept verbatim.
 | 
					
						
							|  |  |  | 					// Kind of a hack, but the support for raw lines inside an
 | 
					
						
							|  |  |  | 					// INI is a hack anyway.
 | 
					
						
							| 
									
										
										
										
											2014-03-11 00:30:55 +13:00
										 |  |  | 					if ((key == "" && value == "") || | 
					
						
							|  |  |  | 					    (line.size() >= 1 && | 
					
						
							|  |  |  | 					     (line[0] == '$' || | 
					
						
							|  |  |  | 					      line[0] == '+' || | 
					
						
							|  |  |  | 					      line[0] == '*'))) | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | 						current_section->lines.push_back(line); | 
					
						
							| 
									
										
										
										
											2013-09-06 19:56:19 +02:00
										 |  |  | 					else | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | 						current_section->Set(key, value); | 
					
						
							| 
									
										
										
										
											2013-09-06 19:56:19 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	in.close(); | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-08 18:50:37 +13:00
										 |  |  | bool IniFile::Save(const std::string& filename) | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	std::ofstream out; | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | 	std::string temp = File::GetTempFilenameForAtomicWrite(filename); | 
					
						
							|  |  |  | 	OpenFStream(out, temp, std::ios::out); | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (out.fail()) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-12 16:00:34 +01:00
										 |  |  | 	for (const Section& section : sections) | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2013-09-06 19:56:19 +02:00
										 |  |  | 		if (section.keys_order.size() != 0 || section.lines.size() != 0) | 
					
						
							| 
									
										
										
										
											2013-08-11 10:55:06 -04:00
										 |  |  | 			out << "[" << section.name << "]" << std::endl; | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-06 19:56:19 +02:00
										 |  |  | 		if (section.keys_order.size() == 0) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2014-02-12 16:00:34 +01:00
										 |  |  | 			for (const std::string& s : section.lines) | 
					
						
							| 
									
										
										
										
											2013-09-06 19:56:19 +02:00
										 |  |  | 				out << s << std::endl; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2014-02-12 16:00:34 +01:00
										 |  |  | 			for (const std::string& kvit : section.keys_order) | 
					
						
							| 
									
										
										
										
											2013-09-06 19:56:19 +02:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2014-02-12 16:00:34 +01:00
										 |  |  | 				auto pair = section.values.find(kvit); | 
					
						
							| 
									
										
										
										
											2013-09-06 19:56:19 +02:00
										 |  |  | 				out << pair->first << " = " << pair->second << std::endl; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	out.close(); | 
					
						
							| 
									
										
										
										
											2013-09-06 19:56:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:52:06 -04:00
										 |  |  | 	return File::RenameSync(temp, filename); | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-04 19:56:34 +00:00
										 |  |  | // Unit test. TODO: Move to the real unit test framework.
 | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |    int main() | 
					
						
							|  |  |  |    { | 
					
						
							|  |  |  |     IniFile ini; | 
					
						
							|  |  |  |     ini.Load("my.ini"); | 
					
						
							|  |  |  |     ini.Set("Hej", "A", "amaskdfl"); | 
					
						
							|  |  |  |     ini.Set("Mossa", "A", "amaskdfl"); | 
					
						
							|  |  |  |     ini.Set("Aissa", "A", "amaskdfl"); | 
					
						
							|  |  |  |     //ini.Read("my.ini");
 | 
					
						
							|  |  |  |     std::string x; | 
					
						
							|  |  |  |     ini.Get("Hej", "B", &x, "boo"); | 
					
						
							|  |  |  |     ini.DeleteKey("Mossa", "A"); | 
					
						
							|  |  |  |     ini.DeleteSection("Mossa"); | 
					
						
							|  |  |  |     ini.SortSections(); | 
					
						
							|  |  |  |     ini.Save("my.ini"); | 
					
						
							|  |  |  |     //UpdateVars(ini);
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  |    } | 
					
						
							|  |  |  |  */ |