GNUnet 0.21.1
testing_api_traits.c
Go to the documentation of this file.
1/*
2 This file is part of GNUnet
3 Copyright (C) 2021 GNUnet e.V.
4
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details.
14
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 SPDX-License-Identifier: AGPL3.0-or-later
19 */
20
28#include "platform.h"
33
34
35/* FIXME: move these into respective sub-libs? */
36
38
40
42
44
46
47
53{
54 struct GNUNET_TESTING_Trait end = {
55 .index = 0,
56 .trait_name = NULL,
57 .ptr = NULL
58 };
59
60 return end;
61}
62
63
75 const void **ret,
76 const char *trait,
77 unsigned int index)
78{
79 for (unsigned int i = 0; NULL != traits[i].trait_name; i++)
80 {
81 if ( (0 == strcmp (trait, traits[i].trait_name)) &&
82 (index == traits[i].index) )
83 {
84 *ret = (void *) traits[i].ptr;
85 return GNUNET_OK;
86 }
87 }
89 "Trait %s/%u not found.\n",
90 trait, index);
91
92 return GNUNET_SYSERR;
93}
94
95
96/* end of testing_api_traits.c */
static int ret
Final status code.
Definition: gnunet-arm.c:94
static int end
Set if we are to shutdown all services (including ARM).
Definition: gnunet-arm.c:34
API to manage barriers.
#define GNUNET_TESTING_LOOP_INDEXED_TRAITS(op, prefix)
Call op on all indexed traits needed by loop logic.
#define GNUNET_TESTING_MAKE_IMPL_SIMPLE_TRAIT(prefix, name, type)
Create C implementation for a trait with name name for statically allocated data of type type.
#define GNUNET_TESTING_LOOP_SIMPLE_TRAITS(op, prefix)
Call op on all simple traits needed by loop logic.
#define GNUNET_TESTING_MAKE_IMPL_INDEXED_TRAIT(prefix, name, type)
Create C implementation for a trait with name name for statically allocated data of type type.
#define GNUNET_TESTING_SIMPLE_NETJAIL_TRAITS(op, prefix)
Call op on all simple traits.
#define GNUNET_TESTING_INDEXED_TRAITS(op, prefix)
Call op on all indexed traits.
#define GNUNET_TESTING_SIMPLE_TRAITS(op, prefix)
Call op on all simple traits.
#define GNUNET_log(kind,...)
GNUNET_GenericReturnValue
Named constants for return values.
@ GNUNET_OK
@ GNUNET_SYSERR
@ GNUNET_ERROR_TYPE_INFO
A struct GNUNET_TESTING_Trait can be used to exchange data between cmds.
const void * ptr
Pointer to the piece of data to offer.
unsigned int index
Index number associated with the trait.
const char * trait_name
Trait type, for example "reserve-pub" or "coin-priv".
enum GNUNET_GenericReturnValue GNUNET_TESTING_get_trait(const struct GNUNET_TESTING_Trait *traits, const void **ret, const char *trait, unsigned int index)
Pick the chosen trait from the traits array.
struct GNUNET_TESTING_Trait GNUNET_TESTING_trait_end()
End a trait array.