Mass rename to simplify names.
[awesomized/libmemcached] / libmemcached / watchpoint.h
1 /* LibMemcached
2 * Copyright (C) 2006-2009 Brian Aker
3 * All rights reserved.
4 *
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
7 *
8 * Summary: Localized copy of WATCHPOINT debug symbols
9 *
10 */
11
12 #ifndef LIBMEMCACHED_MEMCACHED_WATCHPOINT_H
13 #define LIBMEMCACHED_MEMCACHED_WATCHPOINT_H
14
15 /* Some personal debugging functions */
16 #if defined(DEBUG)
17
18 #include <assert.h>
19
20 #define WATCHPOINT fprintf(stderr, "\nWATCHPOINT %s:%d (%s)\n", __FILE__, __LINE__,__func__);fflush(stdout);
21 #define WATCHPOINT_ERROR(A) fprintf(stderr, "\nWATCHPOINT %s:%d %s\n", __FILE__, __LINE__, memcached_strerror(NULL, A));fflush(stdout);
22 #define WATCHPOINT_IFERROR(A) if(A != MEMCACHED_SUCCESS)fprintf(stderr, "\nWATCHPOINT %s:%d %s\n", __FILE__, __LINE__, memcached_strerror(NULL, A));fflush(stdout);
23 #define WATCHPOINT_STRING(A) fprintf(stderr, "\nWATCHPOINT %s:%d (%s) %s\n", __FILE__, __LINE__,__func__,A);fflush(stdout);
24 #define WATCHPOINT_STRING_LENGTH(A,B) fprintf(stderr, "\nWATCHPOINT %s:%d (%s) %.*s\n", __FILE__, __LINE__,__func__,(int)B,A);fflush(stdout);
25 #define WATCHPOINT_NUMBER(A) fprintf(stderr, "\nWATCHPOINT %s:%d (%s) %zu\n", __FILE__, __LINE__,__func__,(size_t)(A));fflush(stdout);
26 #define WATCHPOINT_ERRNO(A) fprintf(stderr, "\nWATCHPOINT %s:%d (%s) %s\n", __FILE__, __LINE__,__func__, strerror(A));fflush(stdout);
27 #define WATCHPOINT_ASSERT_PRINT(A,B,C) if(!(A)){fprintf(stderr, "\nWATCHPOINT ASSERT %s:%d (%s) ", __FILE__, __LINE__,__func__);fprintf(stderr, (B),(C));fprintf(stderr,"\n");fflush(stdout);}assert((A));
28 #define WATCHPOINT_ASSERT(A) assert((A));
29 #define WATCHPOINT_ASSERT_INITIALIZED(A) (memcached_is_initialized((A));
30
31 #else
32
33 #define WATCHPOINT
34 #define WATCHPOINT_ERROR(A)
35 #define WATCHPOINT_IFERROR(A)
36 #define WATCHPOINT_STRING(A)
37 #define WATCHPOINT_NUMBER(A)
38 #define WATCHPOINT_ERRNO(A)
39 #define WATCHPOINT_ASSERT_PRINT(A,B,C)
40 #define WATCHPOINT_ASSERT(A)
41 #define WATCHPOINT_ASSERT_INITIALIZED(A)
42
43 #endif /* DEBUG */
44
45 #endif /* LIBMEMCACHED_MEMCACHED_WATCHPOINT_H */