X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fstatistics%2Fgnunet-service-statistics.c;h=6c3d173c44b78b19eb0386bd4e08745ebce21e80;hb=372afebb55cc8b40d5f7115a398564e6ffd61434;hp=efd8346245e1d911f5fec6cdc499d972a5b344ae;hpb=101f5787ac60dafa175950fb714c6d4cc4906478;p=oweals%2Fgnunet.git diff --git a/src/statistics/gnunet-service-statistics.c b/src/statistics/gnunet-service-statistics.c index efd834624..6c3d173c4 100644 --- a/src/statistics/gnunet-service-statistics.c +++ b/src/statistics/gnunet-service-statistics.c @@ -241,11 +241,20 @@ load (struct GNUNET_SERVER_Handle *server) struct GNUNET_SERVER_MessageStreamTokenizer *mst; char *emsg; - fn = GNUNET_DISK_get_home_filename (cfg, "statistics", "statistics.data", - NULL); - if (fn == NULL) + if (GNUNET_OK != + GNUNET_CONFIGURATION_get_value_filename (cfg, + "STATISTICS", + "DATABASE", + &fn)) + { + GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR, + "STATISTICS", + "DATABASE"); return; - if ((GNUNET_OK != GNUNET_DISK_file_size (fn, &fsize, GNUNET_NO, GNUNET_YES)) || (fsize == 0)) + } + if ( (GNUNET_OK != + GNUNET_DISK_file_size (fn, &fsize, GNUNET_NO, GNUNET_YES)) || + (0 == fsize) ) { GNUNET_free (fn); return; @@ -291,15 +300,22 @@ save () struct StatsEntry *pos; char *fn; struct GNUNET_BIO_WriteHandle *wh; - uint16_t size; unsigned long long total; - wh = NULL; - fn = GNUNET_DISK_get_home_filename (cfg, "statistics", "statistics.data", - NULL); - if (fn != NULL) - wh = GNUNET_BIO_write_open (fn); + if (GNUNET_OK != + GNUNET_CONFIGURATION_get_value_filename (cfg, + "STATISTICS", + "DATABASE", + &fn)) + { + GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR, + "STATISTICS", + "DATABASE"); + return; + } + (void) GNUNET_DISK_directory_create_for_file (fn); + wh = GNUNET_BIO_write_open (fn); total = 0; while (NULL != (pos = start)) { @@ -409,9 +425,8 @@ make_client_entry (struct GNUNET_SERVER_Client *client) GNUNET_SERVER_receive_done (client, GNUNET_SYSERR); return NULL; } - ce = GNUNET_malloc (sizeof (struct ClientEntry)); + ce = GNUNET_new (struct ClientEntry); ce->client = client; - GNUNET_SERVER_client_keep (client); GNUNET_CONTAINER_DLL_insert (client_head, client_tail, ce); GNUNET_SERVER_notification_context_add (nc, client); return ce; @@ -497,6 +512,7 @@ notify_change (struct StatsEntry *se) } } + /** * Handle SET-message. * @@ -702,10 +718,9 @@ handle_watch (void *cls, struct GNUNET_SERVER_Client *client, "New statistic on `%s:%s' with value %llu created.\n", service, name, pos->value); } - we = GNUNET_malloc (sizeof (struct WatchEntry)); + we = GNUNET_new (struct WatchEntry); we->client = client; we->last_value_set = GNUNET_NO; - GNUNET_SERVER_client_keep (client); we->wid = ce->max_wid++; GNUNET_CONTAINER_DLL_insert (pos->we_head, pos->we_tail, we); if (pos->value != 0) @@ -717,7 +732,7 @@ handle_watch (void *cls, struct GNUNET_SERVER_Client *client, /** * Actually perform the shutdown. */ -static void +static void do_shutdown () { struct WatchEntry *we; @@ -727,14 +742,13 @@ do_shutdown () return; save (); GNUNET_SERVER_notification_context_destroy (nc); - nc = NULL; + nc = NULL; GNUNET_assert (NULL == client_head); while (NULL != (se = start)) { start = se->next; while (NULL != (we = se->we_head)) { - GNUNET_SERVER_client_drop (we->client); GNUNET_CONTAINER_DLL_remove (se->we_head, se->we_tail, we); GNUNET_free (we); } @@ -778,7 +792,6 @@ handle_client_disconnect (void *cls, struct GNUNET_SERVER_Client *client) { if (ce->client == client) { - GNUNET_SERVER_client_drop (ce->client); GNUNET_CONTAINER_DLL_remove (client_head, client_tail, ce); GNUNET_free (ce); break; @@ -794,7 +807,6 @@ handle_client_disconnect (void *cls, struct GNUNET_SERVER_Client *client) wen = we->next; if (we->client != client) continue; - GNUNET_SERVER_client_drop (we->client); GNUNET_CONTAINER_DLL_remove (se->we_head, se->we_tail, we); GNUNET_free (we); } @@ -849,4 +861,19 @@ main (int argc, char *const *argv) GNUNET_SERVICE_OPTION_SOFT_SHUTDOWN, &run, NULL)) ? 0 : 1; } +#ifdef LINUX +#include + +/** + * MINIMIZE heap size (way below 128k) since this process doesn't need much. + */ +void __attribute__ ((constructor)) GNUNET_ARM_memory_init () +{ + mallopt (M_TRIM_THRESHOLD, 4 * 1024); + mallopt (M_TOP_PAD, 1 * 1024); + malloc_trim (0); +} +#endif + + /* end of gnunet-service-statistics.c */