summaryrefslogtreecommitdiff
path: root/src/mintdb/perf_taler_mintdb_interpreter.c
blob: 75532421933e206603d6c80a6664cc82c968dcf2 (plain)
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
/*
   This file is part of TALER
   Copyright (C) 2014, 2015 Christian Grothoff (and other contributing authors)

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

   TALER 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
   TALER; see the file COPYING.  If not, If not, see <http://www.gnu.org/licenses/>
   */
/**
 * @file mintdb/perf_taler_mintdb_interpreter.c
 * @brief Interpreter library for mint database performance analysis
 * @author Nicolas Fournier
 */
#include "perf_taler_mintdb_interpreter.h"
#include "perf_taler_mintdb_init.h"
#include "gauger.h"


/**
 * Finds the first command in cmd with the name search
 *
 * @return the index of the first command with name search
 * GNUNET_SYSERR if none found
 */
static int
cmd_find(const struct  PERF_TALER_MINTDB_Cmd *cmd, const char *search)
{
  int i;

  for (i=0; CMD_END != cmd[i].command; i++)
    if (0 == strcmp (cmd[i].name, search))
      return i;
  return GNUNET_SYSERR;
}


// Initialization of a command array
static int
cmd_init(struct PERF_TALER_MINTDB_CMD cmd[])
{
  int i = 0;
  for (i=0; PERF_TALER_MINTDB_CMD_END != cmd[i].command; i++)
  {
    switch (cmd[i].command)
    {
      // Allocation of memmory for saving data
      case PERF_TALER_MINTDB_CMD_SAVE_ARRAY:
        cmd[i].details.save_array.saved_data = 
          GNUNET_new_array(cmd[i].details.nb, union PERF_TALER_MINTDB_Data);
        break;

      // Creation of the permutation array
      case PERF_TALER_MINTDB_CMD_LOAD_ARRAY:
        cmd[i].details.load_array.permutation =
          GNUNET_CRYPTO_random_permute(
              GNUNET_CRYPTO_QUALITY_WEAK,
              cmd[i].details.load_array.nb);
        break;

      default:
        break;
    }
  }
  return GNUNET_OK;
}


/**
 * Free the memory of the command chain
 */
  static int
cmd_clean(struct PERF_TALER_MINTDB_CMD cmd[])
{
  int i = 0;
  for(i=0; PERF_TALER_MINTDB_CMD_END != cmd[i].command; i++)
  {
    switch (cmd[i].command)
    {
      case CMD_SAVE_ARRAY:
        {
          int j;
          switch (cmd[i].details.save_array.saved_type)
          {
            case PERF_TALER_MINTDB_DEPOSIT:
              for (j = 0; j < cmd[i].details.save_array.nb; j++)
              {
                deposit_free(cmd[i].details.save_array.saved_data.deposit[j]);
                cmd[i].details.save_array.saved_data.deposit[j] = NULL;
              }
              GNUNET_free(cmd[i].details.save_array.saved_data.deposit);
              break;

            default:
              break;
          }
          cmd[i].details.save_array.saved_data.deposit = NULL;
        }

      case CMD_INSERT_DEPOSIT:
        free_deposit(cmd[i].exposed.deposit);
        break;

      case CMD_LOAD_ARRAY:
        GNUNET_free(cmd[i].details.load_array.permutation);
        break;

      default:
        break;

    }
    i++;
  }
  return GNUNET_OK;
};


/**
 * /TODO cut it into pieces
 */
static int
interpret(struct TALER_MINTDB_Plugin *db_plugin,
    struct TALER_MINTDB_Session*session,
    struct PERF_TALER_MINTDB_CMD cmd[])
{
  int i=0;
  for(i=0; PERF_TALER_MINTDB_MD_END == cmd[i].command; i++)
  {
    switch (cmd[i].command)
    {
      case PERF_TALER_MINTDB_CMD_END:
        return GNUNET_YES;

      case PERF_TALER_MINTDB_CMD_LOOP:
        cmd[i].details.loop.curr_iteration++;
        break;

      case PERF_TALER_MINTDB_CMD_END_LOOP:
        {
          int jump = cmd_find(cmd, cmd[i].details.end_loop.label_loop);
          if (cmd[jump].details.loop.max_iterations > cmd[jump].details.loop.curr_iteration)
          {
            i = jump -1;
          }else{
            // Reseting loop counter
            cmd[jump].details.loop.curr_iteration = -1;
          }
          // Cleaning up the memory in the loop
          int j;
          // For each command in the loop
          for (j = jump; j < i; j++)
          {
            // If the exposed variable has not been copied
            if ( 0 == cmd[j].exposed_saved)
            {
              // It is freed
              switch (cmd[j].exposed_type)
              {
                case PERF_TALER_MINTDB_DEPOSIT:
                  free_deposit(cmd[j].exposed.deposit);
                  cmd[j].exposed.deposit = NULL;
                  break;

                default:
                  break;
              }
            }
            cmd[j].exposed_saved = 0;
          }
        }
        break;


      case PERF_TALER_MINTDB_CMD_GET_TIME:
        clock_gettime(CLOCK_MONOTONIC, &cmd[i].exposed.time);
        break;


      case PERF_TALER_MINTDB_CMD_GAUGER:
        {
          int start_index = cmd_find (cmd, cmd[i].details.gauger.label_start);
          int stop_index  = cmd_find (cmd, cmd[i].details.gauger.label_stop);
          struct timespec start = cmd [start_index].exposed.time;
          struct timespec stop = cmd [stop_index].exposed.time;

          unsigned long elapsed_ms = (start.tv_sec - stop.tv_sec) * 1000 + (start.tv_nsec - stop.tv_nsec) / 1000000;

          GAUGER ("MINTDB", cmd[i].details.gauger.description, elapsed_ms, "milliseconds");
        }
        break;

      case PERF_TALER_MINTDB_CMD_START_TRANSACTION:
        db_plugin->start(db_plugin->cls, session);
        break;


      case PERF_TALER_MINTDB_CMD_COMMIT_TRANSACTION:
        db_plugin->commit(db_plugin->cls, session);
        break;


      case PERF_TALER_MINTDB_CMD_INSERT_DEPOSIT:
        {
          struct TALER_MINTDB_Deposit *deposit = init_deposit(0);
          db_plugin->insert_deposit(db_plugin->cls, session, deposit);

          cmd[i].exposed.deposit = deposit;
        }
        break;


      case PERF_TALER_MINTDB_CMD_GET_DEPOSIT:
        {
          int source_index = cmd_find(cmd, cmd[i].details.get_deposit.source); // Find the source location
          struct TALER_MINTDB_Deposit *deposit = cmd[source_index].exposed.deposit; // Get the deposit from the source
          db_plugin->have_deposit(db_plugin->cls, session, deposit);
        }
        break;


      case PERF_TALER_MINTDB_CMD_SAVE_ARRAY:
        {
          // Array initialization on first loop iteration
          // Alows for nested loops
          if (cmd[cmd_find(cmd, cmd[i].details.save_array.label_loop)].details.loop.curr_iteration == 0)
          {
            cmd[i].details.save_array.index = 0;
          }

          int loop_index = cmd_find(cmd, cmd[i].details.save_array.label_loop);
          int proba = cmd[loop_index].details.loop.max_iterations / cmd[i].details.save_array.nb_saved;
          int rnd = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, proba);

          // If there is a lesser or equal number of iteration next than room remain in the array
          if ((cmd[loop_index].details.loop.max_iterations - cmd[loop_index].details.loop.curr_iteration <=
                cmd[i].details.save_array.nb_saved - cmd[i].details.save_array.index) ||
              (rnd == 0 && cmd[i].details.save_array.index < cmd[i].details.save_array.nb_saved))
          {
            // We automaticly save the whatever we need to
            switch (cmd[i].details.save_array.saved_type)
            {
              case PERF_TALER_MINTDB_DEPOSIT:
                cmd[i].details.save_array.saved_data.deposit[cmd[i].details.save_array.index] =
                  cmd[cmd_find (cmd, cmd[i].details.save_array.label_saved)].exposed.deposit;
                break;

              case PERF_TALER_MINTDB_TIME:
                cmd[i].details.save_array.saved_data.deposit[cmd[i].details.save_array.index] =
                  cmd[cmd_find (cmd, cmd[i].details.save_array.label_saved)].exposed.time;
                break;

              default:
                break;
            }
            cmd[cmd_find (cmd, cmd[i].details.save_array.label_saved)].exposed_use = 1;
            cmd[i].details.save_array.index++;
          }
        }
        break;


      case PERF_TALER_MINTDB_CMD_LOAD_ARRAY:
        {

          int loop_index = cmd_find(cmd, cmd[i].details.load_array.loop);
          int save_index = cmd_find(cmd, cmd[i].details.load_array.saved);
          switch (cmd[i].details.load_array.loaded_type){
            case PERF_TALER_MINTDB_DEPOSIT:
              cmd[i].exposed.deposit = cmd[save_index].details.save_array.saved_data.deposit[
                cmd[i].details.load_array.permutation[
                  cmd[loop_index].details.loop.curr_iteration
                ]
              ];
                break;

            case PERF_TALER_MINTDB_TIME:
                cmd[i].exposed.time = cmd[save_index].details.save_array.saved_data.time[
                  cmd[i].details.load_array.permutation[
                    cmd[loop_index].details.loop.curr_iteration
                  ]
                ];
                  break;

            default:
                  break;
          }
        }
      default :
        break;
    }
  }
  return GNUNET_OK;
}

/**
 * Runs the commands given in @a cmd, working with
 * the database referenced by @a db_plugin
 */
  int
PERF_TALER_MINTDB_interprete(struct TALER_MINTDB_Plugin *db_plugin,
    struct TALER_MINTDB_Session *session,
    struct PERF_TALER_MINTDB_CMD cmd[])
{
  // Initializing commands
  cmd_init(cmd);

  // Running the interpreter
  interprete(db_plugin, session, cmd);

  // Cleaning the memory
  cmd_clean(cmd);

  return GNUNET_YES;
}