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 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
|
/**************************************************************/
/* ********************************************************** */
/* * * */
/* * STRING HANDLING * */
/* * * */
/* * $Module: STRINGS * */
/* * * */
/* * Copyright (C) 1999, 2000, 2001 MPI fuer Informatik * */
/* * * */
/* * This program is free software; you can redistribute * */
/* * it and/or modify it under the terms of the FreeBSD * */
/* * Licence. * */
/* * * */
/* * 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 LICENCE file * */
/* * for more details. * */
/* * * */
/* * * */
/* $Revision: 1.5 $ * */
/* $State: Exp $ * */
/* $Date: 2010-02-22 14:09:59 $ * */
/* $Author: weidenb $ * */
/* * * */
/* * Contact: * */
/* * Christoph Weidenbach * */
/* * MPI fuer Informatik * */
/* * Stuhlsatzenhausweg 85 * */
/* * 66123 Saarbruecken * */
/* * Email: spass@mpi-inf.mpg.de * */
/* * Germany * */
/* * * */
/* ********************************************************** */
/**************************************************************/
/* $RCSfile: strings.c,v $ */
/**************************************************************/
/* Includes */
/**************************************************************/
#include <ctype.h>
#include "strings.h"
#include "list.h"
/**************************************************************/
/* Functions */
/**************************************************************/
BOOL string_Equal(const char* S1, const char* S2)
/**************************************************************
INPUT: Two strings.
RETURNS: TRUE iff the strings consists of the same characters.
***************************************************************/
{
return strcmp(S1, S2) == 0;
}
BOOL string_StringIsNumber(const char* String)
/**************************************************************
INPUT: A string.
RETURNS: TRUE iff the string solely consists of number characters.
***************************************************************/
{
int i;
if (String == NULL || String[0] == '\0')
return FALSE;
i = 0;
while (String[i] != '\0')
if (String[i] >= '0' && String[i] <= '9')
i++;
else
return FALSE;
return TRUE;
}
BOOL string_StringIsInteger(const char* String)
/**************************************************************
INPUT: A string.
RETURNS: TRUE iff the string represents an integer number.
(positive or negative number)
***************************************************************/
{
int i;
if (String == NULL || String[0] == '\0')
return FALSE;
i = 0;
if(String[i] == '-' && String[i+1] != '\0'){
i++;
}
while (String[i] != '\0')
if (String[i] >= '0' && String[i] <= '9')
i++;
else
return FALSE;
return TRUE;
}
char* string_StringCopy(const char* String)
/**************************************************************
INPUT: A string.
RETURNS: A copy of the string.
EFFECT: The memory for the copy is allocated by the memory module.
***************************************************************/
{
char *copy;
copy = (char *) memory_Malloc(strlen(String)+1);
strcpy(copy, String);
return copy;
}
void string_StringFree(char* String)
/**************************************************************
INPUT: A string.
RETURNS: Nothing.
EFFECT: Frees the memory used by the string.
***************************************************************/
{
memory_Free(String, strlen(String)+1);
}
char* string_IntToString(int Number)
/**************************************************************
INPUT: An integer number.
RETURNS: The number as a string.
EFFECT: Memory is allocated for the string.
***************************************************************/
{
char* result;
NAT size = 1;
if (Number > 9) {
size = (NAT)log10((double) Number) + 1;
} else if (Number < 0) {
size = (NAT)log10((double) abs(Number)) + 2; /* including '-' */
}
size++; /* for '\0' */
result = (char *) memory_Malloc(sizeof(char) * size);
sprintf(result, "%d", Number);
return result;
}
BOOL string_StringToInt(const char* String, BOOL PrintError, int* Result)
/**************************************************************
INPUT: A string that should represent a decimal number in the
format of the library function strtol, a boolean flag
concerning the printing of error messages and an pointer
to an integer that is used as a return value.
RETURNS: TRUE, if the string could be converted successfully, else FALSE.
EFFECT: This function converts the string a number of type 'int'.
If the string was converted successfully, the value of the
number is stored in <*Result> and the function returns TRUE.
If the number is too big (> INT_MAX), too small (< INT_MIN)
or the string couldn't be converted completely, <*Result> is
set to 0.
If <PrintError> is TRUE, additionally an error message is written
to stderr and the program exits.
***************************************************************/
{
long number;
char *end;
end = (char*)0x1; /* Has to be != NULL, so we take address 1 */
number = strtol(String, &end, 10);
/* Now <number> is LONG_MAX or LONG_MIN if the string represents a value */
/* out of range. The variable <end> is set to the first non-converted */
/* character, e.g. if the string can be converted completely, <end> points */
/* to the terminating '\0' character. */
if (number >= INT_MIN && number <= INT_MAX && *end == '\0') {
/* Number was converted successfully */
*Result = (int)number;
return TRUE;
} else {
/* Number is too large or buffer can't be converted completely */
*Result = 0;
if (PrintError) {
misc_StartUserErrorReport();
misc_UserErrorReport("\nString isn't a number or number too large: %s\n",
String);
misc_FinishUserErrorReport();
}
return FALSE;
}
}
char* string_Conc(const char* s1, const char* s2)
/**************************************************************
INPUT: Two strings.
RETURNS: A new string s1.s2
EFFECTS: Memory is allocated for the new string.
**************************************************************/
{
char* dst;
dst = memory_Malloc(strlen(s1) + strlen(s2) + 1);
strcpy(dst, s1);
return strcat(dst,s2);
}
char* string_Nconc(char* s1, char* s2)
/**************************************************************
INPUT: Two strings.
RETURNS: A new string s1.s2.
EFFECTS: s1,s2 are deleted, memory for the new string is
allocated.
CAUTION: Both strings must have been allocated by the memory module!
**************************************************************/
{
char* dst;
dst = memory_Malloc(strlen(s1) + strlen(s2) + 1);
strcpy(dst, s1);
dst = strcat(dst, s2);
string_StringFree(s1);
string_StringFree(s2);
return dst;
}
char* string_EmptyString(void)
/**************************************************************
INPUT: None.
RETURNS: The empty string.
EFFECT: Memory is allocated for the returned string.
**************************************************************/
{
char* s ;
s = memory_Malloc(1);
s[0] = '\0';
return s;
}
char* string_Prefix(const char* s, int i)
/**************************************************************
INPUT: A string and a string length.
RETURNS: The prefix of <s> of length <i>.
EFFECT: Memory is allocated for the returned string.
**************************************************************/
{
char* dst;
dst = memory_Malloc(i + 1);
strncpy(dst, s, i);
dst[i] = '\0';
return dst;
}
char* string_Suffix(const char* s, int i)
/**************************************************************
INPUT: A string and a string length.
RETURNS: The string that results from cutting the first
<i> characters from string <s>.
Returns the empty string if <i> >= length(s).
EFFECT: Memory is allocated for the returned string.
**************************************************************/
{
int l;
char *dst;
l = strlen(s);
if (i >= l)
return string_EmptyString();
dst = memory_Malloc(l - i + 1);
strcpy(dst, s+i);
return dst;
}
static BOOL string_IsDelim(char Char, const char* Delims)
/**************************************************************
INPUT: A character <Char> and
a string <Delims> (possibly NULL).
RETURNS: True if the given character is an "element"
of the string <Delims>
or it is a space and <Delims> is NULL.
***************************************************************/
{
#ifdef CHECK
if (Char == '\0') {
misc_StartErrorReport();
misc_ErrorReport("\n In string_IsDelim: Char is null.");
misc_FinishErrorReport();
}
#endif
if (Delims) {
while (*Delims) {
if (Char == *Delims)
return TRUE;
Delims++;
}
return FALSE;
} else
return isspace(Char);
}
LIST string_Split(char* Source, const char* Delims)
/**************************************************************
INPUT: A string <Source> and
a string <Delims> (possibly NULL).
RETURNS: The function returns
a list of substrings from <Source>
that were separated the by one of Delims's chars.
If delim is null the standard function
isspace is used to indentify delimitors instead.
Empty substrings are not returned!
EFFECT: Memory for the substrings and the list is allocated.
The argument string <Source> is modified temporarily
within this function, but it's restored at the end.
***************************************************************/
{
LIST Substrings;
char *LastNonSpace, *Scan, Help;
#ifdef CHECK
if (Source == NULL) {
misc_StartErrorReport();
misc_ErrorReport("\n In string_Split: Source is NULL pointer.");
misc_FinishErrorReport();
}
#endif
Substrings = list_Nil();
Scan = Source + strlen(Source) - 1;
while (Scan >= Source) {
while (Scan >= Source && string_IsDelim((int)*Scan,Delims))
Scan--;
if (Scan >= Source) {
LastNonSpace = Scan;
do {
Scan--;
} while (Scan >= Source && !string_IsDelim((int)*Scan,Delims));
Help = *(LastNonSpace + 1);
*(LastNonSpace + 1) = '\0';
Substrings = list_Cons(string_StringCopy(Scan+1), Substrings);
*(LastNonSpace + 1) = Help;
}
}
return Substrings;
}
char** string_Tokens(char* String, int* ArraySize)
/**************************************************************
INPUT: A string <String>.
RETURNS: The function returns an array of white space separated
substrings from <String>. <ArraySize> is set to the
actual size of the returned array.
The array size is the number of substrings + 2, since
the first entry is the program name and the last entry
is NULL.
This is done so to create an array similar to the
"argv" argument of the main() function.
EFFECT: This function breaks the string into several substrings
that don't contain any whitespace characters.
The argument string is modified temporarily within this
function, but it's restored at the end.
***************************************************************/
{
char **Array;
LIST Substrings;
NAT i;
Substrings = string_Split(String,NULL);
*ArraySize = list_Length(Substrings) + 2;
Array = memory_Malloc(sizeof(char*) * *ArraySize);
Array[0] = string_StringCopy("SPASS");
for (i = 1; !list_Empty(Substrings); Substrings = list_Pop(Substrings), i++)
Array[i] = list_Car(Substrings);
Array[i] = NULL;
(*ArraySize)--;
return Array;
}
|