tarmaker.php.inc 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <?php
  2. // stolen from PEAR2_Pyrus_Developer_Creator_Tar by Greg Beaver, the original author, for use in unit tests
  3. class tarmaker
  4. {
  5. /**
  6. * Path to archive file
  7. *
  8. * @var string
  9. */
  10. protected $archive;
  11. /**
  12. * Temporary stream used for creating the archive
  13. *
  14. * @var stream
  15. */
  16. protected $tmp;
  17. protected $path;
  18. protected $compress;
  19. function __construct($path, $compress = 'zlib')
  20. {
  21. $this->compress = $compress;
  22. if ($compress === 'bz2' && !function_exists('bzopen')) {
  23. throw new PEAR2_Pyrus_Developer_Creator_Exception(
  24. 'bzip2 extension not available');
  25. }
  26. if ($compress === 'zlib' && !function_exists('gzopen')) {
  27. throw new PEAR2_Pyrus_Developer_Creator_Exception(
  28. 'zlib extension not available');
  29. }
  30. $this->path = $path;
  31. }
  32. /**
  33. * save a file inside this package
  34. *
  35. * This code is modified from Vincent Lascaux's File_Archive
  36. * package, which is licensed under the LGPL license.
  37. * @param string relative path within the package
  38. * @param string|resource file contents or open file handle
  39. */
  40. function addFile($path, $fileOrStream, $stat = null)
  41. {
  42. clearstatcache();
  43. if ($stat === null) {
  44. if (is_resource($fileOrStream)) {
  45. $stat = fstat($fileOrStream);
  46. } else {
  47. $stat = array(
  48. 'mode' => 0x8000 + 0644,
  49. 'uid' => 0,
  50. 'gid' => 0,
  51. 'size' => strlen($fileOrStream),
  52. 'mtime' => time(),
  53. );
  54. }
  55. }
  56. $link = null;
  57. if ($stat['mode'] & 0x4000) {
  58. $type = 5; // Directory
  59. } else if ($stat['mode'] & 0x8000) {
  60. $type = 0; // Regular
  61. } else if ($stat['mode'] & 0xA000) {
  62. $type = 1; // Link
  63. $link = @readlink($current);
  64. } else {
  65. $type = 9; // Unknown
  66. }
  67. $filePrefix = '';
  68. if (strlen($path) > 255) {
  69. throw new Exception(
  70. "$path is too long, must be 255 characters or less"
  71. );
  72. } else if (strlen($path) > 100) {
  73. $filePrefix = substr($path, 0, strlen($path)-100);
  74. $path = substr($path, -100);
  75. }
  76. $block = pack('a100a8a8a8a12A12',
  77. $path,
  78. decoct($stat['mode']),
  79. sprintf('%6s ',decoct($stat['uid'])),
  80. sprintf('%6s ',decoct($stat['gid'])),
  81. sprintf('%11s ',decoct($stat['size'])),
  82. sprintf('%11s ',decoct($stat['mtime']))
  83. );
  84. $blockend = pack('a1a100a6a2a32a32a8a8a155a12',
  85. $type,
  86. $link,
  87. 'ustar',
  88. '00',
  89. 'Pyrus',
  90. 'Pyrus',
  91. '',
  92. '',
  93. $filePrefix,
  94. '');
  95. $checkheader = array_merge(str_split($block), str_split($blockend));
  96. if (!function_exists('_pear2tarchecksum')) {
  97. function _pear2tarchecksum($a, $b) {return $a + ord($b);}
  98. }
  99. $checksum = 256; // 8 * ord(' ');
  100. $checksum += array_reduce($checkheader, '_pear2tarchecksum');
  101. $checksum = pack('a8', sprintf('%6s ', decoct($checksum)));
  102. fwrite($this->tmp, (binary)$block . $checksum . $blockend, 512);
  103. if (is_resource($fileOrStream)) {
  104. stream_copy_to_stream($fileOrStream, $this->tmp);
  105. if ($stat['size'] % 512) {
  106. fwrite($this->tmp, (binary)str_repeat("\0", 512 - $stat['size'] % 512));
  107. }
  108. } else {
  109. fwrite($this->tmp, (binary)$fileOrStream);
  110. if (strlen($fileOrStream) % 512) {
  111. fwrite($this->tmp, (binary)str_repeat("\0", 512 - strlen($fileOrStream) % 512));
  112. }
  113. }
  114. }
  115. /**
  116. * Initialize the package creator
  117. */
  118. function init()
  119. {
  120. switch ($this->compress) {
  121. case 'zlib' :
  122. $this->tmp = gzopen($this->path, 'wb');
  123. break;
  124. case 'bz2' :
  125. $this->tmp = bzopen($this->path, 'w');
  126. break;
  127. case 'none' :
  128. $this->tmp = fopen($this->path, 'wb');
  129. break;
  130. default :
  131. throw new Exception(
  132. 'unknown compression type ' . $this->compress);
  133. }
  134. }
  135. /**
  136. * Create an internal directory, creating parent directories as needed
  137. *
  138. * @param string $dir
  139. */
  140. function mkdir($dir)
  141. {
  142. $this->addFile($dir, "", array(
  143. 'mode' => 0x4000 + 0644,
  144. 'uid' => 0,
  145. 'gid' => 0,
  146. 'size' => 0,
  147. 'mtime' => time(),
  148. ));
  149. }
  150. /**
  151. * Finish saving the package
  152. */
  153. function close()
  154. {
  155. fwrite($this->tmp, pack('a1024', ''));
  156. fclose($this->tmp);
  157. }
  158. }