2013-10-20 18:24:27 +00:00
|
|
|
/*
|
|
|
|
* This file is a part of Pcompress, a chunked parallel multi-
|
|
|
|
* algorithm lossless compression and decompression program.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012-2013 Moinak Ghosh. All rights reserved.
|
|
|
|
* Use is subject to license terms.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this program.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* moinakg@belenix.org, http://moinakg.wordpress.com/
|
2014-09-17 15:04:38 +00:00
|
|
|
*
|
2013-10-20 18:24:27 +00:00
|
|
|
*/
|
|
|
|
|
2013-11-10 17:39:42 +00:00
|
|
|
#ifndef _PC_ARCHIVE_H
|
|
|
|
#define _PC_ARCHIVE_H
|
2013-10-20 18:24:27 +00:00
|
|
|
|
2013-11-08 18:20:28 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
2013-10-20 18:24:27 +00:00
|
|
|
#include <pcompress.h>
|
2013-11-10 17:39:42 +00:00
|
|
|
#include <pc_arc_filter.h>
|
2013-10-20 18:24:27 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
char *fpath;
|
|
|
|
int typeflag;
|
|
|
|
size_t size;
|
|
|
|
} archive_list_entry_t;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Archiving related functions.
|
|
|
|
*/
|
2013-10-30 18:45:17 +00:00
|
|
|
int setup_archiver(pc_ctx_t *pctx, struct stat *sbuf);
|
2013-10-22 18:11:51 +00:00
|
|
|
int start_archiver(pc_ctx_t *pctx);
|
2013-10-30 18:45:17 +00:00
|
|
|
int setup_extractor(pc_ctx_t *pctx);
|
|
|
|
int start_extractor(pc_ctx_t *pctx);
|
2013-11-02 18:13:59 +00:00
|
|
|
int64_t archiver_read(void *ctx, void *buf, uint64_t count);
|
2013-11-03 17:45:55 +00:00
|
|
|
int64_t archiver_write(void *ctx, void *buf, uint64_t count);
|
2013-11-02 18:13:59 +00:00
|
|
|
int archiver_close(void *ctx);
|
2013-11-07 16:18:54 +00:00
|
|
|
int init_archive_mod();
|
2013-11-10 17:39:42 +00:00
|
|
|
int insert_filter_data(filter_func_ptr func, void *filter_private, const char *ext);
|
2013-11-14 16:24:46 +00:00
|
|
|
void init_filters(struct filter_flags *ff);
|
2014-09-24 16:24:36 +00:00
|
|
|
void disable_all_filters();
|
|
|
|
|
2013-10-20 18:24:27 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-09-17 15:04:38 +00:00
|
|
|
#endif
|