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 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
|
/***************************************************************************
gb_str.c
(c) 2000-2017 BenoƮt Minisini <benoit.minisini@gambas-basic.org>
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, 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., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
***************************************************************************/
#define __GB_STR_C
#include "gb_common.h"
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <fcntl.h>
#include <stdarg.h>
#include <ctype.h>
#include "main.h"
#include "gb_str.h"
//#define DEBUG
static char *_free_later = NULL;
static char *_last_str = NULL;
static int _last_len = 0;
#ifdef DEBUG
static int _count = 0;
#endif
void STR_free(char *str)
{
if (!str)
return;
#ifdef DEBUG
_count--;
fprintf(stderr, "free %p -> %d\n", str, _count);
#endif
GB.Free((void **)&(str));
}
void STR_vadd(char **str, const char *fmt, va_list args)
{
va_list copy;
int len, add;
char *new;
va_copy(copy, args);
add = vsnprintf(NULL, 0, fmt, args);
if (*str)
len = (*str == _last_str ? _last_len : strlen(*str));
else
len = 0;
GB.Alloc((void **)&new, len + add + 1);
if (*str) strcpy(new, *str);
vsprintf(&new[len], fmt, copy);
va_end(copy);
#ifdef DEBUG
if (*str) {
_count--;
fprintf(stderr, "free %p -> %d\n", *str, _count);
}
_count++;
fprintf(stderr, "alloc %p -> %d\n", new, _count);
#endif
if (*str) GB.Free((void **)str);
*str = new;
_last_str = new;
_last_len = len + add;
}
void STR_add(char **str, const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
STR_vadd(str, fmt, args);
va_end(args);
}
char *STR_copy_len(const char *str, int len)
{
char *cpy;
GB.Alloc((void **)&cpy, len + 1);
memcpy(cpy, str, len + 1);
#ifdef DEBUG
_count++;
fprintf(stderr, "alloc %p -> %d\n", cpy, _count);
#endif
return cpy;
}
char *STR_copy(const char *str)
{
return STR_copy_len(str, strlen(str));
}
/*static char *str_add(char *d, const char *s)
{
for(;;)
{
if ((*d = *s) == 0)
break;
d++;
s++;
}
return d;
}
char *STR_cat(const char *str, ...)
{
va_list args;
char *cpy;
char *p;
int len = 0;
va_start(args, str);
p = (char *)str;
while (p)
{
len += strlen(p);
p = va_arg(args, char *);
}
va_end(args);
GB.Alloc((void **)&cpy, len + 1);
p = cpy;
va_start(args, str);
while (str)
{
p = str_add(p, str);
str = va_arg(args, char *);
}
va_end(args);
return cpy;
}*/
char *STR_upper(const char *str)
{
char *s;
char *p;
p = s = STR_copy(str);
while (*p)
{
*p = toupper(*p);
p++;
}
return s;
}
char *STR_lower(const char *str)
{
char *s;
char *p;
p = s = STR_copy(str);
while (*p)
{
*p = tolower(*p);
p++;
}
return s;
}
char *STR_free_later(char *str)
{
if (_free_later)
STR_free(_free_later);
_free_later = str;
return str;
}
char *STR_print(const char *fmt, ...)
{
va_list args;
char *str = NULL;
va_start(args, fmt);
STR_vadd(&str, fmt, args);
va_end(args);
return str;
}
|