Tar Tcl Reference Documentation
Tar
Current Version: 10.0.0
API for creating and extracting TAR archives. Also supports creating and extracting .tar.gz (.tgz), .tar.bz2, and .tar.Z (compressed TAR archives, also known as compressed tarball archives). Can read/write the following TAR formats: (1) GNU tar 1.13.x format, (2) PAX -- POSIX 1003.1-2001 format, (3) USTAR -- POSIX 1003.1-1988 format.
Object Creation
set myTar [new CkTar]
Properties
CaptureXmlListing
set boolVal [CkTar_get_CaptureXmlListing $myTar]
CkTar_put_CaptureXmlListing $myTar $boolVal
If 1, then untar methods, such as Untar, UntarGz, UntarBz2, and UntarZ, will also capture an XML listing of the contents in the XmlListing property. The format of the XML contained in XmlListing is identical to what is returned by the ListXml method. The default value is 0.
topCharset
# ckStr is a CkString
CkTar_get_Charset $myTar $ckStr
set strVal [CkTar_get_charset $myTar]
CkTar_put_Charset $myTar $strVal
Character encoding to be used when interpreting filenames within .tar archives for untar operations. The default is "utf-8", and this is typically not changed. (The WriteTar methods always uses utf-8 to store filenames within the TAR archive.)
topDebugLogFilePath
# ckStr is a CkString
CkTar_get_DebugLogFilePath $myTar $ckStr
set strVal [CkTar_get_debugLogFilePath $myTar]
CkTar_put_DebugLogFilePath $myTar $strVal
If set to a file path, causes each Chilkat method or property call to automatically append it's LastErrorText to the specified log file. The information is appended such that if a hang or crash occurs, it is possible to see the context in which the problem occurred, as well as a history of all Chilkat calls up to the point of the problem. The VerboseLogging property can be set to provide more detailed information.
This property is typically used for debugging the rare cases where a Chilkat method call hangs or generates an exception that halts program execution (i.e. crashes). A hang or crash should generally never happen. The typical causes of a hang are:
- a timeout related property was set to 0 to explicitly indicate that an infinite timeout is desired,
- the hang is actually a hang within an event callback (i.e. it is a hang within the application code), or
- there is an internal problem (bug) in the Chilkat code that causes the hang.
DirMode
set intVal [CkTar_get_DirMode $myTar]
CkTar_put_DirMode $myTar $intVal
The directory permissions to used in WriteTar* methods. The default is octal 0755. This is the value to be stored in the "mode" field of each TAR header for a directory entries.
topDirPrefix
# ckStr is a CkString
CkTar_get_DirPrefix $myTar $ckStr
set strVal [CkTar_get_dirPrefix $myTar]
CkTar_put_DirPrefix $myTar $strVal
A prefix to be added to each file's path within the TAR archive as it is being created. For example, if this property is set to the string "subdir1", then "subdir1/" will be prepended to each file's path within the TAR.
Note: This property does not apply to files added using the AddFile2 method, which directly specifies the path-in-tar.
topFileMode
set intVal [CkTar_get_FileMode $myTar]
CkTar_put_FileMode $myTar $intVal
The file permissions to used in WriteTar* methods. The default is octal 0644. This is the value to be stored in the "mode" field of each TAR header for a file entries.
topGroupId
set intVal [CkTar_get_GroupId $myTar]
CkTar_put_GroupId $myTar $intVal
The default numerical GID to be stored in each TAR header when writing TAR archives. The default value is 1000.
topGroupName
# ckStr is a CkString
CkTar_get_GroupName $myTar $ckStr
set strVal [CkTar_get_groupName $myTar]
CkTar_put_GroupName $myTar $strVal
The default group name to be stored in each TAR header when writing TAR archives. The default value is the logged-on username of the application's process.
topLastErrorHtml
# ckStr is a CkString
CkTar_get_LastErrorHtml $myTar $ckStr
set strVal [CkTar_get_lastErrorHtml $myTar]
Provides information in HTML format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.
topLastErrorText
# ckStr is a CkString
CkTar_get_LastErrorText $myTar $ckStr
set strVal [CkTar_get_lastErrorText $myTar]
Provides information in plain-text format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.
LastErrorXml
# ckStr is a CkString
CkTar_get_LastErrorXml $myTar $ckStr
set strVal [CkTar_get_lastErrorXml $myTar]
Provides information in XML format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.
topLastMethodSuccess
set boolVal [CkTar_get_LastMethodSuccess $myTar]
CkTar_put_LastMethodSuccess $myTar $boolVal
Indicate whether the last method call succeeded or failed. A value of 1 indicates success, a value of 0 indicates failure. This property is automatically set for method calls. It is not modified by property accesses. The property is automatically set to indicate success for the following types of method calls:
- Any method that returns a string.
- Any method returning a Chilkat object, binary bytes, or a date/time.
- Any method returning a standard boolean status value where success = 1 and failure = 0.
- Any method returning an integer where failure is defined by a return value less than zero.
Note: Methods that do not fit the above requirements will always set this property equal to 1. For example, a method that returns no value (such as a "void" in C++) will technically always succeed.
topMatchCaseSensitive
set boolVal [CkTar_get_MatchCaseSensitive $myTar]
CkTar_put_MatchCaseSensitive $myTar $boolVal
Determines whether pattern matching for the MustMatch and MustNotMatch properties is case-sensitive or not. The default value is 0.
topMustMatch
# ckStr is a CkString
CkTar_get_MustMatch $myTar $ckStr
set strVal [CkTar_get_mustMatch $myTar]
CkTar_put_MustMatch $myTar $strVal
If set, then file paths must match this pattern when creating TAR archives, or when extracting from TAR archives. If a file does not match, it will not be included when creating a TAR, or it will not be extracted when extracting from a TAR. This property also applies to methods that create or extract from compressed TAR archives.
The must-match pattern may include 0 or more asterisk characters, each of which represents 0 or more of any character. For example, the pattern "*.txt" causes only .txt files to be included or extracted. The default value is an empty string, indicating that all files are implicitly matched.
topMustNotMatch
# ckStr is a CkString
CkTar_get_MustNotMatch $myTar $ckStr
set strVal [CkTar_get_mustNotMatch $myTar]
CkTar_put_MustNotMatch $myTar $strVal
If set, then file paths must NOT match this pattern when creating TAR archives, or when extracting from TAR archives. If a file path matches, it will not be included when creating a TAR, or it will not be extracted when extracting from a TAR. This property also applies to methods that create or extract from compressed TAR archives.
The must-not-match pattern may include 0 or more asterisk characters, each of which represents 0 or more of any character. For example, the pattern "*.obj" causes all .obj files to be skipped. The default value is an empty string, indicating that no files are skipped.
topNoAbsolutePaths
set boolVal [CkTar_get_NoAbsolutePaths $myTar]
CkTar_put_NoAbsolutePaths $myTar $boolVal
If 1, then absolute paths are converted to relative paths by removing the leading "/" or "\" character when untarring. This protects your system from unknowingly untarring files into important system directories, such as C:\Windows\system32. The default value is 1.
topNumDirRoots
set intVal [CkTar_get_NumDirRoots $myTar]
The total number of directory roots set by calling AddDirRoot (i.e. the number of times AddDirRoot was called by the application). A TAR archive is created by calling AddDirRoot for one or more directory tree roots, followed by a single call to WriteTar (or WriteTarBz2, WriteTarGz, WriteTarZ). This allows for TAR archives containing multiple directory trees to be created.
topScriptFileMode
set intVal [CkTar_get_ScriptFileMode $myTar]
CkTar_put_ScriptFileMode $myTar $intVal
The file permissions to used in WriteTar* methods for shell script files (.sh, .csh, .bash, .bsh). The default is octal 0755. This is the value to be stored in the "mode" field of each TAR header for a file entries.
topSuppressOutput
set boolVal [CkTar_get_SuppressOutput $myTar]
CkTar_put_SuppressOutput $myTar $boolVal
If 1, then untar methods, such as Untar, UntarGz, UntarBz2, and UntarZ, do not produce any output. Setting this value equal to 1 is useful when the CaptureXmlListing is also set to 1, which enables an application to get the contents of a TAR archive without extracting. The default value is 0.
topUntarCaseSensitive
set boolVal [CkTar_get_UntarCaseSensitive $myTar]
CkTar_put_UntarCaseSensitive $myTar $boolVal
This property is deprecated. Applications should instead use the MatchCaseSensitive property. Until this property is officially removed, it will behave the same as the MatchCaseSensitive property.
topUntarDebugLog
set boolVal [CkTar_get_UntarDebugLog $myTar]
CkTar_put_UntarDebugLog $myTar $boolVal
Similar to the VerboseLogging property. If set to 1, then information about each file/directory extracted in an untar method call is logged to LastErrorText (or LastErrorXml / LastErrorHtml). The default value is 0.
topUntarDiscardPaths
set boolVal [CkTar_get_UntarDiscardPaths $myTar]
CkTar_put_UntarDiscardPaths $myTar $boolVal
If 1, then discard all path information when untarring. This causes all files to be untarred into a single directory. The default value is 0.
topUntarFromDir
# ckStr is a CkString
CkTar_get_UntarFromDir $myTar $ckStr
set strVal [CkTar_get_untarFromDir $myTar]
CkTar_put_UntarFromDir $myTar $strVal
The directory path where files are extracted when untarring. The default value is ".", meaning that the current working directory of the calling process is used. If UntarDiscardPaths is set, then all files are untarred into this directory. Otherwise, the untar operation will re-create a directory tree rooted in this directory.
topUntarMaxCount
set intVal [CkTar_get_UntarMaxCount $myTar]
CkTar_put_UntarMaxCount $myTar $intVal
Limits the number of files extracted during an untar to this count. The default value is 0 to indicate no maximum. To untar a single file, one might set the UntarMatchPattern such that it will match only the file to be extracted, and also set UntarMaxCount equal to 1. This causes an untar to scan the TAR archive until it finds the matching file, extract it, and then return.
topUserId
set intVal [CkTar_get_UserId $myTar]
CkTar_put_UserId $myTar $intVal
The default numerical UID to be stored in each TAR header when writing TAR archives. The default value is 1000.
topUserName
# ckStr is a CkString
CkTar_get_UserName $myTar $ckStr
set strVal [CkTar_get_userName $myTar]
CkTar_put_UserName $myTar $strVal
The default user name to be stored in each TAR header when writing TAR archives. The default value is the logged-on username of the application's process.
topUtf8
set boolVal [CkTar_get_Utf8 $myTar]
CkTar_put_Utf8 $myTar $boolVal
When set to 1, all "const char *" arguments are interpreted as utf-8 strings. If set to 0 (the default), then "const char *" arguments are interpreted as ANSI strings. Also, when set to 1, and Chilkat method returning a "const char *" is returning the utf-8 representation. If set to 0, all "const char *" return values are ANSI strings.
topVerboseLogging
set boolVal [CkTar_get_VerboseLogging $myTar]
CkTar_put_VerboseLogging $myTar $boolVal
If set to 1, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is 0. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.
topVersion
WriteFormat
# ckStr is a CkString
CkTar_get_WriteFormat $myTar $ckStr
set strVal [CkTar_get_writeFormat $myTar]
CkTar_put_WriteFormat $myTar $strVal
The TAR format to use when writing a TAR archive. Valid values are "gnu", "pax", and "ustar". The default value is "gnu".
topXmlListing
# ckStr is a CkString
CkTar_get_XmlListing $myTar $ckStr
set strVal [CkTar_get_xmlListing $myTar]
CkTar_put_XmlListing $myTar $strVal
Contains the XML listing of the contents of the TAR archive for the last untar method call (such as Untar, UntarGz, etc.) where the CaptureXmlListing property was set to 1.
topMethods
AddDirRoot
set status [CkTar_AddDirRoot $dirPath]
Adds a directory tree to be included in the next call to one of the WriteTar* methods. To include multiple directory trees in a .tar, call AddDirRoot multiple times followed by a single call to WriteTar.
Returns 1 for success, 0 for failure.
topAddDirRoot2
# rootPath is a string
set status [CkTar_AddDirRoot2 $rootPrefix $rootPath]
Adds a directory tree to be included in the next call to one of the WriteTar* methods. To include multiple directory trees in a .tar, call AddDirRoot2 (and/or AddDirRoot) multiple times followed by a single call to WriteTar.
The rootPrefix adds a prefix to the path in the TAR for all files added under this root. The rootPrefix should not end with a forward-slash char. For example: This is good: "abc/123", but this is not good: "abc/123/". If the DirPrefix property is also set, its prefix will added first.
Returns 1 for success, 0 for failure.
AddFile
set status [CkTar_AddFile $path]
Adds a local file to be included in the next call to one of the WriteTar* methods. To include multiple files or directory trees in a .tar, call AddFile/AddDirRoot multiple times followed by a single call to WriteTar (or WriteTarGz, or WriteTarBz2).
Returns 1 for success, 0 for failure.
topAddFile2
# pathWithinTar is a string
set status [CkTar_AddFile2 $filePath $pathWithinTar]
Adds a local file to be included in the next call to one of the WriteTar* methods. Allows for the path within the TAR to be specified. To include multiple files or directory trees in a .tar, call AddFile/AddFile2/AddDirRoot multiple times followed by a single call to WriteTar (or WriteTarGz, or WriteTarBz2).
Note: The DirPrefix property does not apply to files added via this method because this method explicilty specifies the path-in-tar.
Returns 1 for success, 0 for failure.
topClearDirRootsAndFiles
Clears all directory roots and files previously added by calls to AddDirRoot, AddDirRoot2, AddFile, and AddFile2.
Returns 1 for success, 0 for failure.
topCreateDeb
# dataPath is a string
# debPath is a string
set status [CkTar_CreateDeb $controlPath $dataPath $debPath]
Creates a .deb Debian binary package archive from a control.tar.gz and data.tar.gz. The controlPath is the path to the control.tar.gz file (or equivalent), and the dataPath is the path to the data.tar.gz file. The output file path (.deb) is specified in debPath.
Returns 1 for success, 0 for failure.
topGetDirRoot
# outStr is a CkString (output)
set status [CkTar_GetDirRoot $index $outStr]
set retStr [CkTar_getDirRoot $myTar $index]
Returns the value of the Nth directory root. For example, if an application calls AddDirRoot twice, then the NumDirRoots property would have a value of 2, and GetDirRoot(0) would return the path passed to AddDirRoot in the 1st call, and GetDirRoot(1) would return the directory path in the 2nd call to AddDirRoot.
Returns 1 for success, 0 for failure.
topListXml
# outStr is a CkString (output)
set status [CkTar_ListXml $tarPath $outStr]
set retStr [CkTar_listXml $myTar $tarPath]
Scans a TAR archive and returns XML detailing the files and directories found within the TAR.
Returns 1 for success, 0 for failure.
topListXmlAsync (1)
# tarPath is a string
set ret_task [CkTar_ListXmlAsync $tarPath]
Creates an asynchronous task to call the ListXml method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topLoadTaskCaller
set status [CkTar_LoadTaskCaller $task]
Untar
set retInt [CkTar_Untar $tarPath]
Extracts the files and directories from a TAR archive, reconstructing the directory tree(s) in the local filesystem. The files are extracted to the directory specified by the UntarFromDir property. Returns the number of files and directories extracted, or -1 for failure.
UntarAsync (1)
# tarPath is a string
set ret_task [CkTar_UntarAsync $tarPath]
Creates an asynchronous task to call the Untar method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topUntarBz2
set status [CkTar_UntarBz2 $tarPath]
Extracts the files and directories from a tar.bz2 (or tar.bzip2) archive, reconstructing the directory tree(s) in the local filesystem. The files are extracted to the directory specified by the UntarFromDir property.
Returns 1 for success, 0 for failure.
UntarBz2Async (1)
# tarPath is a string
set ret_task [CkTar_UntarBz2Async $tarPath]
Creates an asynchronous task to call the UntarBz2 method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topUntarFirstMatchingToBd
# matchPattern is a string
# bd is a CkBinData
set status [CkTar_UntarFirstMatchingToBd $tarPath $matchPattern $bd]
UntarFirstMatchingToMemory
# matchPattern is a string
# outBytes is a CkByteData (output)
set status [CkTar_UntarFirstMatchingToMemory $tarFileBytes $matchPattern $outData]
Memory-to-memory untar. The first file matching the matchPattern is extracted and returned.
Returns 1 for success, 0 for failure.
topUntarFromMemory
Extracts the files and directories from an in-memory TAR archive, reconstructing the directory tree(s) in the local filesystem. The files are extracted to the directory specified by the UntarFromDir property. Returns the number of files and directories extracted, or -1 for failure.
topUntarFromMemoryAsync (1)
# tarFileBytes is a CkByteData
set ret_task [CkTar_UntarFromMemoryAsync $tarFileBytes]
Creates an asynchronous task to call the UntarFromMemory method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topUntarGz
set status [CkTar_UntarGz $tarPath]
Extracts the files and directories from a tar.gz (or tar.gzip) archive, reconstructing the directory tree(s) in the local filesystem. The files are extracted to the directory specified by the UntarFromDir property.
Returns 1 for success, 0 for failure.
UntarGzAsync (1)
# tarPath is a string
set ret_task [CkTar_UntarGzAsync $tarPath]
Creates an asynchronous task to call the UntarGz method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topUntarZ
set status [CkTar_UntarZ $tarPath]
Extracts the files and directories from a tar.Z archive, reconstructing the directory tree(s) in the local filesystem. The files are extracted to the directory specified by the UntarFromDir property.
Returns 1 for success, 0 for failure.
UntarZAsync (1)
# tarPath is a string
set ret_task [CkTar_UntarZAsync $tarPath]
Creates an asynchronous task to call the UntarZ method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topVerifyTar
set retBool [CkTar_VerifyTar $tarPath]
Verifies that a TAR archive is valid. This method opens the TAR archive and scans the entire file by walking the TAR headers. Returns 1 if no errors were found. Otherwise returns 0.
topVerifyTarAsync (1)
# tarPath is a string
set ret_task [CkTar_VerifyTarAsync $tarPath]
Creates an asynchronous task to call the VerifyTar method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topWriteTar
set status [CkTar_WriteTar $tarPath]
Writes a TAR archive. The directory trees previously added by calling AddDirRoot one or more times are included in the output TAR archive.
Returns 1 for success, 0 for failure.
WriteTarAsync (1)
# tarPath is a string
set ret_task [CkTar_WriteTarAsync $tarPath]
Creates an asynchronous task to call the WriteTar method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topWriteTarBz2
set status [CkTar_WriteTarBz2 $bz2Path]
Writes a .tar.bz2 compressed TAR archive. The directory trees previously added by calling AddDirRoot one or more times are included in the output file.
Returns 1 for success, 0 for failure.
WriteTarBz2Async (1)
# bz2Path is a string
set ret_task [CkTar_WriteTarBz2Async $bz2Path]
Creates an asynchronous task to call the WriteTarBz2 method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topWriteTarGz
set status [CkTar_WriteTarGz $gzPath]
Writes a .tar.gz (also known as .tgz) compressed TAR archive. The directory trees previously added by calling AddDirRoot one or more times are included in the output file.
Returns 1 for success, 0 for failure.
WriteTarGzAsync (1)
# gzPath is a string
set ret_task [CkTar_WriteTarGzAsync $gzPath]
Creates an asynchronous task to call the WriteTarGz method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
top