Files
ANSLibs/chilkat/include/CkUnixCompressW.h

221 lines
9.0 KiB
C++

// CkUnixCompressW.h: interface for the CkUnixCompressW class.
//
//////////////////////////////////////////////////////////////////////
// This header is generated for Chilkat 11.3.0
#ifndef _CkUnixCompressW_H
#define _CkUnixCompressW_H
#include "chilkatDefs.h"
#include "CkString.h"
#include "CkClassWithCallbacksW.h"
class CkTaskW;
class CkByteData;
class CkBaseProgressW;
#if !defined(__sun__) && !defined(__sun)
#pragma pack (push, 8)
#endif
// CLASS: CkUnixCompressW
class CK_VISIBLE_PUBLIC CkUnixCompressW : public CkClassWithCallbacksW
{
private:
bool m_cbOwned;
private:
// Don't allow assignment or copying these objects.
CkUnixCompressW(const CkUnixCompressW &);
CkUnixCompressW &operator=(const CkUnixCompressW &);
public:
CkUnixCompressW(void);
virtual ~CkUnixCompressW(void);
static CkUnixCompressW *createNew(void);
CkUnixCompressW(bool bCallbackOwned);
static CkUnixCompressW *createNew(bool bCallbackOwned);
void CK_VISIBLE_PRIVATE inject(void *impl);
// May be called when finished with the object to free/dispose of any
// internal resources held by the object.
void dispose(void);
CkBaseProgressW *get_EventCallbackObject(void) const;
void put_EventCallbackObject(CkBaseProgressW *progress);
// BEGIN PUBLIC INTERFACE
// ----------------------
// Properties
// ----------------------
// When set to true, causes the currently running method to abort. Methods that
// always finish quickly (i.e.have no length file operations or network
// communications) are not affected. If no method is running, then this property is
// automatically reset to false when the next method is called. When the abort
// occurs, this property is reset to false. Both synchronous and asynchronous
// method calls can be aborted. (A synchronous method call could be aborted by
// setting this property from a separate thread.)
bool get_AbortCurrent(void);
// When set to true, causes the currently running method to abort. Methods that
// always finish quickly (i.e.have no length file operations or network
// communications) are not affected. If no method is running, then this property is
// automatically reset to false when the next method is called. When the abort
// occurs, this property is reset to false. Both synchronous and asynchronous
// method calls can be aborted. (A synchronous method call could be aborted by
// setting this property from a separate thread.)
void put_AbortCurrent(bool newVal);
// The interval in milliseconds between each AbortCheck event callback, which
// enables an application to abort certain method calls before they complete. By
// default, HeartbeatMs is set to 0 , meaning no AbortCheck event callbacks will
// trigger.
//
// References:
// 1: #AbortCheck
int get_HeartbeatMs(void);
// The interval in milliseconds between each AbortCheck event callback, which
// enables an application to abort certain method calls before they complete. By
// default, HeartbeatMs is set to 0 , meaning no AbortCheck event callbacks will
// trigger.
//
// References:
// 1: #AbortCheck
void put_HeartbeatMs(int newVal);
// ----------------------
// Methods
// ----------------------
// Compresses a file to create a UNIX compressed file (.Z). This compression uses
// the LZW (Lempel-Ziv-Welch) compression algorithm.
bool CompressFile(const wchar_t *inFilename, const wchar_t *destPath);
// Creates an asynchronous task to call the CompressFile method with the arguments
// provided.
// The caller is responsible for deleting the object returned by this method.
CkTaskW *CompressFileAsync(const wchar_t *inFilename, const wchar_t *destPath);
// Unix compresses a file to an in-memory image of a .Z file. (This compression
// uses the LZW (Lempel-Ziv-Welch) compression algorithm.)
bool CompressFileToMem(const wchar_t *inFilename, CkByteData &outData);
// Creates an asynchronous task to call the CompressFileToMem method with the
// arguments provided.
// The caller is responsible for deleting the object returned by this method.
CkTaskW *CompressFileToMemAsync(const wchar_t *inFilename);
// Compresses in-memory data to an in-memory image of a .Z file. (This compression
// uses the LZW (Lempel-Ziv-Welch) compression algorithm.)
bool CompressMemory(CkByteData &inData, CkByteData &outData);
// Unix compresses and creates a .Z file from in-memory data. (This compression
// uses the LZW (Lempel-Ziv-Welch) compression algorithm.)
bool CompressMemToFile(CkByteData &inData, const wchar_t *destPath);
// Compresses a string to an in-memory image of a .Z file. Prior to compression,
// the string is converted to the character encoding specified by charset. The charset
// can be any one of a large number of character encodings, such as utf-8 ,
// iso-8859-1 , Windows-1252 , ucs-2 , etc.
bool CompressString(const wchar_t *inStr, const wchar_t *charset, CkByteData &outBytes);
// Unix compresses and creates a .Z file from string data. The charset specifies the
// character encoding used for the byte representation of the characters when
// compressed. The charset can be any one of a large number of character encodings,
// such as utf-8 , iso-8859-1 , Windows-1252 , ucs-2 , etc.
bool CompressStringToFile(const wchar_t *inStr, const wchar_t *charset, const wchar_t *destPath);
// Loads the caller of the task's async method.
bool LoadTaskCaller(CkTaskW &task);
// Uncompresses a .Z file. (This compression uses the LZW (Lempel-Ziv-Welch)
// compression algorithm.)
bool UncompressFile(const wchar_t *inFilename, const wchar_t *destPath);
// Creates an asynchronous task to call the UncompressFile method with the
// arguments provided.
// The caller is responsible for deleting the object returned by this method.
CkTaskW *UncompressFileAsync(const wchar_t *inFilename, const wchar_t *destPath);
// Uncompresses a .Z file directly to memory. (This compression uses the LZW
// (Lempel-Ziv-Welch) compression algorithm.)
bool UncompressFileToMem(const wchar_t *inFilename, CkByteData &outData);
// Creates an asynchronous task to call the UncompressFileToMem method with the
// arguments provided.
// The caller is responsible for deleting the object returned by this method.
CkTaskW *UncompressFileToMemAsync(const wchar_t *inFilename);
// Uncompresses a .Z file that contains a text file. The contents of the text file
// are returned as a string. The character encoding of the text file is specified
// by charset. Typical charsets are iso-8859-1 , utf-8 , windows-1252 , shift_JIS ,
// big5 , etc.
bool UncompressFileToString(const wchar_t *zFilename, const wchar_t *charset, CkString &outStr);
// Uncompresses a .Z file that contains a text file. The contents of the text file
// are returned as a string. The character encoding of the text file is specified
// by charset. Typical charsets are iso-8859-1 , utf-8 , windows-1252 , shift_JIS ,
// big5 , etc.
const wchar_t *uncompressFileToString(const wchar_t *zFilename, const wchar_t *charset);
// Creates an asynchronous task to call the UncompressFileToString method with the
// arguments provided.
// The caller is responsible for deleting the object returned by this method.
CkTaskW *UncompressFileToStringAsync(const wchar_t *zFilename, const wchar_t *charset);
// Uncompresses from an in-memory image of a .Z file directly into memory. (This
// compression uses the LZW (Lempel-Ziv-Welch) compression algorithm.)
bool UncompressMemory(CkByteData &inData, CkByteData &outData);
// Uncompresses from an in-memory image of a .Z file to a file. (This compression
// uses the LZW (Lempel-Ziv-Welch) compression algorithm.)
bool UncompressMemToFile(CkByteData &inData, const wchar_t *destPath);
// Uncompresses from an in-memory image of a .Z file directly to a string. The charset
// specifies the character encoding used to interpret the bytes resulting from the
// decompression. The charset can be any one of a large number of character encodings,
// such as utf-8 , iso-8859-1 , Windows-1252 , ucs-2 , etc.
bool UncompressString(CkByteData &inCompressedData, const wchar_t *charset, CkString &outStr);
// Uncompresses from an in-memory image of a .Z file directly to a string. The charset
// specifies the character encoding used to interpret the bytes resulting from the
// decompression. The charset can be any one of a large number of character encodings,
// such as utf-8 , iso-8859-1 , Windows-1252 , ucs-2 , etc.
const wchar_t *uncompressString(CkByteData &inCompressedData, const wchar_t *charset);
// Unpacks a .tar.Z file. The decompress and untar occur in streaming mode. There
// are no temporary files and the memory footprint is constant (and small) while
// untarring.
bool UnTarZ(const wchar_t *zFilename, const wchar_t *destDir, bool bNoAbsolute);
// Creates an asynchronous task to call the UnTarZ method with the arguments
// provided.
// The caller is responsible for deleting the object returned by this method.
CkTaskW *UnTarZAsync(const wchar_t *zFilename, const wchar_t *destDir, bool bNoAbsolute);
// END PUBLIC INTERFACE
};
#if !defined(__sun__) && !defined(__sun)
#pragma pack (pop)
#endif
#endif