X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=libmsgpack%2Fmsgpack.h;h=ea8a82ee7d3dbbc1fa4610e5f91519b773d82e23;hb=c0c0989ab70574e09b2f7e8b48c2da6af664a849;hp=e5c011ea877da7a931885d7bd2dd3bd2abb7d503;hpb=49705576d8779e3fa2b3efc4294bc03261f76935;p=lttng-ust.git diff --git a/libmsgpack/msgpack.h b/libmsgpack/msgpack.h index e5c011ea..ea8a82ee 100644 --- a/libmsgpack/msgpack.h +++ b/libmsgpack/msgpack.h @@ -1,31 +1,18 @@ -#ifndef _LTTNG_UST_MSGPACK_H -#define _LTTNG_UST_MSGPACK_H - /* - * msgpack.h + * SPDX-License-Identifier: LGPL-2.1-only * * Copyright (C) 2020 Francis Deslauriers - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; only - * version 2.1 of the License. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifndef _LTTNG_UST_MSGPACK_H +#define _LTTNG_UST_MSGPACK_H + #include #ifdef __KERNEL__ #include #else /* __KERNEL__ */ #include +#include "helper.h" #endif /* __KERNEL__ */ struct lttng_msgpack_writer { @@ -36,26 +23,39 @@ struct lttng_msgpack_writer { uint8_t map_nesting; }; +LTTNG_HIDDEN void lttng_msgpack_writer_init( struct lttng_msgpack_writer *writer, uint8_t *buffer, size_t size); +LTTNG_HIDDEN void lttng_msgpack_writer_fini(struct lttng_msgpack_writer *writer); +LTTNG_HIDDEN int lttng_msgpack_write_nil(struct lttng_msgpack_writer *writer); +LTTNG_HIDDEN int lttng_msgpack_write_true(struct lttng_msgpack_writer *writer); +LTTNG_HIDDEN int lttng_msgpack_write_false(struct lttng_msgpack_writer *writer); +LTTNG_HIDDEN int lttng_msgpack_write_unsigned_integer( struct lttng_msgpack_writer *writer, uint64_t value); +LTTNG_HIDDEN int lttng_msgpack_write_signed_integer( struct lttng_msgpack_writer *writer, int64_t value); +LTTNG_HIDDEN int lttng_msgpack_write_double(struct lttng_msgpack_writer *writer, double value); +LTTNG_HIDDEN int lttng_msgpack_write_str(struct lttng_msgpack_writer *writer, const char *value); +LTTNG_HIDDEN int lttng_msgpack_begin_map(struct lttng_msgpack_writer *writer, size_t count); +LTTNG_HIDDEN int lttng_msgpack_end_map(struct lttng_msgpack_writer *writer); +LTTNG_HIDDEN int lttng_msgpack_begin_array( struct lttng_msgpack_writer *writer, size_t count); +LTTNG_HIDDEN int lttng_msgpack_end_array(struct lttng_msgpack_writer *writer); #endif /* _LTTNG_UST_MSGPACK_H */