~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memcached_query_cache/query_cache_service.h

  • Committer: Monty Taylor
  • Date: 2011-04-07 16:51:38 UTC
  • mfrom: (2263.6.2 remove_memcached_qc)
  • Revision ID: mordred@inaugust.com-20110407165138-4mbpizlwlwt5hbl1
Merge David: Remove memcached query cache

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/message/resultset.pb.h>
32
 
#include <drizzled/sql_list.h>
33
 
#include <map>
34
 
#include <vector>
35
 
 
36
 
class QueryCacheService
37
 
{
38
 
public:
39
 
 
40
 
  typedef std::map<std::string, drizzled::message::Resultset> CacheEntries;
41
 
  typedef std::pair<const std::string, drizzled::message::Resultset> CacheEntry;
42
 
  typedef std::map<std::string, std::vector<std::string>> CachedTablesEntries;
43
 
  typedef std::pair<const std::string, std::vector<std::string>> CachedTablesEntry;
44
 
 
45
 
  static const size_t DEFAULT_RECORD_SIZE= 100;
46
 
  static CacheEntries cache;
47
 
  static CachedTablesEntries cachedTables;
48
 
 
49
 
  /**
50
 
   * Singleton method
51
 
   * Returns the singleton instance of QueryCacheService
52
 
   */
53
 
  static inline QueryCacheService &singleton()
54
 
  {
55
 
    static QueryCacheService query_cache_service;
56
 
    return query_cache_service;
57
 
  };
58
 
 
59
 
  /**
60
 
   * Method which returns the active Resultset message
61
 
   * for the supplied Session.  If one is not found, a new Resultset
62
 
   * message is allocated, initialized, and returned.
63
 
   *
64
 
   * @param The session processing the Select
65
 
   */
66
 
  drizzled::message::Resultset *setCurrentResultsetMessage(drizzled::Session *in_session);
67
 
 
68
 
  /**
69
 
   * Helper method which initializes the header message for
70
 
   * a Resultset.
71
 
   *
72
 
   * @param[inout] Resultset message container to modify
73
 
   * @param[in] Pointer to the Session doing the processing
74
 
   * @param[in] Pointer to the Table being inserted into
75
 
   */
76
 
  void setResultsetHeader(drizzled::message::Resultset &resultset,
77
 
                       drizzled::Session *in_session,
78
 
                       drizzled::TableList *in_table);
79
 
  /**
80
 
   * Creates a new SelectRecord GPB message and pushes it to
81
 
   * currrent Resultset.
82
 
   *
83
 
   * @param Pointer to the Session which has inserted a record
84
 
   * @param Pointer to the List<Items> to add
85
 
   */
86
 
  bool addRecord(drizzled::Session *in_session, drizzled::List<drizzled::Item> &list);
87
 
 
88
 
  /* cache fetching */
89
 
  static bool isCached(std::string query);
90
 
  
91
 
}; 
92
 
} /* namespace drizzled */