X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Foptional.h;h=0501904cbc4d1cfa52a926be158afe5219712646;hp=53215b0315e299695e03ec67dc49890176707cd4;hb=7966af5763c4aaca39df9bbfa9277ff15715c720;hpb=bc2dc8d464c34ad5a51ed46e46c6fc98a5bbf3fd diff --git a/src/common/optional.h b/src/common/optional.h index 53215b031..0501904cb 100644 --- a/src/common/optional.h +++ b/src/common/optional.h @@ -1,25 +1,14 @@ /* - * Copyright (C) 2019 - Jérémie Galarneau + * Copyright (C) 2019 Jérémie Galarneau * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License, version 2 only, - * as published by the Free Software Foundation. + * SPDX-License-Identifier: GPL-2.0-only * - * This program 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 General Public License for - * more details. - * - * You should have received a copy of the GNU General Public License along - * with this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef LTTNG_OPTIONAL_H #define LTTNG_OPTIONAL_H #include -#include /* * Define wrapper structure representing an optional value. @@ -66,30 +55,46 @@ /* * This macro is available as a 'convenience' to allow sites that assume - * an optional value is set to assert() that it is set when accessing it. + * an optional value is set to LTTNG_ASSERT() that it is set when accessing it. * * Since this returns the 'optional' by value, it is not suitable for all * wrapped optional types. It is meant to be used with PODs. */ #define LTTNG_OPTIONAL_GET(optional) \ - ({ \ - assert((optional).is_set); \ + ({ \ + LTTNG_ASSERT((optional).is_set); \ (optional).value; \ }) /* - * Initialize an optional field. + * This macro is available as a 'convenience' to allow sites that assume + * an optional value is set to LTTNG_ASSERT() that it is set when fecthing the + * underlying value's address. + */ +#define LTTNG_OPTIONAL_GET_PTR(optional) \ + ({ \ + LTTNG_ASSERT((optional).is_set); \ + &(optional).value; \ + }) + +/* + * Initialize an optional field as unset. * * The wrapped field is set to the value it would gave if it had static storage * duration. */ -#define LTTNG_OPTIONAL_INIT { .is_set = 0 } +#define LTTNG_OPTIONAL_INIT_UNSET { .is_set = 0 } + +/* + * Initialize an optional field as 'set' with a given value. + */ +#define LTTNG_OPTIONAL_INIT_VALUE(val) { .is_set = 1, .value = val } /* Set the value of an optional field. */ #define LTTNG_OPTIONAL_SET(field_ptr, val) \ do { \ - (field_ptr)->value = (val); \ (field_ptr)->is_set = 1; \ + (field_ptr)->value = (val); \ } while (0) /* Put an optional field in the "unset" (NULL-ed) state. */