Remove how use instance (keep API intact)
[m6w6/libmemcached] / libmemcached / error.hpp
1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
2 *
3 * LibMemcached
4 *
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met:
11 *
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 *
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
18 * distribution.
19 *
20 * * The names of its contributors may not be used to endorse or
21 * promote products derived from this software without specific prior
22 * written permission.
23 *
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.
35 *
36 */
37
38 #include <libmemcached/common.h>
39
40 #pragma once
41
42 #ifdef __cplusplus
43
44 #define STRINGIFY(x) #x
45 #define TOSTRING(x) STRINGIFY(x)
46 #define MEMCACHED_AT __FILE__ ":" TOSTRING(__LINE__)
47
48 LIBMEMCACHED_LOCAL
49 memcached_return_t memcached_set_parser_error(memcached_st& memc,
50 const char *at,
51 const char *format, ...);
52
53 LIBMEMCACHED_LOCAL
54 memcached_return_t memcached_set_error(memcached_st&, memcached_return_t rc, const char *at);
55
56 LIBMEMCACHED_LOCAL
57 memcached_return_t memcached_set_error(memcached_instance_st&, memcached_return_t rc, const char *at);
58
59 LIBMEMCACHED_LOCAL
60 memcached_return_t memcached_set_error(memcached_st&, memcached_return_t rc, const char *at, const char *str, size_t length);
61
62 LIBMEMCACHED_LOCAL
63 memcached_return_t memcached_set_error(memcached_instance_st&, memcached_return_t rc, const char *at, const char *str, size_t length);
64
65 LIBMEMCACHED_LOCAL
66 memcached_return_t memcached_set_error(memcached_st& memc, memcached_return_t rc, const char *at, memcached_string_t& str);
67
68 LIBMEMCACHED_LOCAL
69 memcached_return_t memcached_set_error(memcached_instance_st&, memcached_return_t rc, const char *at, memcached_string_t& str);
70
71 LIBMEMCACHED_LOCAL
72 memcached_return_t memcached_set_errno(memcached_st& memc, int local_errno, const char *at, memcached_string_t& str);
73
74 LIBMEMCACHED_LOCAL
75 memcached_return_t memcached_set_errno(memcached_instance_st&, int local_errno, const char *at, memcached_string_t& str);
76
77 LIBMEMCACHED_LOCAL
78 memcached_return_t memcached_set_errno(memcached_st& memc, int local_errno, const char *at, const char *str, size_t length);
79
80 LIBMEMCACHED_LOCAL
81 memcached_return_t memcached_set_errno(memcached_instance_st&, int local_errno, const char *at, const char *str, size_t length);
82
83 LIBMEMCACHED_LOCAL
84 memcached_return_t memcached_set_errno(memcached_st& memc, int local_errno, const char *at);
85
86 LIBMEMCACHED_LOCAL
87 memcached_return_t memcached_set_errno(memcached_instance_st&, int local_errno, const char *at);
88
89 LIBMEMCACHED_LOCAL
90 bool memcached_has_current_error(memcached_st&);
91
92 LIBMEMCACHED_LOCAL
93 bool memcached_has_current_error(memcached_instance_st&);
94
95 LIBMEMCACHED_LOCAL
96 void memcached_error_free(memcached_st&);
97
98 void memcached_error_free(memcached_server_st& self);
99
100 LIBMEMCACHED_LOCAL
101 void memcached_error_free(memcached_instance_st&);
102
103 LIBMEMCACHED_LOCAL
104 memcached_error_t *memcached_error_copy(const memcached_instance_st&);
105
106 memcached_return_t memcached_instance_error_return(memcached_instance_st*);
107
108 #endif