#include </home/zeitlin/src/wx/github/interface/wx/tarstrm.h>
Output stream for writing tar files.
wxTarOutputStream::PutNextEntry() is used to create a new entry in the output tar, then the entry's data is written to the wxTarOutputStream. Another call to wxTarOutputStream::PutNextEntry() closes the current entry and begins the next.
Public Member Functions | |
virtual | ~wxTarOutputStream () |
The destructor calls Close() to finish writing the tar if it has not been called already. | |
bool | Close () |
Finishes writing the tar, returning true if successful. | |
bool | CloseEntry () |
Close the current entry. | |
bool | CopyArchiveMetaData (wxTarInputStream &s) |
See wxArchiveOutputStream::CopyArchiveMetaData(). | |
bool | CopyEntry (wxTarEntry *entry, wxTarInputStream &inputStream) |
Takes ownership of entry and uses it to create a new entry in the tar. | |
bool | PutNextDirEntry (const wxString &name, const wxDateTime &dt=wxDateTime::Now()) |
Create a new directory entry (see wxArchiveEntry::IsDir()) with the given name and timestamp. | |
bool | PutNextEntry (wxTarEntry *entry) |
Takes ownership of entry and uses it to create a new entry in the tar. | |
bool | PutNextEntry (const wxString &name, const wxDateTime &dt=wxDateTime::Now(), wxFileOffset size=wxInvalidOffset) |
Create a new entry with the given name, timestamp and size. | |
wxTarOutputStream (wxOutputStream &stream, wxTarFormat format=wxTAR_PAX, wxMBConv &conv=wxConvLocal) | |
If the parent stream is passed as a pointer then the new filter stream takes ownership of it. | |
wxTarOutputStream (wxOutputStream *stream, wxTarFormat format=wxTAR_PAX, wxMBConv &conv=wxConvLocal) | |
If the parent stream is passed as a pointer then the new filter stream takes ownership of it. | |
int | GetBlockingFactor () const |
The tar is zero padded to round its size up to BlockingFactor * 512 bytes. | |
void | SetBlockingFactor (int factor) |
The tar is zero padded to round its size up to BlockingFactor * 512 bytes. |
wxTarOutputStream::wxTarOutputStream | ( | wxOutputStream & | stream, |
wxTarFormat | format = wxTAR_PAX , |
||
wxMBConv & | conv = wxConvLocal |
||
) |
If the parent stream is passed as a pointer then the new filter stream takes ownership of it.
If it is passed by reference then it does not.
In a Unicode build the third parameter conv is used to translate the headers fields into an 8-bit encoding. It has no effect on the stream's data.
When the format is wxTAR_PAX, pax extended headers are generated when any header field will not fit the standard tar header block or if it uses any non-ascii characters.
Extended headers are stored as extra 'files' within the tar, and will be extracted as such by any other tar program that does not understand them. The conv parameter only affect the standard tar headers, the extended headers are always UTF-8 encoded.
When the format is wxTAR_USTAR, no extended headers are generated, and instead a warning message is logged if any header field overflows.
wxTarOutputStream::wxTarOutputStream | ( | wxOutputStream * | stream, |
wxTarFormat | format = wxTAR_PAX , |
||
wxMBConv & | conv = wxConvLocal |
||
) |
If the parent stream is passed as a pointer then the new filter stream takes ownership of it.
If it is passed by reference then it does not.
In a Unicode build the third parameter conv is used to translate the headers fields into an 8-bit encoding. It has no effect on the stream's data.
When the format is wxTAR_PAX, pax extended headers are generated when any header field will not fit the standard tar header block or if it uses any non-ascii characters.
Extended headers are stored as extra 'files' within the tar, and will be extracted as such by any other tar program that does not understand them. The conv parameter only affect the standard tar headers, the extended headers are always UTF-8 encoded.
When the format is wxTAR_USTAR, no extended headers are generated, and instead a warning message is logged if any header field overflows.
virtual wxTarOutputStream::~wxTarOutputStream | ( | ) | [virtual] |
The destructor calls Close() to finish writing the tar if it has not been called already.
bool wxTarOutputStream::Close | ( | ) | [virtual] |
Finishes writing the tar, returning true if successful.
Called by the destructor if not called explicitly.
Reimplemented from wxArchiveOutputStream.
bool wxTarOutputStream::CloseEntry | ( | ) | [virtual] |
Close the current entry.
It is called implicitly whenever another new entry is created with CopyEntry() or PutNextEntry(), or when the tar is closed.
Implements wxArchiveOutputStream.
bool wxTarOutputStream::CopyArchiveMetaData | ( | wxTarInputStream & | s | ) |
See wxArchiveOutputStream::CopyArchiveMetaData().
For the tar format this function does nothing.
bool wxTarOutputStream::CopyEntry | ( | wxTarEntry * | entry, |
wxTarInputStream & | inputStream | ||
) |
Takes ownership of entry and uses it to create a new entry in the tar.
entry is then opened in inputStream and its contents copied to this stream.
For some other archive formats CopyEntry() is much more efficient than transferring the data using Read() and Write() since it will copy them without decompressing and recompressing them. For tar however it makes no difference.
For tars on seekable streams, entry must be from the same tar file as inputStream. For non-seekable streams, entry must also be the last thing read from inputStream.
int wxTarOutputStream::GetBlockingFactor | ( | ) | const |
The tar is zero padded to round its size up to BlockingFactor * 512 bytes.
The blocking factor defaults to 10 for wxTAR_PAX and 20 for wxTAR_USTAR (see wxTarOutputStream()), as specified in the POSIX standards.
bool wxTarOutputStream::PutNextDirEntry | ( | const wxString & | name, |
const wxDateTime & | dt = wxDateTime::Now() |
||
) | [virtual] |
Create a new directory entry (see wxArchiveEntry::IsDir()) with the given name and timestamp.
PutNextEntry() can also be used to create directory entries, by supplying a name with a trailing path separator.
Implements wxArchiveOutputStream.
bool wxTarOutputStream::PutNextEntry | ( | const wxString & | name, |
const wxDateTime & | dt = wxDateTime::Now() , |
||
wxFileOffset | size = wxInvalidOffset |
||
) | [virtual] |
Create a new entry with the given name, timestamp and size.
Implements wxArchiveOutputStream.
bool wxTarOutputStream::PutNextEntry | ( | wxTarEntry * | entry | ) |
Takes ownership of entry and uses it to create a new entry in the tar.
void wxTarOutputStream::SetBlockingFactor | ( | int | factor | ) |
The tar is zero padded to round its size up to BlockingFactor * 512 bytes.
The blocking factor defaults to 10 for wxTAR_PAX and 20 for wxTAR_USTAR (see wxTarOutputStream()), as specified in the POSIX standards.