~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/function.cc

  • Committer: Monty Taylor
  • Date: 2010-08-12 20:27:32 UTC
  • mto: (1720.1.5 build)
  • mto: This revision was merged to the branch mainline in revision 1722.
  • Revision ID: mordred@inaugust.com-20100812202732-9kzchbkvkyki4n3u
Merged libdrizzle directly into tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 */
20
20
 
21
21
/* This implements 'user defined functions' */
22
 
#include <config.h>
 
22
#include "config.h"
23
23
 
24
24
#include <boost/unordered_map.hpp>
25
25
 
26
26
#include <drizzled/gettext.h>
27
 
#include <drizzled/plugin/function.h>
28
 
#include <drizzled/function_container.h>
29
 
 
30
 
#include <drizzled/util/string.h>
 
27
#include "drizzled/plugin/function.h"
 
28
 
 
29
#include "drizzled/util/string.h"
 
30
 
 
31
using namespace std;
31
32
 
32
33
namespace drizzled
33
34
{
34
35
 
35
 
static plugin::Function::UdfMap udf_registry;
36
 
 
37
 
const plugin::Function::UdfMap &plugin::Function::getMap()
38
 
{
39
 
  return udf_registry;
40
 
}
 
36
typedef boost::unordered_map<string, const plugin::Function *, util::insensitive_hash, util::insensitive_equal_to> UdfMap;
 
37
static UdfMap udf_registry;
41
38
 
42
39
bool plugin::Function::addPlugin(const plugin::Function *udf)
43
40
{
44
 
  if (FunctionContainer::getMap().find(udf->getName()) != FunctionContainer::getMap().end())
45
 
  {
46
 
    errmsg_printf(error::ERROR,
47
 
                  _("A function named %s already exists!\n"),
48
 
                  udf->getName().c_str());
49
 
    return true;
50
 
  }
51
 
 
52
41
  if (udf_registry.find(udf->getName()) != udf_registry.end())
53
42
  {
54
 
    errmsg_printf(error::ERROR,
 
43
    errmsg_printf(ERRMSG_LVL_ERROR,
55
44
                  _("A function named %s already exists!\n"),
56
45
                  udf->getName().c_str());
57
46
    return true;
58
47
  }
59
 
 
60
 
  std::pair<UdfMap::iterator, bool> ret=
 
48
  pair<UdfMap::iterator, bool> ret=
61
49
    udf_registry.insert(make_pair(udf->getName(), udf));
62
50
  if (ret.second == false)
63
51
  {
64
 
    errmsg_printf(error::ERROR,
 
52
    errmsg_printf(ERRMSG_LVL_ERROR,
65
53
                  _("Could not add Function!\n"));
66
54
    return true;
67
55
  }
68
 
 
69
56
  return false;
70
57
}
71
58