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 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
|
#include <config.h>
#include <apt-pkg/configuration.h>
#include <apt-pkg/fileutl.h>
#include <apt-pkg/strutl.h>
#include <apt-pkg/install-progress.h>
#include <signal.h>
#include <unistd.h>
#include <iostream>
#include <string>
#include <vector>
#include <sys/ioctl.h>
#include <sstream>
#include <fcntl.h>
#include <algorithm>
#include <stdio.h>
#include <apti18n.h>
namespace APT {
namespace Progress {
/* Return a APT::Progress::PackageManager based on the global
* apt configuration (i.e. APT::Status-Fd and APT::Status-deb822-Fd)
*/
PackageManager* PackageManagerProgressFactory()
{
// select the right progress
int status_fd = _config->FindI("APT::Status-Fd", -1);
int status_deb822_fd = _config->FindI("APT::Status-deb822-Fd", -1);
APT::Progress::PackageManager *progress = NULL;
if (status_deb822_fd > 0)
progress = new APT::Progress::PackageManagerProgressDeb822Fd(
status_deb822_fd);
else if (status_fd > 0)
progress = new APT::Progress::PackageManagerProgressFd(status_fd);
else if(_config->FindB("Dpkg::Progress-Fancy", false) == true)
progress = new APT::Progress::PackageManagerFancy();
else if (_config->FindB("Dpkg::Progress",
_config->FindB("DpkgPM::Progress", false)) == true)
progress = new APT::Progress::PackageManagerText();
else
progress = new APT::Progress::PackageManager();
return progress;
}
bool PackageManager::StatusChanged(std::string /*PackageName*/,
unsigned int StepsDone,
unsigned int TotalSteps,
std::string /*HumanReadableAction*/)
{
int reporting_steps = _config->FindI("DpkgPM::Reporting-Steps", 1);
percentage = StepsDone/(float)TotalSteps * 100.0;
strprintf(progress_str, _("Progress: [%3i%%]"), (int)percentage);
if(percentage < (last_reported_progress + reporting_steps))
return false;
return true;
}
PackageManagerProgressFd::PackageManagerProgressFd(int progress_fd)
: StepsDone(0), StepsTotal(1)
{
OutStatusFd = progress_fd;
}
void PackageManagerProgressFd::WriteToStatusFd(std::string s)
{
if(OutStatusFd <= 0)
return;
FileFd::Write(OutStatusFd, s.c_str(), s.size());
}
void PackageManagerProgressFd::StartDpkg()
{
if(OutStatusFd <= 0)
return;
// FIXME: use SetCloseExec here once it taught about throwing
// exceptions instead of doing _exit(100) on failure
fcntl(OutStatusFd,F_SETFD,FD_CLOEXEC);
// send status information that we are about to fork dpkg
std::ostringstream status;
status << "pmstatus:dpkg-exec:"
<< (StepsDone/float(StepsTotal)*100.0)
<< ":" << _("Running dpkg")
<< std::endl;
WriteToStatusFd(status.str());
}
APT_CONST void PackageManagerProgressFd::Stop()
{
}
void PackageManagerProgressFd::Error(std::string PackageName,
unsigned int StepsDone,
unsigned int TotalSteps,
std::string ErrorMessage)
{
std::ostringstream status;
status << "pmerror:" << PackageName
<< ":" << (StepsDone/float(TotalSteps)*100.0)
<< ":" << ErrorMessage
<< std::endl;
WriteToStatusFd(status.str());
}
void PackageManagerProgressFd::ConffilePrompt(std::string PackageName,
unsigned int StepsDone,
unsigned int TotalSteps,
std::string ConfMessage)
{
std::ostringstream status;
status << "pmconffile:" << PackageName
<< ":" << (StepsDone/float(TotalSteps)*100.0)
<< ":" << ConfMessage
<< std::endl;
WriteToStatusFd(status.str());
}
bool PackageManagerProgressFd::StatusChanged(std::string PackageName,
unsigned int xStepsDone,
unsigned int xTotalSteps,
std::string pkg_action)
{
StepsDone = xStepsDone;
StepsTotal = xTotalSteps;
// build the status str
std::ostringstream status;
status << "pmstatus:" << StringSplit(PackageName, ":")[0]
<< ":" << (StepsDone/float(StepsTotal)*100.0)
<< ":" << pkg_action
<< std::endl;
WriteToStatusFd(status.str());
if(_config->FindB("Debug::APT::Progress::PackageManagerFd", false) == true)
std::cerr << "progress: " << PackageName << " " << xStepsDone
<< " " << xTotalSteps << " " << pkg_action
<< std::endl;
return true;
}
PackageManagerProgressDeb822Fd::PackageManagerProgressDeb822Fd(int progress_fd)
: StepsDone(0), StepsTotal(1)
{
OutStatusFd = progress_fd;
}
void PackageManagerProgressDeb822Fd::WriteToStatusFd(std::string s)
{
FileFd::Write(OutStatusFd, s.c_str(), s.size());
}
void PackageManagerProgressDeb822Fd::StartDpkg()
{
// FIXME: use SetCloseExec here once it taught about throwing
// exceptions instead of doing _exit(100) on failure
fcntl(OutStatusFd,F_SETFD,FD_CLOEXEC);
// send status information that we are about to fork dpkg
std::ostringstream status;
status << "Status: " << "progress" << std::endl
<< "Percent: " << (StepsDone/float(StepsTotal)*100.0) << std::endl
<< "Message: " << _("Running dpkg") << std::endl
<< std::endl;
WriteToStatusFd(status.str());
}
APT_CONST void PackageManagerProgressDeb822Fd::Stop()
{
}
void PackageManagerProgressDeb822Fd::Error(std::string PackageName,
unsigned int StepsDone,
unsigned int TotalSteps,
std::string ErrorMessage)
{
std::ostringstream status;
status << "Status: " << "Error" << std::endl
<< "Package:" << PackageName << std::endl
<< "Percent: " << (StepsDone/float(TotalSteps)*100.0) << std::endl
<< "Message: " << ErrorMessage << std::endl
<< std::endl;
WriteToStatusFd(status.str());
}
void PackageManagerProgressDeb822Fd::ConffilePrompt(std::string PackageName,
unsigned int StepsDone,
unsigned int TotalSteps,
std::string ConfMessage)
{
std::ostringstream status;
status << "Status: " << "ConfFile" << std::endl
<< "Package:" << PackageName << std::endl
<< "Percent: " << (StepsDone/float(TotalSteps)*100.0) << std::endl
<< "Message: " << ConfMessage << std::endl
<< std::endl;
WriteToStatusFd(status.str());
}
bool PackageManagerProgressDeb822Fd::StatusChanged(std::string PackageName,
unsigned int xStepsDone,
unsigned int xTotalSteps,
std::string message)
{
StepsDone = xStepsDone;
StepsTotal = xTotalSteps;
// build the status str
std::ostringstream status;
status << "Status: " << "progress" << std::endl
<< "Package: " << PackageName << std::endl
<< "Percent: " << (StepsDone/float(StepsTotal)*100.0) << std::endl
<< "Message: " << message << std::endl
<< std::endl;
WriteToStatusFd(status.str());
return true;
}
PackageManagerFancy::PackageManagerFancy()
: child_pty(-1)
{
// setup terminal size
old_SIGWINCH = signal(SIGWINCH, PackageManagerFancy::staticSIGWINCH);
instances.push_back(this);
}
std::vector<PackageManagerFancy*> PackageManagerFancy::instances;
PackageManagerFancy::~PackageManagerFancy()
{
instances.erase(find(instances.begin(), instances.end(), this));
signal(SIGWINCH, old_SIGWINCH);
}
void PackageManagerFancy::staticSIGWINCH(int signum)
{
std::vector<PackageManagerFancy *>::const_iterator I;
for(I = instances.begin(); I != instances.end(); ++I)
(*I)->HandleSIGWINCH(signum);
}
PackageManagerFancy::TermSize
PackageManagerFancy::GetTerminalSize()
{
struct winsize win;
PackageManagerFancy::TermSize s = { 0, 0 };
// FIXME: get from "child_pty" instead?
if(ioctl(STDOUT_FILENO, TIOCGWINSZ, (char *)&win) != 0)
return s;
if(_config->FindB("Debug::InstallProgress::Fancy", false) == true)
std::cerr << "GetTerminalSize: " << win.ws_row << " x " << win.ws_col << std::endl;
s.rows = win.ws_row;
s.columns = win.ws_col;
return s;
}
void PackageManagerFancy::SetupTerminalScrollArea(int nr_rows)
{
if(_config->FindB("Debug::InstallProgress::Fancy", false) == true)
std::cerr << "SetupTerminalScrollArea: " << nr_rows << std::endl;
if (unlikely(nr_rows <= 1))
return;
// scroll down a bit to avoid visual glitch when the screen
// area shrinks by one row
std::cout << "\n";
// save cursor
std::cout << "\033[s";
// set scroll region (this will place the cursor in the top left)
std::cout << "\033[0;" << nr_rows - 1 << "r";
// restore cursor but ensure its inside the scrolling area
std::cout << "\033[u";
static const char *move_cursor_up = "\033[1A";
std::cout << move_cursor_up;
// ensure its flushed
std::flush(std::cout);
// setup tty size to ensure xterm/linux console are working properly too
// see bug #731738
struct winsize win;
if (ioctl(child_pty, TIOCGWINSZ, (char *)&win) != -1)
{
win.ws_row = nr_rows - 1;
ioctl(child_pty, TIOCSWINSZ, (char *)&win);
}
}
void PackageManagerFancy::HandleSIGWINCH(int)
{
int const nr_terminal_rows = GetTerminalSize().rows;
SetupTerminalScrollArea(nr_terminal_rows);
DrawStatusLine();
}
void PackageManagerFancy::Start(int a_child_pty)
{
child_pty = a_child_pty;
int const nr_terminal_rows = GetTerminalSize().rows;
SetupTerminalScrollArea(nr_terminal_rows);
}
void PackageManagerFancy::Stop()
{
int const nr_terminal_rows = GetTerminalSize().rows;
if (nr_terminal_rows > 0)
{
SetupTerminalScrollArea(nr_terminal_rows + 1);
// override the progress line (sledgehammer)
static const char* clear_screen_below_cursor = "\033[J";
std::cout << clear_screen_below_cursor;
}
child_pty = -1;
}
std::string
PackageManagerFancy::GetTextProgressStr(float Percent, int OutputSize)
{
std::string output;
int i;
// should we raise a exception here instead?
if (Percent < 0.0 || Percent > 1.0 || OutputSize < 3)
return output;
int BarSize = OutputSize - 2; // bar without the leading "[" and trailing "]"
output += "[";
for(i=0; i < BarSize*Percent; i++)
output += "#";
for (/*nothing*/; i < BarSize; i++)
output += ".";
output += "]";
return output;
}
bool PackageManagerFancy::StatusChanged(std::string PackageName,
unsigned int StepsDone,
unsigned int TotalSteps,
std::string HumanReadableAction)
{
if (!PackageManager::StatusChanged(PackageName, StepsDone, TotalSteps,
HumanReadableAction))
return false;
return DrawStatusLine();
}
bool PackageManagerFancy::DrawStatusLine()
{
PackageManagerFancy::TermSize const size = GetTerminalSize();
if (unlikely(size.rows < 1 || size.columns < 1))
return false;
static std::string save_cursor = "\033[s";
static std::string restore_cursor = "\033[u";
// green
static std::string set_bg_color = DeQuoteString(
_config->Find("Dpkg::Progress-Fancy::Progress-fg", "%1b[42m"));
// black
static std::string set_fg_color = DeQuoteString(
_config->Find("Dpkg::Progress-Fancy::Progress-bg", "%1b[30m"));
static std::string restore_bg = "\033[49m";
static std::string restore_fg = "\033[39m";
std::cout << save_cursor
// move cursor position to last row
<< "\033[" << size.rows << ";0f"
<< set_bg_color
<< set_fg_color
<< progress_str
<< restore_bg
<< restore_fg;
std::flush(std::cout);
// draw text progress bar
if (_config->FindB("Dpkg::Progress-Fancy::Progress-Bar", true))
{
int padding = 4;
float progressbar_size = size.columns - padding - progress_str.size();
float current_percent = percentage / 100.0;
std::cout << " "
<< GetTextProgressStr(current_percent, progressbar_size)
<< " ";
std::flush(std::cout);
}
// restore
std::cout << restore_cursor;
std::flush(std::cout);
last_reported_progress = percentage;
return true;
}
bool PackageManagerText::StatusChanged(std::string PackageName,
unsigned int StepsDone,
unsigned int TotalSteps,
std::string HumanReadableAction)
{
if (!PackageManager::StatusChanged(PackageName, StepsDone, TotalSteps, HumanReadableAction))
return false;
std::cout << progress_str << "\r\n";
std::flush(std::cout);
last_reported_progress = percentage;
return true;
}
} // namespace progress
} // namespace apt
|