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/>.
27 #include <alpm_list.h>
30 #include <libintl.h> /* here so it doesn't need to be included elsewhere */
31 /* define _() as shortcut for gettext() */
32 #define _(str) gettext(str)
33 #define _n(str1, str2, ct) ngettext(str1, str2, ct)
36 #define _n(str1, str2, ct) (ct == 1 ? str1 : str2)
39 /* update speed for the fill_progress based functions */
40 #define UPDATE_SPEED_SEC 0.2f
42 int trans_init(alpm_transflag_t flags
, int check_valid
);
43 int trans_release(void);
45 int check_syncdbs(size_t need_repos
, int check_valid
);
47 int rmrf(const char *path
);
48 const char *mbasename(const char *path
);
49 char *mdirname(const char *path
);
50 void indentprint(const char *str
, int indent
);
51 char *strtoupper(char *str
);
52 char *strtrim(char *str
);
53 char *strreplace(const char *str
, const char *needle
, const char *replace
);
54 alpm_list_t
*strsplit(const char *str
, const char splitchar
);
55 void string_display(const char *title
, const char *string
);
56 double humanize_size(off_t bytes
, const char target_unit
, int long_labels
, const char **label
);
57 int table_display(const char *title
, const alpm_list_t
*header
, const alpm_list_t
*rows
);
58 void list_display(const char *title
, const alpm_list_t
*list
);
59 void list_display_linebreak(const char *title
, const alpm_list_t
*list
);
60 void signature_display(const char *title
, alpm_sigresult_t
*result
);
61 void display_targets(const alpm_list_t
*pkgs
, int install
);
62 int str_cmp(const void *s1
, const void *s2
);
63 void display_new_optdepends(alpm_pkg_t
*oldpkg
, alpm_pkg_t
*newpkg
);
64 void display_optdepends(alpm_pkg_t
*pkg
);
65 void print_packages(const alpm_list_t
*packages
);
66 void select_display(const alpm_list_t
*pkglist
);
67 int select_question(int count
);
68 int multiselect_question(char *array
, int count
);
69 int yesno(char *fmt
, ...);
70 int noyes(char *fmt
, ...);
71 int pm_printf(alpm_loglevel_t level
, const char *format
, ...) __attribute__((format(printf
,2,3)));
72 int pm_fprintf(FILE *stream
, alpm_loglevel_t level
, const char *format
, ...) __attribute__((format(printf
,3,4)));
73 int pm_asprintf(char **string
, const char *format
, ...);
74 int pm_vfprintf(FILE *stream
, alpm_loglevel_t level
, const char *format
, va_list args
) __attribute__((format(printf
,3,0)));
75 int pm_vasprintf(char **string
, alpm_loglevel_t level
, const char *format
, va_list args
) __attribute__((format(printf
,3,0)));
78 char *strndup(const char *s
, size_t n
);
81 #endif /* _PM_UTIL_H */
83 /* vim: set ts=2 sw=2 noet: */