API Joomla 1.5.26
Documentation des API du CMS Joomla en version 1.5

Référence de la classe Archive_Tar

Graphe d'héritage de Archive_Tar:
Graphe de collaboration de Archive_Tar:

Liste de tous les membres

Fonctions membres publiques

Attributs publics


Documentation des fonctions membres

Archive_Tar::_addFile ( p_filename,
&$  p_header,
p_add_dir,
p_remove_dir 
)
Archive_Tar::_addList ( p_list,
p_add_dir,
p_remove_dir 
)
Archive_Tar::_addString ( p_filename,
p_string 
)

Références $i.

Archive_Tar::_append ( p_filelist,
p_add_dir = '',
p_remove_dir = '' 
)
Archive_Tar::_Archive_Tar ( )
Archive_Tar::_cleanFile ( )
Archive_Tar::_close ( )
Archive_Tar::_dirCheck ( p_dir)

Check if a directory exists and create it (including parent dirs) if not.

Paramètres:
string$p_dirdirectory to check
Renvoie:
bool TRUE if the directory exists or was created
Archive_Tar::_error ( p_message)
Archive_Tar::_extractInString ( p_filename)

This method extract from the archive one file identified by $p_filename. The return value is a string with the file content, or NULL on error.

Paramètres:
string$p_filenameThe path of the file to extract in a string.
Renvoie:
a string with the file content or NULL. private

Références $i, et $n.

Archive_Tar::_extractList ( p_path,
&$  p_list_detail,
p_mode,
p_file_list,
p_remove_path 
)

Références $i, $n, et elseif.

Archive_Tar::_isArchive ( p_filename = NULL)
Archive_Tar::_jumpBlock ( p_len = null)

Références $i.

Archive_Tar::_maliciousFilename ( file)

Detect and report a malicious file name

Paramètres:
string$file
Renvoie:
bool private

Références $file.

Archive_Tar::_openAppend ( )
Archive_Tar::_openRead ( )
Archive_Tar::_openReadWrite ( )

Références type.

Archive_Tar::_openWrite ( )
Archive_Tar::_pathReduction ( p_dir)

Compress path by changing for example "/dir/foo/../bar" to "/dir/bar", rand emove double slashes.

Paramètres:
string$p_dirpath to reduce
Renvoie:
string reduced path

private

Références $i.

Archive_Tar::_readBlock ( )
Archive_Tar::_readHeader ( v_binary_data,
&$  v_header 
)

Références $i.

Archive_Tar::_readLongHeader ( &$  v_header)

Références $i, et $n.

Archive_Tar::_translateWinPath ( p_path,
p_remove_disk_letter = true 
)
Archive_Tar::_warning ( p_message)
Archive_Tar::_writeBlock ( p_binary_data,
p_len = null 
)
Archive_Tar::_writeFooter ( )
Archive_Tar::_writeHeader ( p_filename,
p_stored_filename 
)

Références $i, et elseif.

Archive_Tar::_writeHeaderBlock ( p_filename,
p_size,
p_mtime = 0,
p_perms = 0,
p_type = '',
p_uid = 0,
p_gid = 0 
)

Références $i.

Archive_Tar::_writeLongHeader ( p_filename)

Références $i.

Archive_Tar::add ( p_filelist)

This method add the files / directories that are listed in $p_filelist in the archive. If the archive does not exist it is created. The method return false and a PEAR error text. The files and directories listed are only added at the end of the archive, even if a file with the same name is already archived. See also createModify() method for more details.

Paramètres:
array$p_filelistAn array of filenames and directory names, or a single string with names separated by a single blank space.
Renvoie:
true on success, false on error.
Voir également:
createModify() public
Archive_Tar::addModify ( p_filelist,
p_add_dir,
p_remove_dir = '' 
)

This method add the files / directories listed in $p_filelist at the end of the existing archive. If the archive does not yet exists it is created. The $p_filelist parameter can be an array of string, each string representing a filename or a directory name with their path if needed. It can also be a single string with names separated by a single blank. The path indicated in $p_remove_dir will be removed from the memorized path of each file / directory listed when this path exists. By default nothing is removed (empty path '') The path indicated in $p_add_dir will be added at the beginning of the memorized path of each file / directory listed. However it can be set to empty ''. The adding of a path is done after the removing of path. The path add/remove ability enables the user to prepare an archive for extraction in a different path than the origin files are. If a file/dir is already in the archive it will only be added at the end of the archive. There is no update of the existing archived file/dir. However while extracting the archive, the last file will replace the first one. This results in a none optimization of the archive size. If a file/dir does not exist the file/dir is ignored. However an error text is send to PEAR error. If a file/dir is not readable the file/dir is ignored. However an error text is send to PEAR error.

Paramètres:
array$p_filelistAn array of filenames and directory names, or a single string with names separated by a single blank space.
string$p_add_dirA string which contains a path to be added to the memorized path of each element in the list.
string$p_remove_dirA string which contains a path to be removed from the memorized path of each element in the list, when relevant.
Renvoie:
true on success, false on error. public

Références elseif.

Archive_Tar::addString ( p_filename,
p_string 
)

This method add a single string as a file at the end of the existing archive. If the archive does not yet exists it is created.

Paramètres:
string$p_filenameA string which contains the full filename path that will be associated with the string.
string$p_stringThe content of the file added in the archive.
Renvoie:
true on success, false on error. public
Archive_Tar::Archive_Tar ( p_tarname,
p_compress = null 
)

Archive_Tar Class constructor. This flavour of the constructor only declare a new Archive_Tar object, identifying it by the name of the tar file. If the compress argument is set the tar will be read or created as a gzip or bz2 compressed TAR file.

Paramètres:
string$p_tarnameThe name of the tar archive to create
string$p_compresscan be null, 'gz' or 'bz2'. This parameter indicates if gzip or bz2 compression is required. For compatibility reason the boolean value 'true' means 'gz'. public

Références $data, elseif, et PEAR::loadExtension().

Voici le graphe d'appel pour cette fonction :

Archive_Tar::create ( p_filelist)

This method creates the archive file and add the files / directories that are listed in $p_filelist. If a file with the same name exist and is writable, it is replaced by the new tar. The method return false and a PEAR error text. The $p_filelist parameter can be an array of string, each string representing a filename or a directory name with their path if needed. It can also be a single string with names separated by a single blank. For each directory added in the archive, the files and sub-directories are also added. See also createModify() method for more details.

Paramètres:
array$p_filelistAn array of filenames and directory names, or a single string with names separated by a single blank space.
Renvoie:
true on success, false on error.
Voir également:
createModify() public
Archive_Tar::createModify ( p_filelist,
p_add_dir,
p_remove_dir = '' 
)

This method creates the archive file and add the files / directories that are listed in $p_filelist. If the file already exists and is writable, it is replaced by the new tar. It is a create and not an add. If the file exists and is read-only or is a directory it is not replaced. The method return false and a PEAR error text. The $p_filelist parameter can be an array of string, each string representing a filename or a directory name with their path if needed. It can also be a single string with names separated by a single blank. The path indicated in $p_remove_dir will be removed from the memorized path of each file / directory listed when this path exists. By default nothing is removed (empty path '') The path indicated in $p_add_dir will be added at the beginning of the memorized path of each file / directory listed. However it can be set to empty ''. The adding of a path is done after the removing of path. The path add/remove ability enables the user to prepare an archive for extraction in a different path than the origin files are. See also addModify() method for file adding properties.

Paramètres:
array$p_filelistAn array of filenames and directory names, or a single string with names separated by a single blank space.
string$p_add_dirA string which contains a path to be added to the memorized path of each element in the list.
string$p_remove_dirA string which contains a path to be removed from the memorized path of each element in the list, when relevant.
Renvoie:
boolean true on success, false on error. public
Voir également:
addModify()

Références elseif.

Archive_Tar::extract ( p_path = '')
Archive_Tar::extractInString ( p_filename)

This method extract from the archive one file identified by $p_filename. The return value is a string with the file content, or NULL on error.

Paramètres:
string$p_filenameThe path of the file to extract in a string.
Renvoie:
a string with the file content or NULL. public
Archive_Tar::extractList ( p_filelist,
p_path = '',
p_remove_path = '' 
)

This method extract from the archive only the files indicated in the $p_filelist. These files are extracted in the current directory or in the directory indicated by the optional $p_path parameter. If indicated the $p_remove_path can be used in the same way as it is used in extractModify() method.

Paramètres:
array$p_filelistAn array of filenames and directory names, or a single string with names separated by a single blank space.
string$p_pathThe path of the directory where the files/dir need to by extracted.
string$p_remove_pathPart of the memorized path that can be removed if present at the beginning of the file/dir path.
Renvoie:
true on success, false on error. public
Voir également:
extractModify()

Références elseif.

Archive_Tar::extractModify ( p_path,
p_remove_path 
)

This method extract all the content of the archive in the directory indicated by $p_path. When relevant the memorized path of the files/dir can be modified by removing the $p_remove_path path at the beginning of the file/dir path. While extracting a file, if the directory path does not exists it is created. While extracting a file, if the file already exists it is replaced without looking for last modification date. While extracting a file, if the file already exists and is write protected, the extraction is aborted. While extracting a file, if a directory with the same name already exists, the extraction is aborted. While extracting a directory, if a file with the same name already exists, the extraction is aborted. While extracting a file/directory if the destination directory exist and is write protected, or does not exist but can not be created, the extraction is aborted. If after extraction an extracted file does not show the correct stored file size, the extraction is aborted. When the extraction is aborted, a PEAR error text is set and false is returned. However the result can be a partial extraction that may need to be manually cleaned.

Paramètres:
string$p_pathThe path of the directory where the files/dir need to by extracted.
string$p_remove_pathPart of the memorized path that can be removed if present at the beginning of the file/dir path.
Renvoie:
boolean true on success, false on error. public
Voir également:
extractList()
Archive_Tar::listContent ( )
Archive_Tar::setAttribute ( )

This method set specific attributes of the archive. It uses a variable list of parameters, in the format attribute code + attribute values : $arch->setAttribute(ARCHIVE_TAR_ATT_SEPARATOR, ',');

Paramètres:
mixed$argvvariable list of attributes and values
Renvoie:
true on success, false on error. public

Références $i.


Documentation des données membres

Archive_Tar::$_compress = false
Archive_Tar::$_compress_type = 'none'
Archive_Tar::$_file = 0
Archive_Tar::$_separator = ' '
Archive_Tar::$_tarname = ''
Archive_Tar::$_temp_tarname = ''

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