This commit was manufactured by cvs2svn to create branch
[plcapi.git] / psycopg2 / psycopg / typecast.h
1 /* typecast.h - definitions for typecasters
2  *
3  * Copyright (C) 2003 Federico Di Gregorio <fog@debian.org>
4  *
5  * This file is part of psycopg.
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2,
10  * or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20  */
21
22 #ifndef PSYCOPG_TYPECAST_H
23 #define PSYCOPG_TYPECAST_H 1
24
25 #include <Python.h>
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31 /* type of type-casting functions (both C and Python) */
32 typedef PyObject *(*typecast_function)(char *, int len, PyObject *);
33
34 /** typecast type **/
35
36 extern PyTypeObject typecastType;
37
38 typedef struct {
39     PyObject_HEAD
40
41     PyObject *name;    /* the name of this type */
42     PyObject *values;  /* the different types this instance can match */
43
44     typecast_function  ccast;  /* the C casting function */
45     PyObject          *pcast;  /* the python casting function */
46     PyObject          *bcast;  /* base cast, used by array typecasters */
47 } typecastObject;
48
49 /* the initialization values are stored here */
50
51 typedef struct {
52     char *name;
53     long int *values;
54     typecast_function cast;
55
56     /* base is the base typecaster for arrays */
57     char *base;
58 } typecastObject_initlist;
59
60 /* the type dictionary, much faster to access it globally */
61 extern PyObject *psyco_types;
62 extern PyObject *psyco_binary_types;
63     
64 /* the default casting objects, used when no other objects are available */
65 extern PyObject *psyco_default_cast;
66 extern PyObject *psyco_default_binary_cast;
67
68 /** exported functions **/
69
70 /* used by module.c to init the type system and register types */
71 extern int typecast_init(PyObject *dict);
72 extern int typecast_add(PyObject *obj, int binary);
73
74 /* the C callable typecastObject creator function */
75 extern PyObject *typecast_from_c(typecastObject_initlist *type, PyObject *d);
76
77 /* the python callable typecast creator function */
78 extern PyObject *typecast_from_python(
79     PyObject *self, PyObject *args, PyObject *keywds);
80
81 /* the function used to dispatch typecasting calls */
82 extern PyObject *typecast_cast(
83     PyObject *self, char *str, int len, PyObject *curs);
84     
85 #endif /* !defined(PSYCOPG_TYPECAST_H) */