ZipStreamer.php 25.6 KB
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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615
<?php
/**
 * Class to create zip files on the fly and stream directly to the HTTP client as the content is added.
 *
 * This program 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 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * Inspired by
 * CreateZipFile by Rochak Chauhan  www.rochakchauhan.com (http://www.phpclasses.org/browse/package/2322.html)
 * and
 * ZipStream by A. Grandt https://github.com/Grandt/PHPZip (http://www.phpclasses.org/package/6116)
 *
 * Unix-File attributes according to
 * http://unix.stackexchange.com/questions/14705/the-zip-formats-external-file-attribute
 *
 * @author Nicolai Ehemann <en@enlightened.de>
 * @author André Rothe <arothe@zks.uni-leipzig.de>
 * @copyright Copyright (C) 2013-2014 Nicolai Ehemann and contributors
 * @license GNU GPL
 * @version 0.4
 */


class ZipStreamer {
  const VERSION = "0.4";

  const ZIP_LOCAL_FILE_HEADER = 0x04034b50; // local file header signature
  const ZIP_CENTRAL_FILE_HEADER = 0x02014b50; // central file header signature
  const ZIP_END_OF_CENTRAL_DIRECTORY = 0x06054b50; // end of central directory record
  const ZIP64_END_OF_CENTRAL_DIRECTORY = 0x06064b50; //zip64 end of central directory record
  const ZIP64_END_OF_CENTRAL_DIR_LOCATOR = 0x07064b50; // zip64 end of central directory locator

  //TODO: make this dynamic, depending on flags/compression methods
  const ATTR_VERSION_TO_EXTRACT = 0x2d; // version needed to extract (min. 4.5)
  const ATTR_MADE_BY_VERSION = 0x032d; // made by version  (upper byte: UNIX, lower byte v4.5)

  const STREAM_CHUNK_SIZE = 1048576; // 1mb chunks

  const INT64_HIGH_MAP = 0xffffffff00000000;
  const INT64_LOW_MAP = 0x00000000ffffffff;

  private $extFileAttrFile;
  private $extFileAttrDir;

  /** @var array central directory record */
  private $cdRec = array();
  /** @var int offset of next file to be added */
  private $offset;
  /** @var boolean indicates zip is finalized and sent to client; no further addition possible */
  private $isFinalized = false;

  /**
   * Constructor.
   *
   * @param bool   $sendHeaders Send suitable headers to the HTTP client (assumes nothing was sent yet)
   * @param string $archiveName Name to send to the HTTP client. Optional, defaults to "archive.zip".
   * @param string $contentType Content mime type. Optional, defaults to "application/zip".
   */
  function __construct($sendHeaders = false, $archiveName = 'archive.zip', $contentType = 'application/zip') {
    //TODO: is this advisable/necessary?
    if (ini_get('zlib.output_compression')) {
      ini_set('zlib.output_compression', 'Off');
    }
    if ($sendHeaders) {
      $headerFile = null;
      $headerLine = null;
      if (!headers_sent($headerFile, $headerLine)
            or die('<p><strong>Error:</strong> Unable to send file ' .
                   '$archiveName. HTML Headers have already been sent from ' .
                   '<strong>$headerFile</strong> in line <strong>$headerLine' .
                   '</strong></p>')) {
        if ((ob_get_contents() === false || ob_get_contents() == '')
             or die('\n<p><strong>Error:</strong> Unable to send file ' .
                    '<strong>$archiveName.epub</strong>. Output buffer ' .
                    'already contains text (typically warnings or errors).</p>')) {
          header('Pragma: public');
          header('Last-Modified: ' . gmdate('D, d M Y H:i:s T'));
          header('Expires: 0');
          header('Accept-Ranges: bytes');
          header('Connection: Keep-Alive');
          header('Content-Type: ' . $contentType);
          header('Content-Disposition: attachment; filename="' . $archiveName . '";');
          header('Content-Transfer-Encoding: binary');
        }
      }
      flush();
      // turn off output buffering
      ob_end_flush();
    }
    // initialize default external file attributes
    $this->extFileAttrFile = UNIX::getExtFileAttr(UNIX::S_IFREG |
                                                  UNIX::S_IRUSR | UNIX::S_IXUSR | UNIX::S_IRGRP |
                                                  UNIX::S_IROTH);
    $this->extFileAttrDir = UNIX::getExtFileAttr(UNIX::S_IFDIR |
                                                 UNIX::S_IRWXU | UNIX::S_IRGRP | UNIX::S_IXGRP |
                                                 UNIX::S_IROTH | UNIX::S_IXOTH) |
                            DOS::getExtFileAttr(DOS::DIR);
    $this->offset = Count64::construct(0);
  }

  function __destruct() {
    $this->isFinalized = true;
    $this->cdRec = null;
    exit;
  }

  /**
   * Add a file to the archive at the specified location and file name.
   *
   * @param string $stream      Stream to read data from
   * @param string $filePath    Filepath and name to be used in the archive.
   * @param int    $timestamp   (Optional) Timestamp for the added file, if omitted or set to 0, the current time will be used.
   * @param string $fileComment (Optional) Comment to be added to the archive for this file. To use fileComment, timestamp must be given.
   * @param bool   $compress    (Optional) Compress file, if set to false the file will only be stored. Default FALSE.
   * @return bool $success
   */
  public function addFileFromStream($stream, $filePath, $timestamp = 0, $fileComment = null, $compress = false) {
    if ($this->isFinalized) {
      return false;
    }

    if (!is_resource($stream) || get_resource_type($stream) != 'stream') {
      return false;
    }

    $filePath = self::normalizeFilePath($filePath);

    $gpFlags = GPFLAGS::ADD;
    if ($compress) {
      $gzMethod = GZMETHOD::DEFLATE;
    } else {
      $gzMethod = GZMETHOD::STORE;
    }

    list($gpFlags, $lfhLength) = $this->beginFile($filePath, $fileComment, $timestamp, $gpFlags, $gzMethod);
    list($dataLength, $gzLength, $dataCRC32) = $this->streamFileData($stream, $compress);

    // build cdRec
    $this->cdRec[] = $this->buildCentralDirectoryHeader($filePath, $timestamp, $gpFlags, $gzMethod,
        $dataLength, $gzLength, $dataCRC32, $this->extFileAttrFile);

    // calc offset
    $this->offset->add($lfhLength)->add($gzLength);

    return true;
  }

  /**
   * Add an empty directory entry to the zip archive.
   *
   * @param string $directoryPath  Directory Path and name to be added to the archive.
   * @param int    $timestamp      (Optional) Timestamp for the added directory, if omitted or set to 0, the current time will be used.
   * @param string $fileComment    (Optional) Comment to be added to the archive for this directory. To use fileComment, timestamp must be given.
   * @return bool $success
   */
  public function addEmptyDir($directoryPath, $timestamp = 0, $fileComment = null) {
    if ($this->isFinalized) {
      return false;
    }

    $directoryPath = self::normalizeFilePath($directoryPath) . '/';

    if (strlen($directoryPath) > 0) {
      $gpFlags = 0x0000; // Compression type 0 = stored
      $gzMethod = GZMETHOD::STORE; // Compression type 0 = stored

      list($gpFlags, $lfhLength) = $this->beginFile($directoryPath, $fileComment, $timestamp, $gpFlags, $gzMethod);

      // build cdRec
      $this->cdRec[] = $this->buildCentralDirectoryHeader($directoryPath, $timestamp, $gpFlags, $gzMethod,
          0, 0, 0, $this->extFileAttrDir);

      // calc offset
      $this->offset->add($lfhLength);

      return true;
    }
    return false;
  }

  /**
   * Close the archive.
   * A closed archive can no longer have new files added to it.
   * @return bool $success
   */
  public function finalize() {
    if (!$this->isFinalized) {

      // print central directory
      $cd = implode('', $this->cdRec);
      echo $cd;

      // print the zip64 end of central directory record
      echo $this->buildZip64EndOfCentralDirectoryRecord(strlen($cd));

      // print the zip64 end of central directory locator
      echo $this->buildZip64EndOfCentralDirectoryLocator(strlen($cd));

      // print end of central directory record
      echo $this->buildEndOfCentralDirectoryRecord();

      flush();

      $this->isFinalized = true;
      $cd = null;
      $this->cdRec = null;

      return true;
    }
    return false;
  }

  private function beginFile($filePath, $fileComment, $timestamp, $gpFlags = 0x0000, $gzMethod = GZMETHOD::STORE,
      $dataLength = 0, $gzLength = 0, $dataCRC32 = 0) {

    $isFileUTF8 = mb_check_encoding($filePath, 'UTF-8') && !mb_check_encoding($filePath, 'ASCII');
    $isCommentUTF8 = !empty($fileComment) && mb_check_encoding($fileComment, 'UTF-8')
                  && !mb_check_encoding($fileComment, 'ASCII');

    if ($isFileUTF8 || $isCommentUTF8) {
      $gpFlags |= GPFLAGS::EFS;
    }

    $localFileHeader = $this->buildLocalFileHeader($filePath, $timestamp, $gpFlags, $gzMethod, $dataLength,
        $gzLength, $dataCRC32);

    echo $localFileHeader;

    return array($gpFlags, strlen($localFileHeader));
  }

  private function streamFileData($stream, $compress) {
    $dataLength = Count64::construct(0);
    $gzLength = Count64::construct(0);
    $hashCtx = hash_init('crc32b');

    while (!feof($stream)) {
      $data = fread($stream, self::STREAM_CHUNK_SIZE);
      $dataLength->add(strlen($data));
      hash_update($hashCtx, $data);
      if ($compress) {
        //TODO: this is broken.
        $data = gzdeflate($data);
      }
      $gzLength->add(strlen($data));
      echo $data;

      flush();
    }
    $crc = unpack('N', hash_final($hashCtx, true));
    return array($dataLength, $gzLength, $crc[1]);
  }

  private function buildZip64ExtendedInformationField($dataLength = 0, $gzLength = 0) {
    return ''
      . $this->pack16le(0x0001)       // tag for this "extra" block type (ZIP64)        2 bytes (0x0001)
      . $this->pack16le(28)           // size of this "extra" block                     2 bytes
      . $this->pack64le($dataLength)    // original uncompressed file size                8 bytes
      . $this->pack64le($gzLength)      // size of compressed data                        8 bytes
      . $this->pack64le($this->offset)  // offset of local header record                  8 bytes
      . $this->pack32le(0);             // number of the disk on which this file starts   4 bytes
  }

  private function buildLocalFileHeader($filePath, $timestamp, $gpFlags = 0x0000,
      $gzMethod = GZMETHOD::STORE, $dataLength, $gzLength, $dataCRC32 = 0) {
    $dosTime = self::getDosTime($timestamp);
    $zip64Ext = $this->buildZip64ExtendedInformationField($dataLength, $gzLength);

    return ''
      . $this->pack32le(self::ZIP_LOCAL_FILE_HEADER)   // local file header signature     4 bytes  (0x04034b50)
      . $this->pack16le(self::ATTR_VERSION_TO_EXTRACT) // version needed to extract       2 bytes
      . $this->pack16le($gpFlags)                      // general purpose bit flag        2 bytes
      . $this->pack16le($gzMethod)                     // compression method              2 bytes
      . $this->pack32le($dosTime)                      // last mod file time              2 bytes
                                                       // last mod file date              2 bytes
      . $this->pack32le($dataCRC32)                    // crc-32                          4 bytes
      . $this->pack32le(-1)                            // compressed size                 4 bytes
      . $this->pack32le(-1)                            // uncompressed size               4 bytes
      . $this->pack16le(strlen($filePath))             // file name length                2 bytes
      . $this->pack16le(strlen($zip64Ext))             // extra field length              2 bytes
      . $filePath                                      // file name                       (variable size)
      . $zip64Ext;                                     // extra field                     (variable size)
  }

  private function buildZip64EndOfCentralDirectoryRecord($cdRecLength) {
    $cdRecCount = sizeof($this->cdRec);

    return ''
        . $this->pack32le(self::ZIP64_END_OF_CENTRAL_DIRECTORY) // zip64 end of central dir signature         4 bytes  (0x06064b50)
        . $this->pack64le(44)                                   // size of zip64 end of central directory
                                                                // record                                     8 bytes
        . $this->pack16le(self::ATTR_MADE_BY_VERSION)           //version made by                             2 bytes
        . $this->pack16le(self::ATTR_VERSION_TO_EXTRACT)        //version needed to extract                   2 bytes
        . $this->pack32le(0)                                    // number of this disk                        4 bytes
        . $this->pack32le(0)                                    // number of the disk with the start of the
                                                                // central directory                          4 bytes
        . $this->pack64le($cdRecCount)                          // total number of entries in the central
                                                                // directory on this disk                     8 bytes
        . $this->pack64le($cdRecCount)                          // total number of entries in the
                                                                // central directory                          8 bytes
        . $this->pack64le($cdRecLength)                         // size of the central directory              8 bytes
        . $this->pack64le($this->offset)                        // offset of start of central directory
                                                                // with respect to the starting disk number   8 bytes
        . '';                                                   // zip64 extensible data sector               (variable size)

  }

  private function buildZip64EndOfCentralDirectoryLocator($cdRecLength) {
    $zip64RecStart = Count64::construct($this->offset)->add($cdRecLength);

        return ''
        . $this->pack32le(self::ZIP64_END_OF_CENTRAL_DIR_LOCATOR) // zip64 end of central dir locator signature  4 bytes  (0x07064b50)
        . $this->pack32le(0)                                      // number of the disk with the start of the
                                                                  // zip64 end of central directory              4 bytes
        . $this->pack64le($zip64RecStart)                         // relative offset of the zip64 end of
                                                                  // central directory record                    8 bytes
        . $this->pack32le(1);                                     // total number of disks                       4 bytes
  }

  private function buildCentralDirectoryHeader($filePath, $timestamp, $gpFlags,
      $gzMethod, $dataLength, $gzLength, $dataCRC32, $extFileAttr) {
    $dosTime = self::getDosTime($timestamp);
    $zip64Ext = $this->buildZip64ExtendedInformationField($dataLength, $gzLength);

    return ''
      . $this->pack32le(self::ZIP_CENTRAL_FILE_HEADER)  //central file header signature   4 bytes  (0x02014b50)
      . $this->pack16le(self::ATTR_MADE_BY_VERSION)     //version made by                 2 bytes
      . $this->pack16le(self::ATTR_VERSION_TO_EXTRACT)  //version needed to extract       2 bytes
      . $this->pack16le($gpFlags)                       //general purpose bit flag        2 bytes
      . $this->pack16le($gzMethod)                      //compression method              2 bytes
      . $this->pack32le($dosTime)                       //last mod file time              2 bytes
                                                        //last mod file date              2 bytes
      . $this->pack32le($dataCRC32)                     //crc-32                          4 bytes
      . $this->pack32le(-1)                             //compressed size                 4 bytes
      . $this->pack32le(-1)                             //uncompressed size               4 bytes
      . $this->pack16le(strlen($filePath))              //file name length                2 bytes
      . $this->pack16le(strlen($zip64Ext))              //extra field length              2 bytes
      . $this->pack16le(0)                              //file comment length             2 bytes
      . $this->pack16le(-1)                             //disk number start               2 bytes
      . $this->pack16le(0)                              //internal file attributes        2 bytes
      . $this->pack32le($extFileAttr)                   //external file attributes        4 bytes
      . $this->pack32le(-1)                             //relative offset of local header 4 bytes
      . $filePath                                       //file name                       (variable size)
      . $zip64Ext                                       //extra field                     (variable size)
      //TODO: implement?
      . '';                                             //file comment                    (variable size)
  }

  private function buildEndOfCentralDirectoryRecord() {

    return ''
      . $this->pack32le(self::ZIP_END_OF_CENTRAL_DIRECTORY) // end of central dir signature    4 bytes  (0x06064b50)
      . $this->pack16le(-1)                                 // number of this disk             2 bytes
      . $this->pack16le(-1)                                 // number of the disk with the
                                                            // start of the central directory  2 bytes
      . $this->pack16le(-1)                                 // total number of entries in the
                                                            // central directory on this disk  2 bytes
      . $this->pack16le(-1)                                 // total number of entries in the
                                                            // central directory               2 bytes
      . $this->pack32le(-1)                                 // size of the central directory   4 bytes
      . $this->pack32le(-1)                                 // offset of start of central
                                                            // directory with respect to the
                                                            // starting disk number            4 bytes
      . $this->pack16le(0)                                  // .ZIP file comment length        2 bytes
      //TODO: implement?
      . '';                                                 // .ZIP file comment               (variable size)
  }

  // Utility methods ////////////////////////////////////////////////////////

  private static function normalizeFilePath($filePath) {
    return trim(str_replace('\\', '/', $filePath), '/');
  }

  /**
   * Calculate the 2 byte dostime used in the zip entries.
   *
   * @param int $timestamp
   * @return 2-byte encoded DOS Date
   */
  private static function getDosTime($timestamp = 0) {
    $timestamp = (int) $timestamp;
    $oldTZ = @date_default_timezone_get();
    date_default_timezone_set('UTC');
    $date = ($timestamp == 0 ? getdate() : getdate($timestamp));
    date_default_timezone_set($oldTZ);
    if ($date['year'] >= 1980) {
      return (($date['mday'] + ($date['mon'] << 5) + (($date['year'] - 1980) << 9)) << 16)
      | (($date['seconds'] >> 1) + ($date['minutes'] << 5) + ($date['hours'] << 11));
    }
    return 0x0000;
  }

  /**
   * Pack 2 byte data into binary string, little endian format
   *
   * @param mixed $data data
   * @return string 2 byte binary string
   */
  private static function pack16le($data) {
    return pack('v', $data);
  }

  /**
   * Pack 4 byte data into binary string, little endian format
   *
   * @param mixed $data data
   * @return 4 byte binary string
   */
  private static function pack32le($data) {
    return pack('V', $data);
  }

    /**
   * Pack 8 byte data into binary string, little endian format
   *
   * @param mixed $data data
   * @return string 8 byte binary string
   */
  private static function pack64le($data) {
  if (is_object($data)) {
    if ("Count64_32" == get_class($data)) {
      $value = $data->_getValue();
      $hiBytess = $value[0];
      $loBytess = $value[1];
    } else {
      $hiBytess = ($data->_getValue() & self::INT64_HIGH_MAP) >> 32;
      $loBytess = $data->_getValue() & self::INT64_LOW_MAP;
    }
  } else {
    $hiBytess = ($data & self::INT64_HIGH_MAP) >> 32;
    $loBytess = $data & self::INT64_LOW_MAP;
  }
  return pack('VV', $loBytess, $hiBytess);
  }
}

abstract class Count64Base {
  function __construct($value = 0) {
    $this->set($value);
  }
  abstract public function set($value);
  abstract public function add($value);
  abstract public function _getValue();

  const EXCEPTION_SET_INVALID_ARGUMENT = "Count64 object can only be set() to integer or Count64 values";
  const EXCEPTION_ADD_INVALID_ARGUMENT = "Count64 object can only be add()ed integer or Count64 values";
}

class Count64_32 extends Count64Base{
  private $loBytes;
  private $hiBytes;

  public function _getValue() {
    return array($this->hiBytes, $this->loBytes);
  }

  public function set($value) {
    if (is_int($value)) {
      $this->loBytes = $value;
      $this->hiBytes = 0;
    } else if (is_object($value) && __CLASS__ == get_class($value)) {
      $value = $value->_getValue();
      $this->hiBytes = $value[0];
      $this->loBytes = $value[1];
    } else {
      throw Exception(self::EXCEPTION_SET_INVALID_ARGUMENT);
    }
    return $this;
  }

  public function add($value) {
    if (is_int($value)) {
      $sum = (int)($this->loBytes + $value);
      // overflow!
      if (($this->loBytes > -1 && $sum < $this->loBytes && $sum > -1)
      || ($this->loBytes < 0 && ($sum < $this->loBytes || $sum > -1))) {
        $this->hiBytes = (int)($this->hiBytes + 1);
      }
      $this->loBytes = $sum;
    } else if (is_object($value) && __CLASS__ == get_class($value)) {
      $value = $value->_getValue();
      $sum = (int)($this->loBytes + $value[1]);
      if (($this->loBytes > -1 && $sum < $this->loBytes && $sum > -1)
      || ($this->loBytes < 0 && ($sum < $this->loBytes || $sum > -1))) {
        $this->hiBytes = (int)($this->hiBytes + 1);
      }
      $this->loBytes = $sum;
      $this->hiBytes = (int)($this->hiBytes + $value[0]);
    } else {
      throw Exception(self::EXCEPTION_ADD_INVALID_ARGUMENT);
    }
    return $this;
  }
}

class Count64_64 extends Count64Base {
  private $value;

  public function _getValue() {
    return $this->value;
  }

  public function set($value) {
    if (is_int($value)) {
      $this->value = $value;
    } else if (is_object($value) && __CLASS__ == get_class($value)) {
      $this->value = $value->_getValue();
    } else {
      throw Exception(self::EXCEPTION_SET_INVALID_ARGUMENT);
    }
    return $this;
  }

  public function add($value) {
    if (is_int($value)) {
      $this->value = (int)($this->value + $value);
    } else if (is_object($value) && __CLASS__ == get_class($value)) {
      $this->value = (int)($this->value + $value->_getValue());
    } else {
      throw Exception(self::EXCEPTION_ADD_INVALID_ARGUMENT);
    }
    return $this;
  }
}

abstract class Count64  {
  public static function construct($value = 0) {
    if (4 == PHP_INT_SIZE) {
      return new Count64_32($value);
    } else {
      return new Count64_64($value);
    }
  }
}

abstract class ExtFileAttr {

  # ZIP external file attributes layout
  # TTTTsstrwxrwxrwx0000000000ADVSHR
  # ^^^^____________________________ UNIX file type
  #     ^^^_________________________ UNIX setuid, setgid, sticky
  #        ^^^^^^^^^________________ UNIX permissions
  #                 ^^^^^^^^________ "lower-middle byte" (TODO: what is this?)
  #                         ^^^^^^^^ DOS attributes (reserved, reserved, archived, directory, volume, system, hidden, read-only

  public static function getExtFileAttr($attr) {
    return $attr;
  }
}

class UNIX extends ExtFileAttr {

  # Octal
  const S_IFIFO = 0010000; /* named pipe (fifo) */
  const S_IFCHR = 0020000; /* character special */
  const S_IFDIR = 0040000; /* directory */
  const S_IFBLK = 0060000; /* block special */
  const S_IFREG = 0100000; /* regular */
  const S_IFLNK = 0120000; /* symbolic link */
  const S_IFSOCK = 0140000; /* socket */
  const S_ISUID = 0004000; /* set user id on execution */
  const S_ISGID = 0002000; /* set group id on execution */
  const S_ISTXT = 0001000; /* sticky bit */
  const S_IRWXU = 0000700; /* RWX mask for owner */
  const S_IRUSR = 0000400; /* R for owner */
  const S_IWUSR = 0000200; /* W for owner */
  const S_IXUSR = 0000100; /* X for owner */
  const S_IRWXG = 0000070; /* RWX mask for group */
  const S_IRGRP = 0000040; /* R for group */
  const S_IWGRP = 0000020; /* W for group */
  const S_IXGRP = 0000010; /* X for group */
  const S_IRWXO = 0000007; /* RWX mask for other */
  const S_IROTH = 0000004; /* R for other */
  const S_IWOTH = 0000002; /* W for other */
  const S_IXOTH = 0000001; /* X for other */
  const S_ISVTX = 0001000; /* save swapped text even after use */

  public static function getExtFileAttr($attr) {
    return parent::getExtFileAttr($attr) << 16;
  }
}

class DOS extends ExtFileAttr {

  const READ_ONLY = 0x1;
  const HIDDEN = 0x2;
  const SYSTEM = 0x4;
  const VOLUME = 0x8;
  const DIR = 0x10;
  const ARCHIVE = 0x20;
  const RESERVED1 = 0x40;
  const RESERVED2 = 0x80;
}

class GPFLAGS {
  const ADD = 0x0008; // ADD flag (sizes and crc32 are append in data descriptor)
  const EFS = 0x0800; // EFS flag (UTF-8 encoded filename and/or comment)
}

class GZMETHOD {
  const STORE = 0x0000; //  0 - The file is stored (no compression)
  const DEFLATE = 0x0008; //  8 - The file is Deflated
}