forked from xdebug/xdebug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xdebug_str.c
208 lines (178 loc) · 4.44 KB
/
xdebug_str.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
202
203
204
205
206
207
208
/*
+----------------------------------------------------------------------+
| Xdebug |
+----------------------------------------------------------------------+
| Copyright (c) 2002-2018 Derick Rethans |
+----------------------------------------------------------------------+
| This source file is subject to version 1.01 of the Xdebug license, |
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
| https://xdebug.org/license.php |
| If you did not receive a copy of the Xdebug license and are unable |
| to obtain it through the world-wide-web, please send a note to |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Derick Rethans <[email protected]> |
+----------------------------------------------------------------------+
*/
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <locale.h>
#include "php.h"
#include "ext/standard/php_string.h"
#include "xdebug_mm.h"
#include "xdebug_str.h"
void xdebug_str_add(xdebug_str *xs, const char *str, int f)
{
int l = strlen(str);
if (xs->l + l > xs->a - 1) {
xs->d = xdrealloc(xs->d, xs->a + l + XDEBUG_STR_PREALLOC);
xs->a = xs->a + l + XDEBUG_STR_PREALLOC;
}
if (!xs->l) {
xs->d[0] = '\0';
}
memcpy(xs->d + xs->l, str, l);
xs->d[xs->l + l] = '\0';
xs->l = xs->l + l;
if (f) {
xdfree((char*) str);
}
}
void xdebug_str_addl(xdebug_str *xs, const char *str, int le, int f)
{
if (xs->l + le > xs->a - 1) {
xs->d = xdrealloc(xs->d, xs->a + le + XDEBUG_STR_PREALLOC);
xs->a = xs->a + le + XDEBUG_STR_PREALLOC;
}
if (!xs->l) {
xs->d[0] = '\0';
}
memcpy(xs->d + xs->l, str, le);
xs->d[xs->l + le] = '\0';
xs->l = xs->l + le;
if (f) {
xdfree((char*) str);
}
}
void xdebug_str_add_str(xdebug_str *xs, const xdebug_str *str)
{
if (xs->l + str->l > xs->a - 1) {
xs->d = xdrealloc(xs->d, xs->a + str->l + XDEBUG_STR_PREALLOC);
xs->a = xs->a + str->l + XDEBUG_STR_PREALLOC;
}
if (!xs->l) {
xs->d[0] = '\0';
}
memcpy(xs->d + xs->l, str->d, str->l);
xs->d[xs->l + str->l] = '\0';
xs->l = xs->l + str->l;
}
void xdebug_str_addc(xdebug_str *xs, char letter)
{
if (xs->l + 1 > xs->a - 1) {
xs->d = xdrealloc(xs->d, xs->a + 1 + XDEBUG_STR_PREALLOC);
xs->a = xs->a + 1 + XDEBUG_STR_PREALLOC;
}
if (!xs->l) {
xs->d[0] = '\0';
}
xs->d[xs->l] = letter;
xs->d[xs->l + 1] = '\0';
xs->l = xs->l + 1;
}
void xdebug_str_chop(xdebug_str *xs, int c)
{
if (c > xs->l) {
/* Do nothing if the chop amount is larger than the buffer size */
} else {
xs->l -= c;
xs->d[xs->l] = '\0';
}
}
xdebug_str *xdebug_str_new(void)
{
xdebug_str *tmp = xdmalloc(sizeof(xdebug_str));
tmp->l = 0;
tmp->a = 0;
tmp->d = NULL;
return tmp;
}
xdebug_str *xdebug_str_create(char *c, size_t len)
{
xdebug_str *tmp = xdebug_str_new();
tmp->l = tmp->a = len;
tmp->a++;
tmp->d = xdmalloc(tmp->a);
memcpy(tmp->d, c, tmp->l);
tmp->d[tmp->l] = '\0';
return tmp;
}
xdebug_str *xdebug_str_create_from_char(char *c)
{
return xdebug_str_create(c, strlen(c));
}
xdebug_str *xdebug_str_copy(xdebug_str *orig)
{
xdebug_str *tmp = xdebug_str_new();
tmp->l = tmp->a = orig->l;
tmp->a++;
tmp->d = xdmalloc(tmp->a);
memcpy(tmp->d, orig->d, tmp->l);
tmp->d[orig->l] = '\0';
return tmp;
}
void xdebug_str_destroy(xdebug_str *s)
{
if (s->d) {
xdfree(s->d);
}
}
void xdebug_str_free(xdebug_str *s)
{
xdebug_str_destroy(s);
xdfree(s);
}
char *xdebug_sprintf(const char* fmt, ...)
{
char *new_str;
int size = 1;
va_list args;
new_str = (char *) xdmalloc(size);
for (;;) {
int n;
va_start(args, fmt);
n = vsnprintf(new_str, size, fmt, args);
va_end(args);
if (n > -1 && n < size) {
break;
}
if (n < 0) {
size *= 2;
} else {
size = n + 1;
}
new_str = (char *) xdrealloc(new_str, size);
}
return new_str;
}
/**
* Duplicate zend_strndup in core to avoid mismatches
* in C-runtime libraries when xdebug and core are built
* with different run-time libraries.
*/
char *xdebug_strndup(const char *s, int length)
{
char *p;
p = (char *) xdmalloc(length + 1);
if (p == NULL) {
return p;
}
if (length) {
memcpy(p, s, length);
}
p[length] = 0;
return p;
}