1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation; version 2 of the License.
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
15
* You should have received a copy of the GNU General Public License
16
* along with this program; if not, write to the Free Software
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
#include "drizzled/plugin/query_cache.h"
22
#include "drizzled/plugin/registry.h"
24
#include "drizzled/gettext.h"
35
vector<plugin::QueryCache *> all_query_cache;
37
/* Namespaces are here to prevent global symbol clashes with these classes */
39
class TryFetchAndSendIterate
40
: public unary_function<plugin::QueryCache *, bool>
43
bool is_transactional;
45
TryFetchAndSendIterate(Session *session_arg, bool is_transactional_arg) :
46
unary_function<plugin::QueryCache *, bool>(),
47
session(session_arg), is_transactional(is_transactional_arg) { }
49
inline result_type operator()(argument_type handler)
51
if (handler->tryFetchAndSend(session, is_transactional))
53
errmsg_printf(ERRMSG_LVL_ERROR,
54
_("qcache plugin '%s' try_fetch_and_send() failed"),
55
handler->getName().c_str());
63
: public unary_function<plugin::QueryCache *, bool>
66
bool is_transactional;
68
SetIterate(Session *session_arg, bool is_transactional_arg) :
69
unary_function<plugin::QueryCache *, bool>(),
70
session(session_arg), is_transactional(is_transactional_arg) { }
72
inline result_type operator()(argument_type handler)
75
if (handler->set(session, is_transactional))
77
errmsg_printf(ERRMSG_LVL_ERROR, _("qcache plugin '%s' set() failed"),
78
handler->getName().c_str());
85
class InvalidateTableIterate
86
: public unary_function<plugin::QueryCache *, bool>
89
bool is_transactional;
91
InvalidateTableIterate(Session *session_arg, bool is_transactional_arg) :
92
unary_function<plugin::QueryCache *, bool>(),
93
session(session_arg), is_transactional(is_transactional_arg) { }
95
inline result_type operator()(argument_type handler)
98
if (handler->invalidateTable(session, is_transactional))
100
errmsg_printf(ERRMSG_LVL_ERROR,
101
_("qcache plugin '%s' invalidateTable() failed"),
102
handler->getName().c_str());
110
class InvalidateDbIterate
111
: public unary_function<plugin::QueryCache *, bool>
115
bool is_transactional;
117
InvalidateDbIterate(Session *session_arg, const char *dbname_arg,
118
bool is_transactional_arg) :
119
unary_function<plugin::QueryCache *, bool>(),
120
session(session_arg), dbname(dbname_arg),
121
is_transactional(is_transactional_arg) { }
123
inline result_type operator()(argument_type handler)
125
if (handler->invalidateDb(session, dbname, is_transactional))
127
errmsg_printf(ERRMSG_LVL_ERROR,
128
_("qcache plugin '%s' invalidateDb() failed"),
129
handler->getName().c_str());
137
: public unary_function<plugin::QueryCache *, bool>
141
FlushIterate(Session *session_arg) :
142
unary_function<plugin::QueryCache *, bool>(), session(session_arg) { }
144
inline result_type operator()(argument_type handler)
146
if (handler->flush(session))
148
errmsg_printf(ERRMSG_LVL_ERROR, _("qcache plugin '%s' flush() failed"),
149
handler->getName().c_str());
156
bool plugin::QueryCache::addPlugin(plugin::QueryCache *handler)
158
all_query_cache.push_back(handler);
162
void plugin::QueryCache::removePlugin(plugin::QueryCache *handler)
164
all_query_cache.erase(find(all_query_cache.begin(), all_query_cache.end(),
169
bool plugin::QueryCache::tryFetchAndSendDo(Session *session,
172
/* Use find_if instead of foreach so that we can collect return codes */
173
vector<plugin::QueryCache *>::iterator iter=
174
find_if(all_query_cache.begin(), all_query_cache.end(),
175
TryFetchAndSendIterate(session, transactional));
176
/* If iter is == end() here, that means that all of the plugins returned
177
* false, which in this case means they all succeeded. Since we want to
178
* return false on success, we return the value of the two being !=
180
return iter != all_query_cache.end();
183
bool plugin::QueryCache::setDo(Session *session, bool transactional)
185
/* Use find_if instead of foreach so that we can collect return codes */
186
vector<plugin::QueryCache *>::iterator iter=
187
find_if(all_query_cache.begin(), all_query_cache.end(),
188
SetIterate(session, transactional));
189
/* If iter is == end() here, that means that all of the plugins returned
190
* false, which in this case means they all succeeded. Since we want to
191
* return false on success, we return the value of the two being !=
193
return iter != all_query_cache.end();
196
bool plugin::QueryCache::invalidateTableDo(Session *session,
199
/* Use find_if instead of foreach so that we can collect return codes */
200
vector<plugin::QueryCache *>::iterator iter=
201
find_if(all_query_cache.begin(), all_query_cache.end(),
202
InvalidateTableIterate(session, transactional));
203
/* If iter is == end() here, that means that all of the plugins returned
204
* false, which in this case means they all succeeded. Since we want to
205
* return false on success, we return the value of the two being !=
207
return iter != all_query_cache.end();
210
bool plugin::QueryCache::invalidateDbDo(Session *session, const char *dbname,
213
/* Use find_if instead of foreach so that we can collect return codes */
214
vector<plugin::QueryCache *>::iterator iter=
215
find_if(all_query_cache.begin(), all_query_cache.end(),
216
InvalidateDbIterate(session, dbname, transactional));
217
/* If iter is == end() here, that means that all of the plugins returned
218
* false, which in this case means they all succeeded. Since we want to
219
* return false on success, we return the value of the two being !=
221
return iter != all_query_cache.end();
224
bool plugin::QueryCache::flushDo(Session *session)
226
/* Use find_if instead of foreach so that we can collect return codes */
227
vector<plugin::QueryCache *>::iterator iter=
228
find_if(all_query_cache.begin(), all_query_cache.end(),
229
FlushIterate(session));
230
/* If iter is == end() here, that means that all of the plugins returned
231
* false, which in this case means they all succeeded. Since we want to
232
* return false on success, we return the value of the two being !=
234
return iter != all_query_cache.end();
237
} /* namespace drizzled */