]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/tstring.tex
fix typo
[wxWidgets.git] / docs / latex / wx / tstring.tex
CommitLineData
a660d684
KB
1\section{wxString overview}\label{wxstringoverview}
2
9e2be6f0 3Classes: \helpref{wxString}{wxstring}, \helpref{wxArrayString}{wxarraystring}, \helpref{wxStringTokenizer}{wxstringtokenizer}
a660d684 4
6d06e061 5\subsection{Introduction}\label{introductiontowxstring}
99f09bc1 6
532372a3
JS
7wxString is a class which represents a character string of arbitrary length (limited by
8{\it MAX\_INT} which is usually 2147483647 on 32 bit machines) and containing
e2101186
MB
9arbitrary characters. The ASCII NUL character is allowed, but be aware that
10in the current string implementation some methods might not work correctly
11in this case.
99f09bc1 12
2b5f62a0
VZ
13wxString works with both ASCII (traditional, 7 or 8 bit, characters) as well as
14Unicode (wide characters) strings.
99f09bc1 15
532372a3 16This class has all the standard operations you can expect to find in a string class:
f6bcfd97 17dynamic memory management (string extends to accommodate new characters),
99f09bc1 18construction from other strings, C strings and characters, assignment operators,
532372a3 19access to individual characters, string concatenation and comparison, substring
99f09bc1
VZ
20extraction, case conversion, trimming and padding (with spaces), searching and
21replacing and both C-like \helpref{Printf()}{wxstringprintf} and stream-like
532372a3
JS
22insertion functions as well as much more - see \helpref{wxString}{wxstring}
23for a list of all functions.
99f09bc1 24
6d06e061 25\subsection{Comparison of wxString to other string classes}\label{otherstringclasses}
99f09bc1
VZ
26
27The advantages of using a special string class instead of working directly with
532372a3
JS
28C strings are so obvious that there is a huge number of such classes available.
29The most important advantage is the need to always
ed93168b
VZ
30remember to allocate/free memory for C strings; working with fixed size buffers almost
31inevitably leads to buffer overflows. At last, C++ has a standard string class
32(std::string). So why the need for wxString?
99f09bc1
VZ
33
34There are several advantages:
35
36\begin{enumerate}\itemsep=0pt
40b480c3 37\item {\bf Efficiency} This class was made to be as efficient as possible: both
532372a3
JS
38in terms of size (each wxString objects takes exactly the same space as a {\it
39char *} pointer, sing \helpref{reference counting}{wxstringrefcount}) and speed.
99f09bc1
VZ
40It also provides performance \helpref{statistics gathering code}{wxstringtuning}
41which may be enabled to fine tune the memory allocation strategy for your
40b480c3
JS
42particular application - and the gain might be quite big.
43\item {\bf Compatibility} This class tries to combine almost full compatibility
fc2171bd 44with the old wxWidgets 1.xx wxString class, some reminiscence to MFC CString
532372a3 45class and 90\% of the functionality of std::string class.
40b480c3 46\item {\bf Rich set of functions} Some of the functions present in wxString are
99f09bc1
VZ
47very useful but don't exist in most of other string classes: for example,
48\helpref{AfterFirst}{wxstringafterfirst},
fd34e3a5 49\helpref{BeforeLast}{wxstringbeforelast}, \helpref{operator<<}{wxstringoperatorout}
99f09bc1 50or \helpref{Printf}{wxstringprintf}. Of course, all the standard string
40b480c3 51operations are supported as well.
2b5f62a0
VZ
52\item {\bf Unicode} wxString is Unicode friendly: it allows to easily convert
53to and from ANSI and Unicode strings in any build mode (see the
54\helpref{Unicode overview}{unicode} for more details) and maps to either
55{\tt string} or {\tt wstring} transparently depending on the current mode.
fc2171bd
JS
56\item {\bf Used by wxWidgets} And, of course, this class is used everywhere
57inside wxWidgets so there is no performance loss which would result from
99f09bc1 58conversions of objects of any other string class (including std::string) to
fc2171bd 59wxString internally by wxWidgets.
99f09bc1
VZ
60\end{enumerate}
61
62However, there are several problems as well. The most important one is probably
63that there are often several functions to do exactly the same thing: for
64example, to get the length of the string either one of
f6bcfd97
BP
65length(), \helpref{Len()}{wxstringlen} or
66\helpref{Length()}{wxstringlength} may be used. The first function, as almost
99f09bc1 67all the other functions in lowercase, is std::string compatible. The second one
fc2171bd 68is "native" wxString version and the last one is wxWidgets 1.xx way. So the
99f09bc1
VZ
69question is: which one is better to use? And the answer is that:
70
71{\bf The usage of std::string compatible functions is strongly advised!} It will
72both make your code more familiar to other C++ programmers (who are supposed to
73have knowledge of std::string but not of wxString), let you reuse the same code
fc2171bd
JS
74in both wxWidgets and other programs (by just typedefing wxString as std::string
75when used outside wxWidgets) and by staying compatible with future versions of
76wxWidgets which will probably start using std::string sooner or later too.
99f09bc1 77
f6bcfd97 78In the situations where there is no corresponding std::string function, please
fc2171bd 79try to use the new wxString methods and not the old wxWidgets 1.xx variants
532372a3 80which are deprecated and may disappear in future versions.
99f09bc1 81
40b480c3 82\subsection{Some advice about using wxString}\label{wxstringadvices}
99f09bc1 83
40b480c3 84Probably the main trap with using this class is the implicit conversion operator to
99f09bc1 85{\it const char *}. It is advised that you use \helpref{c\_str()}{wxstringcstr}
532372a3 86instead to clearly indicate when the conversion is done. Specifically, the
99f09bc1
VZ
87danger of this implicit conversion may be seen in the following code fragment:
88
89\begin{verbatim}
99f09bc1
VZ
90// this function converts the input string to uppercase, output it to the screen
91// and returns the result
92const char *SayHELLO(const wxString& input)
93{
94 wxString output = input.Upper();
95
96 printf("Hello, %s!\n", output);
97
98 return output;
99}
99f09bc1
VZ
100\end{verbatim}
101
40b480c3 102There are two nasty bugs in these three lines. First of them is in the call to the
99f09bc1 103{\it printf()} function. Although the implicit conversion to C strings is applied
40b480c3 104automatically by the compiler in the case of
99f09bc1
VZ
105
106\begin{verbatim}
107 puts(output);
108\end{verbatim}
109
40b480c3
JS
110because the argument of {\it puts()} is known to be of the type {\it const char *},
111this is {\bf not} done for {\it printf()} which is a function with variable
99f09bc1
VZ
112number of arguments (and whose arguments are of unknown types). So this call may
113do anything at all (including displaying the correct string on screen), although
114the most likely result is a program crash. The solution is to use
115\helpref{c\_str()}{wxstringcstr}: just replace this line with
116
117\begin{verbatim}
118 printf("Hello, %s!\n", output.c_str());
119\end{verbatim}
120
121The second bug is that returning {\it output} doesn't work. The implicit cast is
122used again, so the code compiles, but as it returns a pointer to a buffer
123belonging to a local variable which is deleted as soon as the function exits,
124its contents is totally arbitrary. The solution to this problem is also easy:
532372a3 125just make the function return wxString instead of a C string.
99f09bc1
VZ
126
127This leads us to the following general advice: all functions taking string
128arguments should take {\it const wxString\&} (this makes assignment to the
129strings inside the function faster because of
130\helpref{reference counting}{wxstringrefcount}) and all functions returning
131strings should return {\it wxString} - this makes it safe to return local
132variables.
133
6d06e061 134\subsection{Other string related functions and classes}\label{relatedtostring}
99f09bc1 135
7ae8ee14
VZ
136As most programs use character strings, the standard C library provides quite
137a few functions to work with them. Unfortunately, some of them have rather
138counter-intuitive behaviour (like strncpy() which doesn't always terminate the
139resulting string with a NULL) and are in general not very safe (passing NULL
140to them will probably lead to program crash). Moreover, some very useful
141functions are not standard at all. This is why in addition to all wxString
142functions, there are also a few global string functions which try to correct
143these problems: \helpref{wxIsEmpty()}{wxisempty} verifies whether the string
cc81d32f 144is empty (returning {\tt true} for {\tt NULL} pointers),
7ae8ee14
VZ
145\helpref{wxStrlen()}{wxstrlen} also handles NULLs correctly and returns 0 for
146them and \helpref{wxStricmp()}{wxstricmp} is just a platform-independent
147version of case-insensitive string comparison function known either as
148stricmp() or strcasecmp() on different platforms.
99f09bc1 149
378b05f7
VZ
150The {\tt <wx/string.h>} header also defines \helpref{wxSnprintf}{wxsnprintf}
151and \helpref{wxVsnprintf}{wxvsnprintf} functions which should be used instead
152of the inherently dangerous standard {\tt sprintf()} and which use {\tt
153snprintf()} instead which does buffer size checks whenever possible. Of
154course, you may also use \helpref{wxString::Printf}{wxstringprintf} which is
155also safe.
156
99f09bc1
VZ
157There is another class which might be useful when working with wxString:
158\helpref{wxStringTokenizer}{wxstringtokenizer}. It is helpful when a string must
40b480c3 159be broken into tokens and replaces the standard C library {\it
99f09bc1
VZ
160strtok()} function.
161
9e2be6f0 162And the very last string-related class is \helpref{wxArrayString}{wxarraystring}: it
40b480c3 163is just a version of the "template" dynamic array class which is specialized to work
532372a3
JS
164with strings. Please note that this class is specially optimized (using its
165knowledge of the internal structure of wxString) for storing strings and so it is
166vastly better from a performance point of view than a wxObjectArray of wxStrings.
99f09bc1
VZ
167
168\subsection{Reference counting and why you shouldn't care about it}\label{wxstringrefcount}
169
a91225b2
RR
170All considerations for wxObject-derived \helpref{reference counted}{trefcount} objects
171are valid also for wxString, even if it does not derive from wxObject.
99f09bc1
VZ
172
173Probably the unique case when you might want to think about reference
174counting is when a string character is taken from a string which is not a
175constant (or a constant reference). In this case, due to C++ rules, the
176"read-only" {\it operator[]} (which is the same as
ed93168b 177\helpref{GetChar()}{wxstringgetchar}) cannot be chosen and the "read/write"
99f09bc1
VZ
178{\it operator[]} (the same as
179\helpref{GetWritableChar()}{wxstringgetwritablechar}) is used instead. As the
180call to this operator may modify the string, its data is unshared (COW is done)
181and so if the string was really shared there is some performance loss (both in
182terms of speed and memory consumption). In the rare cases when this may be
183important, you might prefer using \helpref{GetChar()}{wxstringgetchar} instead
532372a3
JS
184of the array subscript operator for this reasons. Please note that
185\helpref{at()}{wxstringat} method has the same problem as the subscript operator in
99f09bc1
VZ
186this situation and so using it is not really better. Also note that if all
187string arguments to your functions are passed as {\it const wxString\&} (see the
40b480c3 188section \helpref{Some advice}{wxstringadvices}) this situation will almost
99f09bc1
VZ
189never arise because for constant references the correct operator is called automatically.
190
191\subsection{Tuning wxString for your application}\label{wxstringtuning}
192
193\normalbox{{\bf Note:} this section is strictly about performance issues and is
194absolutely not necessary to read for using wxString class. Please skip it unless
195you feel familiar with profilers and relative tools. If you do read it, please
196also read the preceding section about
ed93168b 197\helpref{reference counting}{wxstringrefcount}.}
99f09bc1
VZ
198
199For the performance reasons wxString doesn't allocate exactly the amount of
200memory needed for each string. Instead, it adds a small amount of space to each
532372a3 201allocated block which allows it to not reallocate memory (a relatively
99f09bc1
VZ
202expensive operation) too often as when, for example, a string is constructed by
203subsequently adding one character at a time to it, as for example in:
204
205\begin{verbatim}
99f09bc1
VZ
206// delete all vowels from the string
207wxString DeleteAllVowels(const wxString& original)
208{
209 wxString result;
210
211 size_t len = original.length();
212 for ( size_t n = 0; n < len; n++ )
213 {
214 if ( strchr("aeuio", tolower(original[n])) == NULL )
215 result += original[n];
216 }
217
218 return result;
219}
99f09bc1
VZ
220\end{verbatim}
221
40b480c3 222This is quite a common situation and not allocating extra memory at all would
99f09bc1
VZ
223lead to very bad performance in this case because there would be as many memory
224(re)allocations as there are consonants in the original string. Allocating too
225much extra memory would help to improve the speed in this situation, but due to
226a great number of wxString objects typically used in a program would also
227increase the memory consumption too much.
228
229The very best solution in precisely this case would be to use
230\helpref{Alloc()}{wxstringalloc} function to preallocate, for example, len bytes
231from the beginning - this will lead to exactly one memory allocation being
232performed (because the result is at most as long as the original string).
233
234However, using Alloc() is tedious and so wxString tries to do its best. The
235default algorithm assumes that memory allocation is done in granularity of at
236least 16 bytes (which is the case on almost all of wide-spread platforms) and so
237nothing is lost if the amount of memory to allocate is rounded up to the next
238multiple of 16. Like this, no memory is lost and 15 iterations from 16 in the
239example above won't allocate memory but use the already allocated pool.
240
241The default approach is quite conservative. Allocating more memory may bring
242important performance benefits for programs using (relatively) few very long
243strings. The amount of memory allocated is configured by the setting of {\it
244EXTRA\_ALLOC} in the file string.cpp during compilation (be sure to understand
245why its default value is what it is before modifying it!). You may try setting
246it to greater amount (say twice nLen) or to 0 (to see performance degradation
247which will follow) and analyse the impact of it on your program. If you do it,
248you will probably find it helpful to also define WXSTRING\_STATISTICS symbol
249which tells the wxString class to collect performance statistics and to show
250them on stderr on program termination. This will show you the average length of
251strings your program manipulates, their average initial length and also the
252percent of times when memory wasn't reallocated when string concatenation was
f6bcfd97 253done but the already preallocated memory was used (this value should be about
99f09bc1
VZ
25498\% for the default allocation policy, if it is less than 90\% you should
255really consider fine tuning wxString for your application).
256
257It goes without saying that a profiler should be used to measure the precise
258difference the change to EXTRA\_ALLOC makes to your program.
bd0df01f 259