2012-11-02 19:34:25 +05:30
|
|
|
/*-
|
2013-03-05 13:22:40 +05:30
|
|
|
* Copyright (c) 2010-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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fnmatch.h>
|
|
|
|
#include <dirent.h>
|
2013-03-05 13:22:40 +05:30
|
|
|
#include <assert.h>
|
2012-11-02 19:34:25 +05:30
|
|
|
|
2013-06-20 16:01:02 +05:30
|
|
|
#include <xbps.h>
|
2012-11-02 19:34:25 +05:30
|
|
|
#include "defs.h"
|
|
|
|
|
2012-11-16 21:25:35 +05:30
|
|
|
struct ffdata {
|
|
|
|
int npatterns;
|
|
|
|
char **patterns;
|
|
|
|
const char *repouri;
|
|
|
|
};
|
|
|
|
|
2012-12-15 23:49:42 +05:30
|
|
|
static void
|
2013-06-20 13:56:12 +05:30
|
|
|
match_files_by_pattern(xbps_dictionary_t pkg_filesd,
|
|
|
|
xbps_dictionary_keysym_t key,
|
2012-12-15 23:49:42 +05:30
|
|
|
struct ffdata *ffd,
|
|
|
|
const char *pkgver)
|
2012-11-02 19:34:25 +05:30
|
|
|
{
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_array_t array;
|
|
|
|
xbps_object_t obj;
|
2012-11-02 19:34:25 +05:30
|
|
|
const char *keyname, *filestr, *typestr;
|
2012-12-15 23:49:42 +05:30
|
|
|
unsigned int i;
|
|
|
|
int x;
|
2012-11-02 19:34:25 +05:30
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
keyname = xbps_dictionary_keysym_cstring_nocopy(key);
|
2012-11-02 19:34:25 +05:30
|
|
|
|
|
|
|
if (strcmp(keyname, "files") == 0)
|
|
|
|
typestr = "regular file";
|
|
|
|
else if (strcmp(keyname, "dirs") == 0)
|
|
|
|
typestr = "directory";
|
|
|
|
else if (strcmp(keyname, "links") == 0)
|
|
|
|
typestr = "link";
|
2012-11-16 21:25:35 +05:30
|
|
|
else if (strcmp(keyname, "conf_files") == 0)
|
2012-11-02 19:34:25 +05:30
|
|
|
typestr = "configuration file";
|
2012-11-16 21:25:35 +05:30
|
|
|
else
|
2012-12-15 23:49:42 +05:30
|
|
|
return;
|
2012-11-02 19:34:25 +05:30
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
array = xbps_dictionary_get_keysym(pkg_filesd, key);
|
|
|
|
for (i = 0; i < xbps_array_count(array); i++) {
|
|
|
|
obj = xbps_array_get(array, i);
|
2013-07-21 14:19:30 +05:30
|
|
|
filestr = NULL;
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_get_cstring_nocopy(obj, "file", &filestr);
|
2013-03-05 13:22:40 +05:30
|
|
|
if (filestr == NULL)
|
|
|
|
continue;
|
2012-12-15 23:49:42 +05:30
|
|
|
for (x = 0; x < ffd->npatterns; x++) {
|
2013-05-13 18:40:47 +05:30
|
|
|
if ((fnmatch(ffd->patterns[x], filestr, FNM_PERIOD)) == 0) {
|
2012-12-15 23:49:42 +05:30
|
|
|
printf("%s: %s (%s)\n", pkgver,
|
|
|
|
filestr, typestr);
|
|
|
|
}
|
2012-11-02 19:34:25 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-16 21:25:35 +05:30
|
|
|
static int
|
2013-06-20 13:56:12 +05:30
|
|
|
ownedby_pkgdb_cb(struct xbps_handle *xhp, xbps_object_t obj, void *arg, bool *done)
|
2012-11-02 19:34:25 +05:30
|
|
|
{
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_t pkgmetad;
|
|
|
|
xbps_array_t files_keys;
|
2012-11-16 21:25:35 +05:30
|
|
|
struct ffdata *ffd = arg;
|
|
|
|
unsigned int i;
|
2012-12-15 23:49:42 +05:30
|
|
|
const char *pkgver;
|
2012-11-02 19:34:25 +05:30
|
|
|
|
2012-11-16 21:25:35 +05:30
|
|
|
(void)done;
|
2012-11-02 19:34:25 +05:30
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_get_cstring_nocopy(obj, "pkgver", &pkgver);
|
2012-12-15 23:49:42 +05:30
|
|
|
pkgmetad = xbps_pkgdb_get_pkg_metadata(xhp, pkgver);
|
2013-03-05 13:22:40 +05:30
|
|
|
assert(pkgmetad);
|
2012-11-16 21:25:35 +05:30
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
files_keys = xbps_dictionary_all_keys(pkgmetad);
|
|
|
|
for (i = 0; i < xbps_array_count(files_keys); i++) {
|
2012-12-15 23:49:42 +05:30
|
|
|
match_files_by_pattern(pkgmetad,
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_array_get(files_keys, i), ffd, pkgver);
|
2012-11-02 19:34:25 +05:30
|
|
|
}
|
2013-07-21 14:19:30 +05:30
|
|
|
xbps_object_release(pkgmetad);
|
|
|
|
xbps_object_release(files_keys);
|
|
|
|
|
2012-12-15 23:49:42 +05:30
|
|
|
return 0;
|
2012-11-02 19:34:25 +05:30
|
|
|
}
|
|
|
|
|
2012-11-16 21:25:35 +05:30
|
|
|
int
|
|
|
|
ownedby(struct xbps_handle *xhp, int npatterns, char **patterns)
|
|
|
|
{
|
|
|
|
struct ffdata ffd;
|
2013-03-17 15:29:40 +05:30
|
|
|
char *rfile;
|
|
|
|
int i;
|
2012-11-16 21:25:35 +05:30
|
|
|
|
|
|
|
ffd.npatterns = npatterns;
|
|
|
|
ffd.patterns = patterns;
|
|
|
|
|
2013-03-17 15:29:40 +05:30
|
|
|
for (i = 0; i < npatterns; i++) {
|
|
|
|
rfile = realpath(patterns[i], NULL);
|
|
|
|
if (rfile)
|
|
|
|
patterns[i] = rfile;
|
|
|
|
}
|
2012-11-16 21:25:35 +05:30
|
|
|
return xbps_pkgdb_foreach_cb(xhp, ownedby_pkgdb_cb, &ffd);
|
|
|
|
}
|
2012-11-02 19:34:25 +05:30
|
|
|
|
|
|
|
static void
|
2013-06-20 13:56:12 +05:30
|
|
|
repo_match_files_by_pattern(xbps_array_t files,
|
2013-06-10 13:58:39 +05:30
|
|
|
const char *pkgver,
|
|
|
|
struct ffdata *ffd)
|
2012-11-02 19:34:25 +05:30
|
|
|
{
|
2013-06-10 13:58:39 +05:30
|
|
|
const char *filestr;
|
2013-06-12 13:34:10 +05:30
|
|
|
unsigned int i;
|
2012-11-02 19:34:25 +05:30
|
|
|
int x;
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
for (i = 0; i < xbps_array_count(files); i++) {
|
|
|
|
xbps_array_get_cstring_nocopy(files, i, &filestr);
|
2012-11-02 19:34:25 +05:30
|
|
|
for (x = 0; x < ffd->npatterns; x++) {
|
2013-05-13 18:40:47 +05:30
|
|
|
if ((fnmatch(ffd->patterns[x], filestr, FNM_PERIOD)) == 0) {
|
2012-11-02 19:34:25 +05:30
|
|
|
printf("%s: %s (%s)\n",
|
|
|
|
pkgver, filestr, ffd->repouri);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2013-06-10 13:58:39 +05:30
|
|
|
repo_ownedby_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, pkgar;
|
|
|
|
xbps_dictionary_t filesd;
|
|
|
|
xbps_dictionary_keysym_t ksym;
|
2012-11-02 19:34:25 +05:30
|
|
|
struct ffdata *ffd = arg;
|
2013-06-10 13:58:39 +05:30
|
|
|
const char *pkgver;
|
2012-11-02 19:34:25 +05:30
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
(void)done;
|
|
|
|
|
2013-06-10 13:58:39 +05:30
|
|
|
filesd = xbps_repo_get_plist(repo, XBPS_PKGINDEX_FILES);
|
|
|
|
ffd->repouri = repo->uri;
|
2013-06-20 13:56:12 +05:30
|
|
|
allkeys = xbps_dictionary_all_keys(filesd);
|
2012-12-15 23:49:42 +05:30
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
for (i = 0; i < xbps_array_count(allkeys); i++) {
|
|
|
|
ksym = xbps_array_get(allkeys, i);
|
|
|
|
pkgar = xbps_dictionary_get_keysym(filesd, ksym);
|
|
|
|
pkgver = xbps_dictionary_keysym_cstring_nocopy(ksym);
|
2013-06-10 13:58:39 +05:30
|
|
|
repo_match_files_by_pattern(pkgar, pkgver, ffd);
|
2012-11-30 11:41:51 +05:30
|
|
|
}
|
2013-07-21 14:19:30 +05:30
|
|
|
xbps_object_release(filesd);
|
|
|
|
xbps_object_release(allkeys);
|
2012-11-02 19:34:25 +05:30
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
repo_ownedby(struct xbps_handle *xhp, int npatterns, char **patterns)
|
|
|
|
{
|
|
|
|
struct ffdata ffd;
|
2013-03-17 15:29:40 +05:30
|
|
|
char *rfile;
|
|
|
|
int i;
|
2012-11-02 19:34:25 +05:30
|
|
|
|
|
|
|
ffd.npatterns = npatterns;
|
|
|
|
ffd.patterns = patterns;
|
|
|
|
|
2013-03-17 15:29:40 +05:30
|
|
|
for (i = 0; i < npatterns; i++) {
|
|
|
|
rfile = realpath(patterns[i], NULL);
|
|
|
|
if (rfile)
|
|
|
|
patterns[i] = rfile;
|
|
|
|
}
|
2012-11-02 19:34:25 +05:30
|
|
|
return xbps_rpool_foreach(xhp, repo_ownedby_cb, &ffd);
|
|
|
|
}
|