exchange/src/mintdb/perf_taler_mintdb_interpreter.c

321 lines
9.5 KiB
C
Raw Normal View History

2015-06-09 17:35:33 +02:00
/*
This file is part of TALER
Copyright (C) 2014, 2015 Christian Grothoff (and other contributing authors)
2015-06-09 17:35:33 +02:00
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.
2015-06-09 17:35:33 +02:00
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
*
2015-06-09 17:35:33 +02:00
* @return the index of the first command with name search
* GNUNET_SYSERR if none found
*/
2015-06-09 17:35:33 +02:00
static int
cmd_find(const struct PERF_TALER_MINTDB_Cmd *cmd, const char *search)
{
2015-06-09 13:55:05 +02:00
int i;
2015-06-09 13:55:05 +02:00
for (i=0; CMD_END != cmd[i].command; i++)
if (0 == strcmp (cmd[i].name, search))
return i;
2015-06-09 13:55:05 +02:00
return GNUNET_SYSERR;
}
// Initialization of a command array
2015-06-09 17:35:33 +02:00
static int
cmd_init(struct PERF_TALER_MINTDB_CMD cmd[])
{
int i = 0;
2015-06-09 17:35:33 +02:00
for (i=0; PERF_TALER_MINTDB_CMD_END != cmd[i].command; i++)
{
switch (cmd[i].command)
{
2015-06-09 17:35:33 +02:00
// 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;
2015-06-09 17:35:33 +02:00
// Creation of the permutation array
case PERF_TALER_MINTDB_CMD_LOAD_ARRAY:
2015-06-09 13:55:05 +02:00
cmd[i].details.load_array.permutation =
GNUNET_CRYPTO_random_permute(
2015-06-09 13:55:05 +02:00
GNUNET_CRYPTO_QUALITY_WEAK,
cmd[i].details.load_array.nb);
break;
2015-06-09 17:35:33 +02:00
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;
2015-06-09 17:35:33 +02:00
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)
{
2015-06-09 17:35:33 +02:00
case PERF_TALER_MINTDB_DEPOSIT:
for (j = 0; j < cmd[i].details.save_array.nb; j++)
{
2015-06-09 17:35:33 +02:00
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;
2015-06-09 17:35:33 +02:00
default:
break;
}
2015-06-09 17:35:33 +02:00
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;
2015-06-09 17:35:33 +02:00
};
/**
2015-06-09 17:35:33 +02:00
* /TODO cut it into pieces
*/
2015-06-09 17:35:33 +02:00
static int
interpret(struct TALER_MINTDB_Plugin *db_plugin,
struct TALER_MINTDB_Session*session,
struct PERF_TALER_MINTDB_CMD cmd[])
{
int i=0;
2015-06-09 17:35:33 +02:00
for(i=0; PERF_TALER_MINTDB_MD_END == cmd[i].command; i++)
{
switch (cmd[i].command)
{
2015-06-09 17:35:33 +02:00
case PERF_TALER_MINTDB_CMD_END:
return GNUNET_YES;
2015-06-09 17:35:33 +02:00
case PERF_TALER_MINTDB_CMD_LOOP:
cmd[i].details.loop.curr_iteration++;
break;
2015-06-09 17:35:33 +02:00
case PERF_TALER_MINTDB_CMD_END_LOOP:
{
2015-06-09 17:35:33 +02:00
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{
2015-06-09 17:35:33 +02:00
// 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)
{
2015-06-09 17:35:33 +02:00
case PERF_TALER_MINTDB_DEPOSIT:
free_deposit(cmd[j].exposed.deposit);
cmd[j].exposed.deposit = NULL;
break;
default:
break;
}
}
2015-06-09 17:35:33 +02:00
cmd[j].exposed_saved = 0;
}
}
break;
2015-06-09 17:35:33 +02:00
case PERF_TALER_MINTDB_CMD_GET_TIME:
clock_gettime(CLOCK_MONOTONIC, &cmd[i].exposed.time);
break;
2015-06-09 17:35:33 +02:00
case PERF_TALER_MINTDB_CMD_GAUGER:
{
2015-06-09 17:35:33 +02:00
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;
2015-06-09 17:35:33 +02:00
unsigned long elapsed_ms = (start.tv_sec - stop.tv_sec) * 1000 + (start.tv_nsec - stop.tv_nsec) / 1000000;
2015-06-09 17:35:33 +02:00
GAUGER ("MINTDB", cmd[i].details.gauger.description, elapsed_ms, "milliseconds");
}
break;
2015-06-09 17:35:33 +02:00
case PERF_TALER_MINTDB_CMD_START_TRANSACTION:
db_plugin->start(db_plugin->cls, session);
break;
2015-06-09 17:35:33 +02:00
case PERF_TALER_MINTDB_CMD_COMMIT_TRANSACTION:
db_plugin->commit(db_plugin->cls, session);
break;
2015-06-09 17:35:33 +02:00
case PERF_TALER_MINTDB_CMD_INSERT_DEPOSIT:
{
struct TALER_MINTDB_Deposit *deposit = init_deposit(0);
2015-06-09 13:55:05 +02:00
db_plugin->insert_deposit(db_plugin->cls, session, deposit);
cmd[i].exposed.deposit = deposit;
}
break;
2015-06-09 17:35:33 +02:00
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;
2015-06-09 17:35:33 +02:00
case PERF_TALER_MINTDB_CMD_SAVE_ARRAY:
{
// Array initialization on first loop iteration
2015-06-09 17:35:33 +02:00
// 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;
}
2015-06-09 17:35:33 +02:00
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);
2015-06-09 13:55:05 +02:00
// 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 <=
2015-06-09 17:35:33 +02:00
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
2015-06-09 17:35:33 +02:00
switch (cmd[i].details.save_array.saved_type)
{
case PERF_TALER_MINTDB_DEPOSIT:
2015-06-09 13:55:05 +02:00
cmd[i].details.save_array.saved_data.deposit[cmd[i].details.save_array.index] =
2015-06-09 17:35:33 +02:00
cmd[cmd_find (cmd, cmd[i].details.save_array.label_saved)].exposed.deposit;
break;
2015-06-09 17:35:33 +02:00
case PERF_TALER_MINTDB_TIME:
2015-06-09 13:55:05 +02:00
cmd[i].details.save_array.saved_data.deposit[cmd[i].details.save_array.index] =
2015-06-09 17:35:33 +02:00
cmd[cmd_find (cmd, cmd[i].details.save_array.label_saved)].exposed.time;
break;
default:
break;
}
2015-06-09 17:35:33 +02:00
cmd[cmd_find (cmd, cmd[i].details.save_array.label_saved)].exposed_use = 1;
cmd[i].details.save_array.index++;
}
}
break;
2015-06-09 17:35:33 +02:00
case PERF_TALER_MINTDB_CMD_LOAD_ARRAY:
{
2015-06-09 13:55:05 +02:00
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){
2015-06-09 17:35:33 +02:00
case PERF_TALER_MINTDB_DEPOSIT:
cmd[i].exposed.deposit = cmd[save_index].details.save_array.saved_data.deposit[
cmd[i].details.load_array.permutation[
2015-06-09 17:35:33 +02:00
cmd[loop_index].details.loop.curr_iteration
]
];
2015-06-09 17:35:33 +02:00
break;
2015-06-09 17:35:33 +02:00
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;
2015-06-09 17:35:33 +02:00
default:
break;
}
}
2015-06-09 17:35:33 +02:00
default :
break;
}
}
return GNUNET_OK;
}
/**
2015-06-09 13:55:05 +02:00
* Runs the commands given in @a cmd, working with
* the database referenced by @a db_plugin
*/
int
2015-06-09 13:55:05 +02:00
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;
}