summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8897ce7)
raw | patch | inline | side by side (parent: 8897ce7)
author | Sebastian Harl <sh@tokkee.org> | |
Tue, 13 Nov 2007 22:59:25 +0000 (23:59 +0100) | ||
committer | Florian Forster <octo@huhu.verplant.org> | |
Wed, 14 Nov 2007 10:37:22 +0000 (11:37 +0100) |
This patch maps each C thread, which accesses the perl plugin, to an
interpreter based Perl thread. The implementation has been inspired by Perl's
ithreads introduced in version 5.6.0 and should be compatible (as in: can be
used side-by-side) with it. You can use threads::shared to share data
structures between threads of either implementation.
Signed-off-by: Sebastian Harl <sh@tokkee.org>
interpreter based Perl thread. The implementation has been inspired by Perl's
ithreads introduced in version 5.6.0 and should be compatible (as in: can be
used side-by-side) with it. You can use threads::shared to share data
structures between threads of either implementation.
Signed-off-by: Sebastian Harl <sh@tokkee.org>
src/perl.c | patch | blob | history |
diff --git a/src/perl.c b/src/perl.c
index ead6f4b0666c536a8c865049c83132e654d00e33..889ab561f2a3b73f4179d5c53261adae79458ac1 100644 (file)
--- a/src/perl.c
+++ b/src/perl.c
#include "plugin.h"
#include "common.h"
+#include <pthread.h>
+
#if !defined(USE_ITHREADS)
# error "Perl does not support ithreads!"
#endif /* !defined(USE_ITHREADS) */
static XS (Collectd_plugin_dispatch_values);
static XS (Collectd_plugin_log);
+/*
+ * private data types
+ */
+
+typedef struct c_ithread_s {
+ /* the thread's Perl interpreter */
+ PerlInterpreter *interp;
+
+ /* double linked list of threads */
+ struct c_ithread_s *prev;
+ struct c_ithread_s *next;
+} c_ithread_t;
+
+typedef struct {
+ c_ithread_t *head;
+ c_ithread_t *tail;
+
+ pthread_mutex_t mutex;
+} c_ithread_list_t;
+
/*
* private variables
*/
-static PerlInterpreter *perl = NULL;
+/* if perl_threads != NULL perl_threads->head must
+ * point to the "base" thread */
+static c_ithread_list_t *perl_threads = NULL;
-static int perl_argc = 0;
+static int perl_argc = 0;
static char **perl_argv = NULL;
static char base_name[DATA_MAX_NAME_LEN] = "";
XSRETURN_YES;
} /* static XS (Collectd_plugin_log) */
+/*
+ * collectd's perl interpreter based thread implementation.
+ *
+ * This has been inspired by Perl's ithreads introduced in version 5.6.0.
+ */
+
+/* must be called with perl_threads->mutex locked */
+static c_ithread_t *c_ithread_create (PerlInterpreter *base)
+{
+ c_ithread_t *t = NULL;
+
+ assert (NULL != perl_threads);
+
+ t = (c_ithread_t *)smalloc (sizeof (c_ithread_t));
+ memset (t, 0, sizeof (c_ithread_t));
+
+ t->interp = (NULL == base)
+ ? NULL
+ : perl_clone (base, CLONEf_KEEP_PTR_TABLE);
+
+ t->next = NULL;
+
+ if (NULL == perl_threads->tail) {
+ perl_threads->head = t;
+ t->prev = NULL;
+ }
+ else {
+ perl_threads->tail->next = t;
+ t->prev = perl_threads->tail;
+ }
+
+ perl_threads->tail = t;
+ return t;
+} /* static c_ithread_t *c_ithread_create (PerlInterpreter *) */
+
/*
* Interface to collectd.
*/
static int perl_init (void)
{
- dTHXa (NULL);
+ dTHX;
- if (NULL == perl)
+ if (NULL == perl_threads)
return 0;
- PERL_SET_CONTEXT (perl);
- aTHX = perl;
+ if (NULL == aTHX) {
+ c_ithread_t *t = NULL;
+
+ pthread_mutex_lock (&perl_threads->mutex);
+ t = c_ithread_create (perl_threads->head->interp);
+ pthread_mutex_unlock (&perl_threads->mutex);
+ aTHX = t->interp;
+ }
return pplugin_call_all (aTHX_ PLUGIN_INIT);
} /* static int perl_init (void) */
static int perl_read (void)
{
- dTHXa (NULL);
+ dTHX;
- if (NULL == perl)
+ if (NULL == perl_threads)
return 0;
- PERL_SET_CONTEXT (perl);
- aTHX = perl;
+ if (NULL == aTHX) {
+ c_ithread_t *t = NULL;
+
+ pthread_mutex_lock (&perl_threads->mutex);
+ t = c_ithread_create (perl_threads->head->interp);
+ pthread_mutex_unlock (&perl_threads->mutex);
+ aTHX = t->interp;
+ }
return pplugin_call_all (aTHX_ PLUGIN_READ);
} /* static int perl_read (void) */
static int perl_write (const data_set_t *ds, const value_list_t *vl)
{
- dTHXa (NULL);
+ dTHX;
- if (NULL == perl)
+ if (NULL == perl_threads)
return 0;
- PERL_SET_CONTEXT (perl);
- aTHX = perl;
+ if (NULL == aTHX) {
+ c_ithread_t *t = NULL;
+
+ pthread_mutex_lock (&perl_threads->mutex);
+ t = c_ithread_create (perl_threads->head->interp);
+ pthread_mutex_unlock (&perl_threads->mutex);
+ aTHX = t->interp;
+ }
return pplugin_call_all (aTHX_ PLUGIN_WRITE, ds, vl);
} /* static int perl_write (const data_set_t *, const value_list_t *) */
static void perl_log (int level, const char *msg)
{
- dTHXa (NULL);
+ dTHX;
- if (NULL == perl)
+ if (NULL == perl_threads)
return;
- PERL_SET_CONTEXT (perl);
- aTHX = perl;
+ if (NULL == aTHX) {
+ c_ithread_t *t = NULL;
+
+ pthread_mutex_lock (&perl_threads->mutex);
+ t = c_ithread_create (perl_threads->head->interp);
+ pthread_mutex_unlock (&perl_threads->mutex);
+
+ aTHX = t->interp;
+ }
pplugin_call_all (aTHX_ PLUGIN_LOG, level, msg);
return;
static int perl_shutdown (void)
{
+ c_ithread_t *t = NULL;
+
int ret = 0;
- dTHXa (NULL);
+ dTHX;
plugin_unregister_complex_config ("perl");
- if (NULL == perl)
+ if (NULL == perl_threads)
return 0;
- PERL_SET_CONTEXT (perl);
- aTHX = perl;
+ if (NULL == aTHX) {
+ c_ithread_t *t = NULL;
+
+ pthread_mutex_lock (&perl_threads->mutex);
+ t = c_ithread_create (perl_threads->head->interp);
+ pthread_mutex_unlock (&perl_threads->mutex);
+
+ aTHX = t->interp;
+ }
plugin_unregister_log ("perl");
plugin_unregister_init ("perl");
ret = pplugin_call_all (aTHX_ PLUGIN_SHUTDOWN);
+ pthread_mutex_lock (&perl_threads->mutex);
+ t = perl_threads->tail;
+
+ while (NULL != t) {
+ aTHX = t->interp;
+ PERL_SET_CONTEXT (aTHX);
+
#if COLLECT_DEBUG
- sv_report_used ();
+ sv_report_used ();
#endif /* COLLECT_DEBUG */
- perl_destruct (perl);
- perl_free (perl);
- perl = NULL;
+ perl_destruct (aTHX);
+ perl_free (aTHX);
+
+ t = t->prev;
+
+ sfree (t);
+ }
+
+ pthread_mutex_unlock (&perl_threads->mutex);
+
+ sfree (perl_threads);
PERL_SYS_TERM ();
{
dTHXa (NULL);
- if (NULL != perl)
+ if (NULL != perl_threads)
return 0;
log_info ("Initializing Perl interpreter...");
PERL_SYS_INIT3 (&argc, &argv, &environ);
- if (NULL == (perl = perl_alloc ())) {
+ perl_threads = (c_ithread_list_t *)smalloc (sizeof (c_ithread_list_t));
+ memset (perl_threads, 0, sizeof (c_ithread_list_t));
+
+ pthread_mutex_init (&perl_threads->mutex, NULL);
+ /* locking the mutex should not be necessary at this point
+ * but let's just do it for the sake of completeness */
+ pthread_mutex_lock (&perl_threads->mutex);
+
+ perl_threads->head = c_ithread_create (NULL);
+ perl_threads->tail = perl_threads->head;
+
+ if (NULL == (perl_threads->head->interp = perl_alloc ())) {
log_err ("module_register: Not enough memory.");
exit (3);
}
- aTHX = perl;
- perl_construct (perl);
+ aTHX = perl_threads->head->interp;
+ pthread_mutex_unlock (&perl_threads->mutex);
+
+ perl_construct (aTHX);
PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
- if (0 != perl_parse (perl, xs_init, argc, argv, NULL)) {
+ if (0 != perl_parse (aTHX_ xs_init, argc, argv, NULL)) {
log_err ("module_register: Unable to bootstrap Collectd.");
exit (1);
}
/* Set $0 to "collectd" because perl_parse() has to set it to "-e". */
sv_setpv (get_sv ("0", 0), "collectd");
- perl_run (perl);
+ perl_run (aTHX);
plugin_register_log ("perl", perl_log);
plugin_register_init ("perl", perl_init);
}
init_pi (perl_argc, perl_argv);
- aTHX = perl;
+ assert (NULL != perl_threads);
+ assert (NULL != perl_threads->head);
+
+ aTHX = perl_threads->head->interp;
log_debug ("perl_config: loading perl plugin \"%s\"", value);
load_module (PERL_LOADMOD_NOIMPORT,
{
int i = 0;
- dTHXa (NULL);
+ dTHX;
- PERL_SET_CONTEXT (perl);
- aTHX = perl;
+ /* dTHX does not get any valid values in case Perl
+ * has not been initialized */
+ if (NULL == perl_threads)
+ aTHX = NULL;
for (i = 0; i < ci->children_num; ++i) {
oconfig_item_t *c = ci->children + i;