Convert lots of fprintf(stderr, ...) to glibtop_debug*().

This commit is contained in:
Benoit Dejean
2015-06-21 22:39:11 +02:00
parent 887092a05d
commit 172f0a50ba
10 changed files with 22 additions and 65 deletions

View File

@@ -45,7 +45,7 @@ glibtop_call_l (glibtop *server, unsigned command, size_t send_size,
#ifdef LIBGTOP_ENABLE_DEBUG
g_assert(command >= GLIBTOP_CMND_QUIT && command < GLIBTOP_MAX_CMND);
switch (command) {
#define DEBUG_CALL(CMD) case (CMD): glibtop_warn_r(server, "CALL: command %s sending %lu bytes", #CMD, (unsigned long)send_size); break
#define DEBUG_CALL(CMD) case (CMD): glibtop_debug("CALL: command %s sending %lu bytes", #CMD, (unsigned long)send_size); break
DEBUG_CALL(GLIBTOP_CMND_QUIT);
DEBUG_CALL(GLIBTOP_CMND_SYSDEPS);
DEBUG_CALL(GLIBTOP_CMND_CPU);
@@ -91,10 +91,8 @@ glibtop_call_l (glibtop *server, unsigned command, size_t send_size,
glibtop_read_l (server, sizeof (glibtop_response), &response);
#ifdef LIBGTOP_ENABLE_DEBUG
fprintf (stderr, "RESPONSE: offset=%lu - data_size=%lu\n",
glibtop_debug ("RESPONSE: offset=%lu - data_size=%lu",
response.offset, response.data_size);
#endif
if (recv_buf)
memcpy (recv_buf, ((char *) &response) + response.offset,

View File

@@ -47,56 +47,44 @@ glibtop_open_l (glibtop *server, const char *program_name,
server->error_method = GLIBTOP_ERROR_METHOD_DEFAULT;
#ifdef LIBGTOP_ENABLE_DEBUG
fprintf (stderr, "SIZEOF: %u - %u - %u - %u - %u - %u\n",
glibtop_debug ("SIZEOF: %u - %u - %u - %u - %u - %u",
sizeof (glibtop_command), sizeof (glibtop_response),
sizeof (glibtop_mountentry), sizeof (glibtop_union),
sizeof (glibtop_sysdeps), sizeof (glibtop_response_union));
#endif
switch (server->method) {
case GLIBTOP_METHOD_DIRECT:
server->features = 0;
break;
case GLIBTOP_METHOD_INET:
#ifdef LIBGTOP_ENABLE_DEBUG
fprintf (stderr, "Connecting to '%s' port %ld.\n",
glibtop_debug ("Connecting to '%s' port %ld.",
server->server_host, server->server_port);
#endif
connect_type = glibtop_make_connection
(server->server_host, server->server_port,
&server->socket);
#ifdef LIBGTOP_ENABLE_DEBUG
fprintf (stderr, "Connect Type is %d.\n", connect_type);
#endif
glibtop_debug ("Connect Type is %d.", connect_type);
server->flags |= _GLIBTOP_INIT_STATE_SERVER;
server->features = -1;
break;
case GLIBTOP_METHOD_UNIX:
#ifdef LIBGTOP_ENABLE_DEBUG
fprintf (stderr, "Connecting to Unix Domain Socket.\n");
#endif
glibtop_debug ("Connecting to Unix Domain Socket.");
connect_type = glibtop_make_connection
("unix", 0, &server->socket);
#ifdef LIBGTOP_ENABLE_DEBUG
fprintf (stderr, "Connect Type is %d.\n", connect_type);
#endif
glibtop_debug ("Connect Type is %d.", connect_type);
server->flags |= _GLIBTOP_INIT_STATE_SERVER;
server->features = -1;
break;
case GLIBTOP_METHOD_PIPE:
#ifdef LIBGTOP_ENABLE_DEBUG
fprintf (stderr, "Opening pipe to server (%s).\n",
glibtop_debug ("Opening pipe to server (%s).",
server->server_command);
#endif
if (pipe (server->input) || pipe (server->output))
glibtop_error_io_r (server, "cannot make a pipe");
@@ -165,18 +153,14 @@ glibtop_open_l (glibtop *server, const char *program_name,
memcpy (&server->sysdeps, &sysdeps, sizeof (glibtop_sysdeps));
#ifdef LIBGTOP_ENABLE_DEBUG
fprintf (stderr, "Server features are %lu.\n",
glibtop_debug ("Server features are %lu.",
server->features);
#endif
}
/* In any case, we call the open functions of our own sysdeps
* directory. */
#ifdef LIBGTOP_ENABLE_DEBUG
fprintf (stderr, "Calling sysdeps open function.\n");
#endif
glibtop_debug ("Calling sysdeps open function.");
glibtop_init_s (&server, features, flags);
}

View File

@@ -33,9 +33,7 @@ glibtop_read_l (glibtop *server, size_t size, void *buf)
int fd;
glibtop_init_r (&server, 0, 0);
#ifdef LIBGTOP_ENABLE_DEBUG
glibtop_warn_r(server, "LIBRARY: really reading %d bytes.\n", (int)size);
#endif
glibtop_debug("LIBRARY: really reading %d bytes.", (int)size);
fd = server->socket ? server->socket : server->input[0];

View File

@@ -36,10 +36,8 @@ glibtop_read_data_l (glibtop *server)
glibtop_init_r (&server, 0, 0);
#ifdef LIBGTOP_ENABLE_DEBUG
fprintf (stderr, "LIBRARY: reading %lu data bytes.\n",
glibtop_debug ("LIBRARY: reading %lu data bytes.",
(unsigned long) sizeof (size_t));
#endif
if (server->socket) {
ret = recv (server->socket, &size, sizeof (size_t), 0);
@@ -50,10 +48,8 @@ glibtop_read_data_l (glibtop *server)
if (ret < 0)
glibtop_error_io_r (server, _("read data size"));
#ifdef LIBGTOP_ENABLE_DEBUG
fprintf (stderr, "LIBRARY: really reading %lu data bytes (ret = %d).\n",
glibtop_debug ("LIBRARY: really reading %lu data bytes (ret = %d).",
(unsigned long) size, ret);
#endif
if (!size) return NULL;

View File

@@ -37,9 +37,7 @@ glibtop_write_l (glibtop *server, size_t size, void *buf)
if (size == 0) return;
#ifdef LIBGTOP_ENABLE_DEBUG
fprintf (stderr, "LIBRARY: really writing %d bytes.\n", (int)size);
#endif
glibtop_debug("LIBRARY: really writing %d bytes.", (int)size);
fd = server->socket ? server->socket : server->output[1];