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 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
|
#include "config.h"
#include "platform.hh"
#include "sanity.hh"
#include "ui.hh"
#include "transforms.hh"
#include <iostream>
#include <boost/lexical_cast.hpp>
// copyright (C) 2002, 2003 graydon hoare <graydon@pobox.com>
// all rights reserved.
// licensed to the public under the terms of the GNU GPL (>= 2)
// see the file COPYING for details
// this file contains a couple utilities to deal with the user
// interface. the global user_interface object 'ui' owns clog, so no
// writing to it directly!
using namespace std;
using boost::lexical_cast;
struct user_interface ui;
ticker::ticker(string const & tickname, std::string const & s, size_t mod) :
ticks(0),
mod(mod),
name(tickname),
shortname(s)
{
I(ui.tickers.find(tickname) == ui.tickers.end());
ui.tickers.insert(make_pair(tickname,this));
}
ticker::~ticker()
{
I(ui.tickers.find(name) != ui.tickers.end());
if (ui.some_tick_is_dirty)
{
ui.write_ticks();
}
ui.tickers.erase(name);
ui.finish_ticking();
}
void
ticker::operator++()
{
I(ui.tickers.find(name) != ui.tickers.end());
ticks++;
ui.some_tick_is_dirty = true;
if (ticks % mod == 0)
ui.write_ticks();
}
void
ticker::operator+=(size_t t)
{
I(ui.tickers.find(name) != ui.tickers.end());
size_t old = ticks;
ticks += t;
if (t != 0)
{
ui.some_tick_is_dirty = true;
if (ticks % mod == 0 || (ticks / mod) > (old / mod))
ui.write_ticks();
}
}
tick_write_count::tick_write_count() : last_tick_len(0)
{
}
tick_write_count::~tick_write_count()
{
}
void tick_write_count::write_ticks()
{
string tickline = "\rmonotone: ";
for (map<string,ticker *>::const_iterator i = ui.tickers.begin();
i != ui.tickers.end(); ++i)
{
tickline +=
string("[")
+ i->first + ": " + lexical_cast<string>(i->second->ticks)
+ "] ";
}
tickline += ui.tick_trailer;
size_t curr_sz = tickline.size();
if (curr_sz < last_tick_len)
tickline += string(last_tick_len - curr_sz, ' ');
last_tick_len = curr_sz;
clog << tickline;
clog.flush();
}
tick_write_dot::tick_write_dot()
{
}
tick_write_dot::~tick_write_dot()
{
}
void tick_write_dot::write_ticks()
{
string tickline1, tickline2;
bool first_tick = true;
if (ui.last_write_was_a_tick)
{
tickline1 = "";
tickline2 = "";
}
else
{
tickline1 = "monotone: ticks: ";
tickline2 = "\nmonotone: ";
}
for (map<string,ticker *>::const_iterator i = ui.tickers.begin();
i != ui.tickers.end(); ++i)
{
map<string,size_t>::const_iterator old = last_ticks.find(i->first);
if (!ui.last_write_was_a_tick)
{
if (!first_tick)
tickline1 += ", ";
tickline1 +=
i->second->shortname + "=\"" + i->second->name + "\""
+ "/" + lexical_cast<string>(i->second->mod);
first_tick = false;
}
if (old == last_ticks.end()
|| ((i->second->ticks / i->second->mod)
> (old->second / i->second->mod)))
{
tickline2 += i->second->shortname;
if (old == last_ticks.end())
last_ticks.insert(make_pair(i->first, i->second->ticks));
else
last_ticks[i->first] = i->second->ticks;
}
}
clog << tickline1 << tickline2;
clog.flush();
}
user_interface::user_interface() :
last_write_was_a_tick(false),
t_writer(0)
{
clog.sync_with_stdio(false);
clog.unsetf(ios_base::unitbuf);
if (have_smart_terminal())
set_tick_writer(new tick_write_count);
else
set_tick_writer(new tick_write_dot);
}
user_interface::~user_interface()
{
delete t_writer;
}
void
user_interface::finish_ticking()
{
if (tickers.size() == 0 &&
last_write_was_a_tick)
{
tick_trailer = "";
clog << endl;
last_write_was_a_tick = false;
}
}
void
user_interface::set_tick_trailer(string const & t)
{
tick_trailer = t;
}
void
user_interface::set_tick_writer(tick_writer * t)
{
if (t_writer != 0)
delete t_writer;
t_writer = t;
}
void
user_interface::write_ticks()
{
t_writer->write_ticks();
last_write_was_a_tick = true;
some_tick_is_dirty = false;
}
void
user_interface::warn(string const & warning)
{
if (issued_warnings.find(warning) == issued_warnings.end())
inform("warning: " + warning);
issued_warnings.insert(warning);
}
void
user_interface::fatal(string const & fatal)
{
inform("fatal: " + fatal);
inform("this is almost certainly a bug in monotone.\n");
inform("please send this error message, the output of 'monotone --full-version',\n");
inform("and a description of what you were doing to " PACKAGE_BUGREPORT ".\n");
}
static inline string
sanitize(string const & line)
{
// FIXME: you might want to adjust this if you're using a charset
// which has safe values in the sub-0x20 range. ASCII, UTF-8,
// and most ISO8859-x sets do not.
string tmp;
tmp.reserve(line.size());
for (size_t i = 0; i < line.size(); ++i)
{
if ((line[i] == '\n')
|| (line[i] >= static_cast<char>(0x20)
&& line[i] != static_cast<char>(0x7F)))
tmp += line[i];
else
tmp += ' ';
}
return tmp;
}
void
user_interface::ensure_clean_line()
{
if (last_write_was_a_tick)
{
write_ticks();
clog << endl;
}
last_write_was_a_tick = false;
}
void
user_interface::inform(string const & line)
{
string prefixedLine;
prefix_lines_with("monotone: ", line, prefixedLine);
ensure_clean_line();
clog << sanitize(prefixedLine) << endl;
clog.flush();
}
|