Libcmpio Reference Manual |
---|
$
make Available make options: c89 c89-static cc cc-static COPYING gcc gcc-debug gcc-static icc icc-static Aliases: generic for cc generic-static for cc-static debug for debug-gcc ===> Please type 'make check' to run the testsuite after compilation You may pass arguments to the compiler using the EXTRADEFS environment variable For linking options you may use the LDFLAGS environment variable Example: EXTRADEFS='-fPIC' LDFLAGS='-shared' make generic Install libcmpio using the following command: PREFIX='/usr' make install |
#include
<cmpio.h> typedef cmp_off_t; typedef cmpio_t; typedef CmpioFile; |
typedef
int cmp_off_t; |
typedef
unsigned int cmpio_t |
typedef
_CmpioFile CmpioFile; |
#include
<cmpio.h> #define CMP_OFF_T_MAX #define CMPIO_T_MAX #define CMP_COMPRESS_NO #define CMP_COMPRESS_ZLIB #define CMP_COMPRESS_BZLIB #define CMP_COMPRESS_LZO #define FALSE #define TRUE #define CMP_DEFAULT |
#define
CMP_OFF_T_MAX INT_MAX |
#define
CMPIO_T_MAX
UINT_MAX |
#define
CMP_COMPRESS_NO 0 |
#define
CMP_COMPRESS_ZLIB 1 |
#define
CMP_COMPRESS_BZLIB 2 |
#define
CMP_COMPRESS_LZO 3 |
#define
FALSE
(0) |
#define
TRUE
(!FALSE) |
#define
CMP_DEFAULT 0 |
#include
<cmpio_errors.h> #define CMP_ERR_SEEK #define CMP_ERR_TELL #define CMP_ERR_VOLFULL #define CMP_ERR_WRITE #define CMP_ERR_MALLOC #define CMP_ERR_READ #define CMP_ERR_BLOCKFULL #define CMP_ERR_LONGPATH #define CMP_ERR_VOLEXIST #define CMP_ERR_NEWVOL #define CMP_ERR_STAT #define CMP_ERR_EOF #define CMP_ERR_NOVOL #define CMP_ERR_NOREC #define CMP_ERR_UNDEFINED #define CMP_ERR_LOCK #define CMP_ERR_COMPRESS #define CMP_ERR_INVARG #define CMP_ERR_INVVOL #define CMP_ERR_INVVER #define CMP_ERR_RECSIZE #define CMP_ERR_NOERROR #define CMP_ERR_IOERROR int cmp_errno; char* cmpio_strerror (int cmp_errnum); |
CMP_ERR_SEEK: CMP_ERR_TELL: CMP_ERR_VOLFULL: CMP_ERR_WRITE: CMP_ERR_MALLOC: CMP_ERR_READ: CMP_ERR_BLOCKFULL: CMP_ERR_LONGPATH: CMP_ERR_VOLEXIST: CMP_ERR_NEWVOL: CMP_ERR_STAT: CMP_ERR_EOF : CMP_ERR_NOVOL: CMP_ERR_NOREC: CMP_ERR_UNDEFINED: CMP_ERR_LOCK: CMP_ERR_COMPRESS: CMP_ERR_INVARG: CMP_ERR_INVVOL: CMP_ERR_INVVER: CMP_ERR_RECSIZE: CMP_ERR_NOERROR: |
Failed to
seek. Failed to determine to current position of the file pointer. The volume has reached its maximum size. Failed to write the data. Failed to allocate memory from the heap. Failed to read the data. The block has reached the maximum number of records. CmpioFile path too long. The volume already exists. Volume creation error. Cannot obtain information about the file. End of file reached. The volume does not exist. The record does not exits. Undefined error. The record is locked. Error during data compression/decompression. Invalid argument in cmpio_open2 (). File is not a CmpioFile. This version of Cmpio data format is not supported by Libcmpio. The record size exceeds the half of the volume size. No error to report. Operation completed successfully. |
int cmp_errno; |
char*
cmpio_strerror
(int cmp_errnum); |
#include
<cmpio_errors.h> #include <cmpio.h> |
|
CmpioFile* cmpio_open | (const
char *path); |
CmpioFile* cmpio_open2 | (const
char *path, cmp_off_t volume_size, unsigned char compress, int record_boundary, int block_boundary, int block_header_size, int olist_size); |
cmpio_t cmpio_append |
(CmpioFile
*cfp, void *data, cmpio_t size); |
cmpio_t cmpio_read |
(CmpioFile
*cfp, void *data, cmpio_t recno); |
int
cmpio_start |
(CmpioFile
*cfp, cmpio_t recno); |
cmpio_t cmpio_readnext | (CmpioFile *cfp, void *data); |
cmpio_t cmpio_totalrecs | (CmpioFile *cfp); |
cmpio_t cmpio_overwrite | (CmpioFile *cfp, void *data, cmpio_t size, cmpio_t recno); |
int cmpio_lockrec |
(CmpioFile *cfp, cmpio_t recno); |
int
cmpio_unlockrec |
(CmpioFile *cfp, cmpio_t recno); |
cmpio_t cmpio_close | (CmpioFile *cfp); |
unsigned
int cmpio_libversion |
(void); |
unsigned
int cmpio_dataversion |
(void); |
cmpio_t cmpio_getdatasize |
(CmpioFile *cfp, cmpio_t recno); |
CmpioFile* |
cmpio_open
|
(const char *path); |
path: |
The full path of the CmpioFile. |
Returns:
|
a CmpioFile or NULL on failure. |
CmpioFile* | cmpio_open2 | (const
char
*path, cmp_off_t volume_size, unsigned char compress, int record_boundary, int block_boundary, int block_header_size, int olist_size); |
path: |
The full path of the CmpioFile |
volume_size: |
The maximum size of each volume.
Minimum value is 368640. Maximum value is 2147479552. Must be a
multiple of 1024. CMP_DEFAULT implies the
maximum value. |
compress: |
The compression algorithm to be
used. Valid values are CMP_COMPRESS_NO,
CMP_COMPRESS_ZLIB, CMP_COMPRESS_BZLIB and CMP_COMPRESS_LZO. CMP_DEFAULT
implies CMP_COMPRESS_NO. |
record_boundary: |
The offset boundary each record
is aligned on. Minimum is 64, maximum is 8192. Must be a multiple of
64. CMP_DEFAULT implies 128. |
block_boundary: |
The offset boundary each block of records is aligned on. Minimum is 512, maximum is 16385. Must be a multiple of 512. CMP_DEFAULT implies 4096. |
block_header_size: |
The size of the header of each block of records. Minimum is 1024, maximum is 65536. Must be a multiple of 1024. CMP_DEFAULT implies 8192. |
olist_size: |
The size of the list that keeps the orphan records. Minimum is 1024, maximum is 1048576. Must be a multiple of 1024. CMP_DEFAULT implies 4096. |
Returns: |
a CmpioFile or NULL on
failure. |
cmpio_t |
cmpio_append |
(CmpioFile
*cfp, void *data, cmpio_t size); |
cfp: |
a CmpioFile |
data: |
the buffer containing the record
to append. |
size: |
the size of the buffer. |
Returns: |
The record number of the
appended record, or CMP_ERR_IOERROR if
the operation failed. |
cmpio_t |
cmpio_read |
(CmpioFile *cfp, void *data, cmpio_t recno); |
cfp: |
a CmpioFile |
data: |
a buffer to read the record into. |
recno: |
the number of the record. |
Returns: |
the number of bytes read, or CMP_ERR_IOERROR if the operation failed. |
int |
cmpio_start |
(CmpioFile *cfp, cmpio_t recno); |
cfp: |
a CmpioFile |
recno: |
the number of the record the sequential access will start. |
Returns: |
TRUE on
success or an error code if the operation failed. |
cmpio_t | cmpio_readnext |
(CmpioFile *cfp, void *data); |
cfp: |
a CmpioFile |
data: |
a buffer to read the record into. |
Returns: |
the number of bytes read, or CMP_ERR_IOERROR if the operation failed. |
#include
<stdio.h> #include <cmpio.h> #include <cmpio_errors.h> int main (int argc, char *argv[]) { CmpioFile *cfp; cmpio_t read_rslt; int start_rslt; char buffer[16385]; /* Open the CmpioFile */ cfp = cmpio_open ("testfile.dat"); /* Start reading from record 80 */ start_rslt = cmpio_start (cfp, 80); if (start_rslt != TRUE) { fprintf (stderr, "%s\n", cmpio_strerror (cmp_errno)); cmpio_close (cfp); return 0; } /* Read the next record */ read_rslt = cmpio_readnext (cfp, buffer); while (read_rslt != CMP_ERR_IOERROR) { /* Add your code here */ read_rslt = cmpio_readnext (cfp, buffer); } /* If the end-of-file reached the error code will be CMP_ERR_EOF */ if (cmp_errno != CMP_ERR_EOF) fprintf (stderr, "%s\n", cmpio_strerror (cmp_errno)); cmpio_close (cfp); return 0; } |
cmpio_t | cmpio_totalrecs |
(CmpioFile *cfp); |
cfp: | a CmpioFile |
Returns: |
the total number of records in
the CmpioFile,
or CMP_ERR_IOERROR
if the operation failed. |
cmpio_t | cmpio_overwrite |
(CmpioFile *cfp, void *data, cmpio_t size, cmpio_t recno); |
cfp: |
a CmpioFile |
data: |
the buffer containing the new data of the record. |
size: |
the size of the buffer. |
recno: |
the number of the record to be
overwritten. |
Returns: |
the bytes written, or CMP_ERR_IOERROR if the operation failed. |
int |
cmpio_lockrec |
(CmpioFile *cfp, cmpio_t recno); |
cfp: |
a CmpioFile |
recno: |
the number of the record to be
locked |
Returns: |
TRUE on success, CMP_ERR_LOCK if the record is already locked, or an error code if the operation failed. |
int | cmpio_unlockrec | (CmpioFile *cfp, cmpio_t recno); |
cfp: |
a CmpioFile |
recno: |
the number of the record to be
unlocked |
Returns: |
TRUE on success, or an error code if the operation failed. |
cmpio_t | cmpio_close | (CmpioFile *cfp); |
cfp: |
a CmpioFile |
Returns: |
TRUE on success, or CMP_ERR_IOERROR if the operation failed |
unsigned int | cmpio_libversion |
(void); |
Returns: |
the result of the formula VERSION MAJOR * 100 + VERSION MINOR * 10 + PATCH LEVEL * 1. |
unsigned int | cmpio_dataversion |
(void); |
Returns: |
the result of the formula VERSION MAJOR * 100 + VERSION MINOR * 10 + PATCH LEVEL * 1. |
cmpio_t | cmpio_getdatasize | (CmpioFile *cfp, cmpio_t recno); |
cfp: | a CmpioFile |
recno: |
the number of record. |
Returns: |
the uncompressed size of the record in bytes or CMP_ERR_IOERROR if the operation failed. |
$
cmpio-rebuild Usage: cmpio-rebuild [OPTIONS]...[CmpioFile] OPTIONS: -h Help and version information -i [CmpioFile] information -r Rebuild [CmpioFile] -c ALGORITHM Compress with ALGORITHM: zlib, bzlib, lzo or none. DEFAULT none -v SIZE Use SIZE as volume size: MIN 368640, MAX 2147479552, DEFAULT 2147479552 -o FILE Rebuild output to FILE |
-h |
Displays help and version
information. |
-i [CmpioFile] |
Displays information about
[CmpioFile] |
-r [CmpioFile] |
Rebuilds the [CmpioFile] using
the defaults described in cmpio_open2(). If
there is no -o argument, the [CmpioFile] will be renamed before
rebuild. |
-c ALGORITHM | Compress with ALGORITHM: zlib,
bzlib, lzo or none. DEFAULT none. zlib is a good option for records
with size less than 100k. bzlib is good with big records but slow. lzo
is faster than bzlib with big records, but less effective. |
-v SIZE |
Uses SIZE as volume size: MIN
368640, MAX 2147479552, DEFAULT 2147479552. SIZE must always be a
multiple of 1024. |
-o FILE |
Writes rebuild output to FILE.
If FILE already exists, it will be deleted. |