Joomla Platform  13.1
Documentation des API du framework Joomla Platform
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Pages
Référence de la classe JArchiveZip
+ Graphe d'héritage de JArchiveZip:
+ Graphe de collaboration de JArchiveZip:

Liste de tous les membres

Fonctions membres publiques

 create ($archive, $files)
 extract ($archive, $destination, array $options=array())
 checkZipData (&$data)

Fonctions membres publiques statiques

static isSupported ()
static hasNativeSupport ()

Fonctions membres protégées

 extractCustom ($archive, $destination)
 extractNative ($archive, $destination)
 _unix2DOSTime ($unixtime=null)

Fonctions membres privées

 _readZipInfo (&$data)
 _getFileData ($key)
 _addToZIPFile (array &$file, array &$contents, array &$ctrldir)
 _createZIPFile (array &$contents, array &$ctrlDir, $path)

Attributs privés

 $_methods
 $_ctrlDirHeader = "\x50\x4b\x01\x02"
 $_ctrlDirEnd = "\x50\x4b\x05\x06\x00\x00\x00\x00"
 $_fileHeader = "\x50\x4b\x03\x04"
 $_data = null
 $_metadata = null

Description détaillée

Définition à la ligne 39 du fichier zip.php.


Documentation des fonctions membres

JArchiveZip::_addToZIPFile ( array &  $file,
array &  $contents,
array &  $ctrldir 
)
private

Adds a "file" to the ZIP archive.

Paramètres:
array&$fileFile data array to add
array&$contentsAn array of existing zipped files.
array&$ctrldirAn array of central directory information.
Renvoie:
void
Depuis:
11.1
A faire:
Review and finish implementation

Définition à la ligne 586 du fichier zip.php.

{
$data = &$file['data'];
$name = str_replace('\\', '/', $file['name']);
/* See if time/date information has been provided. */
$ftime = null;
if (isset($file['time']))
{
$ftime = $file['time'];
}
// Get the hex time.
$dtime = dechex($this->_unix2DosTime($ftime));
$hexdtime = chr(hexdec($dtime[6] . $dtime[7])) . chr(hexdec($dtime[4] . $dtime[5])) . chr(hexdec($dtime[2] . $dtime[3]))
. chr(hexdec($dtime[0] . $dtime[1]));
/* Begin creating the ZIP data. */
/* Version needed to extract. */
$fr .= "\x14\x00";
/* General purpose bit flag. */
$fr .= "\x00\x00";
/* Compression method. */
$fr .= "\x08\x00";
/* Last modification time/date. */
$fr .= $hexdtime;
/* "Local file header" segment. */
$unc_len = strlen($data);
$crc = crc32($data);
$zdata = gzcompress($data);
$zdata = substr(substr($zdata, 0, strlen($zdata) - 4), 2);
$c_len = strlen($zdata);
/* CRC 32 information. */
$fr .= pack('V', $crc);
/* Compressed filesize. */
$fr .= pack('V', $c_len);
/* Uncompressed filesize. */
$fr .= pack('V', $unc_len);
/* Length of filename. */
$fr .= pack('v', strlen($name));
/* Extra field length. */
$fr .= pack('v', 0);
/* File name. */
$fr .= $name;
/* "File data" segment. */
$fr .= $zdata;
/* Add this entry to array. */
$old_offset = strlen(implode('', $contents));
$contents[] = &$fr;
/* Add to central directory record. */
/* Version made by. */
$cdrec .= "\x00\x00";
/* Version needed to extract */
$cdrec .= "\x14\x00";
/* General purpose bit flag */
$cdrec .= "\x00\x00";
/* Compression method */
$cdrec .= "\x08\x00";
/* Last mod time/date. */
$cdrec .= $hexdtime;
/* CRC 32 information. */
$cdrec .= pack('V', $crc);
/* Compressed filesize. */
$cdrec .= pack('V', $c_len);
/* Uncompressed filesize. */
$cdrec .= pack('V', $unc_len);
/* Length of filename. */
$cdrec .= pack('v', strlen($name));
/* Extra field length. */
$cdrec .= pack('v', 0);
/* File comment length. */
$cdrec .= pack('v', 0);
/* Disk number start. */
$cdrec .= pack('v', 0);
/* Internal file attributes. */
$cdrec .= pack('v', 0);
/* External file attributes -'archive' bit set. */
$cdrec .= pack('V', 32);
/* Relative offset of local header. */
$cdrec .= pack('V', $old_offset);
/* File name. */
$cdrec .= $name;
/* Optional extra field, file comment goes here. */
/* Save to central directory array. */
$ctrldir[] = &$cdrec;
}
JArchiveZip::_createZIPFile ( array &  $contents,
array &  $ctrlDir,
  $path 
)
private

Creates the ZIP file.

Official ZIP file format: http://www.pkware.com/appnote.txt

Paramètres:
array&$contentsAn array of existing zipped files.
array&$ctrlDirAn array of central directory information.
string$pathThe path to store the archive.
Renvoie:
boolean True if successful
Depuis:
11.1
A faire:
Review and finish implementation

Définition à la ligne 697 du fichier zip.php.

Références JFile\write().

{
$data = implode('', $contents);
$dir = implode('', $ctrlDir);
$buffer = $data . $dir . $this->_ctrlDirEnd . /* Total # of entries "on this disk". */
pack('v', count($ctrlDir)) . /* Total # of entries overall. */
pack('v', count($ctrlDir)) . /* Size of central directory. */
pack('V', strlen($dir)) . /* Offset to start of central dir. */
pack('V', strlen($data)) . /* ZIP file comment length. */
"\x00\x00";
if (JFile::write($path, $buffer) === false)
{
return false;
}
else
{
return true;
}
}

+ Voici le graphe d'appel pour cette fonction :

JArchiveZip::_getFileData (   $key)
private

Returns the file data for a file by offsest in the ZIP archive

Paramètres:
integer$keyThe position of the file in the archive.
Renvoie:
string Uncompressed file data buffer.
Depuis:
11.1

Définition à la ligne 521 du fichier zip.php.

{
if ($this->_metadata[$key]['_method'] == 0x8)
{
return gzinflate(substr($this->_data, $this->_metadata[$key]['_dataStart'], $this->_metadata[$key]['csize']));
}
elseif ($this->_metadata[$key]['_method'] == 0x0)
{
/* Files that aren't compressed. */
return substr($this->_data, $this->_metadata[$key]['_dataStart'], $this->_metadata[$key]['csize']);
}
elseif ($this->_metadata[$key]['_method'] == 0x12)
{
// If bz2 extension is loaded use it
if (extension_loaded('bz2'))
{
return bzdecompress(substr($this->_data, $this->_metadata[$key]['_dataStart'], $this->_metadata[$key]['csize']));
}
}
return '';
}
JArchiveZip::_readZipInfo ( $data)
private

Get the list of files/data from a ZIP archive buffer.

 KEY: Position in zipfile
 VALUES: 'attr'  –  File attributes
 'crc'   –  CRC checksum
 'csize' –  Compressed file size
 'date'  –  File modification time
 'name'  –  Filename
 'method'–  Compression method
 'size'  –  Original file size
 'type'  –  File type
 
Paramètres:
string&$dataThe ZIP archive buffer.
Renvoie:
boolean True on success
Depuis:
11.1
Exceptions:
RuntimeException

Définition à la ligne 395 du fichier zip.php.

Références JError\raiseWarning().

{
$entries = array();
// Find the last central directory header entry
$fhLast = strpos($data, $this->_ctrlDirEnd);
do
{
$last = $fhLast;
}
while (($fhLast = strpos($data, $this->_ctrlDirEnd, $fhLast + 1)) !== false);
// Find the central directory offset
$offset = 0;
if ($last)
{
$endOfCentralDirectory = unpack(
'vNumberOfDisk/vNoOfDiskWithStartOfCentralDirectory/vNoOfCentralDirectoryEntriesOnDisk/' .
'vTotalCentralDirectoryEntries/VSizeOfCentralDirectory/VCentralDirectoryOffset/vCommentLength',
substr($data, $last + 4)
);
$offset = $endOfCentralDirectory['CentralDirectoryOffset'];
}
// Get details from central directory structure.
$fhStart = strpos($data, $this->_ctrlDirHeader, $offset);
$dataLength = strlen($data);
do
{
if ($dataLength < $fhStart + 31)
{
if (class_exists('JError'))
{
return JError::raiseWarning(100, 'Invalid Zip Data');
}
else
{
throw new RuntimeException('Invalid Zip Data');
}
}
$info = unpack('vMethod/VTime/VCRC32/VCompressed/VUncompressed/vLength', substr($data, $fhStart + 10, 20));
$name = substr($data, $fhStart + 46, $info['Length']);
$entries[$name] = array(
'attr' => null,
'crc' => sprintf("%08s", dechex($info['CRC32'])),
'csize' => $info['Compressed'],
'date' => null,
'_dataStart' => null,
'name' => $name,
'method' => $this->_methods[$info['Method']],
'_method' => $info['Method'],
'size' => $info['Uncompressed'],
'type' => null
);
$entries[$name]['date'] = mktime(
(($info['Time'] >> 11) & 0x1f),
(($info['Time'] >> 5) & 0x3f),
(($info['Time'] << 1) & 0x3e),
(($info['Time'] >> 21) & 0x07),
(($info['Time'] >> 16) & 0x1f),
((($info['Time'] >> 25) & 0x7f) + 1980)
);
if ($dataLength < $fhStart + 43)
{
if (class_exists('JError'))
{
return JError::raiseWarning(100, 'Invalid ZIP data');
}
else
{
throw new RuntimeException('Invalid ZIP data');
}
}
$info = unpack('vInternal/VExternal/VOffset', substr($data, $fhStart + 36, 10));
$entries[$name]['type'] = ($info['Internal'] & 0x01) ? 'text' : 'binary';
$entries[$name]['attr'] = (($info['External'] & 0x10) ? 'D' : '-') . (($info['External'] & 0x20) ? 'A' : '-')
. (($info['External'] & 0x03) ? 'S' : '-') . (($info['External'] & 0x02) ? 'H' : '-') . (($info['External'] & 0x01) ? 'R' : '-');
$entries[$name]['offset'] = $info['Offset'];
// Get details from local file header since we have the offset
$lfhStart = strpos($data, $this->_fileHeader, $entries[$name]['offset']);
if ($dataLength < $lfhStart + 34)
{
if (class_exists('JError'))
{
return JError::raiseWarning(100, 'Invalid Zip Data');
}
else
{
throw new RuntimeException('Invalid Zip Data');
}
}
$info = unpack('vMethod/VTime/VCRC32/VCompressed/VUncompressed/vLength/vExtraLength', substr($data, $lfhStart + 8, 25));
$name = substr($data, $lfhStart + 30, $info['Length']);
$entries[$name]['_dataStart'] = $lfhStart + 30 + $info['Length'] + $info['ExtraLength'];
// Bump the max execution time because not using the built in php zip libs makes this process slow.
@set_time_limit(ini_get('max_execution_time'));
}
while ((($fhStart = strpos($data, $this->_ctrlDirHeader, $fhStart + 46)) !== false));
$this->_metadata = array_values($entries);
return true;
}

+ Voici le graphe d'appel pour cette fonction :

JArchiveZip::_unix2DOSTime (   $unixtime = null)
protected

Converts a UNIX timestamp to a 4-byte DOS date and time format (date in high 2-bytes, time in low 2-bytes allowing magnitude comparison).

Paramètres:
int$unixtimeThe current UNIX timestamp.
Renvoie:
int The current date in a 4-byte DOS format.
Depuis:
11.1

Définition à la ligne 555 du fichier zip.php.

{
$timearray = (is_null($unixtime)) ? getdate() : getdate($unixtime);
if ($timearray['year'] < 1980)
{
$timearray['year'] = 1980;
$timearray['mon'] = 1;
$timearray['mday'] = 1;
$timearray['hours'] = 0;
$timearray['minutes'] = 0;
$timearray['seconds'] = 0;
}
return (($timearray['year'] - 1980) << 25) | ($timearray['mon'] << 21) | ($timearray['mday'] << 16) | ($timearray['hours'] << 11) |
($timearray['minutes'] << 5) | ($timearray['seconds'] >> 1);
}
JArchiveZip::checkZipData ( $data)

Checks to see if the data is a valid ZIP file.

Paramètres:
string&$dataZIP archive data buffer.
Renvoie:
boolean True if valid, false if invalid.
Depuis:
11.1

Définition à la ligne 184 du fichier zip.php.

{
if (strpos($data, $this->_fileHeader) === false)
{
return false;
}
else
{
return true;
}
}
JArchiveZip::create (   $archive,
  $files 
)

Create a ZIP compressed file from an array of file data.

Paramètres:
string$archivePath to save archive.
array$filesArray of files to add to archive.
Renvoie:
boolean True if successful.
Depuis:
11.1
A faire:
Finish Implementation

Définition à la ligne 102 du fichier zip.php.

{
$contents = array();
$ctrldir = array();
foreach ($files as $file)
{
$this->_addToZIPFile($file, $contents, $ctrldir);
}
return $this->_createZIPFile($contents, $ctrldir, $archive);
}
JArchiveZip::extract (   $archive,
  $destination,
array  $options = array() 
)

Extract a ZIP compressed file to a given path

Paramètres:
string$archivePath to ZIP archive to extract
string$destinationPath to extract archive into
array$optionsExtraction options [unused]
Renvoie:
boolean True if successful
Depuis:
11.1
Exceptions:
RuntimeException

Implémente JArchiveExtractable.

Définition à la ligne 127 du fichier zip.php.

Références JError\raiseWarning().

{
if (!is_file($archive))
{
if (class_exists('JError'))
{
return JError::raiseWarning(100, 'Archive does not exist');
}
else
{
throw new RuntimeException('Archive does not exist');
}
}
if ($this->hasNativeSupport())
{
return $this->extractNative($archive, $destination);
}
else
{
return $this->extractCustom($archive, $destination);
}
}

+ Voici le graphe d'appel pour cette fonction :

JArchiveZip::extractCustom (   $archive,
  $destination 
)
protected

Extract a ZIP compressed file to a given path using a php based algorithm that only requires zlib support

Paramètres:
string$archivePath to ZIP archive to extract.
string$destinationPath to extract archive into.
Renvoie:
mixed True if successful
Depuis:
11.1
Exceptions:
RuntimeException

Définition à la ligne 207 du fichier zip.php.

Références JPath\clean(), JFolder\create(), JError\raiseWarning(), et JFile\write().

{
$this->_data = null;
$this->_metadata = null;
if (!extension_loaded('zlib'))
{
if (class_exists('JError'))
{
return JError::raiseWarning(100, 'Zlib not supported');
}
else
{
throw new RuntimeException('Zlib not supported');
}
}
$this->_data = file_get_contents($archive);
if (!$this->_data)
{
if (class_exists('JError'))
{
return JError::raiseWarning(100, 'Unable to read archive (zip)');
}
else
{
throw new RuntimeException('Unable to read archive (zip)');
}
}
if (!$this->_readZipInfo($this->_data))
{
if (class_exists('JError'))
{
return JError::raiseWarning(100, 'Get ZIP Information failed');
}
else
{
throw new RuntimeException('Get ZIP Information failed');
}
}
for ($i = 0, $n = count($this->_metadata); $i < $n; $i++)
{
$lastPathCharacter = substr($this->_metadata[$i]['name'], -1, 1);
if ($lastPathCharacter !== '/' && $lastPathCharacter !== '\\')
{
$buffer = $this->_getFileData($i);
$path = JPath::clean($destination . '/' . $this->_metadata[$i]['name']);
// Make sure the destination folder exists
if (!JFolder::create(dirname($path)))
{
if (class_exists('JError'))
{
return JError::raiseWarning(100, 'Unable to create destination');
}
else
{
throw new RuntimeException('Unable to create destination');
}
}
if (JFile::write($path, $buffer) === false)
{
if (class_exists('JError'))
{
return JError::raiseWarning(100, 'Unable to write entry');
}
else
{
throw new RuntimeException('Unable to write entry');
}
}
}
}
return true;
}

+ Voici le graphe d'appel pour cette fonction :

JArchiveZip::extractNative (   $archive,
  $destination 
)
protected

Extract a ZIP compressed file to a given path using native php api calls for speed

Paramètres:
string$archivePath to ZIP archive to extract
string$destinationPath to extract archive into
Renvoie:
boolean True on success
Depuis:
11.1
Exceptions:
RuntimeException

Définition à la ligne 300 du fichier zip.php.

Références JFolder\create(), JError\raiseWarning(), et JFile\write().

{
$zip = zip_open($archive);
if (is_resource($zip))
{
// Make sure the destination folder exists
if (!JFolder::create($destination))
{
if (class_exists('JError'))
{
return JError::raiseWarning(100, 'Unable to create destination');
}
else
{
throw new RuntimeException('Unable to create destination');
}
}
// Read files in the archive
while ($file = @zip_read($zip))
{
if (zip_entry_open($zip, $file, "r"))
{
if (substr(zip_entry_name($file), strlen(zip_entry_name($file)) - 1) != "/")
{
$buffer = zip_entry_read($file, zip_entry_filesize($file));
if (JFile::write($destination . '/' . zip_entry_name($file), $buffer) === false)
{
if (class_exists('JError'))
{
return JError::raiseWarning(100, 'Unable to write entry');
}
else
{
throw new RuntimeException('Unable to write entry');
}
}
zip_entry_close($file);
}
}
else
{
if (class_exists('JError'))
{
return JError::raiseWarning(100, 'Unable to read entry');
}
else
{
throw new RuntimeException('Unable to read entry');
}
}
}
@zip_close($zip);
}
else
{
if (class_exists('JError'))
{
return JError::raiseWarning(100, 'Unable to open archive');
}
else
{
throw new RuntimeException('Unable to open archive');
}
}
return true;
}

+ Voici le graphe d'appel pour cette fonction :

static JArchiveZip::hasNativeSupport ( )
static

Method to determine if the server has native zip support for faster handling

Renvoie:
boolean True if php has native ZIP support
Depuis:
11.1

Définition à la ligne 170 du fichier zip.php.

{
return (function_exists('zip_open') && function_exists('zip_read'));
}
static JArchiveZip::isSupported ( )
static

Tests whether this adapter can unpack files on this computer.

Renvoie:
boolean True if supported
Depuis:
11.3

Implémente JArchiveExtractable.

Définition à la ligne 158 du fichier zip.php.

{
return (self::hasNativeSupport() || extension_loaded('zlib'));
}

Documentation des données membres

JArchiveZip::$_ctrlDirEnd = "\x50\x4b\x05\x06\x00\x00\x00\x00"
private

Définition à la ligne 64 du fichier zip.php.

JArchiveZip::$_ctrlDirHeader = "\x50\x4b\x01\x02"
private

Définition à la ligne 56 du fichier zip.php.

JArchiveZip::$_data = null
private

Définition à la ligne 80 du fichier zip.php.

JArchiveZip::$_fileHeader = "\x50\x4b\x03\x04"
private

Définition à la ligne 72 du fichier zip.php.

JArchiveZip::$_metadata = null
private

Définition à la ligne 88 du fichier zip.php.

JArchiveZip::$_methods
private
Valeur initiale :
array(0x0 => 'None', 0x1 => 'Shrunk', 0x2 => 'Super Fast', 0x3 => 'Fast', 0x4 => 'Normal', 0x5 => 'Maximum', 0x6 => 'Imploded',
0x8 => 'Deflated')

Définition à la ligne 47 du fichier zip.php.


La documentation de cette classe a été générée à partir du fichier suivant :