File: stringlist.h

package info (click to toggle)
cdcover 0.9.1-12
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 400 kB
  • sloc: cpp: 3,257; makefile: 91
file content (151 lines) | stat: -rw-r--r-- 4,303 bytes parent folder | download | duplicates (10)
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
/*
    STRINGLIB
	Ulli Meybohm's C++ String Library
	
    Copyright (C) 2000	Ulli Meybohm, www.meybohm.de (ulli@meybohm.de)

    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
*/


#ifndef stringlist_H
#define stringlist_H
#include <vector>
#include <iostream>
#include <stdio.h>

#ifdef STRINGLIB_USE_GLIBC
#include <glob.h>
#include <wordexp.h>
#endif

#include "bytevector.h"

/*Definition of default Line and Field Seperators*/

#ifndef STRINGLIST_FS
#define STRINGLIST_FS ","
#endif
#ifndef STRINGLIST_LS
#define STRINGLIST_LS "\n"
#endif


//class VectorIndexList in "bytevector.h"

class MatrixIndex{
public:
	int x;
	int y;	
	MatrixIndex(){x=0;y=0;};
	MatrixIndex(MatrixIndex &m){ (*this)=m; };
	MatrixIndex(int x, int y) { this->x=x; this->y=y;  };
	MatrixIndex& operator=(MatrixIndex &m) {
	 this->x=m.x; this->y=m.y; return *this;	
	}
};

class MatrixIndexList: public std::vector<MatrixIndex> {
};



class Stringlist : public std::vector<Bytevector*> {
private:
    Stringlist::iterator getID(Bytevector id);
	
public:

	Bytevector lineSeperator; //Default='\n'
    Bytevector fieldSeperator; // Default=','
	
    Stringlist();
    Stringlist(Stringlist &s);
    Stringlist(Stringlist &s, VectorIndexList& itemsToCopy);
    Stringlist(int argc, char *argv[]);
    ~Stringlist(); //Destroys Binaries!

    void copySplit(Bytevector &source, Bytevector lineSeperator);
    void copySplit(Bytevector &source);

    void readfile(int file);
    void writefile(int file);


    void clear();
	void add(int argc,char *argv[]);
	void add(char *c);
	void add(const char *c);  //add copy of *b 	
	void add(Bytevector *b);  //insert *b without making a copy (fast, but little dangerous!)
    void add(Bytevector &b);  //insert copy
    void add(const Bytevector &b);  //insert copy
    void add(Stringlist &s);
    void add(Stringlist &s, VectorIndexList& itemsToAdd);
    void insert(Bytevector *b, int pos);  //takeover *b without copying
    void insert(Bytevector &b, int pos);  //insert copy
    void del(int pos);


#ifdef STRINGLIB_USE_GLIBC

	void glob(Bytevector filenamepattern);
	int wordexpand(Bytevector source);
    VectorIndexList grep(Bytevector regex);
#endif
	
    VectorIndexList fgrep(Bytevector searchstring);   //fast grep without regular expressions
    VectorIndexList findall(Bytevector b); //Returns all "b==Stringlist[i]"
    int find(Bytevector b,int startpos);   //Returns first occurance from startpos of b in Stringlist
	bool includes(Bytevector b);           // b in *this ?


    Bytevector* text();  // uses default line Seperator
    Bytevector* text(Bytevector Seperator);  //uses alternative LineSeperator
	Bytevector toBytevector();
	int totalTextSize(Bytevector seperator);

	

    //Configfile functions, maybe outsourced to derived class later!
    //structure: id=value
	//Can also be used as kind of hashtable (slow!)
    void set(Bytevector id, Bytevector value);
    void set(Bytevector id, const char *value);
    void set(Bytevector id, char *value);
    void set(Bytevector id, int value);
    void set(Bytevector id, bool value);
    Bytevector get(Bytevector id);
    bool getBool(Bytevector id);
    int  getInt(Bytevector id);


	//Functions for commandline-options
	bool option(Bytevector option);
	bool option(Bytevector option, Bytevector longoption);
	Bytevector optionvalue(Bytevector option); // command -option value
	Bytevector optionvalue(Bytevector option, Bytevector longoption); 
	

    void println(); //just for testing!

   	Bytevector& operator[](int i);
   	Bytevector operator()(int line, int field);
   	
   	Stringlist& operator=(Stringlist &s);
};



#endif