1
/* Copyright (C) 2010 Brian Aker
3
This program is free software; you can redistribute it and/or modify
4
it under the terms of the GNU General Public License as published by
5
the Free Software Foundation; version 2 of the License.
7
This program is distributed in the hope that it will be useful,
8
but WITHOUT ANY WARRANTY; without even the implied warranty of
9
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
GNU General Public License for more details.
12
You should have received a copy of the GNU General Public License
13
along with this program; if not, write to the Free Software
14
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
19
#include "plugin/archive/archive_engine.h"
22
using namespace drizzled;
24
static ArchiveEngine *archive_engine= NULL;
26
static bool archive_use_aio= false;
28
/* Used by the engie to determine the state of the archive AIO state */
29
bool archive_aio_state(void);
31
bool archive_aio_state(void)
33
return archive_use_aio;
36
static int init(drizzled::module::Context &context)
39
archive_engine= new ArchiveEngine();
40
context.add(archive_engine);
46
static DRIZZLE_SYSVAR_BOOL(aio, archive_use_aio,
48
"Whether or not to use asynchronous IO.",
51
static drizzle_sys_var* archive_system_variables[]= {
56
DRIZZLE_DECLARE_PLUGIN
61
"Brian Aker, MySQL AB",
62
"Archive storage engine",
64
init, /* Plugin Init */
65
archive_system_variables, /* system variables */
66
NULL /* config options */
68
DRIZZLE_DECLARE_PLUGIN_END;