2013-10-20 23:09:51 +02:00
|
|
|
/*
|
2018-08-02 10:41:34 +02:00
|
|
|
* Copyright (C) 2013-2018 Max Kellermann <max.kellermann@gmail.com>
|
2013-10-20 23:09:51 +02:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* - Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* - Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
|
|
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2015-03-04 20:05:39 +01:00
|
|
|
#ifndef ASCII_HXX
|
|
|
|
#define ASCII_HXX
|
2013-10-20 23:09:51 +02:00
|
|
|
|
|
|
|
#include "Compiler.h"
|
|
|
|
|
2020-03-12 23:20:59 +01:00
|
|
|
#include <cassert>
|
2020-03-13 20:17:53 +01:00
|
|
|
#include <string_view>
|
2020-03-12 23:20:59 +01:00
|
|
|
|
2014-08-15 21:22:37 +02:00
|
|
|
#include <strings.h>
|
2013-10-20 23:09:51 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine whether two strings are equal, ignoring case for ASCII
|
|
|
|
* letters.
|
|
|
|
*/
|
|
|
|
gcc_pure gcc_nonnull_all
|
|
|
|
static inline bool
|
2017-05-08 14:44:49 +02:00
|
|
|
StringEqualsCaseASCII(const char *a, const char *b) noexcept
|
2013-10-20 23:09:51 +02:00
|
|
|
{
|
2014-12-26 13:40:17 +01:00
|
|
|
#if !CLANG_CHECK_VERSION(3,6)
|
|
|
|
/* disabled on clang due to -Wtautological-pointer-compare */
|
2014-12-26 13:37:38 +01:00
|
|
|
assert(a != nullptr);
|
|
|
|
assert(b != nullptr);
|
2014-12-26 13:40:17 +01:00
|
|
|
#endif
|
2013-10-20 23:09:51 +02:00
|
|
|
|
2014-12-26 13:37:38 +01:00
|
|
|
/* note: strcasecmp() depends on the locale, but for ASCII-only
|
|
|
|
strings, it's safe to use */
|
|
|
|
return strcasecmp(a, b) == 0;
|
2013-10-20 23:09:51 +02:00
|
|
|
}
|
|
|
|
|
2013-10-21 08:42:55 +02:00
|
|
|
gcc_pure gcc_nonnull_all
|
|
|
|
static inline bool
|
2017-05-08 14:44:49 +02:00
|
|
|
StringEqualsCaseASCII(const char *a, const char *b, size_t n) noexcept
|
2013-10-21 08:42:55 +02:00
|
|
|
{
|
2014-12-26 13:40:17 +01:00
|
|
|
#if !CLANG_CHECK_VERSION(3,6)
|
|
|
|
/* disabled on clang due to -Wtautological-pointer-compare */
|
2014-12-26 13:37:38 +01:00
|
|
|
assert(a != nullptr);
|
|
|
|
assert(b != nullptr);
|
2014-12-26 13:40:17 +01:00
|
|
|
#endif
|
2013-10-21 08:42:55 +02:00
|
|
|
|
2014-12-26 13:37:38 +01:00
|
|
|
/* note: strcasecmp() depends on the locale, but for ASCII-only
|
|
|
|
strings, it's safe to use */
|
|
|
|
return strncasecmp(a, b, n) == 0;
|
2013-10-21 08:42:55 +02:00
|
|
|
}
|
|
|
|
|
2018-08-02 10:41:34 +02:00
|
|
|
gcc_pure gcc_nonnull_all
|
|
|
|
static inline bool
|
2020-03-13 20:17:53 +01:00
|
|
|
StringStartsWithCaseASCII(const char *haystack,
|
|
|
|
std::string_view needle) noexcept
|
2018-08-02 10:41:34 +02:00
|
|
|
{
|
2020-03-13 20:17:53 +01:00
|
|
|
return StringEqualsCaseASCII(haystack, needle.data(), needle.length());
|
2018-08-02 10:41:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
gcc_pure gcc_nonnull_all
|
|
|
|
static inline const char *
|
2020-03-13 20:17:53 +01:00
|
|
|
StringAfterPrefixCaseASCII(const char *haystack,
|
|
|
|
std::string_view needle) noexcept
|
2018-08-02 10:41:34 +02:00
|
|
|
{
|
|
|
|
return StringStartsWithCaseASCII(haystack, needle)
|
2020-03-13 20:17:53 +01:00
|
|
|
? haystack + needle.length()
|
2018-08-02 10:41:34 +02:00
|
|
|
: nullptr;
|
|
|
|
}
|
|
|
|
|
2013-10-20 23:09:51 +02:00
|
|
|
#endif
|