summaryrefslogtreecommitdiff
path: root/libextra/opencdk/stream.h
blob: 1a485f2b3482006dea17e80ef57af3604acee149 (plain)
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
/* -*- Mode: C; c-file-style: "bsd" -*-
 * stream.h - internal definiton for the STREAM object
 *        Copyright (C) 2002, 2003 Timo Schulz
 *
 * This file is part of OpenCDK.
 *
 * OpenCDK is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * OpenCDK 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with OpenCDK; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 */

#ifndef CDK_STREAM_H
#define CDK_STREAM_H

enum {
    fDUMMY    = 0,
    fARMOR    = 1,
    fCIPHER   = 2,
    fLITERAL = 3,
    fCOMPRESS= 4,
    fHASH    = 5,
    fTEXT    = 6
};

typedef int (*filter_fnct_t) (void * opaque, int ctl, FILE * in, FILE * out);

struct stream_filter_s {
    struct stream_filter_s * next;
    filter_fnct_t fnct;
    void * opaque;
    FILE * tmp;
    union {
        armor_filter_t afx;
        cipher_filter_t cfx;
        literal_filter_t pfx;
        compress_filter_t zfx;
        text_filter_t tfx;
        md_filter_t mfx;
    } u;
    struct {
        unsigned enabled:1;
        unsigned rdonly:1;
    } flags;
    unsigned type;
    unsigned ctl;
};


struct cdk_stream_s {
    struct stream_filter_s * filters;
    int fmode;
    int error;
    size_t blkmode;
    struct {
        unsigned filtrated:1;
        unsigned eof:1;
        unsigned write:1;
        unsigned temp:1;
        unsigned reset:1;
        unsigned no_filter:1;
        unsigned compressed:3;
    } flags;
    struct {
        unsigned char buf[8192];
        unsigned on:1;
        size_t size;
    } cache;
    char * fname;
    FILE * fp;
};

#endif /* CDK_STREAM_H */