~ubuntu-branches/ubuntu/saucy/drizzle/saucy-proposed

« back to all changes in this revision

Viewing changes to plugin/memcached_query_cache/memcached_qc.h

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* 
2
 
 * Copyright (C) 2010 Djellel Eddine Difallah
3
 
 * All rights reserved.
4
 
 *
5
 
 * Redistribution and use in source and binary forms, with or without
6
 
 * modification, are permitted provided that the following conditions are met:
7
 
 *
8
 
 *   * Redistributions of source code must retain the above copyright notice,
9
 
 *     this list of conditions and the following disclaimer.
10
 
 *   * Redistributions in binary form must reproduce the above copyright notice,
11
 
 *     this list of conditions and the following disclaimer in the documentation
12
 
 *     and/or other materials provided with the distribution.
13
 
 *   * Neither the name of Djellel Eddine Difallah nor the names of its contributors
14
 
 *     may be used to endorse or promote products derived from this software
15
 
 *     without specific prior written permission.
16
 
 *
17
 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18
 
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19
 
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20
 
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
21
 
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22
 
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23
 
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24
 
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25
 
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26
 
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27
 
 * THE POSSIBILITY OF SUCH DAMAGE.
28
 
 */
29
 
#pragma once
30
 
 
31
 
#include <drizzled/plugin/query_cache.h>
32
 
#include "query_cache_service.h"
33
 
#include <drizzled/atomics.h>
34
 
#include <libmemcached/memcached.hpp>
35
 
 
36
 
namespace drizzled 
37
 
{
38
 
  class Session;
39
 
  class select_result;
40
 
  class String;
41
 
  class TableList;
42
 
}
43
 
class MemcachedQueryCache : public drizzled::plugin::QueryCache
44
 
{
45
 
private:
46
 
  pthread_mutex_t mutex;  
47
 
  drizzled::QueryCacheService queryCacheService;
48
 
  static memcache::Memcache* client;
49
 
  static std::string memcached_servers;
50
 
 
51
 
public:
52
 
  
53
 
  explicit MemcachedQueryCache(std::string name_arg, const std::string &servers_arg): drizzled::plugin::QueryCache(name_arg)
54
 
  {
55
 
    client= new memcache::Memcache(servers_arg);
56
 
    pthread_mutex_init(&mutex, NULL);
57
 
    queryCacheService= drizzled::QueryCacheService::singleton();
58
 
  }
59
 
  ~MemcachedQueryCache()
60
 
  {
61
 
    delete client;
62
 
    pthread_mutex_destroy(&mutex);
63
 
  };
64
 
  bool doIsCached(drizzled::Session *session);
65
 
  bool doSendCachedResultset(drizzled::Session *session);
66
 
  bool doPrepareResultset(drizzled::Session *session);
67
 
  bool doInsertRecord(drizzled::Session *session, drizzled::List<drizzled::Item> &item);
68
 
  bool doSetResultset(drizzled::Session *session);
69
 
  char* md5_key(const char* str);
70
 
  void checkTables(drizzled::Session *session, drizzled::TableList* in_table);
71
 
  bool isSelect(std::string query);
72
 
  static memcache::Memcache* getClient()
73
 
  {
74
 
    return client;
75
 
  }
76
 
  static const char *getServers()
77
 
  {
78
 
    return memcached_servers.c_str();
79
 
  }
80
 
  static void setServers(const std::string &server_list)
81
 
  {
82
 
    memcached_servers.assign(server_list);
83
 
    //getClient()->setServers(server_list);
84
 
  }
85
 
 
86
 
};