~drizzle-trunk/drizzle/development

1166.5.1 by Patrick Galbraith
Starting over with a fresh tree, moved in memcached functions.
1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
4
 * Copyright (c) 2009, Patrick "CaptTofu" Galbraith, Padraig O'Sullivan
5
 * All rights reserved.
6
 *
7
 * Redistribution and use in source and binary forms, with or without
8
 * modification, are permitted provided that the following conditions are met:
9
 *
10
 *   * Redistributions of source code must retain the above copyright notice,
11
 *     this list of conditions and the following disclaimer.
12
 *   * Redistributions in binary form must reproduce the above copyright notice,
13
 *     this list of conditions and the following disclaimer in the documentation
14
 *     and/or other materials provided with the distribution.
15
 *   * Neither the name of Patrick Galbraith nor the names of its contributors
16
 *     may be used to endorse or promote products derived from this software
17
 *     without specific prior written permission.
18
 *
19
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
23
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
29
 * THE POSSIBILITY OF SUCH DAMAGE.
30
 */
31
1241.9.36 by Monty Taylor
ZOMG. I deleted drizzled/server_includes.h.
32
#include "config.h"
1166.5.1 by Patrick Galbraith
Starting over with a fresh tree, moved in memcached functions.
33
#include <drizzled/item/func.h>
34
#include <drizzled/function/str/strfunc.h>
35
36
#include "memcached_functions.h"
37
#include "memc_behavior_set.h"
38
39
#include <libmemcached/memcached.h>
40
41
#include <string>
42
#include <algorithm>
43
44
using namespace std;
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
45
using namespace drizzled;
1166.5.1 by Patrick Galbraith
Starting over with a fresh tree, moved in memcached functions.
46
47
void MemcachedBehaviorSet::setFailureString(const char *error)
48
{
49
  size_t size= strlen(error);
50
  failure_buff.realloc(size);
51
  failure_buff.length(size);
52
  memcpy(failure_buff.ptr(), error, size);
53
}
54
55
String *MemcachedBehaviorSet::val_str(String *str)
56
{
57
  memcached_return rc;
58
  memcached_behavior mbehavior;
59
  uint64_t isetting= 0;
60
  map<const string, memcached_behavior>::iterator it_behav;
61
  map<const string, uint64_t>::iterator it_hash;
62
  map<const string, uint64_t>::iterator it_dist;
63
  String *tmp_behavior;
64
  String *tmp_setting;
65
66
  if (arg_count != 2 ||
67
      ! (tmp_behavior= args[0]->val_str(str)) ||
68
      ! (tmp_setting= args[1]->val_str(str)) ||
69
      ! memc)
70
  {
71
    setFailureString("USAGE: memc_behavior_set('<behavior type>','<value>')");
72
    return &failure_buff;
73
  }
74
75
  string behavior(tmp_behavior->c_ptr());
76
  string setting(tmp_setting->c_ptr());
77
78
  /*
79
   * We don't want the user to have to type in all input in upper
80
   * case so we transform the input strings to upper case here.
81
   */
82
  std::transform(behavior.begin(), behavior.end(),
83
                 behavior.begin(), ::toupper);
84
  std::transform(setting.begin(), setting.end(),
85
                 setting.begin(), ::toupper);
86
87
  it_behav= behavior_map.find(behavior);
88
  if (it_behav == behavior_map.end())
89
  {
90
    setFailureString("UNKNOWN BEHAVIOR TYPE!");
91
    return &failure_buff;
92
  }
93
  mbehavior= behavior_map[behavior];
94
95
  switch (mbehavior)
96
  {
97
  case MEMCACHED_BEHAVIOR_SUPPORT_CAS:
98
  case MEMCACHED_BEHAVIOR_NO_BLOCK:
99
  case MEMCACHED_BEHAVIOR_BUFFER_REQUESTS:
100
  case MEMCACHED_BEHAVIOR_USER_DATA:
101
  case MEMCACHED_BEHAVIOR_SORT_HOSTS:
102
  case MEMCACHED_BEHAVIOR_VERIFY_KEY:
103
  case MEMCACHED_BEHAVIOR_TCP_NODELAY:
104
  case MEMCACHED_BEHAVIOR_KETAMA:
105
  case MEMCACHED_BEHAVIOR_CACHE_LOOKUPS:
106
    if (setting.compare("1") == 0)
107
    {
108
      isetting= 1;
109
    }
110
    else if (setting.compare("0") == 0)
111
    {
112
      isetting= 0;
113
    }
114
    else
115
    {
116
      setFailureString("INVALID VALUE FOR BEHAVIOR - MUST be 1 OR 0!");
117
      return &failure_buff;
118
    }
119
    break;
120
  case MEMCACHED_BEHAVIOR_DISTRIBUTION:
121
    it_dist= dist_settings_map.find(setting);
122
    if (it_dist == dist_settings_map.end())
123
    {
124
      setFailureString("INVALID VALUE FOR DISTRIBUTION!");
125
      return &failure_buff;
126
    }
127
    isetting= dist_settings_map[setting];
128
    break;
129
  case MEMCACHED_BEHAVIOR_HASH:
130
    it_hash= hash_settings_map.find(setting);
131
    if (it_hash == hash_settings_map.end())
132
    {
133
      setFailureString("INVALID VALUE FOR MEMCACHED HASH ALGORITHM!");
134
      return &failure_buff;
135
    }
136
    isetting= hash_settings_map[setting];
137
    break;
138
  case MEMCACHED_BEHAVIOR_KETAMA_HASH:
139
    isetting= ketama_hash_settings_map[setting];
140
    if (! isetting)
141
    {
142
      setFailureString("INVALID VALUE FOR KETAMA HASH ALGORITHM!");
143
      return &failure_buff;
144
    }
145
    break;
146
  case MEMCACHED_BEHAVIOR_SOCKET_SEND_SIZE:
147
  case MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE:
148
  case MEMCACHED_BEHAVIOR_POLL_TIMEOUT:
149
  case MEMCACHED_BEHAVIOR_CONNECT_TIMEOUT:
150
  case MEMCACHED_BEHAVIOR_RETRY_TIMEOUT:
151
  case MEMCACHED_BEHAVIOR_IO_MSG_WATERMARK:
152
  case MEMCACHED_BEHAVIOR_IO_BYTES_WATERMARK:
153
    /*
154
      What type of check the values passed to these behaviors?
155
      Range?
156
    */
157
    break;
158
  default:
159
    break;
160
  }
161
162
  rc= memcached_behavior_set(memc, mbehavior, isetting);
163
164
  if (rc != MEMCACHED_SUCCESS)
165
  {
166
    return &failure_buff;
167
  }
168
169
  return &success_buff;
170
}
171