Update to support new warnings.
[m6w6/libmemcached] / libtest / has.cc
1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
2 *
3 * Data Differential YATL (i.e. libtest) library
4 *
5 * Copyright (C) 2012 Data Differential, http://datadifferential.com/
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
9 * met:
10 *
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 *
14 * * Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following disclaimer
16 * in the documentation and/or other materials provided with the
17 * distribution.
18 *
19 * * The names of its contributors may not be used to endorse or
20 * promote products derived from this software without specific prior
21 * written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 *
35 */
36
37 #include <config.h>
38 #include <libtest/common.h>
39
40 #include <cstdlib>
41 #include <unistd.h>
42
43 namespace libtest {
44
45 bool has_libmemcached(void)
46 {
47 if (HAVE_LIBMEMCACHED)
48 {
49 return true;
50 }
51
52 return false;
53 }
54
55 bool has_libdrizzle(void)
56 {
57 if (HAVE_LIBDRIZZLE)
58 {
59 return true;
60 }
61
62 return false;
63 }
64
65 bool has_postgres_support(void)
66 {
67 char *getenv_ptr;
68 if (bool((getenv_ptr= getenv("POSTGES_IS_RUNNING_AND_SETUP"))))
69 {
70 (void)(getenv_ptr);
71 if (HAVE_LIBPQ)
72 {
73 return true;
74 }
75 }
76
77 return false;
78 }
79
80
81 bool has_gearmand()
82 {
83 if (HAVE_GEARMAND_BINARY)
84 {
85 #if defined(HAVE_GEARMAND_BINARY) && HAVE_GEARMAND_BINARY
86 std::stringstream arg_buffer;
87
88 char *getenv_ptr;
89 if (bool((getenv_ptr= getenv("PWD"))) and
90 ((strcmp(GEARMAND_BINARY, "./gearmand/gearmand") == 0) or (strcmp(GEARMAND_BINARY, "gearmand/gearmand") == 0)))
91 {
92 arg_buffer << getenv_ptr;
93 arg_buffer << "/";
94 }
95 arg_buffer << GEARMAND_BINARY;
96
97 if (access(arg_buffer.str().c_str(), X_OK) == 0)
98 {
99 return true;
100 }
101 #endif
102 }
103
104 return false;
105 }
106
107 bool has_drizzled()
108 {
109 #if defined(HAVE_DRIZZLED_BINARY) && HAVE_DRIZZLED_BINARY
110 if (HAVE_DRIZZLED_BINARY)
111 {
112 if (access(DRIZZLED_BINARY, X_OK) == 0)
113 {
114 return true;
115 }
116 }
117 #endif
118
119 return false;
120 }
121
122 bool has_mysqld()
123 {
124 #if defined(HAVE_MYSQLD_BUILD) && HAVE_MYSQLD_BUILD
125 if (HAVE_MYSQLD_BUILD)
126 {
127 if (access(MYSQLD_BINARY, X_OK) == 0)
128 {
129 return true;
130 }
131 }
132 #endif
133
134 return false;
135 }
136
137 bool has_memcached()
138 {
139 if (HAVE_MEMCACHED_BINARY)
140 {
141 std::stringstream arg_buffer;
142
143
144 char *getenv_ptr;
145 if (bool((getenv_ptr= getenv("PWD"))) and strcmp(MEMCACHED_BINARY, "memcached/memcached") == 0)
146 {
147 arg_buffer << getenv_ptr;
148 arg_buffer << "/";
149 }
150 arg_buffer << MEMCACHED_BINARY;
151
152 if (access(arg_buffer.str().c_str(), X_OK) == 0)
153 {
154 return true;
155 }
156 }
157
158 return false;
159 }
160
161 bool has_memcached_sasl()
162 {
163 #if defined(HAVE_MEMCACHED_SASL_BINARY) && HAVE_MEMCACHED_SASL_BINARY
164 if (HAVE_MEMCACHED_SASL_BINARY)
165 {
166 if (access(MEMCACHED_SASL_BINARY, X_OK) == 0)
167 {
168 return true;
169 }
170 }
171 #endif
172
173 return false;
174 }
175
176 } // namespace libtest