--- a/contrib/python-zstandard/c-ext/python-zstandard.h Tue Sep 25 20:55:03 2018 +0900
+++ b/contrib/python-zstandard/c-ext/python-zstandard.h Mon Oct 08 16:27:40 2018 -0700
@@ -15,7 +15,8 @@
#include <zstd.h>
#include <zdict.h>
-#define PYTHON_ZSTANDARD_VERSION "0.9.0"
+/* Remember to change the string in zstandard/__init__ as well */
+#define PYTHON_ZSTANDARD_VERSION "0.10.1"
typedef enum {
compressorobj_flush_finish,
@@ -45,7 +46,6 @@
unsigned threads;
unsigned jobSize;
unsigned overlapSizeLog;
- unsigned compressLiterals;
unsigned forceMaxWindow;
unsigned enableLongDistanceMatching;
unsigned ldmHashLog;
@@ -162,7 +162,6 @@
ZstdCompressor* compressor;
PyObject* reader;
Py_buffer buffer;
- unsigned long long sourceSize;
size_t readSize;
int entered;
@@ -181,6 +180,34 @@
typedef struct {
PyObject_HEAD
+ ZstdCompressor* compressor;
+ ZSTD_inBuffer input;
+ ZSTD_outBuffer output;
+ Py_buffer inBuffer;
+ int finished;
+ size_t chunkSize;
+} ZstdCompressionChunker;
+
+extern PyTypeObject ZstdCompressionChunkerType;
+
+typedef enum {
+ compressionchunker_mode_normal,
+ compressionchunker_mode_flush,
+ compressionchunker_mode_finish,
+} CompressionChunkerMode;
+
+typedef struct {
+ PyObject_HEAD
+
+ ZstdCompressionChunker* chunker;
+ CompressionChunkerMode mode;
+} ZstdCompressionChunkerIterator;
+
+extern PyTypeObject ZstdCompressionChunkerIteratorType;
+
+typedef struct {
+ PyObject_HEAD
+
ZSTD_DCtx* dctx;
ZstdCompressionDict* dict;
size_t maxWindowSize;