FreeTDS API
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
tds_checks.h
1 /* FreeTDS - Library of routines accessing Sybase and Microsoft databases
2  * Copyright (C) 2004 Frediano Ziglio
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19 
20 #ifndef TDS_CHECKS_H
21 #define TDS_CHECKS_H
22 
23 /* $Id: tds_checks.h,v 1.6 2010-01-25 23:05:59 freddy77 Exp $ */
24 #include <freetds/pushvis.h>
25 
26 #if ENABLE_EXTRA_CHECKS
27 #define CHECK_STRUCT_EXTRA(func,s) func(s)
28 #else
29 #define CHECK_STRUCT_EXTRA(func,s)
30 #endif
31 
32 #define CHECK_TDS_EXTRA(tds) CHECK_STRUCT_EXTRA(tds_check_tds_extra,tds)
33 #define CHECK_CONTEXT_EXTRA(ctx) CHECK_STRUCT_EXTRA(tds_check_context_extra,ctx)
34 #define CHECK_TDSENV_EXTRA(env) CHECK_STRUCT_EXTRA(tds_check_env_extra,env)
35 #define CHECK_COLUMN_EXTRA(column) CHECK_STRUCT_EXTRA(tds_check_column_extra,column)
36 #define CHECK_RESULTINFO_EXTRA(res_info) CHECK_STRUCT_EXTRA(tds_check_resultinfo_extra,res_info)
37 #define CHECK_PARAMINFO_EXTRA(res_info) CHECK_STRUCT_EXTRA(tds_check_resultinfo_extra,res_info)
38 #define CHECK_CURSOR_EXTRA(cursor) CHECK_STRUCT_EXTRA(tds_check_cursor_extra,cursor)
39 #define CHECK_DYNAMIC_EXTRA(dynamic) CHECK_STRUCT_EXTRA(tds_check_dynamic_extra,dynamic)
40 #define CHECK_CONN_EXTRA(conn)
41 
42 #if ENABLE_EXTRA_CHECKS
43 void tds_check_tds_extra(const TDSSOCKET * tds);
44 void tds_check_context_extra(const TDSCONTEXT * ctx);
45 void tds_check_env_extra(const TDSENV * env);
46 void tds_check_column_extra(const TDSCOLUMN * column);
47 void tds_check_resultinfo_extra(const TDSRESULTINFO * res_info);
48 void tds_check_cursor_extra(const TDSCURSOR * cursor);
49 void tds_check_dynamic_extra(const TDSDYNAMIC * dynamic);
50 #endif
51 
52 #if defined(HAVE_VALGRIND_MEMCHECK_H) && ENABLE_EXTRA_CHECKS
53 # include <valgrind/memcheck.h>
54 # define TDS_MARK_UNDEFINED(ptr, len) VALGRIND_MAKE_MEM_UNDEFINED(ptr, len)
55 #else
56 # define TDS_MARK_UNDEFINED(ptr, len) do {} while(0)
57 #endif
58 
59 #include <freetds/popvis.h>
60 
61 #endif /* TDS_CHECKS_H */
Holds informations about a cursor.
Definition: tds.h:907
Hold information for any results.
Definition: tds.h:739
Current environment as reported by the server.
Definition: tds.h:933
Holds information for a dynamic (also called prepared) query.
Definition: tds.h:944
Definition: tds.h:996
Metadata about columns in regular and compute rows.
Definition: tds.h:662
Information for a server connection.
Definition: tds.h:1098