File: strings.c

package info (click to toggle)
eterm 0.7-1
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 1,024 kB
  • ctags: 1,205
  • sloc: ansic: 14,536; sh: 308; makefile: 294
file content (491 lines) | stat: -rw-r--r-- 12,229 bytes parent folder | download
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
/***************************************************************
 * STRINGS.C -- String manipulation routines                   *
 *           -- Michael Jennings                               *
 *           -- 08 January 1997                                *
 ***************************************************************/
/*
 * This file is original work by Michael Jennings <mej@tcserv.com>.
 *
 * Copyright (C) 1997, Michael Jennings
 *
 * 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 "global.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <malloc.h>
#include <ctype.h>
#include "debug.h"
#include "mem.h"
#define STRINGS_C
#include "strings.h"

/* IRIX seems to be sorely lacking in the memmem() department, so I had to
   write my own. */
#ifdef IRIX

/* Find first occurance of bytestring needle of size needlelen in memory region
   haystack of size haystacklen */
void *
memmem(void *haystack, register size_t haystacklen, void *needle, register size_t needlelen) {

  register char *hs = (char *) haystack;
  register char *n  = (char *) needle;
  register unsigned long i;
  register len = haystacklen - needlelen;

  for (i=0; i < len; i++) {
    if (!memcmp(hs + i, n, needlelen)) {
      return(hs + i);
    }
  }
  return(NULL);
}

#endif

/* Return the leftmost cnt characters of str */
char *
LeftStr(const char *str, unsigned long cnt) {

  char *tmpstr;
  
  tmpstr = (char *) MALLOC(cnt + 1);
  strncpy(tmpstr, str, cnt);
  tmpstr[cnt] = 0;
  return(tmpstr);
}

/* Return cnt characters from str, starting at position index (from 0) */
char *
MidStr(const char *str, unsigned long index, unsigned long cnt) {
  
  char *tmpstr;
  const char *pstr = str;
  
  tmpstr = (char *) MALLOC(cnt + 1);
  pstr += index;
  strncpy(tmpstr, pstr, cnt);
  tmpstr[cnt] = 0;
  return(tmpstr);
}

/* Return the rightmost characters of str */
char *
RightStr(const char *str, unsigned long cnt) {

  char *tmpstr;
  const char *pstr = str;
  
  tmpstr = (char *) MALLOC(cnt + 1);
  pstr += strlen(str);
  pstr -= cnt;
  strcpy(tmpstr, pstr);
  return(tmpstr);
}

/* Returns TRUE if str matches regular expression pattern, FALSE otherwise */
unsigned char 
Match(register const char *str, register const char *pattern) {

  register regex_t *rexp;
  register int result;

#ifndef IRIX
  char errbuf[256];

  rexp = (regex_t *) MALLOC(sizeof(regex_t));
#endif

#ifdef IRIX
  if ((rexp = compile((const char *) pattern, (char *) NULL, (char *) NULL)) == NULL) {
    fprintf(stderr, "Unable to compile regexp %s\n", pattern);
    return(FALSE);
  }
#else
  if ((result = regcomp(rexp, pattern, REG_EXTENDED)) != 0) {
    regerror(result, rexp, errbuf, 256);
    fprintf(stderr, "Unable to compile regexp %s -- %s.\n", pattern, errbuf);
    FREE(rexp);
    return(FALSE);
  }
#endif

#ifdef IRIX
  result = step((const char *) str, rexp);
  FREE(rexp);
  return(result);
#else
  if (((result = regexec(rexp, str, (size_t) 0, (regmatch_t *) NULL, 0))
       != 0) && (result != REG_NOMATCH)) {
    regerror(result, rexp, errbuf, 256);
    fprintf(stderr, "Error testing input string %s -- %s.\n", str, errbuf);
    FREE(rexp);
    return(FALSE);
  }
  FREE(rexp);
  return(!result);     
#endif
}

/* Return malloc'd pointer to index-th word in str.  "..." counts as 1 word. */
char *
Word(unsigned long index, char *str) {

  char *tmpstr;
  char *delim = DEFAULT_DELIM;
  register unsigned long i, j, k;

  k = strlen(str) + 1;
  if ((tmpstr = (char *) MALLOC(k)) == NULL) {
    fprintf(stderr, "Word(%lu, %s):  Unable to allocate memory -- %s.\n",
            index, str, strerror(errno));
    return ((char *) NULL);
  }

  *tmpstr = 0;
  for(i=0, j=0; j < index && str[i]; j++) {
    for(; isspace(str[i]); i++);
    switch (str[i]) {
    case '\"':
      delim = "\"";
      i++;
      break;
    case '\'':
      delim = "\'";
      i++;
      break;
    default:
      delim = DEFAULT_DELIM;
    }
    for(k=0; str[i] && !strchr(delim, str[i]); ) {
      if (str[i] == '\\') {
	if (str[i+1] == '\'' || str[i+1] == '\"') {
	  i++;
	}
      }
      tmpstr[k++] = str[i++];
    }
    switch (str[i]) {
    case '\"':
    case '\'':
      i++;
      break;
    }
    tmpstr[k] = 0;
  }

  if (j != index) {
    FREE(tmpstr);
    dprintf(("Word(%lu, %s) returning NULL.\n", index, str));
    return ((char *) NULL);
  } else {
    tmpstr = (char *) REALLOC(tmpstr, strlen(tmpstr)+1);
    dprintf(("Word(%lu, %s) returning \"%s\".\n", index, str, tmpstr));
    return (tmpstr);
  }
}

/* Return pointer into str to index-th word in str.  "..." counts as 1 word. */
char *
PWord(unsigned long index, char *str) {

  register char *tmpstr = str;
  register unsigned long j;

  if (!str) return ((char *) NULL);
  for (; isspace(*tmpstr) && *tmpstr; tmpstr++);
  for (j=1; j < index && *tmpstr; j++) {
    for (; !isspace(*tmpstr) && *tmpstr; tmpstr++);
    for (; isspace(*tmpstr) && *tmpstr; tmpstr++);
  }

  if (*tmpstr == '\"' || *tmpstr == '\'') {
    tmpstr++;
  }
  if (*tmpstr == '\0') {
    dprintf(("PWord(%lu, %s) returning NULL.\n", index, str));
    return ((char *) NULL);
  } else {
    dprintf(("PWord(%lu, %s) returning \"%s\"\n", index, str, tmpstr));
    return tmpstr;
  }
}

/* Returns the number of words in str, for use with Word() and PWord().  "..." counts as 1 word. */
unsigned long
NumWords(const char *str) {

  register unsigned long cnt=0;
  register const char *s = str;
  char *delim = DEFAULT_DELIM;
  register unsigned long i;

  for(i=0; str[i] && strchr(delim, str[i]); i++);
  for(; str[i]; cnt++) {
    switch (str[i]) {
    case '\"':
      delim = "\"";
      i++;
      break;
    case '\'':
      delim = "\'";
      i++;
      break;
    default:
      delim = DEFAULT_DELIM;
    }
    for(; str[i] && !strchr(delim, str[i]); i++);
    switch (str[i]) {
    case '\"':
    case '\'':
      i++;
      break;
    }
    for(; str[i] && isspace(str[i]); i++);
  }

  dprintf(("NumWords() returning %lu\n", cnt));
  return (cnt);
}

char *
StripWhitespace(register char *str) {
  
  register unsigned long i, j;
  
  if (j = strlen(str)) {
    for (i=j-1; isspace(*(str+i)); i--);
    str[j = i+1] = 0;
    for (i=0; isspace(*(str+i)); i++);
    j -= i;
    memmove(str, str+i, j+1);
    str = (char *) REALLOC(str, strlen(str) +1);
  }
  return (str);
}

char *
LowerStr(char *str) {

  register char *tmp;

  for (tmp = str; *tmp; tmp++) *tmp = tolower(*tmp);
  dprintf(("LowerStr() returning %s\n", str));
  return (str);
}

char *
UpStr(char *str) {

  register char *tmp;

  for (tmp = str; *tmp; tmp++) *tmp = toupper(*tmp);
  dprintf(("UpStr() returning %s\n", str));
  return (str);
}

char *
StrCaseStr(char *haystack, register const char *needle) {

  register char *t;
  register size_t len = strlen(needle);

  for (t = haystack; t && *t; t++) {
    if (!strncasecmp(t, needle, len)) {
      return (t);
    }
  }
  return (NULL);
}

char *
StrCaseChr(char *haystack, register char needle) {

  register char *t;

  for (t = haystack; t && *t; t++) {
    if (tolower(*t) == tolower(needle)) {
      return (t);
    }
  }
  return (NULL);
}

char *
StrCasePBrk(char *haystack, register char *needle) {

  register char *t;

  for (t = haystack; t && *t; t++) {
    if (StrCaseChr(needle, *t)) {
      return (t);
    }
  }
  return (NULL);
}

char *
StrRev(register char *str) {

  register int i, j;

  i = strlen(str);
  for (j=0, i--; i > j; i--, j++) {
    cswap(str[j], str[i]);
  }
  return (str);

}

char *
GarbageCollect(char *buff, size_t len) {

  register char *tbuff = buff, *pbuff = buff;
  register unsigned long i, j;

  dprintf(("Garbage collecting on %lu bytes at %10.8p\n", len, buff));
  for (i=0, j=0; j < len; j++)
    if (pbuff[j]) tbuff[i++] = pbuff[j];
  tbuff[i++] = '\0';
  dprintf(("Garbage collecting gives: \n%s\n", buff));
  return ((char *) REALLOC(buff, sizeof(char) * i));
}

char *
FGarbageCollect(char *buff, size_t len) {

  register char *tbuff = buff, *pbuff = buff;
  char *tmp1, *tmp2;
  register unsigned long j;

  dprintf(("File garbage collecting on %lu bytes at %10.8p\n", len, buff));
  for (j=0; j < len;) {
    switch(pbuff[j]) {
    case '#':
      for (; !strchr("\r\n", pbuff[j]) && j < len; j++)
	pbuff[j] = '\0';  /* First null out the line up to the CR and/or LF */
      for (; strchr("\r\n", pbuff[j]) && j < len; j++)
	pbuff[j] = '\0';  /* Then null out the CR and/or LF */
      break;
    case '\r':
    case '\n':
    case '\f':
    case ' ':
    case '\t':
    case '\v':
      for (; isspace(pbuff[j]) && j < len; j++)
	pbuff[j] = '\0';  /* Null out the whitespace */
      break;
    default:
      /* Find the end of this line and the occurence of the
         next mid-line comment. */
      tmp1 = strpbrk(pbuff+j, "\r\n");
      tmp2 = strstr(pbuff+j, " #");

      /* If either is null, take the non-null one.  Otherwise,
         take the lesser of the two. */
      if (!tmp1 || !tmp2) {
	tbuff = ((tmp1) ? (tmp1) : (tmp2));
      } else {
	tbuff = ((tmp1 < tmp2) ? (tmp1) : (tmp2));
      }

      /* Now let j catch up so that pbuff+j = tbuff; i.e., let
         pbuff[j] refer to the same character that tbuff does */
      j += tbuff - (pbuff + j);

      /* Finally, change whatever is at pbuff[j] to a newline.
       This will accomplish several things at once:
          o It will change a \r to a \n if that's what's there
          o If it's a \n, it'll stay the same.  No biggie.
          o If it's a space, it will end the line there and the
            next line will begin with a comment, which is handled
            above. */
      if (j < len) pbuff[j++] = '\n';

    }
  }

  /* Change all occurances of a backslash followed by a newline to nulls
     and null out all whitespace up to the next non-whitespace character.
     This handles support for breaking a string across multiple lines. */
  for (j=0; j < len; j++) {
    if (pbuff[j] == '\\' && pbuff[j+1] == '\n') {
      pbuff[j++] = '\0';
      for (; isspace(pbuff[j]) && j < len; j++)
	pbuff[j] = '\0';  /* Null out the whitespace */
    }
  }

  /* And the final step, garbage collect the buffer to condense all
     those nulls we just put in. */
  return(GarbageCollect(buff, len));
}

char *
CondenseWhitespace(char *s) {

  register unsigned char gotspc = 0;
  register char *pbuff = s, *pbuff2 = s;

  dprintf(("CondenseWhitespace(%s) called.\n", s));
  for (; *pbuff2; pbuff2++) {
    if (isspace(*pbuff2)) {
      if (!gotspc) {
	*pbuff = ' ';
	gotspc = 1;
	pbuff++;
      }
    } else {
      *pbuff = *pbuff2;
      gotspc = 0;
      pbuff++;
    }
  }
  if ((pbuff >= s) && (isspace(*(pbuff-1)))) pbuff--;
  *pbuff = 0;
  dprintf(("CondenseWhitespace() returning \"%s\"\n", s));
  return (REALLOC(s, strlen(s)+1));
}
	
void
HexDump(void *buff, register size_t count) {

  register unsigned long j, k, l;
  register unsigned char *ptr;
  unsigned char buffr[9];

  fprintf(stderr, " Address |  Size  | Offset  | 00 01 02 03 04 05 06 07 |  ASCII  \n");
  fprintf(stderr, "---------+--------+---------+-------------------------+---------\n");
  for (ptr = (unsigned char *) buff, j=0; j < count; j+=8) {
    fprintf(stderr, " %08x | %06lu | %07X | ", buff, count, j);
    l = ((count-j < 8) ? (count-j) : (8));
    memset(buffr, 0, 9);
    memcpy(buffr, ptr+j, l);
    for (k=0; k < l; k++) {
      fprintf(stderr, "%02.2X ", buffr[k]);
    }
    for (; k < 8; k++) {
      fprintf(stderr, "   ");
    }
    fprintf(stderr, "| %-8s\n", SafeStr((char *) buffr, l));
  }
}