2016-08-29 04:04:26 -07:00
|
|
|
Zstandard library files
|
2016-02-17 08:47:29 -08:00
|
|
|
================================
|
|
|
|
|
2016-07-17 11:42:21 -07:00
|
|
|
The __lib__ directory contains several directories.
|
|
|
|
Depending on target use case, it's enough to include only files from relevant directories.
|
2016-02-17 08:47:29 -08:00
|
|
|
|
|
|
|
|
2016-07-17 11:42:21 -07:00
|
|
|
#### API
|
2016-04-25 02:31:28 -07:00
|
|
|
|
2016-07-17 11:42:21 -07:00
|
|
|
Zstandard's stable API is exposed within [zstd.h](zstd.h),
|
|
|
|
at the root of `lib` directory.
|
2016-02-17 08:47:29 -08:00
|
|
|
|
2016-03-09 16:09:41 -08:00
|
|
|
|
2016-07-17 11:42:21 -07:00
|
|
|
#### Advanced API
|
2016-04-25 02:36:44 -07:00
|
|
|
|
2016-07-17 11:42:21 -07:00
|
|
|
Some additional API may be useful if you're looking into advanced features :
|
2016-07-17 18:52:47 -07:00
|
|
|
- common/error_public.h : transforms `size_t` function results into an `enum`,
|
2016-07-17 11:42:21 -07:00
|
|
|
for precise error handling.
|
|
|
|
- ZSTD_STATIC_LINKING_ONLY : if you define this macro _before_ including `zstd.h`,
|
|
|
|
it will give access to advanced and experimental API.
|
|
|
|
These APIs shall ___never be used with dynamic library___ !
|
|
|
|
They are not "stable", their definition may change in the future.
|
|
|
|
Only static linking is allowed.
|
2016-04-25 02:31:28 -07:00
|
|
|
|
|
|
|
|
2016-07-17 11:42:21 -07:00
|
|
|
#### Modular build
|
2016-04-25 02:31:28 -07:00
|
|
|
|
2016-07-17 11:42:21 -07:00
|
|
|
Directory `common/` is required in all circumstances.
|
|
|
|
You can select to support compression only, by just adding files from the `compress/` directory,
|
|
|
|
In a similar way, you can build a decompressor-only library with the `decompress/` directory.
|
2016-03-09 16:09:41 -08:00
|
|
|
|
2016-07-17 11:42:21 -07:00
|
|
|
Other optional functionalities provided are :
|
2016-02-17 08:47:29 -08:00
|
|
|
|
2016-07-17 18:52:47 -07:00
|
|
|
- `dictBuilder/` : source files to create dictionaries.
|
2016-07-17 11:42:21 -07:00
|
|
|
The API can be consulted in `dictBuilder/zdict.h`.
|
2016-07-17 18:52:47 -07:00
|
|
|
This module also depends on `common/` and `compress/` .
|
2016-02-17 08:47:29 -08:00
|
|
|
|
2016-07-17 18:52:47 -07:00
|
|
|
- `legacy/` : source code to decompress previous versions of zstd, starting from `v0.1`.
|
|
|
|
This module also depends on `common/` and `decompress/` .
|
2016-08-13 15:16:20 -07:00
|
|
|
Library compilation must include directive `ZSTD_LEGACY_SUPPORT = 1` .
|
2016-07-17 18:52:47 -07:00
|
|
|
The main API can be consulted in `legacy/zstd_legacy.h`.
|
2016-08-13 15:16:20 -07:00
|
|
|
Advanced API from each version can be found in their relevant header file.
|
|
|
|
For example, advanced API for version `v0.4` is in `legacy/zstd_v04.h` .
|
2016-02-17 08:47:29 -08:00
|
|
|
|
2016-07-08 01:42:59 -07:00
|
|
|
|
2016-08-13 15:16:20 -07:00
|
|
|
#### Obsolete streaming API
|
2016-02-17 08:47:29 -08:00
|
|
|
|
2016-08-13 15:16:20 -07:00
|
|
|
Streaming is now provided within `zstd.h`.
|
|
|
|
Older streaming API is still provided within `common/zbuff.h`.
|
|
|
|
It is considered obsolete, and will be removed in a future version.
|
|
|
|
Consider migrating towards newer streaming API.
|
2016-02-17 08:47:29 -08:00
|
|
|
|
|
|
|
|
|
|
|
#### Miscellaneous
|
|
|
|
|
|
|
|
The other files are not source code. There are :
|
|
|
|
|
|
|
|
- LICENSE : contains the BSD license text
|
2016-07-17 11:42:21 -07:00
|
|
|
- Makefile : script to compile or install zstd library (static and dynamic)
|
|
|
|
- libzstd.pc.in : for pkg-config (`make install`)
|
2016-08-13 15:16:20 -07:00
|
|
|
- README.md : this file
|