~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/ascii/ascii.cc

  • Committer: Padraig O'Sullivan
  • Date: 2009-09-13 00:53:34 UTC
  • mto: (1126.9.2 captain-20090915-01)
  • mto: This revision was merged to the branch mainline in revision 1133.
  • Revision ID: osullivan.padraig@gmail.com-20090913005334-6wio2sbjugskfbm3
Added calls to the connection start/end dtrace probes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#include "config.h"
 
20
#include <drizzled/server_includes.h>
21
21
#include <drizzled/function/math/int.h>
22
22
#include <drizzled/plugin/function.h>
23
23
 
68
68
 
69
69
plugin::Create_function<AsciiFunction> *asciiudf= NULL;
70
70
 
71
 
static int initialize(plugin::Context &context)
 
71
static int initialize(plugin::Registry &registry)
72
72
{
73
73
  asciiudf= new plugin::Create_function<AsciiFunction>("ascii");
74
 
  context.add(asciiudf);
75
 
  return 0;
76
 
}
77
 
 
78
 
DRIZZLE_DECLARE_PLUGIN
79
 
{
80
 
  DRIZZLE_VERSION_ID,
 
74
  registry.function.add(asciiudf);
 
75
  return 0;
 
76
}
 
77
 
 
78
static int finalize(plugin::Registry &registry)
 
79
{
 
80
  registry.function.remove(asciiudf);
 
81
  delete asciiudf;
 
82
  return 0;
 
83
}
 
84
 
 
85
drizzle_declare_plugin(ascii)
 
86
{
81
87
  "ascii",
82
88
  "1.0",
83
89
  "Devananda van der Veen",
84
90
  "Return the ASCII value of a character",
85
91
  PLUGIN_LICENSE_GPL,
86
92
  initialize, /* Plugin Init */
 
93
  finalize,   /* Plugin Deinit */
 
94
  NULL,   /* status variables */
87
95
  NULL,   /* system variables */
88
96
  NULL    /* config options */
89
97
}
90
 
DRIZZLE_DECLARE_PLUGIN_END;
 
98
drizzle_declare_plugin_end;