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
|
#ifndef REPREPRO_FILELIST_H
#define REPREPRO_FILELIST_H
#ifndef REPREPRO_RELEASE_H
#include "release.h"
#endif
struct filelist_list;
retvalue filelist_init(struct filelist_list **list);
retvalue filelist_addpackage(struct filelist_list *, struct database *, const char *package, const char *section, const char *filekey);
retvalue filelist_write(struct filelist_list *list, struct filetorelease *file);
void filelist_free(/*@only@*/struct filelist_list *);
retvalue fakefilelist(struct database *, const char *filekey);
retvalue filelists_translate(struct table *, struct table *);
/* for use in routines reading the data: */
struct filelistcompressor {
unsigned int offsets[256];
size_t size, len;
unsigned int dirdepth;
char *filelist;
};
retvalue filelistcompressor_setup(/*@out@*/struct filelistcompressor *);
retvalue filelistcompressor_add(struct filelistcompressor *, const char *, size_t);
retvalue filelistcompressor_finish(struct filelistcompressor *, /*@out@*/char **, /*@out@*/size_t *);
void filelistcompressor_cancel(struct filelistcompressor *);
#endif
|