~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/archive/plugin.cc

  • Committer: Brian Aker
  • Date: 2010-02-10 18:04:24 UTC
  • mfrom: (1286.1.5 build)
  • Revision ID: brian@gaz-20100210180424-03ypoyifmlc2lgcp
Merge of Brian/Padraig

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 2010 Brian Aker
 
2
 
 
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.
 
6
 
 
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.
 
11
 
 
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 */
 
15
 
 
16
 
 
17
#include "config.h"
 
18
 
 
19
#include "plugin/archive/archive_engine.h"
 
20
 
 
21
using namespace std;
 
22
using namespace drizzled;
 
23
 
 
24
static ArchiveEngine *archive_engine= NULL;
 
25
 
 
26
static bool archive_use_aio= false;
 
27
 
 
28
/* Used by the engie to determine the state of the archive AIO state */
 
29
bool archive_aio_state(void);
 
30
 
 
31
bool archive_aio_state(void)
 
32
{
 
33
  return archive_use_aio;
 
34
}
 
35
 
 
36
static int init(drizzled::plugin::Registry &registry)
 
37
{
 
38
 
 
39
  archive_engine= new ArchiveEngine();
 
40
  registry.add(archive_engine);
 
41
 
 
42
  return false;
 
43
}
 
44
 
 
45
/*
 
46
  Release the archive Cursor.
 
47
 
 
48
  SYNOPSIS
 
49
    archive_db_done()
 
50
    void
 
51
 
 
52
  RETURN
 
53
    false       OK
 
54
*/
 
55
 
 
56
extern pthread_mutex_t archive_mutex;
 
57
 
 
58
static int done(drizzled::plugin::Registry &registry)
 
59
{
 
60
  registry.remove(archive_engine);
 
61
  delete archive_engine;
 
62
 
 
63
  pthread_mutex_destroy(&archive_mutex);
 
64
 
 
65
  return 0;
 
66
}
 
67
 
 
68
 
 
69
static DRIZZLE_SYSVAR_BOOL(aio, archive_use_aio,
 
70
  PLUGIN_VAR_NOCMDOPT,
 
71
  "Whether or not to use asynchronous IO.",
 
72
  NULL, NULL, true);
 
73
 
 
74
static drizzle_sys_var* archive_system_variables[]= {
 
75
  DRIZZLE_SYSVAR(aio),
 
76
  NULL
 
77
};
 
78
 
 
79
DRIZZLE_DECLARE_PLUGIN
 
80
{
 
81
  DRIZZLE_VERSION_ID,
 
82
  "ARCHIVE",
 
83
  "3.5",
 
84
  "Brian Aker, MySQL AB",
 
85
  "Archive storage engine",
 
86
  PLUGIN_LICENSE_GPL,
 
87
  init, /* Plugin Init */
 
88
  done, /* Plugin Deinit */
 
89
  NULL,                       /* status variables                */
 
90
  archive_system_variables,   /* system variables                */
 
91
  NULL                        /* config options                  */
 
92
}
 
93
DRIZZLE_DECLARE_PLUGIN_END;