-
-
Notifications
You must be signed in to change notification settings - Fork 262
/
Copy pathescape.c
201 lines (194 loc) · 4.57 KB
/
escape.c
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
/*****************************************************************************/
/* LibreDWG - free implementation of the DWG file format */
/* */
/* Copyright (C) 2019,2023 Free Software Foundation, Inc. */
/* */
/* This library is free software, licensed under the terms of the GNU */
/* General Public License as published by the Free Software Foundation, */
/* either version 3 of the License, or (at your option) any later version. */
/* You should have received a copy of the GNU General Public License */
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
/*****************************************************************************/
/*
* escape.c: SVG helpers
* written by Reini Urban
*/
#include "config.h"
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include "common.h"
#include "escape.h"
char *
ATTRIBUTE_MALLOC
htmlescape (const char *restrict src, const Dwg_Codepage cp)
{
size_t len;
char *dest, *d, *end;
unsigned char *s;
if (!src)
return NULL;
len = strlen (src) + 10;
d = (char *)calloc (len, 1);
if (!d)
return NULL;
s = (unsigned char *)src;
dest = d;
end = dest + len;
while (*s)
{
if (end - d <= 8)
{
const int off = d - dest;
char *newdest = (char *)realloc (dest, len + 10);
if (!newdest)
return NULL;
dest = newdest;
len += 10;
d = dest + off;
*d = 0;
end = dest + len;
}
switch (*s)
{
case '"':
strcat (d, """);
d += 6;
break;
case '\'':
strcat (d, "'");
d += 5;
break;
case '`':
strcat (d, "`");
d += 5;
break;
case '&':
strcat (d, "&");
d += 5;
break;
case '<':
strcat (d, "<");
d += 4;
break;
case '>':
strcat (d, ">");
d += 4;
break;
case '{':
strcat (d, "{");
d += 6;
break;
case '}':
strcat (d, "}");
d += 6;
break;
default:
{
uint16_t cc = *s;
wchar_t wc;
if (dwg_codepage_is_twobyte (cp, *s))
cc = cc << 8 | *++s;
wc = dwg_codepage_uwc (cp, cc);
if (wc > 127 || wc < 0x20)
{
if (!d)
return NULL;
sprintf (d, "&#x%X;", (unsigned)wc); // 4 + 4
d += strlen (d);
}
else
{
*d++ = *s;
}
*d = 0;
}
}
s++;
}
*d = 0;
return dest;
}
char *
ATTRIBUTE_MALLOC
htmlwescape (BITCODE_TU wstr)
{
int len = 0;
char *dest, *d;
BITCODE_TU tmp = wstr;
BITCODE_RS c;
if (!wstr)
return NULL;
while ((c = *tmp++))
len++;
len += 16;
d = dest = (char *)calloc (len, 1);
if (!d)
return NULL;
while (*wstr)
{
const int off = d - dest;
if (off >= len - 8)
{
char *newdest = (char *)realloc (dest, len + 16);
if (!newdest)
return NULL;
dest = newdest;
len += 16;
d = dest + off;
*d = 0;
}
switch (*wstr)
{
case 34:
strcat (d, """);
d += 6;
break;
case 39:
strcat (d, "'");
d += 5;
break;
case 38:
strcat (d, "&");
d += 5;
break;
case 60:
strcat (d, "<");
d += 4;
break;
case 62:
strcat (d, ">");
d += 4;
break;
case 96:
strcat (d, "`");
d += 5;
break;
case 123:
strcat (d, "{");
d += 6;
break;
case 125:
strcat (d, "}");
d += 6;
break;
default:
if (*wstr >= 127 || *wstr < 20) // utf8 encodings
{
if (!d)
return NULL;
sprintf (d, "&#x%X;", *wstr);
d += strlen (d);
*d = 0;
}
else
{
*d++ = *wstr;
*d = 0;
}
}
wstr++;
}
*d = 0;
return dest;
}