aboutsummaryrefslogtreecommitdiff
path: root/src/dhtu/testing_dhtu_cmd_send.c
blob: 129a31205e200c2a027d5cd21872a58190e6fe09 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/*
      This file is part of GNUnet
      Copyright (C) 2021 GNUnet e.V.

      GNUnet is free software: you can redistribute it and/or modify it
      under the terms of the GNU Affero General Public License as published
      by the Free Software Foundation, either version 3 of the License,
      or (at your option) any later version.

      GNUnet 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
      Affero General Public License for more details.

      You should have received a copy of the GNU Affero General Public License
      along with this program.  If not, see <http://www.gnu.org/licenses/>.

     SPDX-License-Identifier: AGPL3.0-or-later
 */

/**
 * @file testing/testing_dhtu_cmd_send.c
 * @brief use DHTU to send a message
 * @author Christian Grothoff
 */
#include "platform.h"
#include "gnunet_testing_ng_lib.h"


/**
 * State for the 'send' command.
 */
struct SendState
{

  /**
   * Function to call when done.
   */
  GNUNET_SCHEDULER_TaskCallback cont;

  /**
   * Closure for @e cont.
   */
  void *cont_cls;

  enum GNUNET_GenericReturnValue finished;
};


/**
 *
 *
 * @param cls a `struct SendState`
 */
static void
send_cleanup (void *cls)
{
  struct SendState *ss = cls;

  GNUNET_free (ss);
}


/**
 * Return trains of the ``send`` command.
 *
 * @param cls closure.
 * @param[out] ret result
 * @param trait name of the trait.
 * @param index index number of the object to offer.
 * @return #GNUNET_OK on success.
 *         #GNUNET_NO if no trait was found
 */
static enum GNUNET_GenericReturnValue
send_traits (void *cls,
             const void **ret,
             const char *trait,
             unsigned int index)
{
  return GNUNET_NO;
}


/**
 * Run the 'send' command.
 *
 * @param cls closure.
 * @param is interpreter state.
 */
static void
send_run (void *cls,
          struct GNUNET_TESTING_Interpreter *is)
{
  struct SendState *ss = cls;

#if 0
  other_cmd = GNUNET_TESTING_interpreter_lookup_command (ss->other_label);
  GNUNET_TESTING_get_trait_XXX (other_cmd,
                                &data);
#endif
  ss->finished = GNUNET_OK;
}


/**
 * This function checks the flag NetJailState#finished, if this cmd finished.
 *
 * @param cls a `struct SendState`
 * @param cont function to call upon completion, can be NULL
 * @param cont_cls closure for @a cont
 * @return
 *    #GNUNET_NO if the command is still running and @a cont will be called later
 *    #GNUNET_OK if the command completed successfully and @a cont was called
 *    #GNUNET_SYSERR if the operation @a cont was NOT called
 */
static enum GNUNET_GenericReturnValue
send_finish (void *cls,
             GNUNET_SCHEDULER_TaskCallback cont,
             void *cont_cls)
{
  struct SendState *ss = cls;

  switch (ss->finished)
  {
  case GNUNET_OK:
    cont (cont_cls);
    break;
  case GNUNET_SYSERR:
    GNUNET_break (0);
    break;
  case GNUNET_NO:
    if (NULL != ss->cont)
    {
      GNUNET_break (0);
      return GNUNET_SYSERR;
    }
    ss->cont = cont;
    ss->cont_cls = cont_cls;
    break;
  }
  return ss->finished;
}


/**
 * Create 'send' command.
 *
 * @param label name for command.
 * @return command.
 */
struct GNUNET_TESTING_Command
GNUNET_TESTING_DHTU_cmd_send (const char *label)
{
  struct SendState *ss;

  ss = GNUNET_new (struct SendState);

  {
    struct GNUNET_TESTING_Command cmd = {
      .cls = ss,
      .label = label,
      .run = &send_run,
      .finish = &send_finish,
      .cleanup = &send_cleanup,
      .traits = &send_traits
    };

    return cmd;
  }
}