~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/version/versionudf.cc

  • Committer: devananda
  • Date: 2009-07-05 15:17:11 UTC
  • mto: (1093.1.5 captain)
  • mto: This revision was merged to the branch mainline in revision 1095.
  • Revision ID: devananda.vdv@gmail.com-20090705151711-jk8ow07cec1f0n7u
refactored function/version into plugin/version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright (C) 2008 Sun Microsystems
 
5
 *
 
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.
 
9
 *
 
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.
 
14
 *
 
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
 
18
 */
 
19
 
 
20
#include <drizzled/server_includes.h>
 
21
#include <drizzled/function/str/strfunc.h>
 
22
#include <drizzled/function/create.h>
 
23
 
 
24
using namespace std;
 
25
 
 
26
class VersionFunction :public Item_str_func
 
27
{
 
28
public:
 
29
  String *val_str(String *str);
 
30
  VersionFunction() :Item_str_func() {}
 
31
  
 
32
  const char *func_name() const 
 
33
  { 
 
34
    return "version"; 
 
35
  }
 
36
  
 
37
  bool check_argument_count(int n)
 
38
  {
 
39
    return (n==0);
 
40
  }
 
41
 
 
42
  void fix_length_and_dec() {}
 
43
};
 
44
 
 
45
String *VersionFunction::val_str(String *str)
 
46
{
 
47
  str->set(STRING_WITH_LEN(VERSION),system_charset_info);
 
48
  return str;
 
49
}
 
50
 
 
51
Create_function<VersionFunction> versionudf(string("version"));
 
52
 
 
53
static int initialize(PluginRegistry &registry)
 
54
{
 
55
  registry.add(&versionudf);
 
56
  return 0;
 
57
}
 
58
 
 
59
static int finalize(PluginRegistry &registry)
 
60
{
 
61
   registry.remove(&versionudf);
 
62
   return 0;
 
63
}
 
64
 
 
65
drizzle_declare_plugin(version)
 
66
{
 
67
  "version",
 
68
  "1.0",
 
69
  "Devananda van der Veen",
 
70
  "Return the server version",
 
71
  PLUGIN_LICENSE_GPL,
 
72
  initialize, /* Plugin Init */
 
73
  finalize,   /* Plugin Deinit */
 
74
  NULL,   /* status variables */
 
75
  NULL,   /* system variables */
 
76
  NULL    /* config options */
 
77
}
 
78
drizzle_declare_plugin_end;