1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
6 * Copyright (C) 2010 Brian Aker All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * * Redistributions in binary form must reproduce the above
16 * copyright notice, this list of conditions and the following disclaimer
17 * in the documentation and/or other materials provided with the
20 * * The names of its contributors may not be used to endorse or
21 * promote products derived from this software without specific prior
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
27 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
28 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
29 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
30 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 #include <libmemcached/common.h>
39 const char * memcached_lib_version(void)
41 return LIBMEMCACHED_VERSION_STRING
;
44 static inline memcached_return_t
memcached_version_binary(memcached_st
*ptr
);
45 static inline memcached_return_t
memcached_version_textual(memcached_st
*ptr
);
47 memcached_return_t
memcached_version(memcached_st
*ptr
)
49 if (ptr
->flags
.use_udp
)
50 return MEMCACHED_NOT_SUPPORTED
;
52 memcached_return_t rc
;
54 if (ptr
->flags
.binary_protocol
)
55 rc
= memcached_version_binary(ptr
);
57 rc
= memcached_version_textual(ptr
);
62 static inline memcached_return_t
memcached_version_textual(memcached_st
*ptr
)
65 memcached_return_t rc
;
66 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
68 const char *command
= "version\r\n";
70 send_length
= sizeof("version\r\n") -1;
72 rc
= MEMCACHED_SUCCESS
;
73 for (uint32_t x
= 0; x
< memcached_server_count(ptr
); x
++)
75 memcached_return_t rrc
;
76 memcached_server_write_instance_st instance
=
77 memcached_server_instance_fetch(ptr
, x
);
79 // Optimization, we only fetch version once.
80 if (instance
->major_version
!= UINT8_MAX
)
83 rrc
= memcached_do(instance
, command
, send_length
, true);
84 if (rrc
!= MEMCACHED_SUCCESS
)
86 instance
->major_version
= instance
->minor_version
= instance
->micro_version
= UINT8_MAX
;
87 rc
= MEMCACHED_SOME_ERRORS
;
91 rrc
= memcached_response(instance
, buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
, NULL
);
92 if (rrc
!= MEMCACHED_SUCCESS
)
94 instance
->major_version
= instance
->minor_version
= instance
->micro_version
= UINT8_MAX
;
95 rc
= MEMCACHED_SOME_ERRORS
;
99 /* Find the space, and then move one past it to copy version */
100 response_ptr
= index(buffer
, ' ');
103 instance
->major_version
= (uint8_t)strtol(response_ptr
, (char **)NULL
, 10);
106 instance
->major_version
= instance
->minor_version
= instance
->micro_version
= UINT8_MAX
;
107 rc
= MEMCACHED_SOME_ERRORS
;
111 response_ptr
= index(response_ptr
, '.');
114 instance
->minor_version
= (uint8_t)strtol(response_ptr
, (char **)NULL
, 10);
117 instance
->major_version
= instance
->minor_version
= instance
->micro_version
= UINT8_MAX
;
118 rc
= MEMCACHED_SOME_ERRORS
;
122 response_ptr
= index(response_ptr
, '.');
124 instance
->micro_version
= (uint8_t)strtol(response_ptr
, (char **)NULL
, 10);
127 instance
->major_version
= instance
->minor_version
= instance
->micro_version
= UINT8_MAX
;
128 rc
= MEMCACHED_SOME_ERRORS
;
136 static inline memcached_return_t
memcached_version_binary(memcached_st
*ptr
)
138 memcached_return_t rc
;
139 protocol_binary_request_version request
= {};
140 request
.message
.header
.request
.magic
= PROTOCOL_BINARY_REQ
;
141 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_VERSION
;
142 request
.message
.header
.request
.datatype
= PROTOCOL_BINARY_RAW_BYTES
;
144 rc
= MEMCACHED_SUCCESS
;
145 for (uint32_t x
= 0; x
< memcached_server_count(ptr
); x
++)
147 memcached_return_t rrc
;
149 memcached_server_write_instance_st instance
=
150 memcached_server_instance_fetch(ptr
, x
);
152 if (instance
->major_version
!= UINT8_MAX
)
155 rrc
= memcached_do(instance
, request
.bytes
, sizeof(request
.bytes
), true);
156 if (rrc
!= MEMCACHED_SUCCESS
)
158 memcached_io_reset(instance
);
159 rc
= MEMCACHED_SOME_ERRORS
;
164 for (uint32_t x
= 0; x
< memcached_server_count(ptr
); x
++)
166 memcached_server_write_instance_st instance
=
167 memcached_server_instance_fetch(ptr
, x
);
169 if (instance
->major_version
!= UINT8_MAX
)
172 if (memcached_server_response_count(instance
) > 0)
174 memcached_return_t rrc
;
178 rrc
= memcached_response(instance
, buffer
, sizeof(buffer
), NULL
);
179 if (rrc
!= MEMCACHED_SUCCESS
)
181 memcached_io_reset(instance
);
182 rc
= MEMCACHED_SOME_ERRORS
;
186 instance
->major_version
= (uint8_t)strtol(buffer
, &p
, 10);
189 instance
->major_version
= instance
->minor_version
= instance
->micro_version
= UINT8_MAX
;
190 rc
= MEMCACHED_SOME_ERRORS
;
194 instance
->minor_version
= (uint8_t)strtol(p
+ 1, &p
, 10);
197 instance
->major_version
= instance
->minor_version
= instance
->micro_version
= UINT8_MAX
;
198 rc
= MEMCACHED_SOME_ERRORS
;
202 instance
->micro_version
= (uint8_t)strtol(p
+ 1, NULL
, 10);
205 instance
->major_version
= instance
->minor_version
= instance
->micro_version
= UINT8_MAX
;
206 rc
= MEMCACHED_SOME_ERRORS
;