1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
/**
* \file utf8convert.c
*
* UTF8 conversion functions
*/
/* XTrackCad - Model Railroad CAD
* Copyright (C) 2020 Martin Fischer
*
* This program 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; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "misc.h"
#include "include/utf8convert.h"
/**
* Convert to UTF-8. The string must by a dynamically allocated storage block
* allocated with MyMalloc(). The functions returns a pointer to the converted
* string. If no conversion was necessary the returned string is identical to
* the parameter. Otherwise a new buffer is allocated and returned.
*
* \param [in] string If non-null, the string.
*
* \returns a pointer to a MyMalloc'ed string in UTF-8 format.
*/
char *
Convert2UTF8( char *string )
{
if (RequiresConvToUTF8(string)) {
size_t cnt = strlen(string) * 2 + 2;
unsigned char *out = MyMalloc(cnt);
wSystemToUTF8(string, out, (unsigned int)cnt);
MyFree(string);
return(out);
} else {
return(string);
}
}
/**
* Convert a string from UTF-8 to system codepage in place. As the length of
* the result most be equal or smaller than the input this is a safe
* approach.
*
* \param [in,out] in the string to be converted
*/
void
ConvertUTF8ToSystem(unsigned char *in)
{
if (wIsUTF8(in)) {
size_t cnt = strlen(in) * 2 + 2;
unsigned char *out = MyMalloc(cnt);
wUTF8ToSystem(in, out, (unsigned int)cnt);
strcpy(in, out);
MyFree(out);
}
}
/**
* Requires convert to UTF-8 If at least one character is >127 the string
* has to be converted.
*
* \param [in9 string the string.
*
* \returns True if conversion is required, false if not.
*/
bool
RequiresConvToUTF8(char *string)
{
while (*string) {
if (*string++ & 0x7F) {
return(true);
}
}
return(false);
}
|