pcl.tar.php
上传用户:stephen_wu
上传日期:2008-07-05
资源大小:1757k
文件大小:56k
源码类别:

网络

开发平台:

Unix_Linux

  1. <?php
  2. /**
  3. * Joomla/Mambo Community Builder
  4. * @version $Id:  $
  5. * @package Community Builder
  6. * @subpackage pcl.pclziplib.php
  7. * @license http://www.php.net/license/3_0.txt PHP version 3
  8. */
  9. // ensure this file is being included by a parent file
  10. if ( ! ( defined( '_VALID_CB' ) || defined( '_JEXEC' ) || defined( '_VALID_MOS' ) ) ) { die( 'Direct Access to this location is not allowed.' ); }
  11. global $_CB_framework;
  12. require_once $_CB_framework->getCfg( 'absolute_path' ) . '/includes/PEAR/PEAR.php';
  13. /* vim: set ts=4 sw=4: */
  14. // +----------------------------------------------------------------------+
  15. // | PHP Version 4                                                        |
  16. // +----------------------------------------------------------------------+
  17. // | Copyright (c) 1997-2003 The PHP Group                                |
  18. // +----------------------------------------------------------------------+
  19. // | This source file is subject to version 3.0 of the PHP license,       |
  20. // | that is bundled with this package in the file LICENSE, and is        |
  21. // | available through the world-wide-web at the following url:           |
  22. // | http://www.php.net/license/3_0.txt.                                  |
  23. // | If you did not receive a copy of the PHP license and are unable to   |
  24. // | obtain it through the world-wide-web, please send a note to          |
  25. // | license@php.net so we can mail you a copy immediately.               |
  26. // +----------------------------------------------------------------------+
  27. // | Author: Vincent Blavet <vincent@blavet.net>                          |
  28. // +----------------------------------------------------------------------+
  29. //
  30. define ('ARCHIVE_TAR_ATT_SEPARATOR', 90001);
  31. /**
  32. * Creates a (compressed) Tar archive
  33. *
  34. * @author   Vincent Blavet <vincent@blavet.net>
  35. * @version  $Revision: 1.2 $
  36. * @package  Archive
  37. */
  38. class Archive_Tar extends PEAR
  39. {
  40.     /**
  41.     * @var string Name of the Tar
  42.     */
  43.     var $_tarname='';
  44.     /**
  45.     * @var boolean if true, the Tar file will be gzipped
  46.     */
  47.     var $_compress=false;
  48.     /**
  49.     * @var string Type of compression : 'none', 'gz' or 'bz2'
  50.     */
  51.     var $_compress_type='none';
  52.     /**
  53.     * @var string Explode separator
  54.     */
  55.     var $_separator=' ';
  56.     /**
  57.     * @var file descriptor
  58.     */
  59.     var $_file=0;
  60.     /**
  61.     * @var string Local Tar name of a remote Tar (http:// or ftp://)
  62.     */
  63.     var $_temp_tarname='';
  64.     // {{{ constructor
  65.     /**
  66.     * Archive_Tar Class constructor. This flavour of the constructor only
  67.     * declare a new Archive_Tar object, identifying it by the name of the
  68.     * tar file.
  69.     * If the compress argument is set the tar will be read or created as a
  70.     * gzip or bz2 compressed TAR file.
  71.     *
  72.     * @param    string  $p_tarname  The name of the tar archive to create
  73.     * @param    string  $p_compress can be null, 'gz' or 'bz2'. This
  74.     *                   parameter indicates if gzip or bz2 compression
  75.     *                   is required.  For compatibility reason the
  76.     *                   boolean value 'true' means 'gz'.
  77.     * @access public
  78.     */
  79.     function Archive_Tar($p_tarname, $p_compress = null)
  80.     {
  81.         $this->PEAR();
  82.         $this->_compress = false;
  83.         $this->_compress_type = 'none';
  84.         if ($p_compress === null) {
  85.             if (@file_exists($p_tarname)) {
  86.                 if ($fp = @fopen($p_tarname, "rb")) {
  87.                     // look for gzip magic cookie
  88.                     $data = fread($fp, 2);
  89.                     fclose($fp);
  90.                     if ($data == "37213") {
  91.                         $this->_compress = true;
  92.                         $this->_compress_type = 'gz';
  93.                     // No sure it's enought for a magic code ....
  94.                     } elseif ($data == "BZ") {
  95.                         $this->_compress = true;
  96.                         $this->_compress_type = 'bz2';
  97.                     }
  98.                 }
  99.             } else {
  100.                 // probably a remote file or some file accessible
  101.                 // through a stream interface
  102.                 if (substr($p_tarname, -2) == 'gz') {
  103.                     $this->_compress = true;
  104.                     $this->_compress_type = 'gz';
  105.                 } elseif ((substr($p_tarname, -3) == 'bz2') ||
  106.                           (substr($p_tarname, -2) == 'bz')) {
  107.                     $this->_compress = true;
  108.                     $this->_compress_type = 'bz2';
  109.                 }
  110.             }
  111.         } else {
  112.             if (($p_compress === true) || ($p_compress == 'gz')) {
  113.                 $this->_compress = true;
  114.                 $this->_compress_type = 'gz';
  115.             } else if ($p_compress == 'bz2') {
  116.                 $this->_compress = true;
  117.                 $this->_compress_type = 'bz2';
  118.             }
  119.         }
  120.         $this->_tarname = $p_tarname;
  121.         if ($this->_compress) { // assert zlib or bz2 extension support
  122.             if ($this->_compress_type == 'gz')
  123.                 $extname = 'zlib';
  124.             else if ($this->_compress_type == 'bz2')
  125.                 $extname = 'bz2';
  126.             if (!extension_loaded($extname)) {
  127.                 PEAR::loadExtension($extname);
  128.             }
  129.             if (!extension_loaded($extname)) {
  130.                 die("The extension '$extname' couldn't be found.n".
  131.                     "Please make sure your version of PHP was built ".
  132.                     "with '$extname' support.n");
  133.                 return false;
  134.             }
  135.         }
  136.     }
  137.     // }}}
  138.     // {{{ destructor
  139.     function _Archive_Tar()
  140.     {
  141.         $this->_close();
  142.         // ----- Look for a local copy to delete
  143.         if ($this->_temp_tarname != '')
  144.             @unlink($this->_temp_tarname);
  145.         $this->_PEAR();
  146.     }
  147.     // }}}
  148.     // {{{ create()
  149.     /**
  150.     * This method creates the archive file and add the files / directories
  151.     * that are listed in $p_filelist.
  152.     * If a file with the same name exist and is writable, it is replaced
  153.     * by the new tar.
  154.     * The method return false and a PEAR error text.
  155.     * The $p_filelist parameter can be an array of string, each string
  156.     * representing a filename or a directory name with their path if
  157.     * needed. It can also be a single string with names separated by a
  158.     * single blank.
  159.     * For each directory added in the archive, the files and
  160.     * sub-directories are also added.
  161.     * See also createModify() method for more details.
  162.     *
  163.     * @param array  $p_filelist An array of filenames and directory names, or a single
  164.     *                           string with names separated by a single blank space.
  165.     * @return                   true on success, false on error.
  166.     * @see createModify()
  167.     * @access public
  168.     */
  169.     function create($p_filelist)
  170.     {
  171.         return $this->createModify($p_filelist, '', '');
  172.     }
  173.     // }}}
  174.     // {{{ add()
  175.     /**
  176.     * This method add the files / directories that are listed in $p_filelist in
  177.     * the archive. If the archive does not exist it is created.
  178.     * The method return false and a PEAR error text.
  179.     * The files and directories listed are only added at the end of the archive,
  180.     * even if a file with the same name is already archived.
  181.     * See also createModify() method for more details.
  182.     *
  183.     * @param array  $p_filelist An array of filenames and directory names, or a single
  184.     *                           string with names separated by a single blank space.
  185.     * @return                   true on success, false on error.
  186.     * @see createModify()
  187.     * @access public
  188.     */
  189.     function add($p_filelist)
  190.     {
  191.         return $this->addModify($p_filelist, '', '');
  192.     }
  193.     // }}}
  194.     // {{{ extract()
  195.     function extract($p_path='')
  196.     {
  197.         return $this->extractModify($p_path, '');
  198.     }
  199.     // }}}
  200.     // {{{ listContent()
  201.     function listContent()
  202.     {
  203.         $v_list_detail = array();
  204.         if ($this->_openRead()) {
  205.             if (!$this->_extractList('', $v_list_detail, "list", '', '')) {
  206.                 unset($v_list_detail);
  207.                 $v_list_detail = 0;
  208.             }
  209.             $this->_close();
  210.         }
  211.         return $v_list_detail;
  212.     }
  213.     // }}}
  214.     // {{{ createModify()
  215.     /**
  216.     * This method creates the archive file and add the files / directories
  217.     * that are listed in $p_filelist.
  218.     * If the file already exists and is writable, it is replaced by the
  219.     * new tar. It is a create and not an add. If the file exists and is
  220.     * read-only or is a directory it is not replaced. The method return
  221.     * false and a PEAR error text.
  222.     * The $p_filelist parameter can be an array of string, each string
  223.     * representing a filename or a directory name with their path if
  224.     * needed. It can also be a single string with names separated by a
  225.     * single blank.
  226.     * The path indicated in $p_remove_dir will be removed from the
  227.     * memorized path of each file / directory listed when this path
  228.     * exists. By default nothing is removed (empty path '')
  229.     * The path indicated in $p_add_dir will be added at the beginning of
  230.     * the memorized path of each file / directory listed. However it can
  231.     * be set to empty ''. The adding of a path is done after the removing
  232.     * of path.
  233.     * The path add/remove ability enables the user to prepare an archive
  234.     * for extraction in a different path than the origin files are.
  235.     * See also addModify() method for file adding properties.
  236.     *
  237.     * @param array  $p_filelist     An array of filenames and directory names, or a single
  238.     *                               string with names separated by a single blank space.
  239.     * @param string $p_add_dir      A string which contains a path to be added to the
  240.     *                               memorized path of each element in the list.
  241.     * @param string $p_remove_dir   A string which contains a path to be removed from
  242.     *                               the memorized path of each element in the list, when
  243.     *                               relevant.
  244.     * @return boolean               true on success, false on error.
  245.     * @access public
  246.     * @see addModify()
  247.     */
  248.     function createModify($p_filelist, $p_add_dir, $p_remove_dir='')
  249.     {
  250.         $v_result = true;
  251.         if (!$this->_openWrite())
  252.             return false;
  253.         if ($p_filelist != '') {
  254.             if (is_array($p_filelist))
  255.                 $v_list = $p_filelist;
  256.             elseif (is_string($p_filelist))
  257.                 $v_list = explode($this->_separator, $p_filelist);
  258.             else {
  259.                 $this->_cleanFile();
  260.                 $this->_error('Invalid file list');
  261.                 return false;
  262.             }
  263.             $v_result = $this->_addList($v_list, $p_add_dir, $p_remove_dir);
  264.         }
  265.         if ($v_result) {
  266.             $this->_writeFooter();
  267.             $this->_close();
  268.         } else
  269.             $this->_cleanFile();
  270.         return $v_result;
  271.     }
  272.     // }}}
  273.     // {{{ addModify()
  274.     /**
  275.     * This method add the files / directories listed in $p_filelist at the
  276.     * end of the existing archive. If the archive does not yet exists it
  277.     * is created.
  278.     * The $p_filelist parameter can be an array of string, each string
  279.     * representing a filename or a directory name with their path if
  280.     * needed. It can also be a single string with names separated by a
  281.     * single blank.
  282.     * The path indicated in $p_remove_dir will be removed from the
  283.     * memorized path of each file / directory listed when this path
  284.     * exists. By default nothing is removed (empty path '')
  285.     * The path indicated in $p_add_dir will be added at the beginning of
  286.     * the memorized path of each file / directory listed. However it can
  287.     * be set to empty ''. The adding of a path is done after the removing
  288.     * of path.
  289.     * The path add/remove ability enables the user to prepare an archive
  290.     * for extraction in a different path than the origin files are.
  291.     * If a file/dir is already in the archive it will only be added at the
  292.     * end of the archive. There is no update of the existing archived
  293.     * file/dir. However while extracting the archive, the last file will
  294.     * replace the first one. This results in a none optimization of the
  295.     * archive size.
  296.     * If a file/dir does not exist the file/dir is ignored. However an
  297.     * error text is send to PEAR error.
  298.     * If a file/dir is not readable the file/dir is ignored. However an
  299.     * error text is send to PEAR error.
  300.     *
  301.     * @param array      $p_filelist     An array of filenames and directory names, or a single
  302.     *                                   string with names separated by a single blank space.
  303.     * @param string     $p_add_dir      A string which contains a path to be added to the
  304.     *                                   memorized path of each element in the list.
  305.     * @param string     $p_remove_dir   A string which contains a path to be removed from
  306.     *                                   the memorized path of each element in the list, when
  307.     *                                   relevant.
  308.     * @return                           true on success, false on error.
  309.     * @access public
  310.     */
  311.     function addModify($p_filelist, $p_add_dir, $p_remove_dir='')
  312.     {
  313.         $v_result = true;
  314.         if (!@is_file($this->_tarname))
  315.             $v_result = $this->createModify($p_filelist, $p_add_dir, $p_remove_dir);
  316.         else {
  317.             if (is_array($p_filelist))
  318.                 $v_list = $p_filelist;
  319.             elseif (is_string($p_filelist))
  320.                 $v_list = explode($this->_separator, $p_filelist);
  321.             else {
  322.                 $this->_error('Invalid file list');
  323.                 return false;
  324.             }
  325.             $v_result = $this->_append($v_list, $p_add_dir, $p_remove_dir);
  326.         }
  327.         return $v_result;
  328.     }
  329.     // }}}
  330.     // {{{ addString()
  331.     /**
  332.     * This method add a single string as a file at the
  333.     * end of the existing archive. If the archive does not yet exists it
  334.     * is created.
  335.     *
  336.     * @param string     $p_filename     A string which contains the full filename path
  337.     *                                   that will be associated with the string.
  338.     * @param string     $p_string       The content of the file added in the archive.
  339.     * @return                           true on success, false on error.
  340.     * @access public
  341.     */
  342.     function addString($p_filename, $p_string)
  343.     {
  344.         $v_result = true;
  345.         if (!@is_file($this->_tarname)) {
  346.             if (!$this->_openWrite()) {
  347.                 return false;
  348.             }
  349.             $this->_close();
  350.         }
  351.         if (!$this->_openAppend())
  352.             return false;
  353.         // Need to check the get back to the temporary file ? ....
  354.         $v_result = $this->_addString($p_filename, $p_string);
  355.         $this->_writeFooter();
  356.         $this->_close();
  357.         return $v_result;
  358.     }
  359.     // }}}
  360.     // {{{ extractModify()
  361.     /**
  362.     * This method extract all the content of the archive in the directory
  363.     * indicated by $p_path. When relevant the memorized path of the
  364.     * files/dir can be modified by removing the $p_remove_path path at the
  365.     * beginning of the file/dir path.
  366.     * While extracting a file, if the directory path does not exists it is
  367.     * created.
  368.     * While extracting a file, if the file already exists it is replaced
  369.     * without looking for last modification date.
  370.     * While extracting a file, if the file already exists and is write
  371.     * protected, the extraction is aborted.
  372.     * While extracting a file, if a directory with the same name already
  373.     * exists, the extraction is aborted.
  374.     * While extracting a directory, if a file with the same name already
  375.     * exists, the extraction is aborted.
  376.     * While extracting a file/directory if the destination directory exist
  377.     * and is write protected, or does not exist but can not be created,
  378.     * the extraction is aborted.
  379.     * If after extraction an extracted file does not show the correct
  380.     * stored file size, the extraction is aborted.
  381.     * When the extraction is aborted, a PEAR error text is set and false
  382.     * is returned. However the result can be a partial extraction that may
  383.     * need to be manually cleaned.
  384.     *
  385.     * @param string $p_path         The path of the directory where the files/dir need to by
  386.     *                               extracted.
  387.     * @param string $p_remove_path  Part of the memorized path that can be removed if
  388.     *                               present at the beginning of the file/dir path.
  389.     * @return boolean               true on success, false on error.
  390.     * @access public
  391.     * @see extractList()
  392.     */
  393.     function extractModify($p_path, $p_remove_path)
  394.     {
  395.         $v_result = true;
  396.         $v_list_detail = array();
  397.         if ($v_result = $this->_openRead()) {
  398.             $v_result = $this->_extractList($p_path, $v_list_detail, "complete", 0, $p_remove_path);
  399.             $this->_close();
  400.         }
  401.         return $v_result;
  402.     }
  403.     // }}}
  404.     // {{{ extractInString()
  405.     /**
  406.     * This method extract from the archive one file identified by $p_filename.
  407.     * The return value is a string with the file content, or NULL on error.
  408.     * @param string $p_filename     The path of the file to extract in a string.
  409.     * @return                       a string with the file content or NULL.
  410.     * @access public
  411.     */
  412.     function extractInString($p_filename)
  413.     {
  414.         if ($this->_openRead()) {
  415.             $v_result = $this->_extractInString($p_filename);
  416.             $this->_close();
  417.         } else {
  418.             $v_result = NULL;
  419.         }
  420.         return $v_result;
  421.     }
  422.     // }}}
  423.     // {{{ extractList()
  424.     /**
  425.     * This method extract from the archive only the files indicated in the
  426.     * $p_filelist. These files are extracted in the current directory or
  427.     * in the directory indicated by the optional $p_path parameter.
  428.     * If indicated the $p_remove_path can be used in the same way as it is
  429.     * used in extractModify() method.
  430.     * @param array  $p_filelist     An array of filenames and directory names, or a single
  431.     *                               string with names separated by a single blank space.
  432.     * @param string $p_path         The path of the directory where the files/dir need to by
  433.     *                               extracted.
  434.     * @param string $p_remove_path  Part of the memorized path that can be removed if
  435.     *                               present at the beginning of the file/dir path.
  436.     * @return                       true on success, false on error.
  437.     * @access public
  438.     * @see extractModify()
  439.     */
  440.     function extractList($p_filelist, $p_path='', $p_remove_path='')
  441.     {
  442.         $v_result = true;
  443.         $v_list_detail = array();
  444.         if (is_array($p_filelist))
  445.             $v_list = $p_filelist;
  446.         elseif (is_string($p_filelist))
  447.             $v_list = explode($this->_separator, $p_filelist);
  448.         else {
  449.             $this->_error('Invalid string list');
  450.             return false;
  451.         }
  452.         if ($v_result = $this->_openRead()) {
  453.             $v_result = $this->_extractList($p_path, $v_list_detail, "partial", $v_list, $p_remove_path);
  454.             $this->_close();
  455.         }
  456.         return $v_result;
  457.     }
  458.     // }}}
  459.     // {{{ setAttribute()
  460.     /**
  461.     * This method set specific attributes of the archive. It uses a variable
  462.     * list of parameters, in the format attribute code + attribute values :
  463.     * $arch->setAttribute(ARCHIVE_TAR_ATT_SEPARATOR, ',');
  464.     * @param mixed $argv            variable list of attributes and values
  465.     * @return                       true on success, false on error.
  466.     * @access public
  467.     */
  468.     function setAttribute()
  469.     {
  470.         $v_result = true;
  471.         // ----- Get the number of variable list of arguments
  472.         if (($v_size = func_num_args()) == 0) {
  473.             return true;
  474.         }
  475.         // ----- Get the arguments
  476.         $v_att_list = &func_get_args();
  477.         // ----- Read the attributes
  478.         $i=0;
  479.         while ($i<$v_size) {
  480.             // ----- Look for next option
  481.             switch ($v_att_list[$i]) {
  482.                 // ----- Look for options that request a string value
  483.                 case ARCHIVE_TAR_ATT_SEPARATOR :
  484.                     // ----- Check the number of parameters
  485.                     if (($i+1) >= $v_size) {
  486.                         $this->_error('Invalid number of parameters for attribute ARCHIVE_TAR_ATT_SEPARATOR');
  487.                         return false;
  488.                     }
  489.                     // ----- Get the value
  490.                     $this->_separator = $v_att_list[$i+1];
  491.                     $i++;
  492.                 break;
  493.                 default :
  494.                     $this->_error('Unknow attribute code '.$v_att_list[$i].'');
  495.                     return false;
  496.             }
  497.             // ----- Next attribute
  498.             $i++;
  499.         }
  500.         return $v_result;
  501.     }
  502.     // }}}
  503.     // {{{ _error()
  504.     function _error($p_message)
  505.     {
  506.         // ----- To be completed
  507.         $this->raiseError($p_message);
  508.     }
  509.     // }}}
  510.     // {{{ _warning()
  511.     function _warning($p_message)
  512.     {
  513.         // ----- To be completed
  514.         $this->raiseError($p_message);
  515.     }
  516.     // }}}
  517.     // {{{ _openWrite()
  518.     function _openWrite()
  519.     {
  520.         if ($this->_compress_type == 'gz')
  521.             $this->_file = @gzopen($this->_tarname, "wb");
  522.         else if ($this->_compress_type == 'bz2')
  523.             $this->_file = @bzopen($this->_tarname, "wb");
  524.         else if ($this->_compress_type == 'none')
  525.             $this->_file = @fopen($this->_tarname, "wb");
  526.         else
  527.             $this->_error('Unknown or missing compression type ('.$this->_compress_type.')');
  528.         if ($this->_file == 0) {
  529.             $this->_error('Unable to open in write mode ''.$this->_tarname.''');
  530.             return false;
  531.         }
  532.         return true;
  533.     }
  534.     // }}}
  535.     // {{{ _openRead()
  536.     function _openRead()
  537.     {
  538.         if (strtolower(substr($this->_tarname, 0, 7)) == 'http://') {
  539.           // ----- Look if a local copy need to be done
  540.           if ($this->_temp_tarname == '') {
  541.               $this->_temp_tarname = uniqid('tar').'.tmp';
  542.               if (!$v_file_from = @fopen($this->_tarname, 'rb')) {
  543.                 $this->_error('Unable to open in read mode ''.$this->_tarname.''');
  544.                 $this->_temp_tarname = '';
  545.                 return false;
  546.               }
  547.               if (!$v_file_to = @fopen($this->_temp_tarname, 'wb')) {
  548.                 $this->_error('Unable to open in write mode ''.$this->_temp_tarname.''');
  549.                 $this->_temp_tarname = '';
  550.                 return false;
  551.               }
  552.               while ($v_data = @fread($v_file_from, 1024))
  553.                   @fwrite($v_file_to, $v_data);
  554.               @fclose($v_file_from);
  555.               @fclose($v_file_to);
  556.           }
  557.           // ----- File to open if the local copy
  558.           $v_filename = $this->_temp_tarname;
  559.         } else
  560.           // ----- File to open if the normal Tar file
  561.           $v_filename = $this->_tarname;
  562.         if ($this->_compress_type == 'gz')
  563.             $this->_file = @gzopen($v_filename, "rb");
  564.         else if ($this->_compress_type == 'bz2')
  565.             $this->_file = @bzopen($v_filename, "rb");
  566.         else if ($this->_compress_type == 'none')
  567.             $this->_file = @fopen($v_filename, "rb");
  568.         else
  569.             $this->_error('Unknown or missing compression type ('.$this->_compress_type.')');
  570.         if ($this->_file == 0) {
  571.             $this->_error('Unable to open in read mode ''.$v_filename.''');
  572.             return false;
  573.         }
  574.         return true;
  575.     }
  576.     // }}}
  577.     // {{{ _openReadWrite()
  578.     function _openReadWrite()
  579.     {
  580.         if ($this->_compress_type == 'gz')
  581.             $this->_file = @gzopen($this->_tarname, "r+b");
  582.         else if ($this->_compress_type == 'bz2')
  583.             $this->_file = @bzopen($this->_tarname, "r+b");
  584.         else if ($this->_compress_type == 'none')
  585.             $this->_file = @fopen($this->_tarname, "r+b");
  586.         else
  587.             $this->_error('Unknown or missing compression type ('.$this->_compress_type.')');
  588.         if ($this->_file == 0) {
  589.             $this->_error('Unable to open in read/write mode ''.$this->_tarname.''');
  590.             return false;
  591.         }
  592.         return true;
  593.     }
  594.     // }}}
  595.     // {{{ _close()
  596.     function _close()
  597.     {
  598.         //if (isset($this->_file)) {
  599.         if (is_resource($this->_file)) {
  600.             if ($this->_compress_type == 'gz')
  601.                 @gzclose($this->_file);
  602.             else if ($this->_compress_type == 'bz2')
  603.                 @bzclose($this->_file);
  604.             else if ($this->_compress_type == 'none')
  605.                 @fclose($this->_file);
  606.             else
  607.                 $this->_error('Unknown or missing compression type ('.$this->_compress_type.')');
  608.             $this->_file = 0;
  609.         }
  610.         // ----- Look if a local copy need to be erase
  611.         // Note that it might be interesting to keep the url for a time : ToDo
  612.         if ($this->_temp_tarname != '') {
  613.             @unlink($this->_temp_tarname);
  614.             $this->_temp_tarname = '';
  615.         }
  616.         return true;
  617.     }
  618.     // }}}
  619.     // {{{ _cleanFile()
  620.     function _cleanFile()
  621.     {
  622.         $this->_close();
  623.         // ----- Look for a local copy
  624.         if ($this->_temp_tarname != '') {
  625.             // ----- Remove the local copy but not the remote tarname
  626.             @unlink($this->_temp_tarname);
  627.             $this->_temp_tarname = '';
  628.         } else {
  629.             // ----- Remove the local tarname file
  630.             @unlink($this->_tarname);
  631.         }
  632.         $this->_tarname = '';
  633.         return true;
  634.     }
  635.     // }}}
  636.     // {{{ _writeBlock()
  637.     function _writeBlock($p_binary_data, $p_len=null)
  638.     {
  639.       if (is_resource($this->_file)) {
  640.           if ($p_len === null) {
  641.               if ($this->_compress_type == 'gz')
  642.                   @gzputs($this->_file, $p_binary_data);
  643.               else if ($this->_compress_type == 'bz2')
  644.                   @bzwrite($this->_file, $p_binary_data);
  645.               else if ($this->_compress_type == 'none')
  646.                   @fputs($this->_file, $p_binary_data);
  647.               else
  648.                   $this->_error('Unknown or missing compression type ('.$this->_compress_type.')');
  649.           } else {
  650.               if ($this->_compress_type == 'gz')
  651.                   @gzputs($this->_file, $p_binary_data, $p_len);
  652.               else if ($this->_compress_type == 'bz2')
  653.                   @bzwrite($this->_file, $p_binary_data, $p_len);
  654.               else if ($this->_compress_type == 'none')
  655.                   @fputs($this->_file, $p_binary_data, $p_len);
  656.               else
  657.                   $this->_error('Unknown or missing compression type ('.$this->_compress_type.')');
  658.           }
  659.       }
  660.       return true;
  661.     }
  662.     // }}}
  663.     // {{{ _readBlock()
  664.     function _readBlock($p_len=null)
  665.     {
  666.       $v_block = null;
  667.       if (is_resource($this->_file)) {
  668.           if ($p_len === null)
  669.               $p_len = 512;
  670.           if ($this->_compress_type == 'gz')
  671.               $v_block = @gzread($this->_file, 512);
  672.           else if ($this->_compress_type == 'bz2')
  673.               $v_block = @bzread($this->_file, 512);
  674.           else if ($this->_compress_type == 'none')
  675.               $v_block = @fread($this->_file, 512);
  676.           else
  677.               $this->_error('Unknown or missing compression type ('.$this->_compress_type.')');
  678.       }
  679.       return $v_block;
  680.     }
  681.     // }}}
  682.     // {{{ _jumpBlock()
  683.     function _jumpBlock($p_len=null)
  684.     {
  685.       if (is_resource($this->_file)) {
  686.           if ($p_len === null)
  687.               $p_len = 1;
  688.           if ($this->_compress_type == 'gz')
  689.               @gzseek($this->_file, @gztell($this->_file)+($p_len*512));
  690.           else if ($this->_compress_type == 'bz2') {
  691.               // ----- Replace missing bztell() and bzseek()
  692.               for ($i=0; $i<$p_len; $i++)
  693.                   $this->_readBlock();
  694.           } else if ($this->_compress_type == 'none')
  695.               @fseek($this->_file, @ftell($this->_file)+($p_len*512));
  696.           else
  697.               $this->_error('Unknown or missing compression type ('.$this->_compress_type.')');
  698.       }
  699.       return true;
  700.     }
  701.     // }}}
  702.     // {{{ _writeFooter()
  703.     function _writeFooter()
  704.     {
  705.       if (is_resource($this->_file)) {
  706.           // ----- Write the last 0 filled block for end of archive
  707.           $v_binary_data = pack("a512", '');
  708.           $this->_writeBlock($v_binary_data);
  709.       }
  710.       return true;
  711.     }
  712.     // }}}
  713.     // {{{ _addList()
  714.     function _addList($p_list, $p_add_dir, $p_remove_dir)
  715.     {
  716.       $v_result=true;
  717.       $v_header = array();
  718.       // ----- Remove potential windows directory separator
  719.       $p_add_dir = $this->_translateWinPath($p_add_dir);
  720.       $p_remove_dir = $this->_translateWinPath($p_remove_dir, false);
  721.       if (!$this->_file) {
  722.           $this->_error('Invalid file descriptor');
  723.           return false;
  724.       }
  725.       if (sizeof($p_list) == 0)
  726.           return true;
  727.       for ($j=0; ($j<count($p_list)) && ($v_result); $j++) {
  728.         $v_filename = $p_list[$j];
  729.         // ----- Skip the current tar name
  730.         if ($v_filename == $this->_tarname)
  731.             continue;
  732.         if ($v_filename == '')
  733.             continue;
  734.         if (!file_exists($v_filename)) {
  735.             $this->_warning("File '$v_filename' does not exist");
  736.             continue;
  737.         }
  738.         // ----- Add the file or directory header
  739.         if (!$this->_addFile($v_filename, $v_header, $p_add_dir, $p_remove_dir))
  740.             return false;
  741.         if (@is_dir($v_filename)) {
  742.             if (!($p_hdir = opendir($v_filename))) {
  743.                 $this->_warning("Directory '$v_filename' can not be read");
  744.                 continue;
  745.             }
  746.             $p_hitem = readdir($p_hdir); // '.' directory
  747.             $p_hitem = readdir($p_hdir); // '..' directory
  748.             while (false !== ($p_hitem = readdir($p_hdir))) {
  749.                 if ($v_filename != ".")
  750.                     $p_temp_list[0] = $v_filename.'/'.$p_hitem;
  751.                 else
  752.                     $p_temp_list[0] = $p_hitem;
  753.                 $v_result = $this->_addList($p_temp_list, $p_add_dir, $p_remove_dir);
  754.             }
  755.             unset($p_temp_list);
  756.             unset($p_hdir);
  757.             unset($p_hitem);
  758.         }
  759.       }
  760.       return $v_result;
  761.     }
  762.     // }}}
  763.     // {{{ _addFile()
  764.     function _addFile($p_filename, &$p_header, $p_add_dir, $p_remove_dir)
  765.     {
  766.       if (!$this->_file) {
  767.           $this->_error('Invalid file descriptor');
  768.           return false;
  769.       }
  770.       if ($p_filename == '') {
  771.           $this->_error('Invalid file name');
  772.           return false;
  773.       }
  774.       // ----- Calculate the stored filename
  775.       $p_filename = $this->_translateWinPath($p_filename, false);;
  776.       $v_stored_filename = $p_filename;
  777.       if (strcmp($p_filename, $p_remove_dir) == 0) {
  778.           return true;
  779.       }
  780.       if ($p_remove_dir != '') {
  781.           if (substr($p_remove_dir, -1) != '/')
  782.               $p_remove_dir .= '/';
  783.           if (substr($p_filename, 0, strlen($p_remove_dir)) == $p_remove_dir)
  784.               $v_stored_filename = substr($p_filename, strlen($p_remove_dir));
  785.       }
  786.       $v_stored_filename = $this->_translateWinPath($v_stored_filename);
  787.       if ($p_add_dir != '') {
  788.           if (substr($p_add_dir, -1) == '/')
  789.               $v_stored_filename = $p_add_dir.$v_stored_filename;
  790.           else
  791.               $v_stored_filename = $p_add_dir.'/'.$v_stored_filename;
  792.       }
  793.       $v_stored_filename = $this->_pathReduction($v_stored_filename);
  794.       if (is_file($p_filename)) {
  795.           if (($v_file = @fopen($p_filename, "rb")) == 0) {
  796.               $this->_warning("Unable to open file '$p_filename' in binary read mode");
  797.               return true;
  798.           }
  799.           if (!$this->_writeHeader($p_filename, $v_stored_filename))
  800.               return false;
  801.           while (($v_buffer = fread($v_file, 512)) != '') {
  802.               $v_binary_data = pack("a512", "$v_buffer");
  803.               $this->_writeBlock($v_binary_data);
  804.           }
  805.           fclose($v_file);
  806.       } else {
  807.           // ----- Only header for dir
  808.           if (!$this->_writeHeader($p_filename, $v_stored_filename))
  809.               return false;
  810.       }
  811.       return true;
  812.     }
  813.     // }}}
  814.     // {{{ _addString()
  815.     function _addString($p_filename, $p_string)
  816.     {
  817.       if (!$this->_file) {
  818.           $this->_error('Invalid file descriptor');
  819.           return false;
  820.       }
  821.       if ($p_filename == '') {
  822.           $this->_error('Invalid file name');
  823.           return false;
  824.       }
  825.       // ----- Calculate the stored filename
  826.       $p_filename = $this->_translateWinPath($p_filename, false);;
  827.       if (!$this->_writeHeaderBlock($p_filename, strlen($p_string), 0, 0, "", 0, 0))
  828.           return false;
  829.       $i=0;
  830.       while (($v_buffer = substr($p_string, (($i++)*512), 512)) != '') {
  831.           $v_binary_data = pack("a512", $v_buffer);
  832.           $this->_writeBlock($v_binary_data);
  833.       }
  834.       return true;
  835.     }
  836.     // }}}
  837.     // {{{ _writeHeader()
  838.     function _writeHeader($p_filename, $p_stored_filename)
  839.     {
  840.         if ($p_stored_filename == '')
  841.             $p_stored_filename = $p_filename;
  842.         $v_reduce_filename = $this->_pathReduction($p_stored_filename);
  843.         if (strlen($v_reduce_filename) > 99) {
  844.           if (!$this->_writeLongHeader($v_reduce_filename))
  845.             return false;
  846.         }
  847.         $v_info = stat($p_filename);
  848.         $v_uid = sprintf("%6s ", DecOct($v_info[4]));
  849.         $v_gid = sprintf("%6s ", DecOct($v_info[5]));
  850.         $v_perms = sprintf("%6s ", DecOct(fileperms($p_filename)));
  851.         $v_mtime = sprintf("%11s", DecOct(filemtime($p_filename)));
  852.         if (@is_dir($p_filename)) {
  853.           $v_typeflag = "5";
  854.           $v_size = sprintf("%11s ", DecOct(0));
  855.         } else {
  856.           $v_typeflag = '';
  857.           clearstatcache();
  858.           $v_size = sprintf("%11s ", DecOct(filesize($p_filename)));
  859.         }
  860.         $v_linkname = '';
  861.         $v_magic = '';
  862.         $v_version = '';
  863.         $v_uname = '';
  864.         $v_gname = '';
  865.         $v_devmajor = '';
  866.         $v_devminor = '';
  867.         $v_prefix = '';
  868.         $v_binary_data_first = pack("a100a8a8a8a12A12", $v_reduce_filename, $v_perms, $v_uid, $v_gid, $v_size, $v_mtime);
  869.         $v_binary_data_last = pack("a1a100a6a2a32a32a8a8a155a12", $v_typeflag, $v_linkname, $v_magic, $v_version, $v_uname, $v_gname, $v_devmajor, $v_devminor, $v_prefix, '');
  870.         // ----- Calculate the checksum
  871.         $v_checksum = 0;
  872.         // ..... First part of the header
  873.         for ($i=0; $i<148; $i++)
  874.             $v_checksum += ord(substr($v_binary_data_first,$i,1));
  875.         // ..... Ignore the checksum value and replace it by ' ' (space)
  876.         for ($i=148; $i<156; $i++)
  877.             $v_checksum += ord(' ');
  878.         // ..... Last part of the header
  879.         for ($i=156, $j=0; $i<512; $i++, $j++)
  880.             $v_checksum += ord(substr($v_binary_data_last,$j,1));
  881.         // ----- Write the first 148 bytes of the header in the archive
  882.         $this->_writeBlock($v_binary_data_first, 148);
  883.         // ----- Write the calculated checksum
  884.         $v_checksum = sprintf("%6s ", DecOct($v_checksum));
  885.         $v_binary_data = pack("a8", $v_checksum);
  886.         $this->_writeBlock($v_binary_data, 8);
  887.         // ----- Write the last 356 bytes of the header in the archive
  888.         $this->_writeBlock($v_binary_data_last, 356);
  889.         return true;
  890.     }
  891.     // }}}
  892.     // {{{ _writeHeaderBlock()
  893.     function _writeHeaderBlock($p_filename, $p_size, $p_mtime=0, $p_perms=0, $p_type='', $p_uid=0, $p_gid=0)
  894.     {
  895.         $p_filename = $this->_pathReduction($p_filename);
  896.         if (strlen($p_filename) > 99) {
  897.           if (!$this->_writeLongHeader($p_filename))
  898.             return false;
  899.         }
  900.         if ($p_type == "5") {
  901.           $v_size = sprintf("%11s ", DecOct(0));
  902.         } else {
  903.           $v_size = sprintf("%11s ", DecOct($p_size));
  904.         }
  905.         $v_uid = sprintf("%6s ", DecOct($p_uid));
  906.         $v_gid = sprintf("%6s ", DecOct($p_gid));
  907.         $v_perms = sprintf("%6s ", DecOct($p_perms));
  908.         $v_mtime = sprintf("%11s", DecOct($p_mtime));
  909.         $v_linkname = '';
  910.         $v_magic = '';
  911.         $v_version = '';
  912.         $v_uname = '';
  913.         $v_gname = '';
  914.         $v_devmajor = '';
  915.         $v_devminor = '';
  916.         $v_prefix = '';
  917.         $v_binary_data_first = pack("a100a8a8a8a12A12", $p_filename, $v_perms, $v_uid, $v_gid, $v_size, $v_mtime);
  918.         $v_binary_data_last = pack("a1a100a6a2a32a32a8a8a155a12", $p_type, $v_linkname, $v_magic, $v_version, $v_uname, $v_gname, $v_devmajor, $v_devminor, $v_prefix, '');
  919.         // ----- Calculate the checksum
  920.         $v_checksum = 0;
  921.         // ..... First part of the header
  922.         for ($i=0; $i<148; $i++)
  923.             $v_checksum += ord(substr($v_binary_data_first,$i,1));
  924.         // ..... Ignore the checksum value and replace it by ' ' (space)
  925.         for ($i=148; $i<156; $i++)
  926.             $v_checksum += ord(' ');
  927.         // ..... Last part of the header
  928.         for ($i=156, $j=0; $i<512; $i++, $j++)
  929.             $v_checksum += ord(substr($v_binary_data_last,$j,1));
  930.         // ----- Write the first 148 bytes of the header in the archive
  931.         $this->_writeBlock($v_binary_data_first, 148);
  932.         // ----- Write the calculated checksum
  933.         $v_checksum = sprintf("%6s ", DecOct($v_checksum));
  934.         $v_binary_data = pack("a8", $v_checksum);
  935.         $this->_writeBlock($v_binary_data, 8);
  936.         // ----- Write the last 356 bytes of the header in the archive
  937.         $this->_writeBlock($v_binary_data_last, 356);
  938.         return true;
  939.     }
  940.     // }}}
  941.     // {{{ _writeLongHeader()
  942.     function _writeLongHeader($p_filename)
  943.     {
  944.         $v_size = sprintf("%11s ", DecOct(strlen($p_filename)));
  945.         $v_typeflag = 'L';
  946.         $v_linkname = '';
  947.         $v_magic = '';
  948.         $v_version = '';
  949.         $v_uname = '';
  950.         $v_gname = '';
  951.         $v_devmajor = '';
  952.         $v_devminor = '';
  953.         $v_prefix = '';
  954.         $v_binary_data_first = pack("a100a8a8a8a12A12", '././@LongLink', 0, 0, 0, $v_size, 0);
  955.         $v_binary_data_last = pack("a1a100a6a2a32a32a8a8a155a12", $v_typeflag, $v_linkname, $v_magic, $v_version, $v_uname, $v_gname, $v_devmajor, $v_devminor, $v_prefix, '');
  956.         // ----- Calculate the checksum
  957.         $v_checksum = 0;
  958.         // ..... First part of the header
  959.         for ($i=0; $i<148; $i++)
  960.             $v_checksum += ord(substr($v_binary_data_first,$i,1));
  961.         // ..... Ignore the checksum value and replace it by ' ' (space)
  962.         for ($i=148; $i<156; $i++)
  963.             $v_checksum += ord(' ');
  964.         // ..... Last part of the header
  965.         for ($i=156, $j=0; $i<512; $i++, $j++)
  966.             $v_checksum += ord(substr($v_binary_data_last,$j,1));
  967.         // ----- Write the first 148 bytes of the header in the archive
  968.         $this->_writeBlock($v_binary_data_first, 148);
  969.         // ----- Write the calculated checksum
  970.         $v_checksum = sprintf("%6s ", DecOct($v_checksum));
  971.         $v_binary_data = pack("a8", $v_checksum);
  972.         $this->_writeBlock($v_binary_data, 8);
  973.         // ----- Write the last 356 bytes of the header in the archive
  974.         $this->_writeBlock($v_binary_data_last, 356);
  975.         // ----- Write the filename as content of the block
  976.         $i=0;
  977.         while (($v_buffer = substr($p_filename, (($i++)*512), 512)) != '') {
  978.             $v_binary_data = pack("a512", "$v_buffer");
  979.             $this->_writeBlock($v_binary_data);
  980.         }
  981.         return true;
  982.     }
  983.     // }}}
  984.     // {{{ _readHeader()
  985.     function _readHeader($v_binary_data, &$v_header)
  986.     {
  987.         if (strlen($v_binary_data)==0) {
  988.             $v_header['filename'] = '';
  989.             return true;
  990.         }
  991.         if (strlen($v_binary_data) != 512) {
  992.             $v_header['filename'] = '';
  993.             $this->_error('Invalid block size : '.strlen($v_binary_data));
  994.             return false;
  995.         }
  996.         // ----- Calculate the checksum
  997.         $v_checksum = 0;
  998.         // ..... First part of the header
  999.         for ($i=0; $i<148; $i++)
  1000.             $v_checksum+=ord(substr($v_binary_data,$i,1));
  1001.         // ..... Ignore the checksum value and replace it by ' ' (space)
  1002.         for ($i=148; $i<156; $i++)
  1003.             $v_checksum += ord(' ');
  1004.         // ..... Last part of the header
  1005.         for ($i=156; $i<512; $i++)
  1006.            $v_checksum+=ord(substr($v_binary_data,$i,1));
  1007.         $v_data = unpack("a100filename/a8mode/a8uid/a8gid/a12size/a12mtime/a8checksum/a1typeflag/a100link/a6magic/a2version/a32uname/a32gname/a8devmajor/a8devminor", $v_binary_data);
  1008.         // ----- Extract the checksum
  1009.         $v_header['checksum'] = OctDec(trim($v_data['checksum']));
  1010.         if ($v_header['checksum'] != $v_checksum) {
  1011.             $v_header['filename'] = '';
  1012.             // ----- Look for last block (empty block)
  1013.             if (($v_checksum == 256) && ($v_header['checksum'] == 0))
  1014.                 return true;
  1015.             $this->_error('Invalid checksum for file "'.$v_data['filename'].'" : '.$v_checksum.' calculated, '.$v_header['checksum'].' expected');
  1016.             return false;
  1017.         }
  1018.         // ----- Extract the properties
  1019.         $v_header['filename'] = trim($v_data['filename']);
  1020.         $v_header['mode'] = OctDec(trim($v_data['mode']));
  1021.         $v_header['uid'] = OctDec(trim($v_data['uid']));
  1022.         $v_header['gid'] = OctDec(trim($v_data['gid']));
  1023.         $v_header['size'] = OctDec(trim($v_data['size']));
  1024.         $v_header['mtime'] = OctDec(trim($v_data['mtime']));
  1025.         if (($v_header['typeflag'] = $v_data['typeflag']) == "5") {
  1026.           $v_header['size'] = 0;
  1027.         }
  1028.         /* ----- All these fields are removed form the header because they do not carry interesting info
  1029.         $v_header[link] = trim($v_data[link]);
  1030.         $v_header[magic] = trim($v_data[magic]);
  1031.         $v_header[version] = trim($v_data[version]);
  1032.         $v_header[uname] = trim($v_data[uname]);
  1033.         $v_header[gname] = trim($v_data[gname]);
  1034.         $v_header[devmajor] = trim($v_data[devmajor]);
  1035.         $v_header[devminor] = trim($v_data[devminor]);
  1036.         */
  1037.         return true;
  1038.     }
  1039.     // }}}
  1040.     // {{{ _readLongHeader()
  1041.     function _readLongHeader(&$v_header)
  1042.     {
  1043.       $v_filename = '';
  1044.       $n = floor($v_header['size']/512);
  1045.       for ($i=0; $i<$n; $i++) {
  1046.         $v_content = $this->_readBlock();
  1047.         $v_filename .= $v_content;
  1048.       }
  1049.       if (($v_header['size'] % 512) != 0) {
  1050.         $v_content = $this->_readBlock();
  1051.         $v_filename .= $v_content;
  1052.       }
  1053.       // ----- Read the next header
  1054.       $v_binary_data = $this->_readBlock();
  1055.       if (!$this->_readHeader($v_binary_data, $v_header))
  1056.         return false;
  1057.       $v_header['filename'] = $v_filename;
  1058.       return true;
  1059.     }
  1060.     // }}}
  1061.     // {{{ _extractInString()
  1062.     /**
  1063.     * This method extract from the archive one file identified by $p_filename.
  1064.     * The return value is a string with the file content, or NULL on error.
  1065.     * @param string $p_filename     The path of the file to extract in a string.
  1066.     * @return                       a string with the file content or NULL.
  1067.     * @access private
  1068.     */
  1069.     function _extractInString($p_filename)
  1070.     {
  1071.         $v_result_str = "";
  1072.         While (strlen($v_binary_data = $this->_readBlock()) != 0)
  1073.         {
  1074.           if (!$this->_readHeader($v_binary_data, $v_header))
  1075.             return NULL;
  1076.           if ($v_header['filename'] == '')
  1077.             continue;
  1078.           // ----- Look for long filename
  1079.           if ($v_header['typeflag'] == 'L') {
  1080.             if (!$this->_readLongHeader($v_header))
  1081.               return NULL;
  1082.           }
  1083.           if ($v_header['filename'] == $p_filename) {
  1084.               if ($v_header['typeflag'] == "5") {
  1085.                   $this->_error('Unable to extract in string a directory entry {'.$v_header['filename'].'}');
  1086.                   return NULL;
  1087.               } else {
  1088.                   $n = floor($v_header['size']/512);
  1089.                   for ($i=0; $i<$n; $i++) {
  1090.                       $v_result_str .= $this->_readBlock();
  1091.                   }
  1092.                   if (($v_header['size'] % 512) != 0) {
  1093.                       $v_content = $this->_readBlock();
  1094.                       $v_result_str .= substr($v_content, 0, ($v_header['size'] % 512));
  1095.                   }
  1096.                   return $v_result_str;
  1097.               }
  1098.           } else {
  1099.               $this->_jumpBlock(ceil(($v_header['size']/512)));
  1100.           }
  1101.         }
  1102.         return NULL;
  1103.     }
  1104.     // }}}
  1105.     // {{{ _extractList()
  1106.     function _extractList($p_path, &$p_list_detail, $p_mode, $p_file_list, $p_remove_path)
  1107.     {
  1108.     $v_result=true;
  1109.     $v_nb = 0;
  1110.     $v_extract_all = true;
  1111.     $v_listing = false;
  1112.     $p_path = $this->_translateWinPath($p_path, false);
  1113.     if ($p_path == '' || (substr($p_path, 0, 1) != '/' && substr($p_path, 0, 3) != "../" && !strpos($p_path, ':'))) {
  1114.       $p_path = "./".$p_path;
  1115.     }
  1116.     $p_remove_path = $this->_translateWinPath($p_remove_path);
  1117.     // ----- Look for path to remove format (should end by /)
  1118.     if (($p_remove_path != '') && (substr($p_remove_path, -1) != '/'))
  1119.       $p_remove_path .= '/';
  1120.     $p_remove_path_size = strlen($p_remove_path);
  1121.     switch ($p_mode) {
  1122.       case "complete" :
  1123.         $v_extract_all = TRUE;
  1124.         $v_listing = FALSE;
  1125.       break;
  1126.       case "partial" :
  1127.           $v_extract_all = FALSE;
  1128.           $v_listing = FALSE;
  1129.       break;
  1130.       case "list" :
  1131.           $v_extract_all = FALSE;
  1132.           $v_listing = TRUE;
  1133.       break;
  1134.       default :
  1135.         $this->_error('Invalid extract mode ('.$p_mode.')');
  1136.         return false;
  1137.     }
  1138.     clearstatcache();
  1139.     While (strlen($v_binary_data = $this->_readBlock()) != 0)
  1140.     {
  1141.       $v_extract_file = FALSE;
  1142.       $v_extraction_stopped = 0;
  1143.       if (!$this->_readHeader($v_binary_data, $v_header))
  1144.         return false;
  1145.       if ($v_header['filename'] == '')
  1146.         continue;
  1147.       // ----- Look for long filename
  1148.       if ($v_header['typeflag'] == 'L') {
  1149.         if (!$this->_readLongHeader($v_header))
  1150.           return false;
  1151.       }
  1152.       if ((!$v_extract_all) && (is_array($p_file_list))) {
  1153.         // ----- By default no unzip if the file is not found
  1154.         $v_extract_file = false;
  1155.         for ($i=0; $i<sizeof($p_file_list); $i++) {
  1156.           // ----- Look if it is a directory
  1157.           if (substr($p_file_list[$i], -1) == '/') {
  1158.             // ----- Look if the directory is in the filename path
  1159.             if ((strlen($v_header['filename']) > strlen($p_file_list[$i])) && (substr($v_header['filename'], 0, strlen($p_file_list[$i])) == $p_file_list[$i])) {
  1160.               $v_extract_file = TRUE;
  1161.               break;
  1162.             }
  1163.           }
  1164.           // ----- It is a file, so compare the file names
  1165.           elseif ($p_file_list[$i] == $v_header['filename']) {
  1166.             $v_extract_file = TRUE;
  1167.             break;
  1168.           }
  1169.         }
  1170.       } else {
  1171.         $v_extract_file = TRUE;
  1172.       }
  1173.       // ----- Look if this file need to be extracted
  1174.       if (($v_extract_file) && (!$v_listing))
  1175.       {
  1176.         if (($p_remove_path != '')
  1177.             && (substr($v_header['filename'], 0, $p_remove_path_size) == $p_remove_path))
  1178.           $v_header['filename'] = substr($v_header['filename'], $p_remove_path_size);
  1179.         if (($p_path != './') && ($p_path != '/')) {
  1180.           while (substr($p_path, -1) == '/')
  1181.             $p_path = substr($p_path, 0, strlen($p_path)-1);
  1182.           if (substr($v_header['filename'], 0, 1) == '/')
  1183.               $v_header['filename'] = $p_path.$v_header['filename'];
  1184.           else
  1185.             $v_header['filename'] = $p_path.'/'.$v_header['filename'];
  1186.         }
  1187.         if (file_exists($v_header['filename'])) {
  1188.           if ((@is_dir($v_header['filename'])) && ($v_header['typeflag'] == '')) {
  1189.             $this->_error('File '.$v_header['filename'].' already exists as a directory');
  1190.             return false;
  1191.           }
  1192.           if ((is_file($v_header['filename'])) && ($v_header['typeflag'] == "5")) {
  1193.             $this->_error('Directory '.$v_header['filename'].' already exists as a file');
  1194.             return false;
  1195.           }
  1196.           if (!is_writeable($v_header['filename'])) {
  1197.             $this->_error('File '.$v_header['filename'].' already exists and is write protected');
  1198.             return false;
  1199.           }
  1200.           if (filemtime($v_header['filename']) > $v_header['mtime']) {
  1201.             // To be completed : An error or silent no replace ?
  1202.           }
  1203.         }
  1204.         // ----- Check the directory availability and create it if necessary
  1205.         elseif (($v_result = $this->_dirCheck(($v_header['typeflag'] == "5"?$v_header['filename']:dirname($v_header['filename'])))) != 1) {
  1206.             $this->_error('Unable to create path for '.$v_header['filename']);
  1207.             return false;
  1208.         }
  1209.         if ($v_extract_file) {
  1210.           if ($v_header['typeflag'] == "5") {
  1211.             if (!@file_exists($v_header['filename'])) {
  1212.                 if (!@mkdir($v_header['filename'], 0777)) {
  1213.                     $this->_error('Unable to create directory {'.$v_header['filename'].'}');
  1214.                     return false;
  1215.                 }
  1216.             }
  1217.           } else {
  1218.               if (($v_dest_file = @fopen($v_header['filename'], "wb")) == 0) {
  1219.                   $this->_error('Error while opening {'.$v_header['filename'].'} in write binary mode');
  1220.                   return false;
  1221.               } else {
  1222.                   $n = floor($v_header['size']/512);
  1223.                   for ($i=0; $i<$n; $i++) {
  1224.                       $v_content = $this->_readBlock();
  1225.                       fwrite($v_dest_file, $v_content, 512);
  1226.                   }
  1227.             if (($v_header['size'] % 512) != 0) {
  1228.               $v_content = $this->_readBlock();
  1229.               fwrite($v_dest_file, $v_content, ($v_header['size'] % 512));
  1230.             }
  1231.             @fclose($v_dest_file);
  1232.             // ----- Change the file mode, mtime
  1233.             @touch($v_header['filename'], $v_header['mtime']);
  1234.             // To be completed
  1235.             //chmod($v_header[filename], DecOct($v_header[mode]));
  1236.           }
  1237.           // ----- Check the file size
  1238.           clearstatcache();
  1239.           if (filesize($v_header['filename']) != $v_header['size']) {
  1240.               $this->_error('Extracted file '.$v_header['filename'].' does not have the correct file size ''.filesize($v_filename).'' ('.$v_header['size'].' expected). Archive may be corrupted.');
  1241.               return false;
  1242.           }
  1243.           }
  1244.         } else {
  1245.           $this->_jumpBlock(ceil(($v_header['size']/512)));
  1246.         }
  1247.       } else {
  1248.           $this->_jumpBlock(ceil(($v_header['size']/512)));
  1249.       }
  1250.       /* TBC : Seems to be unused ...
  1251.       if ($this->_compress)
  1252.         $v_end_of_file = @gzeof($this->_file);
  1253.       else
  1254.         $v_end_of_file = @feof($this->_file);
  1255.         */
  1256.       if ($v_listing || $v_extract_file || $v_extraction_stopped) {
  1257.         // ----- Log extracted files
  1258.         if (($v_file_dir = dirname($v_header['filename'])) == $v_header['filename'])
  1259.           $v_file_dir = '';
  1260.         if ((substr($v_header['filename'], 0, 1) == '/') && ($v_file_dir == ''))
  1261.           $v_file_dir = '/';
  1262.         $p_list_detail[$v_nb++] = $v_header;
  1263.       }
  1264.     }
  1265.         return true;
  1266.     }
  1267.     // }}}
  1268.     // {{{ _openAppend()
  1269.     function _openAppend()
  1270.     {
  1271.         if (filesize($this->_tarname) == 0)
  1272.           return $this->_openWrite();
  1273.         if ($this->_compress) {
  1274.             $this->_close();
  1275.             if (!@rename($this->_tarname, $this->_tarname.".tmp")) {
  1276.                 $this->_error('Error while renaming ''.$this->_tarname.'' to temporary file ''.$this->_tarname.'.tmp'');
  1277.                 return false;
  1278.             }
  1279.             if ($this->_compress_type == 'gz')
  1280.                 $v_temp_tar = @gzopen($this->_tarname.".tmp", "rb");
  1281.             elseif ($this->_compress_type == 'bz2')
  1282.                 $v_temp_tar = @bzopen($this->_tarname.".tmp", "rb");
  1283.             if ($v_temp_tar == 0) {
  1284.                 $this->_error('Unable to open file ''.$this->_tarname.'.tmp' in binary read mode');
  1285.                 @rename($this->_tarname.".tmp", $this->_tarname);
  1286.                 return false;
  1287.             }
  1288.             if (!$this->_openWrite()) {
  1289.                 @rename($this->_tarname.".tmp", $this->_tarname);
  1290.                 return false;
  1291.             }
  1292.             if ($this->_compress_type == 'gz') {
  1293.                 $v_buffer = @gzread($v_temp_tar, 512);
  1294.                 // ----- Read the following blocks but not the last one
  1295.                 if (!@gzeof($v_temp_tar)) {
  1296.                     do{
  1297.                         $v_binary_data = pack("a512", $v_buffer);
  1298.                         $this->_writeBlock($v_binary_data);
  1299.                         $v_buffer = @gzread($v_temp_tar, 512);
  1300.                     } while (!@gzeof($v_temp_tar));
  1301.                 }
  1302.                 @gzclose($v_temp_tar);
  1303.             }
  1304.             elseif ($this->_compress_type == 'bz2') {
  1305.                 $v_buffered_lines   = array();
  1306.                 $v_buffered_lines[] = @bzread($v_temp_tar, 512);
  1307.                 // ----- Read the following blocks but not the last one
  1308.                 while (strlen($v_buffered_lines[] = @bzread($v_temp_tar, 512)) > 0) {
  1309.                     $v_binary_data = pack("a512", array_shift($v_buffered_lines));
  1310.                     $this->_writeBlock($v_binary_data);
  1311.                 }
  1312.                 @bzclose($v_temp_tar);
  1313.             }
  1314.             if (!@unlink($this->_tarname.".tmp")) {
  1315.                 $this->_error('Error while deleting temporary file ''.$this->_tarname.'.tmp'');
  1316.             }
  1317.         } else {
  1318.             // ----- For not compressed tar, just add files before the last 512 bytes block
  1319.             if (!$this->_openReadWrite())
  1320.                return false;
  1321.             clearstatcache();
  1322.             $v_size = filesize($this->_tarname);
  1323.             fseek($this->_file, $v_size-512);
  1324.         }
  1325.         return true;
  1326.     }
  1327.     // }}}
  1328.     // {{{ _append()
  1329.     function _append($p_filelist, $p_add_dir='', $p_remove_dir='')
  1330.     {
  1331.         if (!$this->_openAppend())
  1332.             return false;
  1333.         if ($this->_addList($p_filelist, $p_add_dir, $p_remove_dir))
  1334.            $this->_writeFooter();
  1335.         $this->_close();
  1336.         return true;
  1337.     }
  1338.     // }}}
  1339.     // {{{ _dirCheck()
  1340.     /**
  1341.      * Check if a directory exists and create it (including parent
  1342.      * dirs) if not.
  1343.      *
  1344.      * @param string $p_dir directory to check
  1345.      *
  1346.      * @return bool TRUE if the directory exists or was created
  1347.      */
  1348.     function _dirCheck($p_dir)
  1349.     {
  1350.         if ((@is_dir($p_dir)) || ($p_dir == ''))
  1351.             return true;
  1352.         $p_parent_dir = dirname($p_dir);
  1353.         if (($p_parent_dir != $p_dir) &&
  1354.             ($p_parent_dir != '') &&
  1355.             (!$this->_dirCheck($p_parent_dir)))
  1356.              return false;
  1357.         if (!@mkdir($p_dir, 0777)) {
  1358.             $this->_error("Unable to create directory '$p_dir'");
  1359.             return false;
  1360.         }
  1361.         return true;
  1362.     }
  1363.     // }}}
  1364.     // {{{ _pathReduction()
  1365.     /**
  1366.      * Compress path by changing for example "/dir/foo/../bar" to "/dir/bar", and
  1367.      * remove double slashes.
  1368.      *
  1369.      * @param string $p_dir path to reduce
  1370.      *
  1371.      * @return string reduced path
  1372.      *
  1373.      * @access private
  1374.      *
  1375.      */
  1376.     function _pathReduction($p_dir)
  1377.     {
  1378.         $v_result = '';
  1379.         // ----- Look for not empty path
  1380.         if ($p_dir != '') {
  1381.             // ----- Explode path by directory names
  1382.             $v_list = explode('/', $p_dir);
  1383.             // ----- Study directories from last to first
  1384.             for ($i=sizeof($v_list)-1; $i>=0; $i--) {
  1385.                 // ----- Look for current path
  1386.                 if ($v_list[$i] == ".") {
  1387.                     // ----- Ignore this directory
  1388.                     // Should be the first $i=0, but no check is done
  1389.                 }
  1390.                 else if ($v_list[$i] == "..") {
  1391.                     // ----- Ignore it and ignore the $i-1
  1392.                     $i--;
  1393.                 }
  1394.                 else if (($v_list[$i] == '') && ($i!=(sizeof($v_list)-1)) && ($i!=0)) {
  1395.                     // ----- Ignore only the double '//' in path,
  1396.                     // but not the first and last /
  1397.                 } else {
  1398.                     $v_result = $v_list[$i].($i!=(sizeof($v_list)-1)?'/'.$v_result:'');
  1399.                 }
  1400.             }
  1401.         }
  1402.         $v_result = strtr($v_result, '\', '/');
  1403.         return $v_result;
  1404.     }
  1405.     // }}}
  1406.     // {{{ _translateWinPath()
  1407.     function _translateWinPath($p_path, $p_remove_disk_letter=true)
  1408.     {
  1409.       if (OS_WINDOWS) {
  1410.           // ----- Look for potential disk letter
  1411.           if (($p_remove_disk_letter) && (($v_position = strpos($p_path, ':')) != false)) {
  1412.               $p_path = substr($p_path, $v_position+1);
  1413.           }
  1414.           // ----- Change potential windows directory separator
  1415.           if ((strpos($p_path, '\') > 0) || (substr($p_path, 0,1) == '\')) {
  1416.               $p_path = strtr($p_path, '\', '/');
  1417.           }
  1418.       }
  1419.       return $p_path;
  1420.     }
  1421.     // }}}
  1422. }
  1423. ?>