File: string.sip

package info (click to toggle)
ball 1.5.0%2Bgit20180813.37fc53c-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 239,888 kB
  • sloc: cpp: 326,149; ansic: 4,208; python: 2,303; yacc: 1,778; lex: 1,099; xml: 958; sh: 322; makefile: 95
file content (215 lines) | stat: -rw-r--r-- 6,042 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
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
class Substring
{
%TypeHeaderCode
	#include <BALL/DATATYPE/string.h>
%End
	public:

	Substring();
	Substring(const Substring&, bool deep = true);
	Substring(const String&, Index from = 0, Size len = String::EndPos);
	~Substring();

	void destroy();
	String toString() const;
	Substring& bind(const String&, int from = 0, int len = String::EndPos);
	Substring& bind(const Substring&, int from = 0, int len = String::EndPos);
	void unbind();

	String* getBoundString();

	void set(const String&);
	void set(const Substring&);
	void set(const char*, Size size = String::EndPos);
	Index getFirstIndex() const;
	Index getLastIndex() const;
	Size size() const;
	char operator [] (Index) const;
%MethodCode
	sipRes = sipCpp->operator [] (*a0);
%End

	Substring& toLower();
	Substring& toUpper();
	bool isBound() const;
	bool isEmpty() const;
	bool operator == (const Substring&) const;
	bool operator != (const Substring&) const;
	bool operator == (const String&) const;
	bool operator != (const String&) const;
	bool operator == (const char*) const;
	bool operator != (const char*) const;
	bool operator == (char) const;
	bool operator != (char) const;
	bool isValid() const;
};

class String
{
%TypeHeaderCode
	#include <BALL/DATATYPE/string.h>
	#include <BALL/DATATYPE/hashMap.h>
	using std::string;
	using std::pair;
%End
	public:

	enum CompareMode
	{
		CASE_SENSITIVE   = 0,
		CASE_INSENSITIVE = 1
	};

	const char* CHARACTER_CLASS__ASCII_ALPHA;
	const char* CHARACTER_CLASS__ASCII_ALPHANUMERIC;
	const char* CHARACTER_CLASS__ASCII_LOWER;
	const char* CHARACTER_CLASS__ASCII_UPPER;
	const char* CHARACTER_CLASS__ASCII_NUMERIC;
	const char* CHARACTER_CLASS__WHITESPACE;

	String();
	String(const String&);
	String(const String&, Index, Size len = String::EndPos)
		throw(NullPointer, IndexOverflow, IndexUnderflow);
	String(const char*)
		throw(NullPointer, IndexOverflow, IndexUnderflow);
	String(const char*, Index)
		throw(NullPointer, IndexOverflow, IndexUnderflow);
	String(const char*, Index, Size)
		throw(NullPointer, IndexOverflow, IndexUnderflow);
	String(double);
	~String();

	void destroy();
	void set(const String&, int from = 0, int len = String::EndPos);
	void set(const char*, int from = 0, int len = String::EndPos);
	void set(long);
	static void setCompareMode(CompareMode);
	static CompareMode getCompareMode();
	bool toBool() const;
	char toChar() const;
	short toShort() const;
	int toInt() const;
	long toLong() const;
	float toFloat() const;
	double toDouble() const;
	void toLower(int from = 0, int len = String::EndPos);
	void toUpper(int from = 0, int len = String::EndPos);
	Substring getSubstring(int from = 0, int len = String::EndPos) const;
	Substring operator () (int, int len = String::EndPos) const;
%MethodCode
	sipRes = new Substring(sipCpp->operator () (a0, a1));
%End

	Substring before(const String&, int from = 0) const;
	Substring through(const String&, int from = 0) const;
	Substring from(const String&, int from = 0) const;
	Substring after(const String&, int from = 0) const;
	Size countFields(const char* delimiters = String::CHARACTER_CLASS__WHITESPACE) const;
	String getField(Index, const char* delimiters = String::CHARACTER_CLASS__WHITESPACE) const;
	String& trimLeft(const char* trimmed = String::CHARACTER_CLASS__WHITESPACE);
	String& trimRight(const char* trimmed_chars = String::CHARACTER_CLASS__WHITESPACE);
	String& trim(const char* trimmed_chars = String::CHARACTER_CLASS__WHITESPACE);
	String& truncate(Size);
	Substring left(Size) const;
	Substring right(Size) const;
	Substring instr(const String&, int from = 0) const;
	String operator + (const String&) const;
	String operator + (const char*) const;
	String operator + (char) const;
	void swap(String&);
	String& reverse(int from = 0, int len = String::EndPos);
	Index substitute(const String&, const String&);
	bool has(char) const;
	bool hasSubstring(const String&, int from = 0) const;
	bool hasPrefix(const String&) const;
	bool hasSuffix(const String&) const;
	bool isEmpty() const;
	bool isAlpha() const;
	bool isAlnum() const;
	bool isDigit() const;
	bool isSpace() const;
	bool isWhitespace() const;
	bool isAlpha(char);
	bool isAlnum(char);
	bool isDigit(char);
	bool isSpace(char);
	bool isWhitespace(char);
	int compare(const String&, int from = 0) const;
	int compare(const String&, int, int) const;
	int compare(const char*, int from = 0) const;
	int compare(const char*, int, int) const;
	int compare(char, int from = 0) const;
	bool operator == (const char*) const;
	bool operator != (const char*) const;
	bool operator < (const char*) const;
	bool operator <= (const char*) const;
	bool operator > (const char*) const;
	bool operator >= (const char*) const;
	bool operator == (char) const;
	bool operator != (char) const;
	bool operator < (char) const;
	bool operator <= (char) const;
	bool operator > (char) const;
	bool operator >= (char) const;
	bool isValid() const;
	int size() const;
	const char* c_str() const;

	long __hash__();
%MethodCode
	boost::hash<String> h;
	sipRes = h(*sipCpp);
%End

	SIP_PYOBJECT __str__();
%MethodCode
	if (sipCpp == 0)
	{
		sipRes = PyString_FromString("");
	}
	else
	{
		sipRes = PyString_FromString(sipCpp->c_str());
	}
%End

	SIP_PYOBJECT __repr__();
%MethodCode
	if (sipCpp == 0)
	{
		sipRes = PyString_FromString("");
	}
	else
	{
		sipRes = PyString_FromString(sipCpp->c_str());
	}
%End

%ConvertToTypeCode
	if (sipIsErr == NULL)
		return (PyString_Check(sipPy) || BALL_IS_SUBCLASS_INSTANCE(sipPy, String));

	if (sipPy == Py_None)
	{
		*sipCppPtr = new String;
		return 1;
	}

	if (PyString_Check(sipPy))
	{
		*sipCppPtr = new String(PyString_AS_STRING(sipPy));
		return 1;
	}

	*sipCppPtr = BALL_CONVERT_TO_CPP(String);
	return 0;
%End
};

bool operator == (const String& s1, const String& s2);
bool operator != (const String& s1, const String& s2);
bool operator <  (const String& s1, const String& s2);
bool operator <= (const String& s1, const String& s2);
bool operator >= (const String& s1, const String& s2);
bool operator >  (const String& s1, const String& s2);