| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358 |
- #include <apt-pkg/configuration.h>
- #include <apt-pkg/fileutl.h>
- #include <apt-pkg/strutl.h>
- #include <apt-pkg/install-progress.h>
- #include <apti18n.h>
- #include <termios.h>
- #include <sys/ioctl.h>
- #include <sstream>
- #include <fcntl.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());
- }
- 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());
- }
- 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;
- }
- int PackageManagerFancy::GetNumberTerminalRows()
- {
- struct winsize win;
- if(ioctl(STDOUT_FILENO, TIOCGWINSZ, (char *)&win) != 0)
- return -1;
-
- return win.ws_row;
- }
- void PackageManagerFancy::SetupTerminalScrollArea(int nr_rows)
- {
- // 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[1;" << 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;
- // setup env for (hopefully!) ncurses
- string s;
- strprintf(s, "%i", nr_rows);
- setenv("LINES", s.c_str(), 1);
- std::flush(std::cout);
- }
- PackageManagerFancy::PackageManagerFancy()
- {
- // setup terminal size
- old_SIGWINCH = signal(SIGWINCH, HandleSIGWINCH);
- }
- PackageManagerFancy::~PackageManagerFancy()
- {
- signal(SIGWINCH, old_SIGWINCH);
- }
- void PackageManagerFancy::HandleSIGWINCH(int)
- {
- int nr_terminal_rows = GetNumberTerminalRows();
- SetupTerminalScrollArea(nr_terminal_rows);
- }
- void PackageManagerFancy::Start(int child_pty)
- {
- int nr_terminal_rows = GetNumberTerminalRows();
- if (nr_terminal_rows > 0)
- {
- SetupTerminalScrollArea(nr_terminal_rows);
- // *cough*
- struct winsize win;
- ioctl(child_pty, TIOCGWINSZ, (char *)&win);
- win.ws_row = nr_terminal_rows - 1;
- ioctl(child_pty, TIOCSWINSZ, (char *)&win);
- }
- }
- void PackageManagerFancy::Stop()
- {
- int nr_terminal_rows = GetNumberTerminalRows();
- 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;
- }
- }
- bool PackageManagerFancy::StatusChanged(std::string PackageName,
- unsigned int StepsDone,
- unsigned int TotalSteps,
- std::string HumanReadableAction)
- {
- if (!PackageManager::StatusChanged(PackageName, StepsDone, TotalSteps,
- HumanReadableAction))
- return false;
- int row = GetNumberTerminalRows();
- static string save_cursor = "\033[s";
- static string restore_cursor = "\033[u";
-
- static string set_bg_color = "\033[42m"; // green
- static string set_fg_color = "\033[30m"; // black
-
- static string restore_bg = "\033[49m";
- static string restore_fg = "\033[39m";
-
- std::cout << save_cursor
- // move cursor position to last row
- << "\033[" << row << ";0f"
- << set_bg_color
- << set_fg_color
- << progress_str
- << restore_cursor
- << restore_bg
- << restore_fg;
- 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
|