2006-06-13 21:34:36 +02:00
|
|
|
#ifndef _PLUGINS_H_
|
|
|
|
#define _PLUGINS_H_
|
|
|
|
|
2007-03-31 23:21:31 +02:00
|
|
|
#include <time.h>
|
2006-06-13 21:34:36 +02:00
|
|
|
#include "list.h"
|
|
|
|
|
|
|
|
struct sammler_plugin {
|
|
|
|
struct list_head list;
|
2007-04-01 15:23:09 +02:00
|
|
|
void *dlhandle;
|
2007-03-31 22:31:07 +02:00
|
|
|
const char *name;
|
2007-03-31 23:21:31 +02:00
|
|
|
|
|
|
|
/* timing */
|
2006-09-30 17:10:32 +02:00
|
|
|
unsigned int interval;
|
2007-03-31 23:21:31 +02:00
|
|
|
time_t lastprobe;
|
|
|
|
|
2007-04-01 15:23:09 +02:00
|
|
|
/* flags */
|
|
|
|
int flags;
|
2007-03-31 23:21:31 +02:00
|
|
|
|
2006-10-07 20:37:30 +02:00
|
|
|
int (*init) (void);
|
|
|
|
int (*fini) (void);
|
|
|
|
int (*probe) (void);
|
2007-03-31 22:31:07 +02:00
|
|
|
const char * (*get_ds) (int ds_id);
|
2006-06-13 21:34:36 +02:00
|
|
|
};
|
|
|
|
|
2007-04-01 00:17:50 +02:00
|
|
|
int plugin_init(void);
|
2007-04-01 15:45:31 +02:00
|
|
|
int plugin_close(void);
|
|
|
|
|
2007-03-31 22:31:07 +02:00
|
|
|
struct sammler_plugin * plugin_lookup(const char *name);
|
2006-06-13 21:34:36 +02:00
|
|
|
|
|
|
|
#endif /* _PLUGINS_H_ */
|