Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Zip64ExtraField.php « Fields « Extra « PhpZip « src « zip « nelexa « vendor - github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 52c3e38914dbc643d8747b5cb5b850422538e76f (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
113
114
115
116
117
118
<?php

namespace PhpZip\Extra\Fields;

use PhpZip\Exception\RuntimeException;
use PhpZip\Extra\ExtraField;
use PhpZip\Model\ZipEntry;
use PhpZip\Util\PackUtil;

/**
 * ZIP64 Extra Field
 *
 * @see https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT .ZIP File Format Specification
 * @author Ne-Lexa alexey@nelexa.ru
 * @license MIT
 */
class Zip64ExtraField implements ExtraField
{
    /** The Header ID for a ZIP64 Extended Information Extra Field. */
    const ZIP64_HEADER_ID = 0x0001;
    /**
     * @var ZipEntry
     */
    protected $entry;

    /**
     * Zip64ExtraField constructor.
     * @param ZipEntry $entry
     */
    public function __construct(ZipEntry $entry = null)
    {
        if (null !== $entry) {
            $this->setEntry($entry);
        }
    }

    /**
     * @param ZipEntry $entry
     */
    public function setEntry(ZipEntry $entry)
    {
        $this->entry = $entry;
    }

    /**
     * Returns the Header ID (type) of this Extra Field.
     * The Header ID is an unsigned short integer (two bytes)
     * which must be constant during the life cycle of this object.
     *
     * @return int
     */
    public static function getHeaderId()
    {
        return 0x0001;
    }

    /**
     * Serializes a Data Block.
     * @return string
     * @throws RuntimeException
     */
    public function serialize()
    {
        if (null === $this->entry) {
            throw new RuntimeException("entry is null");
        }
        $data = '';
        // Write out Uncompressed Size.
        $size = $this->entry->getSize();
        if (0xffffffff <= $size) {
            $data .= PackUtil::packLongLE($size);
        }
        // Write out Compressed Size.
        $compressedSize = $this->entry->getCompressedSize();
        if (0xffffffff <= $compressedSize) {
            $data .= PackUtil::packLongLE($compressedSize);
        }
        // Write out Relative Header Offset.
        $offset = $this->entry->getOffset();
        if (0xffffffff <= $offset) {
            $data .= PackUtil::packLongLE($offset);
        }
        return $data;
    }

    /**
     * Initializes this Extra Field by deserializing a Data Block.
     * @param string $data
     * @throws RuntimeException
     */
    public function deserialize($data)
    {
        if (null === $this->entry) {
            throw new RuntimeException("entry is null");
        }
        $off = 0;
        // Read in Uncompressed Size.
        $size = $this->entry->getSize();
        if (0xffffffff <= $size) {
            assert(0xffffffff === $size);
            $this->entry->setSize(PackUtil::unpackLongLE(substr($data, $off, 8)));
            $off += 8;
        }
        // Read in Compressed Size.
        $compressedSize = $this->entry->getCompressedSize();
        if (0xffffffff <= $compressedSize) {
            assert(0xffffffff === $compressedSize);
            $this->entry->setCompressedSize(PackUtil::unpackLongLE(substr($data, $off, 8)));
            $off += 8;
        }
        // Read in Relative Header Offset.
        $offset = $this->entry->getOffset();
        if (0xffffffff <= $offset) {
            assert(0xffffffff, $offset);
            $this->entry->setOffset(PackUtil::unpackLongLE(substr($data, $off, 8)));
        }
    }
}