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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
|
/*
* Copyright (c) 2007, Novell Inc.
*
* This program is licensed under the BSD license, read LICENSE.BSD
* for further information
*/
/*
* rpmdb2solv
*
* Reads rpm database (and evtl. more, like product metadata) to build
* a .solv file of 'installed' solvables.
* Writes .solv to stdout
*
*/
#include <sys/types.h>
#include <limits.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "pool.h"
#include "repo.h"
#include "repo_rpmdb.h"
#include "repo_products.h"
#include "repo_solv.h"
#include "common_write.h"
static void
usage(int status)
{
fprintf(stderr, "\nUsage:\n"
"rpmdb2solv [-n] [-x] [-b <basefile>] [-p <productsdir>] [-r <root>]\n"
" -n : No packages, do not read rpmdb, useful to only parse products\n"
" -x : use extrapool\n"
" -b <basefile> : Write .solv to <basefile>.solv instead of stdout\n"
" -p <productsdir> : Scan <productsdir> for .prod files, representing installed products\n"
" -r <root> : Prefix rpmdb path and <productsdir> with <root>\n"
" -o <solv> : Write .solv to file instead of stdout\n"
);
exit(status);
}
int
main(int argc, char **argv)
{
Pool *pool = pool_create();
Repo *repo, *ref = 0;
Repodata *data;
int c, percent = 0;
int extrapool = 0;
int nopacks = 0;
const char *root = 0;
const char *basefile = 0;
const char *refname = 0;
#ifdef ENABLE_SUSEREPO
char *proddir = 0;
#endif
char *outfile = 0;
/*
* parse arguments
*/
while ((c = getopt(argc, argv, "Phnxb:r:p:o:")) >= 0)
switch (c)
{
case 'h':
usage(0);
break;
case 'r':
root = optarg;
break;
case 'b':
basefile = optarg;
break;
case 'n':
nopacks = 1;
break;
case 'P':
percent = 1;
break;
case 'p':
#ifdef ENABLE_SUSEREPO
proddir = optarg;
#endif
break;
case 'x':
extrapool = 1;
break;
case 'o':
outfile = optarg;
break;
default:
usage(1);
}
if (outfile && !freopen(outfile, "w", stdout))
{
perror(outfile);
exit(1);
}
/*
* optional arg is old version of rpmdb solv file
* should make this a real option instead
*/
if (optind < argc)
refname = argv[optind];
if (refname)
{
FILE *fp;
if ((fp = fopen(refname, "r")) == NULL)
{
perror(refname);
}
else
{
Pool *refpool = extrapool ? pool_create() : 0;
ref = repo_create(refpool ? refpool : pool, "ref");
if (repo_add_solv(ref, fp, 0) != 0)
{
fprintf(stderr, "%s: %s\n", refname, pool_errstr(ref->pool));
if (ref->pool != pool)
pool_free(ref->pool);
else
repo_free(ref, 1);
ref = 0;
}
else
repo_disable_paging(ref);
fclose(fp);
}
}
/*
* create 'installed' repository
* add products
* add rpmdb
* write .solv
*/
repo = repo_create(pool, "installed");
data = repo_add_repodata(repo, 0);
if (!nopacks)
{
if (repo_add_rpmdb(repo, ref, root, REPO_REUSE_REPODATA | REPO_NO_INTERNALIZE | (percent ? RPMDB_REPORT_PROGRESS : 0)))
{
fprintf(stderr, "rpmdb2solv: %s\n", pool_errstr(pool));
exit(1);
}
}
#ifdef ENABLE_SUSEREPO
if (proddir && *proddir)
{
char *buf = proddir;
/* if <root> given, not '/', and proddir does not start with <root> */
if (root && *root)
{
int rootlen = strlen(root);
if (strncmp(root, proddir, rootlen))
{
buf = (char *)solv_malloc(rootlen + strlen(proddir) + 2); /* + '/' + \0 */
strcpy(buf, root);
if (root[rootlen - 1] != '/' && *proddir != '/')
buf[rootlen++] = '/';
strcpy(buf + rootlen, proddir);
}
}
if (repo_add_products(repo, buf, root, REPO_REUSE_REPODATA | REPO_NO_INTERNALIZE))
{
fprintf(stderr, "rpmdb2solv: %s\n", pool_errstr(pool));
exit(1);
}
if (buf != proddir)
solv_free(buf);
}
#endif
repodata_internalize(data);
if (ref)
{
if (ref->pool != pool)
pool_free(ref->pool);
else
repo_free(ref, 1);
ref = 0;
}
tool_write(repo, basefile, 0);
pool_free(pool);
exit(0);
}
|