summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 635bcdf)
raw | patch | inline | side by side (parent: 635bcdf)
author | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Fri, 21 Aug 2009 09:34:39 +0000 (11:34 +0200) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Fri, 21 Aug 2009 09:34:39 +0000 (11:34 +0200) |
src/http.c | patch | blob | history |
diff --git a/src/http.c b/src/http.c
index 802722010521679424ed7f8dd05882125d616a13..587e31437e5284bdfdf167b156740100ffdc1358 100644 (file)
--- a/src/http.c
+++ b/src/http.c
static char send_buffer[SEND_BUFFER_SIZE];
static size_t send_buffer_free;
static size_t send_buffer_fill;
+static time_t send_buffer_init_time;
static pthread_mutex_t send_lock = PTHREAD_MUTEX_INITIALIZER;
memset (send_buffer, 0, sizeof (send_buffer));
send_buffer_free = sizeof (send_buffer);
send_buffer_fill = 0;
+ send_buffer_init_time = time (NULL);
} /* }}} http_init_buffer */
static int http_send_buffer (char *buffer) /* {{{ */
return (status);
} /* }}} http_send_buffer */
-static int http_flush_buffer (void) /* {{{ */
+static int http_flush_nolock (int timeout) /* {{{ */
{
- int status = 0;
- DEBUG ("http plugin: flushing buffer:\n%s", send_buffer);
+ int status;
+
+ DEBUG ("http plugin: http_flush_nolock: timeout = %i; "
+ "send_buffer =\n %s", timeout, send_buffer);
+
+ if (timeout > 0)
+ {
+ time_t now;
+
+ now = time (NULL);
+ if ((send_buffer_init_time + timeout) > now)
+ return (0);
+ }
status = http_send_buffer (send_buffer);
http_init_buffer ();
return (status);
-} /* }}} http_flush_buffer */
+} /* }}} http_flush_nolock */
+
+static int http_flush (int timeout, /* {{{ */
+ const char *identifier __attribute__((unused)),
+ user_data_t *user_data __attribute__((unused)))
+{
+ int status;
+
+ pthread_mutex_lock (&send_lock);
+ status = http_flush_nolock (timeout);
+ pthread_mutex_unlock (&send_lock);
+
+ return (status);
+} /* }}} int http_flush */
static int http_write_command (const data_set_t *ds, const value_list_t *vl) /* {{{ */
{
/* Check if we have enough space for this command. */
if (command_len >= send_buffer_free)
{
- status = http_flush_buffer();
+ status = http_flush_nolock (/* timeout = */ -1);
if (status != 0)
{
pthread_mutex_unlock (&send_lock);
static int http_shutdown (void) /* {{{ */
{
- http_flush_buffer();
+ http_flush_nolock (/* timeout = */ -1);
curl_easy_cleanup(curl);
return (0);
}
plugin_register_config ("http", http_config,
config_keys, config_keys_num);
plugin_register_write ("http", http_write, /* user_data = */ NULL);
+ plugin_register_flush ("http", http_flush, /* user_data = */ NULL);
plugin_register_shutdown("http", http_shutdown);
} /* }}} void module_register */