~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/charlength/charlength.cc

  • Committer: Monty Taylor
  • Date: 2009-08-17 18:46:08 UTC
  • mto: (1182.1.1 staging)
  • mto: This revision was merged to the branch mainline in revision 1183.
  • Revision ID: mordred@inaugust.com-20090817184608-0b2emowpjr9m6le7
"Fixed" the deadlock test. I'd still like someone to look at what's going on here.

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
 
#include <drizzled/plugin/function.h>
 
22
#include <drizzled/function/create.h>
23
23
 
24
24
using namespace std;
25
 
using namespace drizzled;
26
25
 
27
26
class CharLengthFunction :public Item_int_func
28
27
{
63
62
  return (int64_t) res->numchars();
64
63
}
65
64
 
66
 
plugin::Create_function<CharLengthFunction> *charlengthudf= NULL;
67
 
plugin::Create_function<CharLengthFunction> *characterlengthudf= NULL;
 
65
Create_function<CharLengthFunction> charlengthudf(string("char_length"));
 
66
Create_function<CharLengthFunction> characterlengthudf(string("character_length"));
68
67
 
69
 
static int initialize(drizzled::plugin::Context &context)
 
68
static int initialize(PluginRegistry &registry)
70
69
{
71
 
  charlengthudf= new plugin::Create_function<CharLengthFunction>("char_length");
72
 
  characterlengthudf= new plugin::Create_function<CharLengthFunction>("character_length");
73
 
  context.add(charlengthudf);
74
 
  context.add(characterlengthudf);
 
70
  registry.add(&charlengthudf);
 
71
  registry.add(&characterlengthudf);
75
72
  return 0;
76
73
}
77
74
 
78
 
DRIZZLE_DECLARE_PLUGIN
79
 
{
80
 
  DRIZZLE_VERSION_ID,
 
75
static int finalize(PluginRegistry &registry)
 
76
{
 
77
   registry.remove(&charlengthudf);
 
78
   registry.remove(&characterlengthudf);
 
79
   return 0;
 
80
}
 
81
 
 
82
drizzle_declare_plugin(charlength)
 
83
{
81
84
  "charlength",
82
85
  "1.0",
83
86
  "Devananda van der Veen",
84
87
  "Return the number of characters in a string",
85
88
  PLUGIN_LICENSE_GPL,
86
89
  initialize, /* Plugin Init */
 
90
  finalize,   /* Plugin Deinit */
 
91
  NULL,   /* status variables */
87
92
  NULL,   /* system variables */
88
93
  NULL    /* config options */
89
94
}
90
 
DRIZZLE_DECLARE_PLUGIN_END;
 
95
drizzle_declare_plugin_end;