makepkg: add libprovides support
[pacman-ng.git] / src / pacman / callback.c
blobd3dc7440f0c7589d2b13f5b46d050fb35ec4da32
1 /*
2 * callback.c
4 * Copyright (c) 2006-2011 Pacman Development Team <pacman-dev@archlinux.org>
5 * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "config.h"
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <sys/time.h>
27 #include <sys/types.h> /* off_t */
28 #include <unistd.h>
29 #include <wchar.h>
31 #include <alpm.h>
33 /* pacman */
34 #include "callback.h"
35 #include "util.h"
36 #include "conf.h"
38 /* download progress bar */
39 static double rate_last;
40 static off_t xfered_last;
41 static off_t list_xfered = 0.0;
42 static off_t list_total = 0.0;
43 static struct timeval initial_time;
45 /* transaction progress bar */
46 static int prevpercent = 0; /* for less progressbar output */
48 /* delayed output during progress bar */
49 static int on_progress = 0;
50 static alpm_list_t *output = NULL;
52 /* Silly little helper function, determines if the caller needs a visual update
53 * since the last time this function was called.
54 * This is made for the two progress bar functions, to prevent flicker
56 * first_call indicates if this is the first time it is called, for
57 * initialization purposes */
58 static double get_update_timediff(int first_call)
60 double retval = 0.0;
61 static struct timeval last_time = {0, 0};
63 /* on first call, simply set the last time and return */
64 if(first_call) {
65 gettimeofday(&last_time, NULL);
66 } else {
67 struct timeval this_time;
68 double diff_sec, diff_usec;
70 gettimeofday(&this_time, NULL);
71 diff_sec = this_time.tv_sec - last_time.tv_sec;
72 diff_usec = this_time.tv_usec - last_time.tv_usec;
74 retval = diff_sec + (diff_usec / 1000000.0);
76 /* return 0 and do not update last_time if interval was too short */
77 if(retval < UPDATE_SPEED_SEC) {
78 retval = 0.0;
79 } else {
80 last_time = this_time;
84 return retval;
87 /* refactored from cb_trans_progress */
88 static void fill_progress(const int bar_percent, const int disp_percent,
89 const int proglen)
91 /* 8 = 1 space + 1 [ + 1 ] + 5 for percent */
92 const int hashlen = proglen - 8;
93 const int hash = bar_percent * hashlen / 100;
94 static int lasthash = 0, mouth = 0;
95 int i;
97 if(bar_percent == 0) {
98 lasthash = 0;
99 mouth = 0;
102 if(hashlen > 0) {
103 printf(" [");
104 for(i = hashlen; i > 0; --i) {
105 /* if special progress bar enabled */
106 if(config->chomp) {
107 if(i > hashlen - hash) {
108 printf("-");
109 } else if(i == hashlen - hash) {
110 if(lasthash == hash) {
111 if(mouth) {
112 printf("\033[1;33mC\033[m");
113 } else {
114 printf("\033[1;33mc\033[m");
116 } else {
117 lasthash = hash;
118 mouth = mouth == 1 ? 0 : 1;
119 if(mouth) {
120 printf("\033[1;33mC\033[m");
121 } else {
122 printf("\033[1;33mc\033[m");
125 } else if(i%3 == 0) {
126 printf("\033[0;37mo\033[m");
127 } else {
128 printf("\033[0;37m \033[m");
130 } /* else regular progress bar */
131 else if(i > hashlen - hash) {
132 printf("#");
133 } else {
134 printf("-");
137 printf("]");
139 /* print display percent after progress bar */
140 /* 5 = 1 space + 3 digits + 1 % */
141 if(proglen >= 5) {
142 printf(" %3d%%", disp_percent);
145 if(bar_percent == 100) {
146 printf("\n");
147 } else {
148 printf("\r");
150 fflush(stdout);
155 /* callback to handle messages/notifications from libalpm transactions */
156 void cb_trans_evt(pmtransevt_t event, void *data1, void *data2)
158 switch(event) {
159 case PM_TRANS_EVT_CHECKDEPS_START:
160 printf(_("checking dependencies...\n"));
161 break;
162 case PM_TRANS_EVT_FILECONFLICTS_START:
163 if(config->noprogressbar) {
164 printf(_("checking for file conflicts...\n"));
166 break;
167 case PM_TRANS_EVT_RESOLVEDEPS_START:
168 printf(_("resolving dependencies...\n"));
169 break;
170 case PM_TRANS_EVT_INTERCONFLICTS_START:
171 printf(_("looking for inter-conflicts...\n"));
172 break;
173 case PM_TRANS_EVT_ADD_START:
174 if(config->noprogressbar) {
175 printf(_("installing %s...\n"), alpm_pkg_get_name(data1));
177 break;
178 case PM_TRANS_EVT_ADD_DONE:
179 alpm_logaction("installed %s (%s)\n",
180 alpm_pkg_get_name(data1),
181 alpm_pkg_get_version(data1));
182 display_optdepends(data1);
183 break;
184 case PM_TRANS_EVT_REMOVE_START:
185 if(config->noprogressbar) {
186 printf(_("removing %s...\n"), alpm_pkg_get_name(data1));
188 break;
189 case PM_TRANS_EVT_REMOVE_DONE:
190 alpm_logaction("removed %s (%s)\n",
191 alpm_pkg_get_name(data1),
192 alpm_pkg_get_version(data1));
193 break;
194 case PM_TRANS_EVT_UPGRADE_START:
195 if(config->noprogressbar) {
196 printf(_("upgrading %s...\n"), alpm_pkg_get_name(data1));
198 break;
199 case PM_TRANS_EVT_UPGRADE_DONE:
200 alpm_logaction("upgraded %s (%s -> %s)\n",
201 (char *)alpm_pkg_get_name(data1),
202 (char *)alpm_pkg_get_version(data2),
203 (char *)alpm_pkg_get_version(data1));
204 display_new_optdepends(data2,data1);
205 break;
206 case PM_TRANS_EVT_INTEGRITY_START:
207 if(config->noprogressbar) {
208 printf(_("checking package integrity...\n"));
210 break;
211 case PM_TRANS_EVT_DELTA_INTEGRITY_START:
212 printf(_("checking delta integrity...\n"));
213 break;
214 case PM_TRANS_EVT_DELTA_PATCHES_START:
215 printf(_("applying deltas...\n"));
216 break;
217 case PM_TRANS_EVT_DELTA_PATCH_START:
218 printf(_("generating %s with %s... "), (char *)data1, (char *)data2);
219 break;
220 case PM_TRANS_EVT_DELTA_PATCH_DONE:
221 printf(_("success!\n"));
222 break;
223 case PM_TRANS_EVT_DELTA_PATCH_FAILED:
224 printf(_("failed.\n"));
225 break;
226 case PM_TRANS_EVT_SCRIPTLET_INFO:
227 printf("%s", (char *)data1);
228 break;
229 case PM_TRANS_EVT_RETRIEVE_START:
230 printf(_(":: Retrieving packages from %s...\n"), (char *)data1);
231 break;
232 case PM_TRANS_EVT_DISKSPACE_START:
233 if(config->noprogressbar) {
234 printf(_("checking available disk space...\n"));
236 break;
237 /* all the simple done events, with fallthrough for each */
238 case PM_TRANS_EVT_FILECONFLICTS_DONE:
239 case PM_TRANS_EVT_CHECKDEPS_DONE:
240 case PM_TRANS_EVT_RESOLVEDEPS_DONE:
241 case PM_TRANS_EVT_INTERCONFLICTS_DONE:
242 case PM_TRANS_EVT_INTEGRITY_DONE:
243 case PM_TRANS_EVT_DELTA_INTEGRITY_DONE:
244 case PM_TRANS_EVT_DELTA_PATCHES_DONE:
245 case PM_TRANS_EVT_DISKSPACE_DONE:
246 /* nothing */
247 break;
249 fflush(stdout);
252 /* callback to handle questions from libalpm transactions (yes/no) */
253 /* TODO this is one of the worst ever functions written. void *data ? wtf */
254 void cb_trans_conv(pmtransconv_t event, void *data1, void *data2,
255 void *data3, int *response)
257 switch(event) {
258 case PM_TRANS_CONV_INSTALL_IGNOREPKG:
259 *response = yesno(_(":: %s is in IgnorePkg/IgnoreGroup. Install anyway?"),
260 alpm_pkg_get_name(data1));
261 break;
262 case PM_TRANS_CONV_REPLACE_PKG:
263 *response = yesno(_(":: Replace %s with %s/%s?"),
264 alpm_pkg_get_name(data1),
265 (char *)data3,
266 alpm_pkg_get_name(data2));
267 break;
268 case PM_TRANS_CONV_CONFLICT_PKG:
269 /* data parameters: target package, local package, conflict (strings) */
270 /* print conflict only if it contains new information */
271 if(strcmp(data1, data3) == 0 || strcmp(data2, data3) == 0) {
272 *response = noyes(_(":: %s and %s are in conflict. Remove %s?"),
273 (char *)data1,
274 (char *)data2,
275 (char *)data2);
276 } else {
277 *response = noyes(_(":: %s and %s are in conflict (%s). Remove %s?"),
278 (char *)data1,
279 (char *)data2,
280 (char *)data3,
281 (char *)data2);
283 break;
284 case PM_TRANS_CONV_REMOVE_PKGS:
286 alpm_list_t *unresolved = (alpm_list_t *) data1;
287 alpm_list_t *namelist = NULL, *i;
288 size_t count = 0;
289 for (i = unresolved; i; i = i->next) {
290 namelist = alpm_list_add(namelist,
291 (char *)alpm_pkg_get_name(i->data));
292 count++;
294 printf(_n(
295 ":: The following package cannot be upgraded due to unresolvable dependencies:\n",
296 ":: The following packages cannot be upgraded due to unresolvable dependencies:\n",
297 count));
298 list_display(" ", namelist);
299 printf("\n");
300 *response = noyes(_n(
301 "Do you want to skip the above package for this upgrade?",
302 "Do you want to skip the above packages for this upgrade?",
303 count));
304 alpm_list_free(namelist);
306 break;
307 case PM_TRANS_CONV_SELECT_PROVIDER:
309 alpm_list_t *providers = (alpm_list_t *)data1;
310 int count = alpm_list_count(providers);
311 char *depstring = alpm_dep_compute_string((pmdepend_t *)data2);
312 printf(_(":: There are %d providers available for %s:\n"), count,
313 depstring);
314 free(depstring);
315 select_display(providers);
316 *response = select_question(count);
318 break;
319 case PM_TRANS_CONV_LOCAL_NEWER:
320 if(!config->op_s_downloadonly) {
321 *response = yesno(_(":: %s-%s: local version is newer. Upgrade anyway?"),
322 alpm_pkg_get_name(data1),
323 alpm_pkg_get_version(data1));
324 } else {
325 *response = 1;
327 break;
328 case PM_TRANS_CONV_CORRUPTED_PKG:
329 *response = yesno(_(":: File %s is corrupted. Do you want to delete it?"),
330 (char *)data1);
331 break;
333 if(config->noask) {
334 if(config->ask & event) {
335 /* inverse the default answer */
336 *response = !*response;
341 /* callback to handle display of transaction progress */
342 void cb_trans_progress(pmtransprog_t event, const char *pkgname, int percent,
343 size_t howmany, size_t current)
345 /* size of line to allocate for text printing (e.g. not progressbar) */
346 int infolen;
347 int digits, textlen;
348 size_t tmp;
349 char *opr = NULL;
350 /* used for wide character width determination and printing */
351 int len, wclen, wcwid, padwid;
352 wchar_t *wcstr;
354 if(config->noprogressbar) {
355 return;
358 if(percent == 0) {
359 get_update_timediff(1);
360 } else if(percent == 100) {
361 /* no need for timediff update, but unconditionally continue unless we
362 * already completed on a previous call */
363 if(prevpercent == 100) {
364 return;
366 } else {
367 if(!pkgname || percent == prevpercent || get_update_timediff(0) < UPDATE_SPEED_SEC) {
368 /* only update the progress bar when we have a package name, the
369 * percentage has changed, and it has been long enough. */
370 return;
374 prevpercent = percent;
376 /* set text of message to display */
377 switch (event) {
378 case PM_TRANS_PROGRESS_ADD_START:
379 opr = _("installing");
380 break;
381 case PM_TRANS_PROGRESS_UPGRADE_START:
382 opr = _("upgrading");
383 break;
384 case PM_TRANS_PROGRESS_REMOVE_START:
385 opr = _("removing");
386 break;
387 case PM_TRANS_PROGRESS_CONFLICTS_START:
388 opr = _("checking for file conflicts");
389 break;
390 case PM_TRANS_PROGRESS_DISKSPACE_START:
391 opr = _("checking available disk space");
392 break;
393 case PM_TRANS_PROGRESS_INTEGRITY_START:
394 opr = _("checking package integrity");
395 break;
396 default:
397 return;
400 infolen = getcols() * 6 / 10;
401 if(infolen < 50) {
402 infolen = 50;
405 /* find # of digits in package counts to scale output */
406 digits = 1;
407 tmp = howmany;
408 while((tmp /= 10)) {
409 ++digits;
411 /* determine room left for non-digits text [not ( 1/12) part] */
412 textlen = infolen - 3 /* (/) */ - (2 * digits) - 1 /* space */;
414 /* In order to deal with characters from all locales, we have to worry
415 * about wide characters and their column widths. A lot of stuff is
416 * done here to figure out the actual number of screen columns used
417 * by the output, and then pad it accordingly so we fill the terminal.
419 /* len = opr len + pkgname len (if available) + space + null */
420 len = strlen(opr) + ((pkgname) ? strlen(pkgname) : 0) + 2;
421 wcstr = calloc(len, sizeof(wchar_t));
422 /* print our strings to the alloc'ed memory */
423 #if defined(HAVE_SWPRINTF)
424 wclen = swprintf(wcstr, len, L"%s %s", opr, pkgname);
425 #else
426 /* because the format string was simple, we can easily do this without
427 * using swprintf, although it is probably not as safe/fast. The max
428 * chars we can copy is decremented each time by subtracting the length
429 * of the already printed/copied wide char string. */
430 wclen = mbstowcs(wcstr, opr, len);
431 wclen += mbstowcs(wcstr + wclen, " ", len - wclen);
432 wclen += mbstowcs(wcstr + wclen, pkgname, len - wclen);
433 #endif
434 wcwid = wcswidth(wcstr, wclen);
435 padwid = textlen - wcwid;
436 /* if padwid is < 0, we need to trim the string so padwid = 0 */
437 if(padwid < 0) {
438 int i = textlen - 3;
439 wchar_t *p = wcstr;
440 /* grab the max number of char columns we can fill */
441 while(i > 0 && wcwidth(*p) < i) {
442 i -= wcwidth(*p);
443 p++;
445 /* then add the ellipsis and fill out any extra padding */
446 wcscpy(p, L"...");
447 padwid = i;
451 printf("(%*ld/%*ld) %ls%-*s", digits, (unsigned long)current,
452 digits, (unsigned long)howmany, wcstr, padwid, "");
454 free(wcstr);
456 /* call refactored fill progress function */
457 fill_progress(percent, percent, getcols() - infolen);
459 if(percent == 100) {
460 alpm_list_t *i = NULL;
461 on_progress = 0;
462 for(i = output; i; i = i->next) {
463 printf("%s", (char *)i->data);
465 fflush(stdout);
466 FREELIST(output);
467 } else {
468 on_progress = 1;
472 /* callback to handle receipt of total download value */
473 void cb_dl_total(off_t total)
475 list_total = total;
476 /* if we get a 0 value, it means this list has finished downloading,
477 * so clear out our list_xfered as well */
478 if(total == 0) {
479 list_xfered = 0;
483 /* callback to handle display of download progress */
484 void cb_dl_progress(const char *filename, off_t file_xfered, off_t file_total)
486 int infolen;
487 int filenamelen;
488 char *fname, *p;
489 /* used for wide character width determination and printing */
490 int len, wclen, wcwid, padwid;
491 wchar_t *wcfname;
493 int totaldownload = 0;
494 off_t xfered, total;
495 double rate = 0.0, timediff = 0.0;
496 unsigned int eta_h = 0, eta_m = 0, eta_s = 0;
497 double rate_human, xfered_human;
498 const char *rate_label, *xfered_label;
499 int file_percent = 0, total_percent = 0;
501 if(config->noprogressbar || file_total == -1) {
502 if(file_xfered == 0) {
503 printf(_("downloading %s...\n"), filename);
504 fflush(stdout);
506 return;
509 infolen = getcols() * 6 / 10;
510 if(infolen < 50) {
511 infolen = 50;
513 /* explanation of magic 28 number at the end */
514 filenamelen = infolen - 28;
516 /* only use TotalDownload if enabled and we have a callback value */
517 if(config->totaldownload && list_total) {
518 /* sanity check */
519 if(list_xfered + file_total <= list_total) {
520 totaldownload = 1;
521 } else {
522 /* bogus values : don't enable totaldownload and reset */
523 list_xfered = 0;
524 list_total = 0;
528 if(totaldownload) {
529 xfered = list_xfered + file_xfered;
530 total = list_total;
531 } else {
532 xfered = file_xfered;
533 total = file_total;
536 /* bogus values : stop here */
537 if(xfered > total) {
538 return;
541 /* this is basically a switch on xfered: 0, total, and
542 * anything else */
543 if(file_xfered == 0) {
544 /* set default starting values, ensure we only call this once
545 * if TotalDownload is enabled */
546 if(!totaldownload || (totaldownload && list_xfered == 0)) {
547 gettimeofday(&initial_time, NULL);
548 xfered_last = (off_t)0;
549 rate_last = 0.0;
550 get_update_timediff(1);
552 } else if(file_xfered == file_total) {
553 /* compute final values */
554 struct timeval current_time;
555 double diff_sec, diff_usec;
557 gettimeofday(&current_time, NULL);
558 diff_sec = current_time.tv_sec - initial_time.tv_sec;
559 diff_usec = current_time.tv_usec - initial_time.tv_usec;
560 timediff = diff_sec + (diff_usec / 1000000.0);
561 rate = xfered / timediff;
563 /* round elapsed time to the nearest second */
564 eta_s = (int)(timediff + 0.5);
565 } else {
566 /* compute current average values */
567 timediff = get_update_timediff(0);
569 if(timediff < UPDATE_SPEED_SEC) {
570 /* return if the calling interval was too short */
571 return;
573 rate = (xfered - xfered_last) / timediff;
574 /* average rate to reduce jumpiness */
575 rate = (rate + 2 * rate_last) / 3;
576 eta_s = (total - xfered) / rate;
577 rate_last = rate;
578 xfered_last = xfered;
581 file_percent = (file_xfered * 100) / file_total;
583 if(totaldownload) {
584 total_percent = ((list_xfered + file_xfered) * 100) /
585 list_total;
587 /* if we are at the end, add the completed file to list_xfered */
588 if(file_xfered == file_total) {
589 list_xfered += file_total;
593 /* fix up time for display */
594 eta_h = eta_s / 3600;
595 eta_s -= eta_h * 3600;
596 eta_m = eta_s / 60;
597 eta_s -= eta_m * 60;
599 fname = strdup(filename);
600 /* strip package or DB extension for cleaner look */
601 if((p = strstr(fname, ".pkg")) || (p = strstr(fname, ".db"))) {
602 *p = '\0';
604 /* In order to deal with characters from all locales, we have to worry
605 * about wide characters and their column widths. A lot of stuff is
606 * done here to figure out the actual number of screen columns used
607 * by the output, and then pad it accordingly so we fill the terminal.
609 /* len = filename len + null */
610 len = strlen(filename) + 1;
611 wcfname = calloc(len, sizeof(wchar_t));
612 wclen = mbstowcs(wcfname, fname, len);
613 wcwid = wcswidth(wcfname, wclen);
614 padwid = filenamelen - wcwid;
615 /* if padwid is < 0, we need to trim the string so padwid = 0 */
616 if(padwid < 0) {
617 int i = filenamelen - 3;
618 wchar_t *p = wcfname;
619 /* grab the max number of char columns we can fill */
620 while(i > 0 && wcwidth(*p) < i) {
621 i -= wcwidth(*p);
622 p++;
624 /* then add the ellipsis and fill out any extra padding */
625 wcscpy(p, L"...");
626 padwid = i;
630 rate_human = humanize_size((off_t)rate, '\0', 0, &rate_label);
631 xfered_human = humanize_size(xfered, '\0', 0, &xfered_label);
633 /* 1 space + filenamelen + 1 space + 7 for size + 1 + 7 for rate + 2 for /s + 1 space + 8 for eta */
634 printf(" %ls%-*s %6.1f%s %#6.1f%s/s %02u:%02u:%02u", wcfname,
635 padwid, "", xfered_human, xfered_label, rate_human, rate_label,
636 eta_h, eta_m, eta_s);
638 free(fname);
639 free(wcfname);
641 if(totaldownload) {
642 fill_progress(file_percent, total_percent, getcols() - infolen);
643 } else {
644 fill_progress(file_percent, file_percent, getcols() - infolen);
646 return;
649 /* Callback to handle notifications from the library */
650 void cb_log(pmloglevel_t level, const char *fmt, va_list args)
652 if(!fmt || strlen(fmt) == 0) {
653 return;
656 if(on_progress) {
657 char *string = NULL;
658 pm_vasprintf(&string, level, fmt, args);
659 if(string != NULL) {
660 output = alpm_list_add(output, string);
662 } else {
663 pm_vfprintf(stdout, level, fmt, args);
667 /* vim: set ts=2 sw=2 noet: */