1be90e57d7
Fixes issue #26
92 lines
2.5 KiB
C
92 lines
2.5 KiB
C
/*-
|
|
* Copyright (c) 2011-2012 Juan Romero Pardines.
|
|
* 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 <strings.h>
|
|
#include <unistd.h>
|
|
#include <inttypes.h>
|
|
|
|
#include "defs.h"
|
|
#include "../xbps-bin/defs.h"
|
|
|
|
int
|
|
repo_pkg_list_cb(struct xbps_handle *xhp,
|
|
struct xbps_rpool_index *rpi,
|
|
void *arg,
|
|
bool *done)
|
|
{
|
|
struct list_pkgver_cb lpc;
|
|
const char *repo = arg;
|
|
|
|
(void)done;
|
|
if (repo && strcmp(rpi->uri, repo))
|
|
return 0;
|
|
|
|
lpc.check_state = false;
|
|
lpc.state = 0;
|
|
lpc.pkgver_len = find_longest_pkgver(xhp, rpi->repo);
|
|
lpc.maxcols = get_maxcols();
|
|
|
|
(void)xbps_callback_array_iter(xhp, rpi->repo, list_pkgs_in_dict, &lpc);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
repo_list_uri_cb(struct xbps_handle *xhp,
|
|
struct xbps_rpool_index *rpi,
|
|
void *arg,
|
|
bool *done)
|
|
{
|
|
(void)xhp;
|
|
(void)arg;
|
|
(void)done;
|
|
|
|
printf("%s (%zu packages)\n", rpi->uri,
|
|
(size_t)prop_array_count(rpi->repo));
|
|
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
repo_search_pkgs_cb(struct xbps_handle *xhp,
|
|
struct xbps_rpool_index *rpi,
|
|
void *arg,
|
|
bool *done)
|
|
{
|
|
struct repo_search_data *rsd = arg;
|
|
(void)done;
|
|
|
|
rsd->maxcols = get_maxcols();
|
|
rsd->pkgver_len = find_longest_pkgver(xhp, rpi->repo);
|
|
|
|
(void)xbps_callback_array_iter(xhp, rpi->repo, show_pkg_namedesc, rsd);
|
|
|
|
return 0;
|
|
}
|