GNUnet  0.20.0
gnunet-service-testbed-logger.c File Reference

service for collecting messages and writing to a file More...

#include "platform.h"
#include "gnunet_util_lib.h"
Include dependency graph for gnunet-service-testbed-logger.c:

Go to the source code of this file.

Macros

#define LOG(type, ...)    GNUNET_log (type, __VA_ARGS__)
 Generic logging shorthand. More...
 
#define LOG_DEBUG(...)    LOG (GNUNET_ERROR_TYPE_DEBUG, __VA_ARGS__)
 Debug logging shorthand. More...
 

Functions

static int check_log_msg (void *cls, const struct GNUNET_MessageHeader *msg)
 Check GNUNET_MESSAGE_TYPE_TESTBED_LOGGER_MSG messages. More...
 
static void handle_log_msg (void *cls, const struct GNUNET_MessageHeader *msg)
 Message handler for GNUNET_MESSAGE_TYPE_TESTBED_LOGGER_MSG messages. More...
 
static void shutdown_task (void *cls)
 Task to clean up and shutdown nicely. More...
 
static void * client_connect_cb (void *cls, struct GNUNET_SERVICE_Client *c, struct GNUNET_MQ_Handle *mq)
 Callback called when a client connects to the service. More...
 
static void client_disconnect_cb (void *cls, struct GNUNET_SERVICE_Client *c, void *internal_cls)
 Callback called when a client disconnected from the service. More...
 
static void logger_run (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg, struct GNUNET_SERVICE_Handle *service)
 Testbed setup. More...
 
 GNUNET_SERVICE_MAIN ("testbed-logger", GNUNET_SERVICE_OPTION_NONE, &logger_run, &client_connect_cb, &client_disconnect_cb, NULL, GNUNET_MQ_hd_var_size(log_msg, GNUNET_MESSAGE_TYPE_TESTBED_LOGGER_MSG, struct GNUNET_MessageHeader, NULL), GNUNET_MQ_handler_end())
 Define "main" method using service macro. More...
 

Variables

struct GNUNET_BIO_WriteHandlebio
 Handle for buffered writing. More...
 
static unsigned int nconn
 The number of connections we have. More...
 
static int in_shutdown
 Are we shutting down? More...
 

Detailed Description

service for collecting messages and writing to a file

Author
Sree Harsha Totakura

Definition in file gnunet-service-testbed-logger.c.

Macro Definition Documentation

◆ LOG

#define LOG (   type,
  ... 
)     GNUNET_log (type, __VA_ARGS__)

Generic logging shorthand.

Definition at line 33 of file gnunet-service-testbed-logger.c.

◆ LOG_DEBUG

#define LOG_DEBUG (   ...)     LOG (GNUNET_ERROR_TYPE_DEBUG, __VA_ARGS__)

Debug logging shorthand.

Definition at line 39 of file gnunet-service-testbed-logger.c.

Function Documentation

◆ check_log_msg()

static int check_log_msg ( void *  cls,
const struct GNUNET_MessageHeader msg 
)
static

Check GNUNET_MESSAGE_TYPE_TESTBED_LOGGER_MSG messages.

Parameters
clsclient identification of the client
msgthe actual message
Returns
GNUNET_OK (they are all always OK)

Definition at line 66 of file gnunet-service-testbed-logger.c.

68 {
69  return GNUNET_OK;
70 }
@ GNUNET_OK

References GNUNET_OK.

◆ handle_log_msg()

static void handle_log_msg ( void *  cls,
const struct GNUNET_MessageHeader msg 
)
static

Message handler for GNUNET_MESSAGE_TYPE_TESTBED_LOGGER_MSG messages.

Parameters
clsclient identification of the client
msgthe actual message

Definition at line 80 of file gnunet-service-testbed-logger.c.

82 {
83  struct GNUNET_SERVICE_Client *client = cls;
84  uint16_t ms;
85 
86  ms = ntohs (msg->size) - sizeof(struct GNUNET_MessageHeader);
88  "testbed-logger-handle-log-msg",
89  &msg[1],
90  ms);
92 }
struct GNUNET_MessageHeader * msg
Definition: 005.c:2
struct GNUNET_BIO_WriteHandle * bio
Handle for buffered writing.
enum GNUNET_GenericReturnValue GNUNET_BIO_write(struct GNUNET_BIO_WriteHandle *h, const char *what, const void *buffer, size_t n)
Write a buffer to a handle.
Definition: bio.c:753
void GNUNET_SERVICE_client_continue(struct GNUNET_SERVICE_Client *c)
Continue receiving further messages from the given client.
Definition: service.c:2249
Header for all communications.
uint16_t size
The length of the struct (in bytes, including the length field itself), in big-endian format.
Handle to a client that is connected to a service.
Definition: service.c:252

References bio, GNUNET_BIO_write(), GNUNET_SERVICE_client_continue(), msg, and GNUNET_MessageHeader::size.

Here is the call graph for this function:

◆ shutdown_task()

static void shutdown_task ( void *  cls)
static

Task to clean up and shutdown nicely.

Parameters
clsNULL

Definition at line 101 of file gnunet-service-testbed-logger.c.

102 {
104  if (0 != nconn)
105  {
106  /* Delay shutdown if there are active connections */
108  NULL);
109  return;
110  }
112  GNUNET_BIO_write_close (bio, NULL));
113 }
static unsigned int nconn
The number of connections we have.
static int in_shutdown
Are we shutting down?
static void shutdown_task(void *cls)
Task to clean up and shutdown nicely.
enum GNUNET_GenericReturnValue GNUNET_BIO_write_close(struct GNUNET_BIO_WriteHandle *h, char **emsg)
Close an IO handle.
Definition: bio.c:557
@ GNUNET_YES
#define GNUNET_break(cond)
Use this for internal assertion violations that are not fatal (can be handled) but should not occur.
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_shutdown(GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run on shutdown, that is when a CTRL-C signal is received,...
Definition: scheduler.c:1334

References bio, GNUNET_BIO_write_close(), GNUNET_break, GNUNET_OK, GNUNET_SCHEDULER_add_shutdown(), GNUNET_YES, in_shutdown, and nconn.

Referenced by logger_run().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ client_connect_cb()

static void* client_connect_cb ( void *  cls,
struct GNUNET_SERVICE_Client c,
struct GNUNET_MQ_Handle mq 
)
static

Callback called when a client connects to the service.

Parameters
clsclosure for the service
cthe new client that connected to the service
mqthe message queue used to send messages to the client
Returns
c

Definition at line 125 of file gnunet-service-testbed-logger.c.

128 {
129  /* FIXME: is this really what we want here? */
131  nconn++;
132  return c;
133 }
void GNUNET_SERVICE_client_persist(struct GNUNET_SERVICE_Client *c)
Set the persist option on this client.
Definition: service.c:2430

References GNUNET_SERVICE_client_persist(), and nconn.

Here is the call graph for this function:

◆ client_disconnect_cb()

static void client_disconnect_cb ( void *  cls,
struct GNUNET_SERVICE_Client c,
void *  internal_cls 
)
static

Callback called when a client disconnected from the service.

Parameters
clsclosure for the service
cthe client that disconnected
internal_clsshould be equal to c

Definition at line 144 of file gnunet-service-testbed-logger.c.

147 {
148  nconn--;
149  if (GNUNET_YES == in_shutdown)
151  GNUNET_assert (c == internal_cls);
152 }
#define GNUNET_assert(cond)
Use this for fatal errors that cannot be handled.
void GNUNET_SCHEDULER_shutdown(void)
Request the shutdown of a scheduler.
Definition: scheduler.c:562

References GNUNET_assert, GNUNET_SCHEDULER_shutdown(), GNUNET_YES, in_shutdown, and nconn.

Here is the call graph for this function:

◆ logger_run()

static void logger_run ( void *  cls,
const struct GNUNET_CONFIGURATION_Handle cfg,
struct GNUNET_SERVICE_Handle service 
)
static

Testbed setup.

Parameters
clsclosure
cfgconfiguration to use
servicethe initialized service

Definition at line 163 of file gnunet-service-testbed-logger.c.

166 {
167  char *dir;
168  char *fn;
169  char *hname;
170  size_t hname_len;
171  pid_t pid;
172 
173  if (GNUNET_OK !=
175  "TESTBED-LOGGER",
176  "DIR",
177  &dir))
178  {
180  "TESTBED-LOGGER",
181  "DIR");
183  return;
184  }
185  pid = getpid ();
186  hname_len = GNUNET_OS_get_hostname_max_length ();
187  hname = GNUNET_malloc (hname_len);
188  if (0 != gethostname (hname,
189  hname_len))
190  {
192  "Cannot get hostname. Exiting\n");
193  GNUNET_free (hname);
194  GNUNET_free (dir);
196  return;
197  }
198  GNUNET_asprintf (&fn,
199  "%s/%.*s_%jd.dat",
200  dir,
201  (int) hname_len,
202  hname,
203  (intmax_t) pid);
204  GNUNET_free (hname);
205  GNUNET_free (dir);
206  if (NULL == (bio = GNUNET_BIO_write_open_file (fn)))
207  {
208  GNUNET_free (fn);
210  return;
211  }
212  GNUNET_free (fn);
214  NULL);
215  LOG_DEBUG ("TESTBED-LOGGER startup complete\n");
216 }
static const struct GNUNET_CONFIGURATION_Handle * cfg
Configuration we are using.
Definition: gnunet-abd.c:36
static char * dir
Set to the directory where runtime files are stored.
Definition: gnunet-arm.c:89
#define LOG(type,...)
Generic logging shorthand.
#define LOG_DEBUG(...)
Debug logging shorthand.
static struct GNUNET_PeerIdentity pid
Identity of the peer we transmit to / connect to.
struct GNUNET_BIO_WriteHandle * GNUNET_BIO_write_open_file(const char *fn)
Open a file for writing.
Definition: bio.c:509
enum GNUNET_GenericReturnValue GNUNET_CONFIGURATION_get_value_filename(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *section, const char *option, char **value)
Get a configuration value that should be the name of a file or directory.
void GNUNET_log_config_missing(enum GNUNET_ErrorType kind, const char *section, const char *option)
Log error message about missing configuration option.
@ GNUNET_ERROR_TYPE_ERROR
int int GNUNET_asprintf(char **buf, const char *format,...) __attribute__((format(printf
Like asprintf, just portable.
#define GNUNET_malloc(size)
Wrapper around malloc.
#define GNUNET_free(ptr)
Wrapper around free.
#define GNUNET_OS_get_hostname_max_length()
Get maximum string length returned by gethostname()

References bio, cfg, dir, GNUNET_asprintf(), GNUNET_BIO_write_open_file(), GNUNET_CONFIGURATION_get_value_filename(), GNUNET_ERROR_TYPE_ERROR, GNUNET_free, GNUNET_log_config_missing(), GNUNET_malloc, GNUNET_OK, GNUNET_OS_get_hostname_max_length, GNUNET_SCHEDULER_add_shutdown(), GNUNET_SCHEDULER_shutdown(), LOG, LOG_DEBUG, pid, and shutdown_task().

Here is the call graph for this function:

◆ GNUNET_SERVICE_MAIN()

GNUNET_SERVICE_MAIN ( "testbed-logger"  ,
GNUNET_SERVICE_OPTION_NONE  ,
logger_run,
client_connect_cb,
client_disconnect_cb,
NULL  ,
GNUNET_MQ_hd_var_size(log_msg, GNUNET_MESSAGE_TYPE_TESTBED_LOGGER_MSG, struct GNUNET_MessageHeader, NULL)  ,
GNUNET_MQ_handler_end()   
)

Define "main" method using service macro.

Variable Documentation

◆ bio

Handle for buffered writing.

Definition at line 45 of file gnunet-service-testbed-logger.c.

Referenced by handle_log_msg(), logger_run(), and shutdown_task().

◆ nconn

unsigned int nconn
static

The number of connections we have.

Definition at line 50 of file gnunet-service-testbed-logger.c.

Referenced by client_connect_cb(), client_disconnect_cb(), and shutdown_task().

◆ in_shutdown

int in_shutdown
static

Are we shutting down?

Definition at line 55 of file gnunet-service-testbed-logger.c.

Referenced by client_disconnect_cb(), and shutdown_task().