summaryrefslogtreecommitdiff
path: root/tools/rpmdeps.c
blob: f260a38c4d052bd4840dd5df5542490eca4548c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#include "system.h"

#include <rpm/rpmbuild.h>
#include <rpm/argv.h>
#include <rpm/rpmds.h>
#include <rpm/rpmfc.h>

#include "debug.h"

static int print_provides;

static int print_requires;

static int print_recommends;

static int print_suggests;

static int print_supplements;

static int print_enhances;

static int print_conflicts;

static int print_obsoletes;

static int print_alldeps;

static void rpmdsPrint(const char * msg, rpmds ds, FILE * fp)
{
    if (fp == NULL) fp = stderr;

    if (msg)
	fprintf(fp, "===================================== %s\n", msg);

    ds = rpmdsInit(ds);
    while (rpmdsNext(ds) >= 0)
	fprintf(fp, "%s\n", rpmdsDNEVR(ds)+2);
}

static struct poptOption optionsTable[] = {

 { NULL, '\0', POPT_ARG_INCLUDE_TABLE, rpmcliAllPoptTable, 0,
	N_("Common options for all rpm modes and executables:"),
	NULL }, 

 { "provides", 'P', POPT_ARG_VAL, &print_provides, -1,
        NULL, NULL },
 { "requires", 'R', POPT_ARG_VAL, &print_requires, -1,
        NULL, NULL },
 { "recommends", '\0', POPT_ARG_VAL, &print_recommends, -1,
        NULL, NULL },
 { "suggests", '\0', POPT_ARG_VAL, &print_suggests, -1,
        NULL, NULL },
 { "supplements", '\0', POPT_ARG_VAL, &print_supplements, -1,
        NULL, NULL },
 { "enhances", '\0', POPT_ARG_VAL, &print_enhances, -1,
        NULL, NULL },
 { "conflicts", '\0', POPT_ARG_VAL, &print_conflicts, -1,
        NULL, NULL },
 { "obsoletes", '\0', POPT_ARG_VAL, &print_obsoletes, -1,
        NULL, NULL },
 { "alldeps", '\0', POPT_ARG_VAL, &print_alldeps, -1,
        NULL, NULL },

   POPT_AUTOALIAS
   POPT_AUTOHELP
   POPT_TABLEEND
};

int
main(int argc, char *argv[])
{
    poptContext optCon = NULL;
    ARGV_t av = NULL;
    rpmfc fc = NULL;
    int ec = 1;
    char buf[BUFSIZ];

    xsetprogname(argv[0]); /* Portability call -- see system.h */

    optCon = rpmcliInit(argc, argv, optionsTable);
    if (optCon == NULL)
	goto exit;

    /* normally files get passed through stdin but also accept files as args */
    if (poptPeekArg(optCon)) {
	const char *arg;
	while ((arg = poptGetArg(optCon)) != NULL) {
	    argvAdd(&av, arg);
	}
    } else {
	while (fgets(buf, sizeof(buf), stdin) != NULL) {
	    char *be = buf + strlen(buf) - 1;
	    while (strchr("\r\n", *be) != NULL)
		*be-- = '\0';
	    argvAdd(&av, buf);
	}
    }
    /* Make sure file names are sorted. */
    argvSort(av, NULL);

    /* Build file/package class and dependency dictionaries. */
    fc = rpmfcCreate(getenv("RPM_BUILD_ROOT"), 0);
    if (rpmfcClassify(fc, av, NULL) || rpmfcApply(fc))
	goto exit;

    if (print_alldeps || _rpmfc_debug)
	rpmfcPrint(NULL, fc, print_alldeps ? stdout : NULL);

    if (!print_alldeps) {
	if (print_provides)
	    rpmdsPrint(NULL, rpmfcProvides(fc), stdout);
	if (print_requires)
	    rpmdsPrint(NULL, rpmfcRequires(fc), stdout);
	if (print_recommends)
	    rpmdsPrint(NULL, rpmfcRecommends(fc), stdout);
	if (print_suggests)
	    rpmdsPrint(NULL, rpmfcSuggests(fc), stdout);
	if (print_supplements)
	    rpmdsPrint(NULL, rpmfcSupplements(fc), stdout);
	if (print_enhances)
	    rpmdsPrint(NULL, rpmfcEnhances(fc), stdout);
	if (print_conflicts)
	    rpmdsPrint(NULL, rpmfcConflicts(fc), stdout);
	if (print_obsoletes)
	    rpmdsPrint(NULL, rpmfcObsoletes(fc), stdout);
    }

    ec = 0;

exit:
    argvFree(av);
    rpmfcFree(fc);
    rpmcliFini(optCon);
    return ec;
}