~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/gearman_udf/function_map.cc

  • Committer: Jay Pipes
  • Date: 2009-02-21 16:00:06 UTC
  • mto: (907.1.1 trunk-with-temporal)
  • mto: This revision was merged to the branch mainline in revision 908.
  • Revision ID: jpipes@serialcoder-20090221160006-vnk3wt4qbcz62eru
Removes the TIME column type and related time functions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 2009 Sun Microsystems
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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
15
 
 
16
 
#include "function_map.h"
17
 
#include <string.h>
18
 
#include <stdlib.h>
19
 
 
20
 
using namespace std;
21
 
 
22
 
/* Constructor and destructor happen during module dlopen/dlclose. */
23
 
static GearmanFunctionMap _functionMap;
24
 
 
25
 
GearmanFunctionMap& GetFunctionMap(void)
26
 
{
27
 
  return _functionMap;
28
 
}
29
 
 
30
 
GearmanFunctionMap::GearmanFunctionMap()
31
 
{
32
 
  (void) pthread_mutex_init(&lock, NULL);
33
 
}
34
 
 
35
 
GearmanFunctionMap::~GearmanFunctionMap()
36
 
{
37
 
  map<string, gearman_client_st>::iterator x;
38
 
 
39
 
  for (x= functionMap.begin(); x != functionMap.end(); x++)
40
 
    gearman_client_free(&((*x).second));
41
 
 
42
 
  (void) pthread_mutex_destroy(&lock);
43
 
}
44
 
 
45
 
bool GearmanFunctionMap::add(string function, string servers)
46
 
{
47
 
  map<string, gearman_client_st>::iterator x;
48
 
  gearman_return_t ret;
49
 
 
50
 
  pthread_mutex_lock(&lock);
51
 
 
52
 
  x= functionMap.find(function);
53
 
  if (x == functionMap.end())
54
 
  {
55
 
    if (gearman_client_create(&(functionMap[function])) == NULL)
56
 
    {
57
 
      pthread_mutex_unlock(&lock);
58
 
      return false;
59
 
    }
60
 
  }
61
 
 
62
 
  gearman_client_remove_servers(&(functionMap[function]));
63
 
  ret= gearman_client_add_servers(&(functionMap[function]), servers.c_str());
64
 
  pthread_mutex_unlock(&lock);
65
 
  if (ret != GEARMAN_SUCCESS)
66
 
    return false;
67
 
 
68
 
  return true;
69
 
}
70
 
 
71
 
bool GearmanFunctionMap::get(string function, gearman_client_st *client)
72
 
{
73
 
  map<string, gearman_client_st>::iterator x;
74
 
 
75
 
  pthread_mutex_lock(&lock);
76
 
 
77
 
  x= functionMap.find(function);
78
 
  if (x == functionMap.end())
79
 
  {
80
 
    x= functionMap.find(string(""));
81
 
    if (x == functionMap.end())
82
 
    {
83
 
      pthread_mutex_unlock(&lock);
84
 
      return false;
85
 
    }
86
 
  }
87
 
 
88
 
  /* Clone the object, the list of host:port pairs get cloned with it. */
89
 
  if (gearman_client_clone(client, &((*x).second)) == NULL)
90
 
  {
91
 
    pthread_mutex_unlock(&lock);
92
 
    return false;
93
 
  }
94
 
 
95
 
  pthread_mutex_unlock(&lock);
96
 
  return true;
97
 
}