mirror of
https://github.com/pygos/pkg-utils.git
synced 2024-11-22 12:59:46 +01:00
40 lines
1 KiB
C
40 lines
1 KiB
C
/* SPDX-License-Identifier: ISC */
|
|
#ifndef COMPRESSOR_H
|
|
#define COMPRESSOR_H
|
|
|
|
#include <stddef.h>
|
|
#include <sys/types.h>
|
|
|
|
#include "pkg/pkgformat.h"
|
|
|
|
typedef struct compressor_stream_t {
|
|
ssize_t (*write)(struct compressor_stream_t *stream, const uint8_t *in,
|
|
size_t size);
|
|
|
|
ssize_t (*read)(struct compressor_stream_t *stream, uint8_t *out,
|
|
size_t size);
|
|
|
|
void (*flush)(struct compressor_stream_t *stream);
|
|
|
|
ssize_t (*do_block)(struct compressor_stream_t *stream,
|
|
const uint8_t *in, uint8_t *out,
|
|
size_t insize, size_t outsize);
|
|
|
|
void (*destroy)(struct compressor_stream_t *stream);
|
|
} compressor_stream_t;
|
|
|
|
typedef struct compressor_t {
|
|
struct compressor_t *next;
|
|
const char *name;
|
|
PKG_COMPRESSION id;
|
|
|
|
compressor_stream_t *(*compression_stream)(struct compressor_t *cmp);
|
|
|
|
compressor_stream_t *(*uncompression_stream)(struct compressor_t *cmp);
|
|
} compressor_t;
|
|
|
|
compressor_t *compressor_by_name(const char *name);
|
|
|
|
compressor_t *compressor_by_id(PKG_COMPRESSION id);
|
|
|
|
#endif /* COMPRESSOR_H */
|