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
|
/*
* This file is part of libmisc, an assortment of code for reuse.
* Modified from compose version 1.0.4.
*
* Copyright (c) 2006-2007 Kevin Daughtridge <kevin@kdau.com>
* Copyright (c) 2002-2004 Ole Laursen <olau@hardworking.dk>
*
* This library 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 3 of the License, or
* (at your option) any later version.
*
* This library 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 library; if not, see <http://www.gnu.org/licenses/>.
*/
#include "ucompose.hh"
namespace compose {
//******************************************************************************
// class UComposition
UComposition::UComposition (const string &fmt_)
: arg_no (1)
{
string::size_type b = 0, i = 0;
string fmt = fmt_;
// fill in output with the strings between the %1 %2 %3 etc.
// and fill in specs with the positions
while (i < fmt.length ())
{
if (fmt[i] == '%' && i + 1 < fmt.length ())
{
if (fmt[i + 1] == '%') // catch %%
fmt.replace (i++, 2, "%");
else if (Glib::Unicode::isdigit (fmt[i + 1])) // aha! a spec!
{
// save string
output.push_back (fmt.substr (b, i - b));
int n = 1; // number of digits
int spec_no = 0;
do
{
spec_no += Glib::Unicode::digit_value (fmt[i + n]);
spec_no *= 10;
++n;
}
while (i + n < fmt.length () &&
Glib::Unicode::isdigit (fmt[i + n]));
spec_no /= 10;
output_list::iterator pos = output.end ();
--pos; // safe since we have just inserted a string
specs.insert (specification_map::value_type (spec_no, pos));
// jump over spec string
i += n;
b = i;
}
else
++i;
}
else
++i;
}
if (i - b > 0) // add the rest of the string
output.push_back (fmt.substr (b, i - b));
}
ustring
UComposition::str () const
{
// assemble string
string result;
for (output_list::const_iterator i = output.begin (), end = output.end ();
i != end; ++i)
result += *i;
return result;
}
UComposition&
UComposition::setf (std::ios_base::fmtflags set)
{
os.setf (set);
return *this;
}
UComposition&
UComposition::unsetf (std::ios_base::fmtflags unset)
{
os.unsetf (unset);
return *this;
}
UComposition&
UComposition::precision (std::streamsize prec)
{
if (prec > 0) os.precision (prec);
return *this;
}
void
UComposition::do_arg (const ustring &rep)
{
if (!rep.empty ()) // manipulators don't produce output
{
for (specification_map::const_iterator i = specs.lower_bound (arg_no),
end = specs.upper_bound (arg_no); i != end; ++i)
{
output_list::iterator pos = i->second;
++pos;
output.insert (pos, rep);
}
os.str (std::wstring ());
//os.clear ();
++arg_no;
}
}
ustring
UComposition::do_stringify (const std::wstring& src)
{
return Glib::convert (string (reinterpret_cast<const char *> (src.data ()),
src.size () * sizeof (wchar_t)), "UTF-8", "WCHAR_T");
}
} // namespace compose
|