2012-11-02 19:34:25 +05:30
|
|
|
/*-
|
2013-02-11 20:48:43 +05:30
|
|
|
* Copyright (c) 2008-2013 Juan Romero Pardines.
|
2012-11-02 19:34:25 +05:30
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_STRCASESTR
|
|
|
|
# define _GNU_SOURCE /* for strcasestr(3) */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <libgen.h>
|
|
|
|
#include <fnmatch.h>
|
2012-12-06 15:28:11 +05:30
|
|
|
#include <assert.h>
|
2012-11-02 19:34:25 +05:30
|
|
|
|
|
|
|
#include <xbps_api.h>
|
|
|
|
#include "defs.h"
|
|
|
|
|
2013-02-11 20:48:43 +05:30
|
|
|
struct search_data {
|
2012-11-02 19:34:25 +05:30
|
|
|
int npatterns;
|
|
|
|
char **patterns;
|
2013-06-12 13:34:10 +05:30
|
|
|
int maxcols;
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_array_t results;
|
2012-11-02 19:34:25 +05:30
|
|
|
};
|
|
|
|
|
2013-02-11 20:48:43 +05:30
|
|
|
static void
|
|
|
|
print_results(struct xbps_handle *xhp, struct search_data *sd)
|
2012-11-02 19:34:25 +05:30
|
|
|
{
|
2013-02-11 20:48:43 +05:30
|
|
|
const char *pkgver, *desc, *inststr;
|
|
|
|
char tmp[256], *out;
|
2013-06-12 13:34:10 +05:30
|
|
|
unsigned int i, j, tlen = 0, len = 0;
|
2013-02-11 20:48:43 +05:30
|
|
|
|
|
|
|
/* Iterate over results array and find out largest pkgver string */
|
2013-06-20 13:56:12 +05:30
|
|
|
for (i = 0; i < xbps_array_count(sd->results); i++) {
|
|
|
|
xbps_array_get_cstring_nocopy(sd->results, i, &pkgver);
|
2013-02-11 20:48:43 +05:30
|
|
|
len = strlen(pkgver);
|
|
|
|
if (tlen == 0 || len > tlen)
|
|
|
|
tlen = len;
|
|
|
|
i++;
|
|
|
|
}
|
2013-06-20 13:56:12 +05:30
|
|
|
for (i = 0; i < xbps_array_count(sd->results); i++) {
|
|
|
|
xbps_array_get_cstring_nocopy(sd->results, i, &pkgver);
|
|
|
|
xbps_array_get_cstring_nocopy(sd->results, i+1, &desc);
|
2013-02-11 20:48:43 +05:30
|
|
|
strncpy(tmp, pkgver, sizeof(tmp));
|
|
|
|
for (j = strlen(tmp); j < tlen; j++)
|
|
|
|
tmp[j] = ' ';
|
|
|
|
|
|
|
|
tmp[j] = '\0';
|
|
|
|
if (xbps_pkgdb_get_pkg(xhp, pkgver))
|
|
|
|
inststr = "[*]";
|
|
|
|
else
|
|
|
|
inststr = "[-]";
|
|
|
|
|
2013-02-28 20:37:11 +05:30
|
|
|
len = strlen(inststr) + strlen(tmp) + strlen(desc) + 3;
|
2013-06-12 13:34:10 +05:30
|
|
|
if ((int)len > sd->maxcols) {
|
2013-02-11 20:48:43 +05:30
|
|
|
out = malloc(sd->maxcols+1);
|
|
|
|
assert(out);
|
2013-02-28 20:37:11 +05:30
|
|
|
snprintf(out, sd->maxcols-3, "%s %s %s",
|
2013-02-11 20:48:43 +05:30
|
|
|
inststr, tmp, desc);
|
2013-02-28 20:37:11 +05:30
|
|
|
strncat(out, "...\n", sd->maxcols);
|
2013-02-11 20:48:43 +05:30
|
|
|
printf("%s", out);
|
|
|
|
free(out);
|
|
|
|
} else {
|
|
|
|
printf("%s %s %s\n", inststr, tmp, desc);
|
|
|
|
}
|
|
|
|
i++;
|
2012-11-02 19:34:25 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2013-06-10 13:58:39 +05:30
|
|
|
search_pkgs_cb(struct xbps_repo *repo, void *arg, bool *done)
|
2012-11-02 19:34:25 +05:30
|
|
|
{
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_array_t allkeys;
|
|
|
|
xbps_dictionary_t pkgd;
|
|
|
|
xbps_dictionary_keysym_t ksym;
|
2013-02-11 20:48:43 +05:30
|
|
|
struct search_data *sd = arg;
|
|
|
|
const char *pkgver, *desc;
|
2013-06-12 13:34:10 +05:30
|
|
|
unsigned int i;
|
2012-11-30 11:41:51 +05:30
|
|
|
int x;
|
2012-11-02 19:34:25 +05:30
|
|
|
|
2012-11-30 11:41:51 +05:30
|
|
|
(void)done;
|
2012-11-02 19:34:25 +05:30
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
allkeys = xbps_dictionary_all_keys(repo->idx);
|
|
|
|
for (i = 0; i < xbps_array_count(allkeys); i++) {
|
|
|
|
ksym = xbps_array_get(allkeys, i);
|
|
|
|
pkgd = xbps_dictionary_get_keysym(repo->idx, ksym);
|
2012-11-30 11:41:51 +05:30
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_get_cstring_nocopy(pkgd, "pkgver", &pkgver);
|
|
|
|
xbps_dictionary_get_cstring_nocopy(pkgd, "short_desc", &desc);
|
2012-11-30 11:41:51 +05:30
|
|
|
|
2013-02-11 20:48:43 +05:30
|
|
|
for (x = 0; x < sd->npatterns; x++) {
|
2013-02-15 13:00:11 +05:30
|
|
|
bool vpkgfound = false;
|
|
|
|
|
2013-06-14 13:10:10 +05:30
|
|
|
if (xbps_match_virtual_pkg_in_dict(pkgd, sd->patterns[x], false))
|
|
|
|
vpkgfound = true;
|
|
|
|
|
2013-02-15 13:00:11 +05:30
|
|
|
if ((xbps_pkgpattern_match(pkgver, sd->patterns[x])) ||
|
|
|
|
(strcasestr(pkgver, sd->patterns[x])) ||
|
2013-02-18 18:55:15 +05:30
|
|
|
(strcasestr(desc, sd->patterns[x])) || vpkgfound) {
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_array_add_cstring_nocopy(sd->results, pkgver);
|
|
|
|
xbps_array_add_cstring_nocopy(sd->results, desc);
|
2013-02-15 13:00:11 +05:30
|
|
|
}
|
2012-11-02 19:34:25 +05:30
|
|
|
}
|
|
|
|
}
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_release(allkeys);
|
2012-11-02 19:34:25 +05:30
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
repo_search(struct xbps_handle *xhp, int npatterns, char **patterns)
|
|
|
|
{
|
2013-02-11 20:48:43 +05:30
|
|
|
struct search_data sd;
|
2012-11-02 19:34:25 +05:30
|
|
|
int rv;
|
|
|
|
|
2013-02-11 20:48:43 +05:30
|
|
|
sd.npatterns = npatterns;
|
|
|
|
sd.patterns = patterns;
|
|
|
|
sd.maxcols = get_maxcols();
|
2013-06-20 13:56:12 +05:30
|
|
|
sd.results = xbps_array_create();
|
2012-11-02 19:34:25 +05:30
|
|
|
|
2013-02-11 20:48:43 +05:30
|
|
|
rv = xbps_rpool_foreach(xhp, search_pkgs_cb, &sd);
|
2012-11-02 19:34:25 +05:30
|
|
|
if (rv != 0 && rv != ENOTSUP)
|
|
|
|
fprintf(stderr, "Failed to initialize rpool: %s\n",
|
|
|
|
strerror(rv));
|
|
|
|
|
2013-02-11 20:48:43 +05:30
|
|
|
print_results(xhp, &sd);
|
|
|
|
|
2012-11-02 19:34:25 +05:30
|
|
|
return rv;
|
|
|
|
}
|