]> git.donarmstrong.com Git - lilypond.git/blob - flower/include/string.hh
b3f08e6738966ce511f3dcc59d5b9c6923d18004
[lilypond.git] / flower / include / string.hh
1 /*
2
3   FILE   : string.hh -- declare String
4  
5   Rehacked by HWN 3/nov/95
6   removed String & 's
7   introduced Class String_handle
8  */
9
10 #ifndef STRING_HH
11 #define STRING_HH
12
13
14 // too darn slow with gcc3
15 #ifdef STREAM_SUPPORT
16 #if ( __GNUC__ > 2 )
17 #include <iostream>
18 #else
19 class ostream;
20 #endif
21 #endif
22
23 #include "arithmetic-operator.hh"
24 #include "string-handle.hh"
25
26 /** 
27  
28   Intuitive string class. provides 
29 \begin{itemize}
30 \item
31   ref counting through #String_handle#
32 \item
33   conversion from bool, int, double, char* , char.  
34 \item
35   to be moved to String_convert:
36   conversion to int, upcase, downcase 
37
38 \item
39   printable. 
40
41 \item
42   indexing (index_i, index_any_i, last_index_i)
43
44 \item
45   cutting (left_string, right_string, mid_string)
46
47 \item
48   concat (+=, +)
49
50 \item
51   signed comparison (<, >, ==, etc)
52
53 \item
54   No operator[] is provided, since this would be enormously  slow. If needed,
55   convert to char const* .
56 \end{itemize}
57
58 */
59 class String
60 {
61 protected:
62   String_handle strh_; 
63
64   bool null_terminated ();
65     
66 public:
67
68   /** init to empty string. This is needed because other
69     constructors are provided.*/
70   String ();
71
72   /// String s = "abc";
73   String (char const* source); 
74   String (Byte const* byte, int length_i);
75
76   ///  return "new"-ed copy of contents
77   Byte* get_copy_byte () const;
78   char* get_copy_str0 () const;
79
80   char const* to_str0 () const;
81   Byte const* to_bytes () const;
82   char *get_str0 ();
83   Byte *get_bytes ();
84
85   String &operator = (String const & source);
86
87   /// concatenate s
88   void operator += (char const* s) { strh_ += s; }
89   void operator += (String s);
90
91   bool is_empty () const;
92
93   void append (String);
94   void prepend (String);
95
96   /**
97     Return a char.  UNSAFE because it may change strlen () result
98    */
99   char &operator [] (int n);
100   char operator [] (int n) const;
101
102   /// return n leftmost chars
103   String left_string (int n) const;
104
105   /// return n rightmost chars
106   String right_string (int n) const;
107
108   /// return the "esrever" of *this
109   void reverse ();
110
111   /// return a piece starting at index (first char = index_i 0), length n
112   String cut_string (int index_i, int n) const;
113
114   /// cut out a middle piece, return remainder
115   String nomid_string (int index_i, int n) const;
116
117   /// signed comparison,  analogous to memcmp;
118   static int compare (String const & s1,const  String& s2);
119         
120   /// index of rightmost c 
121   int index_last (char c) const;
122
123   /// index of rightmost element of string (???)
124   int index_last (char const* string) const;
125
126   int index (char c) const;
127
128   /// index of leftmost occurance of STRING
129   int index (String) const;
130
131
132   int index_any (String) const;
133
134   void to_upper ();
135   void to_lower ();
136
137 #ifdef STREAM_SUPPORT
138   /// provide Stream output
139   void print_on (ostream& os) const;
140 #endif
141   
142   /// the length of the string
143   int length () const;
144
145   /// convert to an integer
146   int to_int () const;
147
148   /// convert to a double
149   double to_double () const;
150
151   void substitute_char (char text, String sub);
152 };
153
154 /*
155  better to clutter global namespace, than suffer *ugh, ugh, ugh*
156  implicit conversions.
157
158  it might be cool to have no type-checking at all in a language,
159  but once there is, having this silently circumvented is a nightmare.
160
161  whenever implicit conversions seem necessary (e.g. operator << ()),
162  use Scalar as the generic type iso String.
163  */
164
165 /// for completeness (=handy)
166 inline String to_string (String s) { return s; }
167 /// "cccc"
168 String to_string (char c, int n = 1);
169 String to_string (int i, char const* format = 0);
170 String to_string (double f, char const* format = 0);
171 String to_string (long  b);
172 String to_string (bool b);
173 String to_string (char const* format, ... );
174
175 /*
176   technically incorrect, but lets keep it here: this is a
177   catch all place for this stuff.
178   */
179   
180 #include "international.hh"
181
182
183 #include "compare.hh"
184 INSTANTIATE_COMPARE (String const &, String::compare);
185
186 #ifdef STRING_UTILS_INLINED
187 #ifndef INLINE
188 #define INLINE inline
189 #endif
190 #include "string.icc"
191 /* we should be resetting INLINE. oh well. */
192 #endif
193
194
195 // because char const* also has an operator ==, this is for safety:
196 inline bool operator== (String s1, char const* s2)
197 {
198   return s1 == String (s2);
199 }
200 inline bool operator== (char const* s1, String s2)
201 {
202   return String (s1)==s2;
203 }
204 inline bool operator!= (String s1, char const* s2 ) {
205   return s1!=String (s2);
206 }
207 inline bool operator!= (char const* s1,String s2) {
208   return String (s2) !=s1;
209 }
210
211 IMPLEMENT_ARITHMETIC_OPERATOR (String, +);
212 #ifdef STREAM_SUPPORT
213 ostream &operator << (ostream& os, String d);
214 #endif
215
216 #endif