3 #include <apt-pkg/configuration.h>
4 #include <apt-pkg/fileutl.h>
5 #include <apt-pkg/strutl.h>
6 #include <apt-pkg/install-progress.h>
13 #include <sys/ioctl.h>
25 /* Return a APT::Progress::PackageManager based on the global
26 * apt configuration (i.e. APT::Status-Fd and APT::Status-deb822-Fd)
28 PackageManager
* PackageManagerProgressFactory()
30 // select the right progress
31 int status_fd
= _config
->FindI("APT::Status-Fd", -1);
32 int status_deb822_fd
= _config
->FindI("APT::Status-deb822-Fd", -1);
34 APT::Progress::PackageManager
*progress
= NULL
;
35 if (status_deb822_fd
> 0)
36 progress
= new APT::Progress::PackageManagerProgressDeb822Fd(
38 else if (status_fd
> 0)
39 progress
= new APT::Progress::PackageManagerProgressFd(status_fd
);
40 else if(_config
->FindB("Dpkg::Progress-Fancy", false) == true)
41 progress
= new APT::Progress::PackageManagerFancy();
42 else if (_config
->FindB("Dpkg::Progress",
43 _config
->FindB("DpkgPM::Progress", false)) == true)
44 progress
= new APT::Progress::PackageManagerText();
46 progress
= new APT::Progress::PackageManager();
50 bool PackageManager::StatusChanged(std::string
/*PackageName*/,
51 unsigned int StepsDone
,
52 unsigned int TotalSteps
,
53 std::string
/*HumanReadableAction*/)
55 int reporting_steps
= _config
->FindI("DpkgPM::Reporting-Steps", 1);
56 percentage
= StepsDone
/(float)TotalSteps
* 100.0;
57 strprintf(progress_str
, _("Progress: [%3i%%]"), (int)percentage
);
59 if(percentage
< (last_reported_progress
+ reporting_steps
))
65 PackageManagerProgressFd::PackageManagerProgressFd(int progress_fd
)
66 : StepsDone(0), StepsTotal(1)
68 OutStatusFd
= progress_fd
;
71 void PackageManagerProgressFd::WriteToStatusFd(std::string s
)
75 FileFd::Write(OutStatusFd
, s
.c_str(), s
.size());
78 void PackageManagerProgressFd::StartDpkg()
83 // FIXME: use SetCloseExec here once it taught about throwing
84 // exceptions instead of doing _exit(100) on failure
85 fcntl(OutStatusFd
,F_SETFD
,FD_CLOEXEC
);
87 // send status information that we are about to fork dpkg
88 std::ostringstream status
;
89 status
<< "pmstatus:dpkg-exec:"
90 << (StepsDone
/float(StepsTotal
)*100.0)
91 << ":" << _("Running dpkg")
93 WriteToStatusFd(status
.str());
96 APT_CONST
void PackageManagerProgressFd::Stop()
100 void PackageManagerProgressFd::Error(std::string PackageName
,
101 unsigned int StepsDone
,
102 unsigned int TotalSteps
,
103 std::string ErrorMessage
)
105 std::ostringstream status
;
106 status
<< "pmerror:" << PackageName
107 << ":" << (StepsDone
/float(TotalSteps
)*100.0)
108 << ":" << ErrorMessage
110 WriteToStatusFd(status
.str());
113 void PackageManagerProgressFd::ConffilePrompt(std::string PackageName
,
114 unsigned int StepsDone
,
115 unsigned int TotalSteps
,
116 std::string ConfMessage
)
118 std::ostringstream status
;
119 status
<< "pmconffile:" << PackageName
120 << ":" << (StepsDone
/float(TotalSteps
)*100.0)
121 << ":" << ConfMessage
123 WriteToStatusFd(status
.str());
127 bool PackageManagerProgressFd::StatusChanged(std::string PackageName
,
128 unsigned int xStepsDone
,
129 unsigned int xTotalSteps
,
130 std::string pkg_action
)
132 StepsDone
= xStepsDone
;
133 StepsTotal
= xTotalSteps
;
135 // build the status str
136 std::ostringstream status
;
137 status
<< "pmstatus:" << StringSplit(PackageName
, ":")[0]
138 << ":" << (StepsDone
/float(StepsTotal
)*100.0)
141 WriteToStatusFd(status
.str());
143 if(_config
->FindB("Debug::APT::Progress::PackageManagerFd", false) == true)
144 std::cerr
<< "progress: " << PackageName
<< " " << xStepsDone
145 << " " << xTotalSteps
<< " " << pkg_action
153 PackageManagerProgressDeb822Fd::PackageManagerProgressDeb822Fd(int progress_fd
)
154 : StepsDone(0), StepsTotal(1)
156 OutStatusFd
= progress_fd
;
159 void PackageManagerProgressDeb822Fd::WriteToStatusFd(std::string s
)
161 FileFd::Write(OutStatusFd
, s
.c_str(), s
.size());
164 void PackageManagerProgressDeb822Fd::StartDpkg()
166 // FIXME: use SetCloseExec here once it taught about throwing
167 // exceptions instead of doing _exit(100) on failure
168 fcntl(OutStatusFd
,F_SETFD
,FD_CLOEXEC
);
170 // send status information that we are about to fork dpkg
171 std::ostringstream status
;
172 status
<< "Status: " << "progress" << std::endl
173 << "Percent: " << (StepsDone
/float(StepsTotal
)*100.0) << std::endl
174 << "Message: " << _("Running dpkg") << std::endl
176 WriteToStatusFd(status
.str());
179 APT_CONST
void PackageManagerProgressDeb822Fd::Stop()
183 void PackageManagerProgressDeb822Fd::Error(std::string PackageName
,
184 unsigned int StepsDone
,
185 unsigned int TotalSteps
,
186 std::string ErrorMessage
)
188 std::ostringstream status
;
189 status
<< "Status: " << "Error" << std::endl
190 << "Package:" << PackageName
<< std::endl
191 << "Percent: " << (StepsDone
/float(TotalSteps
)*100.0) << std::endl
192 << "Message: " << ErrorMessage
<< std::endl
194 WriteToStatusFd(status
.str());
197 void PackageManagerProgressDeb822Fd::ConffilePrompt(std::string PackageName
,
198 unsigned int StepsDone
,
199 unsigned int TotalSteps
,
200 std::string ConfMessage
)
202 std::ostringstream status
;
203 status
<< "Status: " << "ConfFile" << std::endl
204 << "Package:" << PackageName
<< std::endl
205 << "Percent: " << (StepsDone
/float(TotalSteps
)*100.0) << std::endl
206 << "Message: " << ConfMessage
<< std::endl
208 WriteToStatusFd(status
.str());
212 bool PackageManagerProgressDeb822Fd::StatusChanged(std::string PackageName
,
213 unsigned int xStepsDone
,
214 unsigned int xTotalSteps
,
217 StepsDone
= xStepsDone
;
218 StepsTotal
= xTotalSteps
;
220 // build the status str
221 std::ostringstream status
;
222 status
<< "Status: " << "progress" << std::endl
223 << "Package: " << PackageName
<< std::endl
224 << "Percent: " << (StepsDone
/float(StepsTotal
)*100.0) << std::endl
225 << "Message: " << message
<< std::endl
227 WriteToStatusFd(status
.str());
233 PackageManagerFancy::PackageManagerFancy()
236 // setup terminal size
237 old_SIGWINCH
= signal(SIGWINCH
, PackageManagerFancy::staticSIGWINCH
);
238 instances
.push_back(this);
240 std::vector
<PackageManagerFancy
*> PackageManagerFancy::instances
;
242 PackageManagerFancy::~PackageManagerFancy()
244 instances
.erase(find(instances
.begin(), instances
.end(), this));
245 signal(SIGWINCH
, old_SIGWINCH
);
248 void PackageManagerFancy::staticSIGWINCH(int signum
)
250 std::vector
<PackageManagerFancy
*>::const_iterator I
;
251 for(I
= instances
.begin(); I
!= instances
.end(); ++I
)
252 (*I
)->HandleSIGWINCH(signum
);
255 PackageManagerFancy::TermSize
256 PackageManagerFancy::GetTerminalSize()
259 PackageManagerFancy::TermSize s
= { 0, 0 };
261 // FIXME: get from "child_pty" instead?
262 if(ioctl(STDOUT_FILENO
, TIOCGWINSZ
, (char *)&win
) != 0)
265 if(_config
->FindB("Debug::InstallProgress::Fancy", false) == true)
266 std::cerr
<< "GetTerminalSize: " << win
.ws_row
<< " x " << win
.ws_col
<< std::endl
;
269 s
.columns
= win
.ws_col
;
273 void PackageManagerFancy::SetupTerminalScrollArea(int nr_rows
)
275 if(_config
->FindB("Debug::InstallProgress::Fancy", false) == true)
276 std::cerr
<< "SetupTerminalScrollArea: " << nr_rows
<< std::endl
;
278 if (unlikely(nr_rows
<= 1))
281 // scroll down a bit to avoid visual glitch when the screen
282 // area shrinks by one row
286 std::cout
<< "\033[s";
288 // set scroll region (this will place the cursor in the top left)
289 std::cout
<< "\033[0;" << nr_rows
- 1 << "r";
291 // restore cursor but ensure its inside the scrolling area
292 std::cout
<< "\033[u";
293 static const char *move_cursor_up
= "\033[1A";
294 std::cout
<< move_cursor_up
;
296 // ensure its flushed
297 std::flush(std::cout
);
299 // setup tty size to ensure xterm/linux console are working properly too
302 if (ioctl(child_pty
, TIOCGWINSZ
, (char *)&win
) != -1)
304 win
.ws_row
= nr_rows
- 1;
305 ioctl(child_pty
, TIOCSWINSZ
, (char *)&win
);
309 void PackageManagerFancy::HandleSIGWINCH(int)
311 int const nr_terminal_rows
= GetTerminalSize().rows
;
312 SetupTerminalScrollArea(nr_terminal_rows
);
316 void PackageManagerFancy::Start(int a_child_pty
)
318 child_pty
= a_child_pty
;
319 int const nr_terminal_rows
= GetTerminalSize().rows
;
320 SetupTerminalScrollArea(nr_terminal_rows
);
323 void PackageManagerFancy::Stop()
325 int const nr_terminal_rows
= GetTerminalSize().rows
;
326 if (nr_terminal_rows
> 0)
328 SetupTerminalScrollArea(nr_terminal_rows
+ 1);
330 // override the progress line (sledgehammer)
331 static const char* clear_screen_below_cursor
= "\033[J";
332 std::cout
<< clear_screen_below_cursor
;
338 PackageManagerFancy::GetTextProgressStr(float Percent
, int OutputSize
)
343 // should we raise a exception here instead?
344 if (Percent
< 0.0 || Percent
> 1.0 || OutputSize
< 3)
347 int BarSize
= OutputSize
- 2; // bar without the leading "[" and trailing "]"
349 for(i
=0; i
< BarSize
*Percent
; i
++)
351 for (/*nothing*/; i
< BarSize
; i
++)
357 bool PackageManagerFancy::StatusChanged(std::string PackageName
,
358 unsigned int StepsDone
,
359 unsigned int TotalSteps
,
360 std::string HumanReadableAction
)
362 if (!PackageManager::StatusChanged(PackageName
, StepsDone
, TotalSteps
,
363 HumanReadableAction
))
366 return DrawStatusLine();
368 bool PackageManagerFancy::DrawStatusLine()
370 PackageManagerFancy::TermSize
const size
= GetTerminalSize();
371 if (unlikely(size
.rows
< 1 || size
.columns
< 1))
374 static std::string save_cursor
= "\033[s";
375 static std::string restore_cursor
= "\033[u";
378 static std::string set_bg_color
= DeQuoteString(
379 _config
->Find("Dpkg::Progress-Fancy::Progress-fg", "%1b[42m"));
381 static std::string set_fg_color
= DeQuoteString(
382 _config
->Find("Dpkg::Progress-Fancy::Progress-bg", "%1b[30m"));
384 static std::string restore_bg
= "\033[49m";
385 static std::string restore_fg
= "\033[39m";
387 std::cout
<< save_cursor
388 // move cursor position to last row
389 << "\033[" << size
.rows
<< ";0f"
395 std::flush(std::cout
);
397 // draw text progress bar
398 if (_config
->FindB("Dpkg::Progress-Fancy::Progress-Bar", true))
401 float progressbar_size
= size
.columns
- padding
- progress_str
.size();
402 float current_percent
= percentage
/ 100.0;
404 << GetTextProgressStr(current_percent
, progressbar_size
)
406 std::flush(std::cout
);
410 std::cout
<< restore_cursor
;
411 std::flush(std::cout
);
413 last_reported_progress
= percentage
;
418 bool PackageManagerText::StatusChanged(std::string PackageName
,
419 unsigned int StepsDone
,
420 unsigned int TotalSteps
,
421 std::string HumanReadableAction
)
423 if (!PackageManager::StatusChanged(PackageName
, StepsDone
, TotalSteps
, HumanReadableAction
))
426 std::cout
<< progress_str
<< "\r\n";
427 std::flush(std::cout
);
429 last_reported_progress
= percentage
;
436 } // namespace progress