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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
|
/** \ingroup py_c
* \file python/rpmfts-py.c
*/
#include "system.h"
#include "structmember.h"
#include <fts.h>
#include "rpmfts-py.h"
#include <rpmlib.h> /* XXX _free */
#include "debug.h"
static int _rpmfts_debug = 1;
#define infoBit(_ix) (1 << (((unsigned)(_ix)) & 0x1f))
static const char * ftsInfoStrings[] = {
"UNKNOWN",
"D",
"DC",
"DEFAULT",
"DNR",
"DOT",
"DP",
"ERR",
"F",
"INIT",
"NS",
"NSOK",
"SL",
"SLNONE",
"W",
};
static const char * ftsInfoStr(int fts_info)
{
if (!(fts_info >= 1 && fts_info <= 14))
fts_info = 0;
return ftsInfoStrings[ fts_info ];
}
#define RPMFTS_CLOSE 0
#define RPMFTS_OPEN 1
#define RPMFTS_OPEN_LAZY 2
static void
rpmfts_debug (const char * msg, rpmftsObject * s)
{
if (_rpmfts_debug == 0)
return;
if (msg)
fprintf(stderr, "*** %s(%p)", msg, s);
if (s)
fprintf(stderr, " %zd %d ftsp %p fts %p\n", s->ob_refcnt, s->active, s->ftsp, s->fts);
}
static int
rpmfts_initialize(rpmftsObject * s, const char * root, int options, int ignore)
{
int ac = 1;
size_t nb;
if (root == NULL) root = "/";
if (options == -1) options = (FTS_COMFOLLOW | FTS_LOGICAL | FTS_NOSTAT);
if (ignore == -1) ignore = infoBit(FTS_DP);
s->roots = _free(s->roots);
nb = (ac + 1) * sizeof(*s->roots);
nb += strlen(root) + 1;
s->roots = malloc(nb);
if (s->roots != NULL) {
char *t = (char *) &s->roots[ac + 1];
s->roots[0] = t;
s->roots[ac] = NULL;
(void) stpcpy(t, root);
}
s->options = options;
s->ignore = ignore;
s->compare = NULL;
s->ftsp = NULL;
s->fts = NULL;
s->active = RPMFTS_CLOSE;
return 0;
}
static int
rpmfts_state(rpmftsObject * s, int nactive)
{
int rc = 0;
rpmfts_debug(__FUNCTION__, s);
switch (nactive) {
case RPMFTS_CLOSE:
if (s->ftsp != NULL) {
Py_BEGIN_ALLOW_THREADS
rc = Fts_close(s->ftsp);
Py_END_ALLOW_THREADS
s->ftsp = NULL;
}
break;
case RPMFTS_OPEN_LAZY:
case RPMFTS_OPEN:
if (s->ftsp == NULL) {
Py_BEGIN_ALLOW_THREADS
s->ftsp = Fts_open((char *const *)s->roots, s->options, (int (*)(const FTSENT **, const FTSENT **))s->compare);
Py_END_ALLOW_THREADS
}
break;
}
s->fts = NULL;
s->active = nactive;
return rc;
}
static PyObject *
rpmfts_step(rpmftsObject * s)
{
PyObject * result = NULL;
int xx;
rpmfts_debug(__FUNCTION__, s);
if (s->ftsp == NULL)
return NULL;
do {
Py_BEGIN_ALLOW_THREADS
s->fts = Fts_read(s->ftsp);
Py_END_ALLOW_THREADS
} while (s->fts && (infoBit(s->fts->fts_info) & s->ignore));
if (s->fts != NULL) {
Py_INCREF(s);
result = (PyObject *)s;
} else {
if (s->active == RPMFTS_OPEN_LAZY)
xx = rpmfts_state(s, RPMFTS_CLOSE);
s->active = RPMFTS_CLOSE;
}
return result;
}
/* ---------- */
/** \ingroup python
* \name Class: Rpmfts
* \class Rpmfts
* \brief A python rpm.fts object represents an rpm fts(3) handle.
*/
static PyObject *
rpmfts_Debug(rpmftsObject * s, PyObject * args, PyObject * kwds)
{
char * kwlist[] = {"debugLevel", NULL};
if (!PyArg_ParseTupleAndKeywords(args, kwds, "i:Debug", kwlist,
&_rpmfts_debug))
return NULL;
Py_INCREF(Py_None);
return Py_None;
}
static PyObject *
rpmfts_Open(rpmftsObject * s, PyObject * args, PyObject * kwds)
{
char * root = NULL;
int options = -1;
int ignore = -1;
int xx;
/* XXX: there's bound to be a better name than "ignore" */
char * kwlist[] = {"root", "options", "ignore", NULL};
rpmfts_debug(__FUNCTION__, s);
if (!PyArg_ParseTupleAndKeywords(args, kwds, "|sii:Open", kwlist,
&root, &options, &ignore))
return NULL;
xx = rpmfts_initialize(s, root, options, ignore);
xx = rpmfts_state(s, RPMFTS_OPEN);
return (PyObject *)s;
}
static PyObject *
rpmfts_Read(rpmftsObject * s)
{
PyObject * result;
rpmfts_debug(__FUNCTION__, s);
result = rpmfts_step(s);
if (result == NULL) {
Py_INCREF(Py_None);
return Py_None;
}
return result;
}
static PyObject *
rpmfts_Children(rpmftsObject * s, PyObject * args, PyObject * kwds)
{
int instr;
char * kwlist[] = {"instructions", NULL};
rpmfts_debug(__FUNCTION__, s);
if (!PyArg_ParseTupleAndKeywords(args, kwds, "i:Children", kwlist, &instr))
return NULL;
if (!(s && s->ftsp))
return NULL;
Py_BEGIN_ALLOW_THREADS
s->fts = Fts_children(s->ftsp, instr);
Py_END_ALLOW_THREADS
Py_INCREF(Py_None);
return Py_None;
}
static PyObject *
rpmfts_Close(rpmftsObject * s)
{
rpmfts_debug(__FUNCTION__, s);
return Py_BuildValue("i", rpmfts_state(s, RPMFTS_CLOSE));
}
static PyObject *
rpmfts_Set(rpmftsObject * s, PyObject * args, PyObject * kwds)
{
int instr = 0;
int rc = 0;
char * kwlist[] = {"instructions", NULL};
rpmfts_debug(__FUNCTION__, s);
if (!PyArg_ParseTupleAndKeywords(args, kwds, "i:Set", kwlist, &instr))
return NULL;
if (s->ftsp && s->fts)
rc = Fts_set(s->ftsp, s->fts, instr);
return Py_BuildValue("i", rc);
}
/** \ingroup py_c
*/
static struct PyMethodDef rpmfts_methods[] = {
{"Debug", (PyCFunction)rpmfts_Debug, METH_VARARGS|METH_KEYWORDS,
NULL},
{"open", (PyCFunction)rpmfts_Open, METH_VARARGS|METH_KEYWORDS,
NULL},
{"read", (PyCFunction)rpmfts_Read, METH_NOARGS,
NULL},
{"children",(PyCFunction)rpmfts_Children, METH_VARARGS|METH_KEYWORDS,
NULL},
{"close", (PyCFunction)rpmfts_Close, METH_NOARGS,
NULL},
{"set", (PyCFunction)rpmfts_Set, METH_VARARGS|METH_KEYWORDS,
NULL},
{NULL, NULL} /* sentinel */
};
/* ---------- */
static PyMemberDef rpmfts_members[] = {
{"__dict__",T_OBJECT,offsetof(rpmftsObject, md_dict), READONLY,
NULL},
{"callbacks",T_OBJECT,offsetof(rpmftsObject, callbacks), 0,
"Callback dictionary per fts_info state: FTS_{D|DC|DEFAULT|DNR|DOT|DP|ERR|F|INIT|NS|NSOK|SL|SLNONE|W}"},
{"options", T_INT, offsetof(rpmftsObject, options), 0,
"Option bit(s): FTS_{COMFOLLOW|LOGICAL|NOCHDIR|NOSTAT|PHYSICAL|SEEDOT|XDEV}"},
{"ignore", T_INT, offsetof(rpmftsObject, ignore), 0,
"Ignore bit(s): (1 << info) with info one of FTS_{D|DC|DEFAULT|DNR|DOT|DP|ERR|F|INIT|NS|NSOK|SL|SLNONE|W}"},
{NULL, 0, 0, 0, NULL}
};
static PyObject * rpmfts_getattro(PyObject * o, PyObject * n)
{
rpmfts_debug(__FUNCTION__, (rpmftsObject *)o);
return PyObject_GenericGetAttr(o, n);
}
static int rpmfts_setattro(PyObject * o, PyObject * n, PyObject * v)
{
rpmfts_debug(__FUNCTION__, (rpmftsObject *)o);
return PyObject_GenericSetAttr(o, n, v);
}
/* ---------- */
static PyObject *
rpmfts_iter(rpmftsObject * s)
{
Py_INCREF(s);
return (PyObject *)s;
}
static PyObject *
rpmfts_iternext(rpmftsObject * s)
{
int xx;
/* Reset loop indices on 1st entry. */
if (s->active == RPMFTS_CLOSE)
xx = rpmfts_state(s, RPMFTS_OPEN_LAZY);
return rpmfts_step(s);
}
/* ---------- */
static void rpmfts_free(PyObject * s)
{
_PyObject_GC_Del(s);
}
static PyObject * rpmfts_alloc(PyTypeObject * type, int nitems)
{
return PyType_GenericAlloc(type, nitems);
}
static void rpmfts_dealloc(rpmftsObject * s)
{
int xx;
rpmfts_debug(__FUNCTION__, s);
xx = rpmfts_state(s, RPMFTS_CLOSE);
s->roots = _free(s->roots);
PyObject_GC_UnTrack((PyObject *)s);
if (s->md_dict != NULL) {
_PyModule_Clear((PyObject *)s);
Py_DECREF(s->md_dict);
}
if (s->callbacks != NULL) {
_PyModule_Clear((PyObject *)s);
Py_DECREF(s->callbacks);
}
_PyObject_GC_Del((PyObject *)s);
}
static int rpmfts_init(rpmftsObject * s, PyObject *args, PyObject *kwds)
{
char * root = NULL;
int options = -1;
int ignore = -1;
char * kwlist[] = {"root", "options", "ignore", NULL};
rpmfts_debug(__FUNCTION__, s);
if (!PyArg_ParseTupleAndKeywords(args, kwds, "|sii:rpmfts_init", kwlist,
&root, &options, &ignore))
return -1;
return rpmfts_initialize(s, root, options, ignore);
}
static PyObject * rpmfts_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
rpmftsObject *s;
PyObject *o;
PyObject *n = NULL;
char * kwlist[] = {0};
/* All the other _new() functions claim to be _init in their errors...*/
if (!PyArg_ParseTupleAndKeywords(args, kwds, ":rpmfts_new", kwlist))
return NULL;
if ((s = PyObject_GC_New(rpmftsObject, type)) == NULL)
return NULL;
rpmfts_debug(__FUNCTION__, s);
s->md_dict = PyDict_New();
if (s->md_dict == NULL)
goto fail;
s->callbacks = PyDict_New();
if (s->md_dict == NULL)
goto fail;
if (type->tp_name) {
const char * name;
if ((name = strrchr(type->tp_name, '.')) != NULL)
name++;
else
name = type->tp_name;
n = PyString_FromString(name);
}
if (n != NULL && PyDict_SetItemString(s->md_dict, "__name__", n) != 0)
goto fail;
if (PyDict_SetItemString(s->md_dict, "__doc__", Py_None) != 0)
goto fail;
#define CONSTANT(_v) \
PyDict_SetItemString(s->md_dict, #_v, o=PyInt_FromLong(_v)); Py_DECREF(o)
CONSTANT(FTS_ROOTPARENTLEVEL);
CONSTANT(FTS_ROOTLEVEL);
CONSTANT(FTS_COMFOLLOW);
CONSTANT(FTS_LOGICAL);
CONSTANT(FTS_NOCHDIR);
CONSTANT(FTS_NOSTAT);
CONSTANT(FTS_PHYSICAL);
CONSTANT(FTS_SEEDOT);
CONSTANT(FTS_XDEV);
CONSTANT(FTS_WHITEOUT);
CONSTANT(FTS_OPTIONMASK);
CONSTANT(FTS_NAMEONLY);
CONSTANT(FTS_STOP);
CONSTANT(FTS_D);
CONSTANT(FTS_DC);
CONSTANT(FTS_DEFAULT);
CONSTANT(FTS_DNR);
CONSTANT(FTS_DOT);
CONSTANT(FTS_DP);
CONSTANT(FTS_ERR);
CONSTANT(FTS_F);
CONSTANT(FTS_NS);
CONSTANT(FTS_NSOK);
CONSTANT(FTS_SL);
CONSTANT(FTS_SLNONE);
CONSTANT(FTS_W);
CONSTANT(FTS_DONTCHDIR);
CONSTANT(FTS_SYMFOLLOW);
CONSTANT(FTS_AGAIN);
CONSTANT(FTS_FOLLOW);
CONSTANT(FTS_NOINSTR);
CONSTANT(FTS_SKIP);
s->roots = NULL;
s->compare = NULL;
s->ftsp = NULL;
s->fts = NULL;
Py_XDECREF(n);
PyObject_GC_Track((PyObject *)s);
return (PyObject *)s;
fail:
Py_XDECREF(n);
Py_DECREF(s);
return NULL;
}
static int rpmfts_traverse(rpmftsObject * s, visitproc visit, void * arg)
{
if (s->md_dict != NULL)
return visit(s->md_dict, arg);
if (s->callbacks != NULL)
return visit(s->callbacks, arg);
return 0;
}
static int rpmfts_print(rpmftsObject * s, FILE * fp, int flags)
{
static int indent = 2;
if (!(s != NULL && s->ftsp != NULL && s->fts != NULL))
return -1;
fprintf(fp, "FTS_%-7s %*s%s", ftsInfoStr(s->fts->fts_info),
indent * (s->fts->fts_level < 0 ? 0 : s->fts->fts_level), "",
s->fts->fts_name);
return 0;
}
/**
*/
static char rpmfts_doc[] =
"";
/** \ingroup py_c
*/
PyTypeObject rpmfts_Type = {
PyObject_HEAD_INIT(&PyType_Type)
0, /* ob_size */
"rpm.fts", /* tp_name */
sizeof(rpmftsObject), /* tp_size */
0, /* tp_itemsize */
/* methods */
(destructor) rpmfts_dealloc, /* tp_dealloc */
(printfunc) rpmfts_print, /* tp_print */
(getattrfunc)0, /* tp_getattr */
(setattrfunc)0, /* tp_setattr */
(cmpfunc)0, /* tp_compare */
(reprfunc)0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
(hashfunc)0, /* tp_hash */
(ternaryfunc)0, /* tp_call */
(reprfunc)0, /* tp_str */
(getattrofunc) rpmfts_getattro, /* tp_getattro */
(setattrofunc) rpmfts_setattro, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */
rpmfts_doc, /* tp_doc */
(traverseproc) rpmfts_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
(getiterfunc) rpmfts_iter, /* tp_iter */
(iternextfunc) rpmfts_iternext, /* tp_iternext */
rpmfts_methods, /* tp_methods */
rpmfts_members, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
offsetof(rpmftsObject, md_dict),/* tp_dictoffset */
(initproc) rpmfts_init, /* tp_init */
(allocfunc) rpmfts_alloc, /* tp_alloc */
(newfunc) rpmfts_new, /* tp_new */
(freefunc) rpmfts_free, /* tp_free */
0, /* tp_is_gc */
};
|