GDAL
cpl_compressor.h
Go to the documentation of this file.
1/**********************************************************************
2 * Project: CPL - Common Portability Library
3 * Purpose: Registry of compression/decompression functions
4 * Author: Even Rouault <even.rouault at spatialys.com>
5 *
6 **********************************************************************
7 * Copyright (c) 2021, Even Rouault <even.rouault at spatialys.com>
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included
17 * in all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
24 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25 * DEALINGS IN THE SOFTWARE.
26 ****************************************************************************/
27
28#include "cpl_port.h"
29
30#include <stdbool.h>
31
39
70typedef bool (*CPLCompressionFunc)(const void *input_data, size_t input_size,
71 void **output_data, size_t *output_size,
72 CSLConstList options,
73 void *compressor_user_data);
74
83
106
107bool CPL_DLL CPLRegisterCompressor(const CPLCompressor *compressor);
108
109bool CPL_DLL CPLRegisterDecompressor(const CPLCompressor *decompressor);
110
111char CPL_DLL **CPLGetCompressors(void);
112
113char CPL_DLL **CPLGetDecompressors(void);
114
115const CPLCompressor CPL_DLL *CPLGetCompressor(const char *pszId);
116
117const CPLCompressor CPL_DLL *CPLGetDecompressor(const char *pszId);
118
120void CPL_DLL CPLDestroyCompressorRegistry(void);
const CPLCompressor * CPLGetDecompressor(const char *pszId)
Return a decompressor.
Definition cpl_compressor.cpp:1943
bool CPLRegisterDecompressor(const CPLCompressor *decompressor)
Register a new decompressor.
Definition cpl_compressor.cpp:1847
char ** CPLGetCompressors(void)
Return the list of registered compressors.
Definition cpl_compressor.cpp:1875
char ** CPLGetDecompressors(void)
Return the list of registered decompressors.
Definition cpl_compressor.cpp:1896
bool(* CPLCompressionFunc)(const void *input_data, size_t input_size, void **output_data, size_t *output_size, CSLConstList options, void *compressor_user_data)
Callback of a compressor/decompressor.
Definition cpl_compressor.h:70
CPLCompressorType
Type of compressor.
Definition cpl_compressor.h:77
@ CCT_FILTER
Filter.
Definition cpl_compressor.h:81
@ CCT_COMPRESSOR
Compressor.
Definition cpl_compressor.h:79
bool CPLRegisterCompressor(const CPLCompressor *compressor)
Register a new compressor.
Definition cpl_compressor.cpp:1815
const CPLCompressor * CPLGetCompressor(const char *pszId)
Return a compressor.
Definition cpl_compressor.cpp:1919
Core portability definitions for CPL.
#define CPL_C_END
Macro to end a block of C symbols.
Definition cpl_port.h:317
#define CPL_C_START
Macro to start a block of C symbols.
Definition cpl_port.h:313
char ** CSLConstList
Type of a constant null-terminated list of nul terminated strings.
Definition cpl_port.h:1190
Compressor/decompressor description.
Definition cpl_compressor.h:86
void * user_data
User data to provide to the callback.
Definition cpl_compressor.h:104
CPLCompressorType eType
Compressor type.
Definition cpl_compressor.h:92
int nStructVersion
Structure version.
Definition cpl_compressor.h:88
CPLCompressionFunc pfnFunc
Compressor/decompressor callback.
Definition cpl_compressor.h:102
const char * pszId
Id of the compressor/decompressor.
Definition cpl_compressor.h:90
CSLConstList papszMetadata
Metadata, as a NULL terminated list of strings.
Definition cpl_compressor.h:100