17
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
#include <drizzled/plugin/logging.h>
20
#include <drizzled/server_includes.h>
21
#include <drizzled/logging.h>
22
22
#include <drizzled/gettext.h>
23
#include "drizzled/plugin/registry.h"
34
vector<plugin::Logging *> all_loggers;
37
bool plugin::Logging::addPlugin(plugin::Logging *handler)
40
all_loggers.push_back(handler);
44
void plugin::Logging::removePlugin(plugin::Logging *handler)
47
all_loggers.erase(find(all_loggers.begin(), all_loggers.end(), handler));
51
class PreIterate : public unary_function<plugin::Logging *, bool>
55
PreIterate(Session *session_arg) :
56
unary_function<plugin::Logging *, bool>(),
57
session(session_arg) {}
59
inline result_type operator()(argument_type handler)
61
if (handler->pre(session))
63
/* TRANSLATORS: The leading word "logging" is the name
64
of the plugin api, and so should not be translated. */
65
errmsg_printf(ERRMSG_LVL_ERROR,
66
_("logging '%s' pre() failed"),
67
handler->getName().c_str());
75
class PostIterate : public unary_function<plugin::Logging *, bool>
79
PostIterate(Session *session_arg) :
80
unary_function<plugin::Logging *, bool>(),
81
session(session_arg) {}
83
/* This gets called once for each loaded logging plugin */
84
inline result_type operator()(argument_type handler)
86
if (handler->post(session))
88
/* TRANSLATORS: The leading word "logging" is the name
89
of the plugin api, and so should not be translated. */
90
errmsg_printf(ERRMSG_LVL_ERROR,
91
_("logging '%s' post() failed"),
92
handler->getName().c_str());
99
class PostEndIterate : public unary_function<plugin::Logging *, bool>
103
PostEndIterate(Session *session_arg) :
104
unary_function<plugin::Logging *, bool>(),
105
session(session_arg) {}
107
/* This gets called once for each loaded logging plugin */
108
inline result_type operator()(argument_type handler)
110
if (handler->postEnd(session))
112
/* TRANSLATORS: The leading word "logging" is the name
113
of the plugin api, and so should not be translated. */
114
errmsg_printf(ERRMSG_LVL_ERROR,
115
_("logging '%s' postEnd() failed"),
116
handler->getName().c_str());
123
/* This is the Logging::preDo entry point.
124
This gets called by the rest of the Drizzle server code */
125
bool plugin::Logging::preDo(Session *session)
127
/* Use find_if instead of foreach so that we can collect return codes */
128
vector<plugin::Logging *>::iterator iter=
129
find_if(all_loggers.begin(), all_loggers.end(),
130
PreIterate(session));
131
/* If iter is == end() here, that means that all of the plugins returned
132
* false, which in this case means they all succeeded. Since we want to
133
* return false on success, we return the value of the two being !=
135
return iter != all_loggers.end();
138
/* This is the Logging::postDo entry point.
139
This gets called by the rest of the Drizzle server code */
140
bool plugin::Logging::postDo(Session *session)
142
/* Use find_if instead of foreach so that we can collect return codes */
143
vector<plugin::Logging *>::iterator iter=
144
find_if(all_loggers.begin(), all_loggers.end(),
145
PostIterate(session));
146
/* If iter is == end() here, that means that all of the plugins returned
147
* false, which in this case means they all succeeded. Since we want to
148
* return false on success, we return the value of the two being !=
150
return iter != all_loggers.end();
153
/* This gets called in the session destructor */
154
bool plugin::Logging::postEndDo(Session *session)
156
/* Use find_if instead of foreach so that we can collect return codes */
157
vector<plugin::Logging *>::iterator iter=
158
find_if(all_loggers.begin(), all_loggers.end(),
159
PostEndIterate(session));
160
/* If iter is == end() here, that means that all of the plugins returned
161
* false, which in this case means they all succeeded. Since we want to
162
* return false on success, we return the value of the two being !=
164
return iter != all_loggers.end();
167
} /* namespace drizzled */
24
int logging_initializer(st_plugin_int *plugin)
29
if (p == NULL) return 1;
30
memset(p, 0, sizeof(logging_t));
32
plugin->data= (void *)p;
34
if (plugin->plugin->init)
36
if (plugin->plugin->init((void *)p))
38
/* TRANSLATORS: The leading word "logging" is the name
39
of the plugin api, and so should not be translated. */
40
errmsg_printf(ERRMSG_LVL_ERROR, "logging plugin '%s' init() failed",
46
plugin->state= PLUGIN_IS_READY;
55
int logging_finalizer(st_plugin_int *plugin)
57
logging_t *p = (logging_t *) plugin->data;
59
if (plugin->plugin->deinit)
61
if (plugin->plugin->deinit((void *)p))
63
/* TRANSLATORS: The leading word "logging" is the name
64
of the plugin api, and so should not be translated. */
65
errmsg_printf(ERRMSG_LVL_ERROR, _("logging plugin '%s' deinit() failed"),
75
/* This gets called by plugin_foreach once for each loaded logging plugin */
76
static bool logging_pre_iterate (Session *session, plugin_ref plugin, void *)
78
logging_t *l= plugin_data(plugin, logging_t *);
80
/* call this loaded logging plugin's logging_pre function pointer */
81
if (l && l->logging_pre)
83
if (l->logging_pre(session))
85
/* TRANSLATORS: The leading word "logging" is the name
86
of the plugin api, and so should not be translated. */
87
errmsg_printf(ERRMSG_LVL_ERROR, _("logging plugin '%s' logging_pre() failed"),
88
(char *)plugin_name(plugin));
95
/* This is the logging_pre_do entry point.
96
This gets called by the rest of the Drizzle server code */
97
bool logging_pre_do (Session *session)
101
foreach_rv= plugin_foreach(session,
103
DRIZZLE_LOGGER_PLUGIN,
108
/* This gets called by plugin_foreach once for each loaded logging plugin */
109
static bool logging_post_iterate (Session *session, plugin_ref plugin, void *)
111
logging_t *l= plugin_data(plugin, logging_t *);
113
if (l && l->logging_post)
115
if (l->logging_post(session))
117
/* TRANSLATORS: The leading word "logging" is the name
118
of the plugin api, and so should not be translated. */
119
errmsg_printf(ERRMSG_LVL_ERROR, _("logging plugin '%s' logging_post() failed"),
120
(char *)plugin_name(plugin));
127
/* This is the logging_pre_do entry point.
128
This gets called by the rest of the Drizzle server code */
129
bool logging_post_do (Session *session)
133
foreach_rv= plugin_foreach(session,
134
logging_post_iterate,
135
DRIZZLE_LOGGER_PLUGIN,