GNUnet 0.21.2
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"
29#include "gnunet_testing_lib.h"
30
31
33 GNUNET_TESTING)
34
35
41{
42 struct GNUNET_TESTING_Trait end = {
43 .index = 0,
44 .trait_name = NULL,
45 .ptr = NULL
46 };
47
48 return end;
49}
50
51
63 const void **ret,
64 const char *trait,
65 unsigned int index)
66{
67 for (unsigned int i = 0; NULL != traits[i].trait_name; i++)
68 {
69 if ( (0 == strcmp (trait, traits[i].trait_name)) &&
70 (index == traits[i].index) )
71 {
72 *ret = (void *) traits[i].ptr;
73 return GNUNET_OK;
74 }
75 }
77 "Trait %s/%u not found.\n",
78 trait, index);
79
80 return GNUNET_SYSERR;
81}
82
83
84/* 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
#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.
struct GNUNET_TESTING_Trait GNUNET_TESTING_trait_end(void)
"end" of traits array.
#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".
static enum GNUNET_GenericReturnValue traits(void *cls, const void **ret, const char *trait, unsigned int index)
This function prepares an array with traits.
GNUNET_TESTING_SIMPLE_TRAITS(GNUNET_TESTING_MAKE_IMPL_SIMPLE_TRAIT, GNUNET_TESTING)
End a trait array.
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.