Sha256: 550be418898ee7fd881af9a342394f3ea079fd3d0800fb2b56eb60b34fe0e555

Contents?: true

Size: 1.82 KB

Versions: 29

Compression:

Stored size: 1.82 KB

Contents

/* -*- Mode: C; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
 *     Copyright 2014 Couchbase, Inc.
 *
 *   Licensed under the Apache License, Version 2.0 (the "License");
 *   you may not use this file except in compliance with the License.
 *   You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 *   Unless required by applicable law or agreed to in writing, software
 *   distributed under the License is distributed on an "AS IS" BASIS,
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *   See the License for the specific language governing permissions and
 *   limitations under the License.
 */

#include "mcreq.h"
#ifndef LCB_MCCOMPRESS_H
#define LCB_MCCOMPRESS_H

#ifdef __cplusplus
extern "C" {
#endif

/**
 * Stores a compressed payload into a packet
 * @param pl The pipeline which hosts the packet
 * @param pkt The packet which hosts the value
 * @param vbuf The user input to be compressed
 * @return 0 if successful, nonzero on error.
 */
int
mcreq_compress_value(mc_PIPELINE *pl, mc_PACKET *pkt, const lcb_CONTIGBUF *vbuf);


/**
 * Inflate a compressed value
 * @param compressed The value to inflate
 * @param ncompressed Size of value to inflate
 * @param[out] bytes The inflated value
 * @param[out] nbytes The size of the inflated value
 * @param[in/out] freeptr Pointer initialized to NULL (or an malloc'd buffer)
 * which on output should point to a malloc'd buffer to be freed() when no
 * longer required.
 * @return 0 if successful, nonzero on error.
 */
int
mcreq_inflate_value(const void *compressed, lcb_SIZE ncompressed,
    const void **bytes, lcb_SIZE *nbytes, void **freeptr);

#ifndef LCB_NO_SNAPPY
#define mcreq_compression_supported() 1
#else
#define mcreq_compression_supported() 0
#endif

#ifdef __cplusplus
}
#endif
#endif

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
libcouchbase-1.2.8 ext/libcouchbase/src/mc/compress.h
libcouchbase-1.2.7 ext/libcouchbase/src/mc/compress.h
libcouchbase-1.2.6 ext/libcouchbase/src/mc/compress.h
libcouchbase-1.2.5 ext/libcouchbase/src/mc/compress.h
libcouchbase-1.2.4 ext/libcouchbase/src/mc/compress.h
libcouchbase-1.2.3 ext/libcouchbase/src/mc/compress.h
libcouchbase-1.2.2 ext/libcouchbase/src/mc/compress.h
libcouchbase-1.2.1 ext/libcouchbase/src/mc/compress.h
libcouchbase-1.2.0 ext/libcouchbase/src/mc/compress.h
libcouchbase-1.1.1 ext/libcouchbase/src/mc/compress.h
libcouchbase-1.1.0 ext/libcouchbase/src/mc/compress.h
libcouchbase-1.0.4 ext/libcouchbase/src/mc/compress.h
libcouchbase-1.0.3 ext/libcouchbase/src/mc/compress.h
libcouchbase-1.0.2 ext/libcouchbase/src/mc/compress.h
libcouchbase-1.0.1 ext/libcouchbase/src/mc/compress.h
libcouchbase-1.0.0 ext/libcouchbase/src/mc/compress.h
libcouchbase-0.3.3 ext/libcouchbase/src/mc/compress.h
libcouchbase-0.3.1 ext/libcouchbase/src/mc/compress.h
libcouchbase-0.2.0 ext/libcouchbase/src/mc/compress.h
libcouchbase-0.1.0 ext/libcouchbase/src/mc/compress.h