/* Copyright (c) 2010 Dave Reisner * * expac.c * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limitation the rights to use, * copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following * conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. */ #define _GNU_SOURCE #include #include #include #include #include #include #include #include #define DEFAULT_DELIM "\n" #define DEFAULT_LISTDELIM " " #define DEFAULT_TIMEFMT "%c" #define FORMAT_TOKENS "BCDEGLNOPRSabdkmnprsuvw%" #define FORMAT_TOKENS_LOCAL "ilFw" #define FORMAT_TOKENS_SYNC "f" #define ESCAPE_TOKENS "\"\\abefnrtv" pmdb_t *db_local = NULL; alpm_list_t *dblist = NULL; alpm_list_t *targets = NULL; bool verbose = false; bool search = false; bool local = false; const char *format = NULL; const char *timefmt = NULL; const char *listdelim = NULL; const char *delim = NULL; typedef const char *(*extractfn)(void*); static char *strtrim(char *str) { char *pch = str; if (!str || *str == '\0') { return(str); } while (isspace((unsigned char)*pch)) { pch++; } if (pch != str) { memmove(str, pch, (strlen(pch) + 1)); } if (*str == '\0') { return(str); } pch = (str + (strlen(str) - 1)); while (isspace((unsigned char)*pch)) { pch--; } *++pch = '\0'; return(str); } static int alpm_init() { int ret = 0; FILE *fp; char line[PATH_MAX]; char *ptr, *section = NULL; ret = alpm_initialize(); if (ret != 0) { return(ret); } ret = alpm_option_set_root("/"); if (ret != 0) { return(ret); } ret = alpm_option_set_dbpath("/var/lib/pacman"); if (ret != 0) { return(ret); } db_local = alpm_db_register_local(); if (!db_local) { return(1); } fp = fopen("/etc/pacman.conf", "r"); if (!fp) { return(1); } while (fgets(line, PATH_MAX, fp)) { strtrim(line); if (strlen(line) == 0 || line[0] == '#') { continue; } if ((ptr = strchr(line, '#'))) { *ptr = '\0'; } if (line[0] == '[' && line[strlen(line) - 1] == ']') { ptr = &line[1]; if (section) { free(section); } section = strdup(ptr); section[strlen(section) - 1] = '\0'; if (strcmp(section, "options") != 0) { if (!alpm_db_register_sync(section)) { ret = 1; goto finish; } } } else { char *key; key = ptr = line; strsep(&ptr, "="); strtrim(key); strtrim(ptr); if (strcmp(key, "RootDir") == 0) { alpm_option_set_root(ptr); } else if (strcmp(key, "DBPath") == 0) { alpm_option_set_dbpath(ptr); } } } finish: free(section); fclose(fp); return(ret); } static void usage(void) { fprintf(stderr, "expac %s\n" "Usage: expac [options] target...\n\n", VERSION); fprintf(stderr, " Options:\n" " -Q, --local search local DB (default)\n" " -S, --sync search sync DBs\n" " -s, --search search for matching strings\n\n" " -d, --delim separator used between packages (default: \"\\n\")\n" " -l, --listdelim separator used between list elements (default: \" \")\n" " -t, --timefmt date format passed to strftime (default: \"%%c\")\n\n" " -v, --verbose be more verbose\n\n" " -h, --help display this help and exit\n\n"); } static int parse_options(int argc, char *argv[]) { int opt, option_index = 0; static struct option opts[] = { {"delim", required_argument, 0, 'd'}, {"listdelim", required_argument, 0, 'l'}, {"help", no_argument, 0, 'h'}, {"local", no_argument, 0, 'Q'}, {"sync", no_argument, 0, 'S'}, {"search", no_argument, 0, 's'}, {"timefmt", required_argument, 0, 't'}, {"verbose", no_argument, 0, 'v'}, {0, 0, 0, 0} }; while (-1 != (opt = getopt_long(argc, argv, "l:d:hf:QSst:v", opts, &option_index))) { switch (opt) { case 'S': if (dblist) { fprintf(stderr, "error: can only select one repo option (use -h for help)\n"); return(1); } dblist = alpm_list_copy(alpm_option_get_syncdbs()); break; case 'Q': if (dblist) { fprintf(stderr, "error: can only select one repo option (use -h for help)\n"); return(1); } dblist = alpm_list_add(dblist, db_local); local = true; break; case 'd': delim = optarg; break; case 'l': listdelim = optarg; break; case 'h': usage(); return(1); case 's': search = true; break; case 't': timefmt = optarg; break; case 'v': verbose = true; break; case '?': return(1); default: return(1); } } if (optind < argc) { format = argv[optind++]; } else { fprintf(stderr, "error: missing format string (use -h for help)\n"); return(1); } while (optind < argc) { targets = alpm_list_add(targets, argv[optind++]); } return(0); } static int print_escaped(const char *delim) { const char *f; int out = 0; for (f = delim; *f != '\0'; f++) { if (*f == '\\') { switch (*++f) { case '\\': putchar('\\'); break; case '"': putchar('\"'); break; case 'a': putchar('\a'); break; case 'b': putchar('\b'); break; case 'e': /* \e is nonstandard */ putchar('\033'); break; case 'n': putchar('\n'); break; case 'r': putchar('\r'); break; case 't': putchar('\t'); break; case 'v': putchar('\v'); break; ++out; } } else { putchar(*f); ++out; } } return(out); } static int print_list(alpm_list_t *list, extractfn fn, bool shortdeps) { alpm_list_t *i; int out = 0; if (!list) { if (verbose) { out += printf("None"); } return(out); } i = list; while (1) { char *item; item = (char*)(fn ? fn(alpm_list_getdata(i)) : alpm_list_getdata(i)); if (shortdeps) { *(item + strcspn(item, "<>=")) = '\0'; } out += printf("%s", item); if ((i = alpm_list_next(i))) { out += print_escaped(listdelim); } else { break; } } return(out); } static int print_time(time_t timestamp) { char buffer[64]; int out = 0; if (!timestamp) { if (verbose) { out += printf("None"); } return(out); } /* no overflow here, strftime prints a max of 64 including null */ strftime(&buffer[0], 64, timefmt, localtime(×tamp)); out += printf("%s", buffer); return(out); } static int print_pkg(pmpkg_t *pkg, const char *format) { const char *f; int out = 0; for (f = format; *f != '\0'; f++) { bool shortdeps = false; if (*f == '%') { switch (*++f) { /* simple attributes */ case 'f': /* filename */ out += printf("%s", alpm_pkg_get_filename(pkg)); break; case 'n': /* package name */ out += printf("%s", alpm_pkg_get_name(pkg)); break; case 'v': /* version */ out += printf("%s", alpm_pkg_get_version(pkg)); break; case 'd': /* description */ out += printf("%s", alpm_pkg_get_desc(pkg)); break; case 'u': /* project url */ out += printf("%s", alpm_pkg_get_url(pkg)); break; case 'p': /* packager name */ out += printf("%s", alpm_pkg_get_packager(pkg)); break; case 's': /* md5sum */ out += printf("%s", alpm_pkg_get_md5sum(pkg)); break; case 'a': /* architecutre */ out += printf("%s", alpm_pkg_get_arch(pkg)); break; case 'i': /* has install scriptlet? */ out += printf("%s", alpm_pkg_has_scriptlet(pkg) ? "yes" : "no"); break; case 'r': /* repo */ out += printf("%s", alpm_db_get_name(alpm_pkg_get_db(pkg))); break; case 'w': /* install reason */ out += printf("%s", alpm_pkg_get_reason(pkg) ? "dependency" : "explicit"); break; /* times */ case 'b': /* build date */ out += print_time(alpm_pkg_get_builddate(pkg)); break; case 'l': /* install date */ out += print_time(alpm_pkg_get_installdate(pkg)); break; /* sizes */ case 'k': /* download size */ out += printf("%.2f K", (float)alpm_pkg_get_size(pkg) / 1024.0); break; case 'm': /* install size */ out += printf("%.2f K", (float)alpm_pkg_get_isize(pkg) / 1024.0); break; /* lists */ case 'N': /* requiredby */ out += print_list(alpm_pkg_compute_requiredby(pkg), NULL, shortdeps); break; case 'L': /* licenses */ out += print_list(alpm_pkg_get_licenses(pkg), NULL, shortdeps); break; case 'G': /* groups */ out += print_list(alpm_pkg_get_groups(pkg), NULL, shortdeps); break; case 'E': /* depends (shortdeps) */ out += print_list(alpm_pkg_get_depends(pkg), (extractfn)alpm_dep_get_name, shortdeps); break; case 'D': /* depends */ out += print_list(alpm_pkg_get_depends(pkg), (extractfn)alpm_dep_compute_string, shortdeps); break; case 'O': /* optdepends */ out += print_list(alpm_pkg_get_optdepends(pkg), NULL, shortdeps); break; case 'C': /* conflicts */ out += print_list(alpm_pkg_get_conflicts(pkg), NULL, shortdeps); break; case 'S': /* provides (shortdeps) */ shortdeps = true; case 'P': /* provides */ out += print_list(alpm_pkg_get_provides(pkg), NULL, shortdeps); break; case 'R': /* replaces */ out += print_list(alpm_pkg_get_replaces(pkg), NULL, shortdeps); break; case 'F': /* files */ out += print_list(alpm_pkg_get_files(pkg), NULL, shortdeps); break; case 'B': /* backup */ out += print_list(alpm_pkg_get_backup(pkg), NULL, shortdeps); break; case '%': putchar('%'); out++; break; } } else if (*f == '\\') { char buf[3]; /* its not safe to do this in a single sprintf */ buf[0] = *f; buf[1] = *++f; buf[2] = '\0'; out += print_escaped(buf); } else { putchar(*f); out++; } } /* only print a delimeter if any package data was outputted */ if (out > 0) { print_escaped(delim); } return(0); } int verify_format_string(const char *format) { const char *p; for (p = format; *p != '\0'; p++) { if (*p == '%') { ++p; if (!strchr(FORMAT_TOKENS FORMAT_TOKENS_LOCAL FORMAT_TOKENS_SYNC, *p)) { fprintf(stderr, "error: bad token in format string: %%%c\n", *p); return(1); } /* check for querytype dependent tokens */ if (!local && strchr(FORMAT_TOKENS_LOCAL, *p)) { fprintf(stderr, "error: token not available with local queries: %%%c\n", *p); return(1); } else if (local && strchr(FORMAT_TOKENS_SYNC, *p)) { fprintf(stderr, "error: token not available with sync queries: %%%c\n", *p); return(1); } } else if (*p == '\\' && !strchr(ESCAPE_TOKENS, *++p)) { fprintf(stderr, "error: bad token in format string: \\%c\n", *p); return(1); } } return(0); } alpm_list_t *resolve_pkg(alpm_list_t *targets) { char *pkgname, *reponame; alpm_list_t *t, *r, *ret = NULL; if (search) { for (r = dblist; r; r = alpm_list_next(r)) { ret = alpm_list_join(ret, alpm_db_search(alpm_list_getdata(r), targets)); } } else { for (t = targets; t; t = alpm_list_next(t)) { pkgname = reponame = alpm_list_getdata(t); if (strchr(pkgname, '/')) { strsep(&pkgname, "/"); } else { reponame = NULL; } for (r = dblist; r; r = alpm_list_next(r)) { pmdb_t *repo; pmpkg_t *pkg; repo = alpm_list_getdata(r); if (reponame && strcmp(reponame, alpm_db_get_name(repo)) != 0) { continue; } pkg = alpm_db_get_pkg(repo, pkgname); #ifdef _HAVE_ALPM_FIND_SATISFIER if (!pkg) { pkg = alpm_find_satisfier(alpm_db_get_pkgcache(repo), pkgname); } #endif if (!pkg) { if (verbose) { fprintf(stderr, "error: package `%s' not found\n", pkgname); } continue; } ret = alpm_list_add(ret, pkg); } } } return(ret); } int main(int argc, char *argv[]) { int ret; alpm_list_t *results, *i; ret = alpm_init(); if (ret != 0) { return(ret); } ret = parse_options(argc, argv); if (ret != 0) { goto finish; } /* ensure sane defaults */ if (!dblist) { local = true; dblist = alpm_list_add(dblist, db_local); } delim = delim ? delim : DEFAULT_DELIM; listdelim = listdelim ? listdelim : DEFAULT_LISTDELIM; timefmt = timefmt ? timefmt : DEFAULT_TIMEFMT; if (verify_format_string(format) != 0) { return(1); } results = resolve_pkg(targets); if (!results) { ret = 1; goto finish; } for (i = results; i; i = alpm_list_next(i)) { pmpkg_t *pkg = alpm_list_getdata(i); ret += print_pkg(pkg, format); } ret = !!ret; /* clamp to zero/one */ alpm_list_free(results); finish: alpm_list_free(dblist); alpm_list_free(targets); alpm_release(); return(ret); }