~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/gearman_udf/gman_servers_set.cc

  • Committer: Brian Aker
  • Date: 2009-05-11 23:55:31 UTC
  • mfrom: (971.3.38 eday-dev)
  • Revision ID: brian@gaz-20090511235531-j6n8i97wg2tyfg51
Merge of Eric's work

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 "gman_servers_set.h"
 
17
#include "function_map.h"
 
18
 
 
19
using namespace std;
 
20
 
 
21
String *Item_func_gman_servers_set::val_str(String *str)
 
22
{
 
23
  String *servers;
 
24
  String *function;
 
25
 
 
26
  if (arg_count < 1 || arg_count > 2 || !(servers= args[0]->val_str(str)))
 
27
  {
 
28
    null_value= 1;
 
29
    return NULL;
 
30
  }
 
31
 
 
32
  function= (arg_count == 2) ? args[1]->val_str(str) : NULL;
 
33
 
 
34
  if (!GetFunctionMap().add(string(function == NULL ? "" : function->ptr()),
 
35
                            string(servers->ptr())))
 
36
  {
 
37
    null_value= 1;
 
38
    return NULL;
 
39
  }
 
40
 
 
41
  null_value= 0;
 
42
 
 
43
  buffer.realloc(servers->length());
 
44
  strcpy(buffer.ptr(), servers->ptr());
 
45
  buffer.length(servers->length());
 
46
  return &buffer;
 
47
}