File: tstring.cc

package info (click to toggle)
gps 1.1.0-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,024 kB
  • ctags: 1,006
  • sloc: cpp: 11,581; sh: 381; makefile: 316; ansic: 227; perl: 17
file content (102 lines) | stat: -rw-r--r-- 2,120 bytes parent folder | download | duplicates (4)
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
/* $Id: tstring.cc,v 1.6 2000/02/20 21:45:37 bergo Exp $ */

/*

    GPS - Graphical Process Statistics
    Copyright (C) 1999-2000 Felipe Paulo Guazzi Bergo
    bergo@seul.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 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 <stdio.h>
#include <string.h>
#include <gtk/gtk.h>
#include "tstring.h"

TString::TString(int l) {
  initl=l;
  data=(char *)g_malloc0(initl);
  dtoken=data;
}

TString::TString(char *s) {
  initl=strlen(s)+1;
  data=(char *)g_malloc0(initl);
  strcpy(data,s);
  dtoken=data;
}

TString::~TString() {
  g_free(data);
}

char * TString::contains(char *t) {
  return(strstr(data,t));
}

char * TString::token(char *t) {
  char *p,*m,*at;

  m=data+initl;

  for(p=dtoken;p<m;p++) {
    if (strchr(t,p[0])==NULL)
      break;
  }
  if (p==m) { return NULL; }

  at=p;
  for(p=at;p<m;p++) {
    if ((p[0]==0)||(strchr(t,p[0])!=NULL)) {
      p[0]=0;
      dtoken=&p[1];
      return at;
    }
  }
  return NULL;
}

char *TString::advance(char *t) {
  char *p,*m;

  m=data+initl;

  for(p=dtoken;p<m;p++) {
    if (strchr(t,p[0])!=NULL)
      break;
  }
  p++;
  if (p>=m) { return NULL; }
  dtoken=p;
  return p;
}
/* advances token position until
   next occurence of a character in t 
   
   e.g.: in "foo bar !give me!" 
   advance("!") will return
   the string suffix
   
   "give me!"
*/

void TString::set(char *s) {
  memset(data,0,initl);
  strncpy(data,s,initl=strlen(s));
  initl++;
  dtoken=data;
}