~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to plugin/memcached_query_cache/query_cache_udf_tools.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
 
 
30
 
/**
31
 
 * @file
32
 
 *
33
 
 * Defines the PRINT_QUERY_CACHE_META(KEY) UDF
34
 
 *
35
 
 * @details
36
 
 *
37
 
 * PRINT_QUERY_CACHE_META(key);
38
 
 *
39
 
 * prints a text representation of the meta data associated
40
 
 * to a key stored in the cache
41
 
 */
42
 
 
43
 
#pragma once
44
 
 
45
 
#include <drizzled/item/func.h>
46
 
#include <drizzled/function/str/strfunc.h>
47
 
 
48
 
class PrintQueryCacheMetaFunction : public drizzled::Item_str_func
49
 
{
50
 
public:
51
 
  PrintQueryCacheMetaFunction() : Item_str_func() {}
52
 
  drizzled::String *val_str(drizzled::String*);
53
 
 
54
 
  void fix_length_and_dec();
55
 
 
56
 
  const char *func_name() const
57
 
  {
58
 
    return "print_query_cache_meta";
59
 
  }
60
 
 
61
 
  bool check_argument_count(int n)
62
 
  {
63
 
    return (n == 1);
64
 
  }
65
 
};
66
 
class QueryCacheFlushFunction: public drizzled::Item_int_func
67
 
{
68
 
  drizzled::String value;
69
 
  drizzled::String failure_buff;
70
 
public:
71
 
  QueryCacheFlushFunction()
72
 
    :
73
 
      Item_int_func(),
74
 
      failure_buff("0", &drizzled::my_charset_bin)
75
 
  {}
76
 
 
77
 
  const char *func_name() const
78
 
  {
79
 
    return "query_cache_flush";
80
 
  }
81
 
 
82
 
  int64_t val_int();
83
 
 
84
 
  void fix_length_and_dec()
85
 
  {
86
 
    max_length= 32;
87
 
  }
88
 
  /*
89
 
   * query_cache_flush takes 0 or 1 arguments
90
 
   */
91
 
  bool check_argument_count(int n)
92
 
  {
93
 
    return ((n == 1)||(n == 0));
94
 
  }
95
 
 
96
 
};
97