Remove last vestiges of SeparationItem.
[lilypond/mpolesky.git] / flower / std-string.cc
blobc309483cd8306ef3e679b16bf8770f4c82ce8ace
1 /*
2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 2006--2010 Jan Nieuwenhuizen <janneke@gnu.org>
6 LilyPond is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 LilyPond is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
20 #include "std-string.hh"
21 #include "string-convert.hh"
23 string
24 to_string (string s)
26 return s;
29 string
30 to_string (char c, int n)
32 return string (max (n, 0), c);
35 string
36 to_string (double f, char const *format)
38 return String_convert::double_string (f, format);
41 string
42 to_string (int i, char const *format)
44 return String_convert::int_string (i, format);
47 string
48 to_string (bool b)
50 return String_convert::bool_string (b);
53 string
54 to_string (long b)
56 return String_convert::long_string (b);
59 string
60 to_string (long unsigned b)
62 return String_convert::unsigned_string (b);
65 string
66 to_string (unsigned u)
68 return String_convert::unsigned_string (u);
71 string
72 to_string (I64 b, char const *format)
74 return String_convert::i64_string (b, format);
77 string
78 to_string (char const *format, ...)
80 va_list args;
81 va_start (args, format);
82 string str = String_convert::vform_string (format, args);
83 va_end (args);
84 return str;
88 TODO: this O(n^2) in #occurences of find, due to repeated copying.
90 string &
91 replace_all (string *str, string const &find, string const &replace)
93 ssize len = find.length ();
94 ssize replen = replace.length ();
95 for (ssize i = str->find (find); i != NPOS; i = str->find (find, i + replen))
96 *str = str->replace (i, len, replace);
97 return *str;
100 string &
101 replace_all (string *str, char find, char replace)
103 for (ssize i = str->find (find); i != NPOS; i = str->find (find, i + 1))
104 (*str)[i] = replace;
105 return *str;
108 char *
109 string_copy (string s)
111 ssize len = s.length ();
112 char *dest = new char[len + 1];
113 copy (s.begin (), s.end (), dest);
114 dest[len] = 0;
116 return dest;
120 string_compare (string const &a, string const &b)
122 return a.compare (b);
125 #include "std-vector.hh"
127 vector<string>
128 string_split (string str, char c)
130 ssize i = str.find (c);
132 vector<string> a;
133 while (i != NPOS)
135 string s = str.substr (0, i);
136 a.push_back (s);
137 i ++;
138 str = str.substr (i);
139 i = str.find (c);
141 if (str.length ())
142 a.push_back (str);
143 return a;
146 string
147 string_join (vector<string> const &strs, string infix)
149 string result;
150 for (vsize i = 0; i < strs.size (); i ++)
152 if (i)
153 result += infix;
154 result += strs[i];
157 return result;