summaryrefslogtreecommitdiffstats
path: root/libraries/pack200/src/zip.h
blob: ff973a86a8f21bee0dae72ec6dd503d9da3132d0 (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
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
/*
 * Copyright (c) 2001, 2008, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code 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
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */
#pragma once

#include <stdint.h>
typedef unsigned short ushort;
typedef unsigned int uint32_t;
typedef unsigned char uchar;

#include "unpack.h"

struct jar
{
    // JAR file writer
    FILE *jarfp;
    int default_modtime;

    // Used by unix2dostime:
    int modtime_cache;
    uint32_t dostime_cache;

    // Private members
    fillbytes central_directory;
    ushort central_directory_count;
    uint32_t output_file_offset;
    fillbytes deflated; // temporary buffer

    // pointer to outer unpacker, for error checks etc.
    unpacker *u;

    // Public Methods
    void openJarFile(const char *fname);
    void addJarEntry(const char *fname, bool deflate_hint, int modtime, bytes &head,
                     bytes &tail);
    void addDirectoryToJarFile(const char *dir_name);
    void closeJarFile(bool central);

    void init(unpacker *u_);

    void free()
    {
        central_directory.free();
        deflated.free();
    }

    void reset()
    {
        free();
        init(u);
    }

    // Private Methods
    void write_data(void *ptr, int len);
    void write_data(bytes &b)
    {
        write_data(b.ptr, (int)b.len);
    }
    void add_to_jar_directory(const char *fname, bool store, int modtime, int len, int clen,
                              uint32_t crc);
    void write_jar_header(const char *fname, bool store, int modtime, int len, int clen,
                          unsigned int crc);
    void write_central_directory();
    uint32_t dostime(int y, int n, int d, int h, int m, int s);
    uint32_t get_dostime(int modtime);

    // The definitions of these depend on the NO_ZLIB option:
    bool deflate_bytes(bytes &head, bytes &tail);
    static uint32_t get_crc32(uint32_t c, unsigned char *ptr, uint32_t len);
};

struct gunzip
{
    // optional gzip input stream control block

    // pointer to outer unpacker, for error checks etc.
    unpacker *u;

    read_input_fn_t read_input_fn; // underlying \bchar\b stream
    void *zstream;       // inflater state
    char inbuf[1 << 14]; // input buffer

    void init(unpacker *u_); // pushes new value on u->read_input_fn

    void free();

    void start(int magic);

    // private stuff
    void read_fixed_field(char *buf, size_t buflen);
};