mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-10-31 15:20:10 +00:00
426 lines
12 KiB
C++
426 lines
12 KiB
C++
/* $Id$ */
|
|
|
|
/*
|
|
* This file is part of OpenTTD.
|
|
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
|
|
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/** @file string.cpp Handling of C-type strings (char*). */
|
|
|
|
#include "stdafx.h"
|
|
#include "debug.h"
|
|
#include "core/alloc_func.hpp"
|
|
#include "core/math_func.hpp"
|
|
#include "string_func.h"
|
|
|
|
#include "table/control_codes.h"
|
|
|
|
#include <stdarg.h>
|
|
#include <ctype.h> /* required for tolower() */
|
|
|
|
#ifdef _MSC_VER
|
|
#include <errno.h> // required by vsnprintf implementation for MSVC
|
|
#endif
|
|
|
|
/**
|
|
* Safer implementation of vsnprintf; same as vsnprintf except:
|
|
* - last instead of size, i.e. replace sizeof with lastof.
|
|
* - return gives the amount of characters added, not what it would add.
|
|
* @param str buffer to write to up to last
|
|
* @param last last character we may write to
|
|
* @param format the formatting (see snprintf)
|
|
* @param ap the list of arguments for the format
|
|
* @return the number of added characters
|
|
*/
|
|
static int CDECL vseprintf(char *str, const char *last, const char *format, va_list ap)
|
|
{
|
|
ptrdiff_t diff = last - str;
|
|
if (diff < 0) return 0;
|
|
return min((int)diff, vsnprintf(str, diff + 1, format, ap));
|
|
}
|
|
|
|
void ttd_strlcat(char *dst, const char *src, size_t size)
|
|
{
|
|
assert(size > 0);
|
|
while (size > 0 && *dst != '\0') {
|
|
size--;
|
|
dst++;
|
|
}
|
|
|
|
ttd_strlcpy(dst, src, size);
|
|
}
|
|
|
|
|
|
void ttd_strlcpy(char *dst, const char *src, size_t size)
|
|
{
|
|
assert(size > 0);
|
|
while (--size > 0 && *src != '\0') {
|
|
*dst++ = *src++;
|
|
}
|
|
*dst = '\0';
|
|
}
|
|
|
|
|
|
char *strecat(char *dst, const char *src, const char *last)
|
|
{
|
|
assert(dst <= last);
|
|
while (*dst != '\0') {
|
|
if (dst == last) return dst;
|
|
dst++;
|
|
}
|
|
|
|
return strecpy(dst, src, last);
|
|
}
|
|
|
|
|
|
char *strecpy(char *dst, const char *src, const char *last)
|
|
{
|
|
assert(dst <= last);
|
|
while (dst != last && *src != '\0') {
|
|
*dst++ = *src++;
|
|
}
|
|
*dst = '\0';
|
|
|
|
if (dst == last && *src != '\0') {
|
|
#ifdef STRGEN
|
|
error("String too long for destination buffer");
|
|
#else /* STRGEN */
|
|
DEBUG(misc, 0, "String too long for destination buffer");
|
|
#endif /* STRGEN */
|
|
}
|
|
return dst;
|
|
}
|
|
|
|
|
|
char *CDECL str_fmt(const char *str, ...)
|
|
{
|
|
char buf[4096];
|
|
va_list va;
|
|
|
|
va_start(va, str);
|
|
int len = vseprintf(buf, lastof(buf), str, va);
|
|
va_end(va);
|
|
char *p = MallocT<char>(len + 1);
|
|
memcpy(p, buf, len + 1);
|
|
return p;
|
|
}
|
|
|
|
|
|
void str_validate(char *str, const char *last, bool allow_newlines, bool ignore)
|
|
{
|
|
/* Assume the ABSOLUTE WORST to be in str as it comes from the outside. */
|
|
|
|
char *dst = str;
|
|
while (*str != '\0') {
|
|
size_t len = Utf8EncodedCharLen(*str);
|
|
/* If the character is unknown, i.e. encoded length is 0
|
|
* we assume worst case for the length check.
|
|
* The length check is needed to prevent Utf8Decode to read
|
|
* over the terminating '\0' if that happens to be placed
|
|
* within the encoding of an UTF8 character. */
|
|
if ((len == 0 && str + 4 > last) || str + len > last) break;
|
|
|
|
WChar c;
|
|
len = Utf8Decode(&c, str);
|
|
/* It's possible to encode the string termination character
|
|
* into a multiple bytes. This prevents those termination
|
|
* characters to be skipped */
|
|
if (c == '\0') break;
|
|
|
|
if (IsPrintable(c) && (c < SCC_SPRITE_START || c > SCC_SPRITE_END)) {
|
|
/* Copy the character back. Even if dst is current the same as str
|
|
* (i.e. no characters have been changed) this is quicker than
|
|
* moving the pointers ahead by len */
|
|
do {
|
|
*dst++ = *str++;
|
|
} while (--len != 0);
|
|
} else if (allow_newlines && c == '\n') {
|
|
*dst++ = *str++;
|
|
} else {
|
|
if (allow_newlines && c == '\r' && str[1] == '\n') {
|
|
str += len;
|
|
continue;
|
|
}
|
|
/* Replace the undesirable character with a question mark */
|
|
str += len;
|
|
if (!ignore) *dst++ = '?';
|
|
}
|
|
}
|
|
|
|
*dst = '\0';
|
|
}
|
|
|
|
|
|
void str_strip_colours(char *str)
|
|
{
|
|
char *dst = str;
|
|
WChar c;
|
|
size_t len;
|
|
|
|
for (len = Utf8Decode(&c, str); c != '\0'; len = Utf8Decode(&c, str)) {
|
|
if (c < SCC_BLUE || c > SCC_BLACK) {
|
|
/* Copy the character back. Even if dst is current the same as str
|
|
* (i.e. no characters have been changed) this is quicker than
|
|
* moving the pointers ahead by len */
|
|
do {
|
|
*dst++ = *str++;
|
|
} while (--len != 0);
|
|
} else {
|
|
/* Just skip (strip) the colour codes */
|
|
str += len;
|
|
}
|
|
}
|
|
*dst = '\0';
|
|
}
|
|
|
|
/** Convert a given ASCII string to lowercase.
|
|
* NOTE: only support ASCII characters, no UTF8 fancy. As currently
|
|
* the function is only used to lowercase data-filenames if they are
|
|
* not found, this is sufficient. If more, or general functionality is
|
|
* needed, look to r7271 where it was removed because it was broken when
|
|
* using certain locales: eg in Turkish the uppercase 'I' was converted to
|
|
* '?', so just revert to the old functionality
|
|
* @param str string to convert */
|
|
void strtolower(char *str)
|
|
{
|
|
for (; *str != '\0'; str++) *str = tolower(*str);
|
|
}
|
|
|
|
/**
|
|
* Only allow certain keys. You can define the filter to be used. This makes
|
|
* sure no invalid keys can get into an editbox, like BELL.
|
|
* @param key character to be checked
|
|
* @param afilter the filter to use
|
|
* @return true or false depending if the character is printable/valid or not
|
|
*/
|
|
bool IsValidChar(WChar key, CharSetFilter afilter)
|
|
{
|
|
switch (afilter) {
|
|
case CS_ALPHANUMERAL: return IsPrintable(key);
|
|
case CS_NUMERAL: return (key >= '0' && key <= '9');
|
|
case CS_NUMERAL_SPACE: return (key >= '0' && key <= '9') || key == ' ';
|
|
case CS_ALPHA: return IsPrintable(key) && !(key >= '0' && key <= '9');
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
#ifdef WIN32
|
|
/* Since version 3.14, MinGW Runtime has snprintf() and vsnprintf() conform to C99 but it's not the case for older versions */
|
|
#if (__MINGW32_MAJOR_VERSION < 3) || ((__MINGW32_MAJOR_VERSION == 3) && (__MINGW32_MINOR_VERSION < 14))
|
|
int CDECL snprintf(char *str, size_t size, const char *format, ...)
|
|
{
|
|
va_list ap;
|
|
int ret;
|
|
|
|
va_start(ap, format);
|
|
ret = vsnprintf(str, size, format, ap);
|
|
va_end(ap);
|
|
return ret;
|
|
}
|
|
#endif /* MinGW Runtime < 3.14 */
|
|
|
|
#ifdef _MSC_VER
|
|
/**
|
|
* Almost POSIX compliant implementation of \c vsnprintf for VC compiler.
|
|
* The difference is in the value returned on output truncation. This
|
|
* implementation returns size whereas a POSIX implementation returns
|
|
* size or more (the number of bytes that would be written to str
|
|
* had size been sufficiently large excluding the terminating null byte).
|
|
*/
|
|
int CDECL vsnprintf(char *str, size_t size, const char *format, va_list ap)
|
|
{
|
|
if (size == 0) return 0;
|
|
|
|
errno = 0;
|
|
int ret = _vsnprintf(str, size, format, ap);
|
|
|
|
if (ret < 0) {
|
|
if (errno != ERANGE) {
|
|
/* There's a formatting error, better get that looked
|
|
* at properly instead of ignoring it. */
|
|
NOT_REACHED();
|
|
}
|
|
} else if ((size_t)ret < size) {
|
|
/* The buffer is big enough for the number of
|
|
* characers stored (excluding null), i.e.
|
|
* the string has been null-terminated. */
|
|
return ret;
|
|
}
|
|
|
|
/* The buffer is too small for _vsnprintf to write the
|
|
* null-terminator at its end and return size. */
|
|
str[size - 1] = '\0';
|
|
return (int)size;
|
|
}
|
|
#endif /* _MSC_VER */
|
|
|
|
#endif /* WIN32 */
|
|
|
|
/**
|
|
* Safer implementation of snprintf; same as snprintf except:
|
|
* - last instead of size, i.e. replace sizeof with lastof.
|
|
* - return gives the amount of characters added, not what it would add.
|
|
* @param str buffer to write to up to last
|
|
* @param last last character we may write to
|
|
* @param format the formatting (see snprintf)
|
|
* @return the number of added characters
|
|
*/
|
|
int CDECL seprintf(char *str, const char *last, const char *format, ...)
|
|
{
|
|
va_list ap;
|
|
|
|
va_start(ap, format);
|
|
int ret = vseprintf(str, last, format, ap);
|
|
va_end(ap);
|
|
return ret;
|
|
}
|
|
|
|
|
|
/** Convert the md5sum to a hexadecimal string representation
|
|
* @param buf buffer to put the md5sum into
|
|
* @param last last character of buffer (usually lastof(buf))
|
|
* @param md5sum the md5sum itself
|
|
* @return a pointer to the next character after the md5sum */
|
|
char *md5sumToString(char *buf, const char *last, const uint8 md5sum[16])
|
|
{
|
|
char *p = buf;
|
|
|
|
for (uint i = 0; i < 16; i++) {
|
|
p += seprintf(p, last, "%02X", md5sum[i]);
|
|
}
|
|
|
|
return p;
|
|
}
|
|
|
|
|
|
/* UTF-8 handling routines */
|
|
|
|
|
|
/* Decode and consume the next UTF-8 encoded character
|
|
* @param c Buffer to place decoded character.
|
|
* @param s Character stream to retrieve character from.
|
|
* @return Number of characters in the sequence.
|
|
*/
|
|
size_t Utf8Decode(WChar *c, const char *s)
|
|
{
|
|
assert(c != NULL);
|
|
|
|
if (!HasBit(s[0], 7)) {
|
|
/* Single byte character: 0xxxxxxx */
|
|
*c = s[0];
|
|
return 1;
|
|
} else if (GB(s[0], 5, 3) == 6) {
|
|
if (IsUtf8Part(s[1])) {
|
|
/* Double byte character: 110xxxxx 10xxxxxx */
|
|
*c = GB(s[0], 0, 5) << 6 | GB(s[1], 0, 6);
|
|
if (*c >= 0x80) return 2;
|
|
}
|
|
} else if (GB(s[0], 4, 4) == 14) {
|
|
if (IsUtf8Part(s[1]) && IsUtf8Part(s[2])) {
|
|
/* Triple byte character: 1110xxxx 10xxxxxx 10xxxxxx */
|
|
*c = GB(s[0], 0, 4) << 12 | GB(s[1], 0, 6) << 6 | GB(s[2], 0, 6);
|
|
if (*c >= 0x800) return 3;
|
|
}
|
|
} else if (GB(s[0], 3, 5) == 30) {
|
|
if (IsUtf8Part(s[1]) && IsUtf8Part(s[2]) && IsUtf8Part(s[3])) {
|
|
/* 4 byte character: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx */
|
|
*c = GB(s[0], 0, 3) << 18 | GB(s[1], 0, 6) << 12 | GB(s[2], 0, 6) << 6 | GB(s[3], 0, 6);
|
|
if (*c >= 0x10000 && *c <= 0x10FFFF) return 4;
|
|
}
|
|
}
|
|
|
|
/* DEBUG(misc, 1, "[utf8] invalid UTF-8 sequence"); */
|
|
*c = '?';
|
|
return 1;
|
|
}
|
|
|
|
|
|
/* Encode a unicode character and place it in the buffer
|
|
* @param buf Buffer to place character.
|
|
* @param c Unicode character to encode.
|
|
* @return Number of characters in the encoded sequence.
|
|
*/
|
|
size_t Utf8Encode(char *buf, WChar c)
|
|
{
|
|
if (c < 0x80) {
|
|
*buf = c;
|
|
return 1;
|
|
} else if (c < 0x800) {
|
|
*buf++ = 0xC0 + GB(c, 6, 5);
|
|
*buf = 0x80 + GB(c, 0, 6);
|
|
return 2;
|
|
} else if (c < 0x10000) {
|
|
*buf++ = 0xE0 + GB(c, 12, 4);
|
|
*buf++ = 0x80 + GB(c, 6, 6);
|
|
*buf = 0x80 + GB(c, 0, 6);
|
|
return 3;
|
|
} else if (c < 0x110000) {
|
|
*buf++ = 0xF0 + GB(c, 18, 3);
|
|
*buf++ = 0x80 + GB(c, 12, 6);
|
|
*buf++ = 0x80 + GB(c, 6, 6);
|
|
*buf = 0x80 + GB(c, 0, 6);
|
|
return 4;
|
|
}
|
|
|
|
/* DEBUG(misc, 1, "[utf8] can't UTF-8 encode value 0x%X", c); */
|
|
*buf = '?';
|
|
return 1;
|
|
}
|
|
|
|
/**
|
|
* Properly terminate an UTF8 string to some maximum length
|
|
* @param s string to check if it needs additional trimming
|
|
* @param maxlen the maximum length the buffer can have.
|
|
* @return the new length in bytes of the string (eg. strlen(new_string))
|
|
* @NOTE maxlen is the string length _INCLUDING_ the terminating '\0'
|
|
*/
|
|
size_t Utf8TrimString(char *s, size_t maxlen)
|
|
{
|
|
size_t length = 0;
|
|
|
|
for (const char *ptr = strchr(s, '\0'); *s != '\0';) {
|
|
size_t len = Utf8EncodedCharLen(*s);
|
|
/* Silently ignore invalid UTF8 sequences, our only concern trimming */
|
|
if (len == 0) len = 1;
|
|
|
|
/* Take care when a hard cutoff was made for the string and
|
|
* the last UTF8 sequence is invalid */
|
|
if (length + len >= maxlen || (s + len > ptr)) break;
|
|
s += len;
|
|
length += len;
|
|
}
|
|
|
|
*s = '\0';
|
|
return length;
|
|
}
|
|
|
|
#ifndef _GNU_SOURCE
|
|
#include "core/math_func.hpp"
|
|
char *strndup(const char *s, size_t len)
|
|
{
|
|
len = min(strlen(s), len);
|
|
char *tmp = CallocT<char>(len + 1);
|
|
memcpy(tmp, s, len);
|
|
return tmp;
|
|
}
|
|
#endif /* !_GNU_SOURCE */
|
|
|
|
#ifdef DEFINE_STRCASESTR
|
|
char *strcasestr(const char *haystack, const char *needle)
|
|
{
|
|
size_t hay_len = strlen(haystack);
|
|
size_t needle_len = strlen(needle);
|
|
while (hay_len >= needle_len) {
|
|
if (strncasecmp(haystack, needle, needle_len) == 0) return const_cast<char *>(haystack);
|
|
|
|
haystack++;
|
|
hay_len--;
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
#endif /* DEFINE_STRCASESTR */
|