From de7e9557dceb29de00b301a56df81a6ca419c772 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 16 Jun 2019 16:57:05 -0400 Subject: [PATCH] Common/IniFile: Make CaseInsensitiveStringCompare usable with heterogenous lookup Previously, when performing find() operations or indexing operations on the section map, it would need to operate on a std::string key. This means cases like: map.find(some_string_view) aren't usable, which kind of sucks, especially given for most cases, we use regular string literals to perform operations in calling code. However, since C++14, it's possible to use heterogenous lookup to avoid needing to construct exact key types. In otherwords, we can perform the above or use string literals without constructing a std::string instance around them implicitly. We simply need to specify a member type within our comparison struct named is_transparent, to allow std::map to perform automatic type deduction. We also slightly alter the algorithm to an equivalent compatible with std::string_view (which need not be null-terminated), as strcasecmp requires null-terminated strings. While we're at it, we can also provide a helper function to the struct for comparing string equality rather than only less than. This allows removing other usages of strcasecmp in other functions, allowing for the transition of them to std::string_view. --- Source/Core/Common/IniFile.cpp | 17 ++++++++++------- Source/Core/Common/IniFile.h | 25 +++++++++++++++++++++---- 2 files changed, 31 insertions(+), 11 deletions(-) diff --git a/Source/Core/Common/IniFile.cpp b/Source/Core/Common/IniFile.cpp index 65deaa1573..74f43dc165 100644 --- a/Source/Core/Common/IniFile.cpp +++ b/Source/Core/Common/IniFile.cpp @@ -5,16 +5,13 @@ #include "Common/IniFile.h" #include -#include #include -#include #include #include #include #include #include -#include "Common/CommonTypes.h" #include "Common/FileUtil.h" #include "Common/StringUtil.h" @@ -128,16 +125,22 @@ IniFile::~IniFile() = default; const IniFile::Section* IniFile::GetSection(const std::string& sectionName) const { for (const Section& sect : sections) - if (!strcasecmp(sect.name.c_str(), sectionName.c_str())) - return (&(sect)); + { + if (CaseInsensitiveStringCompare::IsEqual(sect.name, sectionName)) + return § + } + return nullptr; } IniFile::Section* IniFile::GetSection(const std::string& sectionName) { for (Section& sect : sections) - if (!strcasecmp(sect.name.c_str(), sectionName.c_str())) - return (&(sect)); + { + if (CaseInsensitiveStringCompare::IsEqual(sect.name, sectionName)) + return § + } + return nullptr; } diff --git a/Source/Core/Common/IniFile.h b/Source/Core/Common/IniFile.h index f23a52fcb0..3b87501d29 100644 --- a/Source/Core/Common/IniFile.h +++ b/Source/Core/Common/IniFile.h @@ -4,21 +4,38 @@ #pragma once -#include +#include +#include #include #include #include +#include #include -#include "Common/CommonFuncs.h" #include "Common/CommonTypes.h" #include "Common/StringUtil.h" struct CaseInsensitiveStringCompare { - bool operator()(const std::string& a, const std::string& b) const + // Allow heterogenous lookup. + using is_transparent = void; + + bool operator()(std::string_view a, std::string_view b) const { - return strcasecmp(a.c_str(), b.c_str()) < 0; + return std::lexicographical_compare( + a.begin(), a.end(), b.begin(), b.end(), [](char lhs, char rhs) { + return std::tolower(static_cast(lhs)) < std::tolower(static_cast(rhs)); + }); + } + + static bool IsEqual(std::string_view a, std::string_view b) + { + if (a.size() != b.size()) + return false; + + return std::equal(a.begin(), a.end(), b.begin(), b.end(), [](char lhs, char rhs) { + return std::tolower(static_cast(lhs)) == std::tolower(static_cast(rhs)); + }); } };