~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/libdrizzle_priv.h

  • Committer: Lee
  • Date: 2008-10-30 22:02:01 UTC
  • mto: (572.1.2 devel)
  • mto: This revision was merged to the branch mainline in revision 573.
  • Revision ID: lbieber@lbieber-desktop-20081030220201-elb6qprbzpn7c5a4
add my name to the AUTHORS file

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
5
 *
 
6
 *  This program is free software; you can redistribute it and/or modify
 
7
 *  it under the terms of the GNU General Public License as published by
 
8
 *  the Free Software Foundation; version 2 of the License.
 
9
 *
 
10
 *  This program is distributed in the hope that it will be useful,
 
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 *  GNU General Public License for more details.
 
14
 *
 
15
 *  You should have received a copy of the GNU General Public License
 
16
 *  along with this program; if not, write to the Free Software
 
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
18
 */
 
19
 
 
20
#ifndef _libdrizzle_libdrizzle_priv_h_
 
21
#define _libdrizzle_libdrizzle_priv_h_
 
22
 
 
23
#include <sys/socket.h>
 
24
#include <libdrizzle/drizzle.h>
 
25
#include <drizzled/korr.h>
 
26
 
 
27
#define CLIENT_CAPABILITIES (CLIENT_LONG_PASSWORD | CLIENT_LONG_FLAG |  \
 
28
                             CLIENT_TRANSACTIONS |                      \
 
29
                             CLIENT_SECURE_CONNECTION)
 
30
 
 
31
 
 
32
extern unsigned int drizzle_port;
 
33
 
 
34
#if !defined(__GNUC__) || (__GNUC__ == 2 && __GNUC_MINOR__ < 96)
 
35
#define __builtin_expect(x, expected_value) (x)
 
36
#endif
 
37
 
 
38
#define likely(x)       __builtin_expect((x),1)
 
39
#define unlikely(x)     __builtin_expect((x),0)
 
40
 
 
41
#ifndef __cplusplus
 
42
#define max(a, b)       ((a) > (b) ? (a) : (b))
 
43
#define min(a, b)       ((a) < (b) ? (a) : (b))
 
44
#endif
 
45
 
 
46
extern const char _dig_vec_upper[];
 
47
extern const char _dig_vec_lower[];
 
48
 
 
49
const char * sqlstate_get_unknown(void);
 
50
const char * sqlstate_get_not_error(void);
 
51
const char * sqlstate_get_cant_connect(void);
 
52
 
 
53
void drizzle_set_default_port(unsigned int port);
 
54
void drizzle_set_error(DRIZZLE *drizzle, int errcode, const char *sqlstate);
 
55
void drizzle_set_extended_error(DRIZZLE *drizzle, int errcode,
 
56
                                const char *sqlstate,
 
57
                                const char *format, ...);
 
58
void free_old_query(DRIZZLE *drizzle);
 
59
 
 
60
int connect_with_timeout(int fd, const struct sockaddr *name,
 
61
                         unsigned int namelen, int32_t timeout);
 
62
int wait_for_data(int fd, int32_t timeout);
 
63
 
 
64
void drizzle_close_free_options(DRIZZLE *drizzle);
 
65
void drizzle_close_free(DRIZZLE *drizzle);
 
66
 
 
67
/* Hook Methods */
 
68
bool cli_read_query_result(DRIZZLE *drizzle);
 
69
DRIZZLE_RES *cli_use_result(DRIZZLE *drizzle);
 
70
void cli_fetch_lengths(uint32_t *to, DRIZZLE_ROW column,
 
71
                       uint32_t field_count);
 
72
void cli_flush_use_result(DRIZZLE *drizzle);
 
73
 
 
74
#endif