blob: fa8fffe8b56c46421f496a7ffb1f79e4983449a5 [file] [log] [blame]
Guido van Rossum049cd901996-12-05 23:30:48 +00001#ifndef CSTRINGIO_INCLUDED
2#define CSTRINGIO_INCLUDED
3/*
4
5 $Id$
6
7 cStringIO C API
8
9 Copyright
10
11 Copyright 1996 Digital Creations, L.C., 910 Princess Anne
12 Street, Suite 300, Fredericksburg, Virginia 22401 U.S.A. All
13 rights reserved. Copyright in this software is owned by DCLC,
14 unless otherwise indicated. Permission to use, copy and
15 distribute this software is hereby granted, provided that the
16 above copyright notice appear in all copies and that both that
17 copyright notice and this permission notice appear. Note that
18 any product, process or technology described in this software
19 may be the subject of other Intellectual Property rights
20 reserved by Digital Creations, L.C. and are not licensed
21 hereunder.
22
23 Trademarks
24
25 Digital Creations & DCLC, are trademarks of Digital Creations, L.C..
26 All other trademarks are owned by their respective companies.
27
28 No Warranty
29
30 The software is provided "as is" without warranty of any kind,
31 either express or implied, including, but not limited to, the
32 implied warranties of merchantability, fitness for a particular
33 purpose, or non-infringement. This software could include
34 technical inaccuracies or typographical errors. Changes are
35 periodically made to the software; these changes will be
36 incorporated in new editions of the software. DCLC may make
37 improvements and/or changes in this software at any time
38 without notice.
39
40 Limitation Of Liability
41
42 In no event will DCLC be liable for direct, indirect, special,
43 incidental, economic, cover, or consequential damages arising
44 out of the use of or inability to use this software even if
45 advised of the possibility of such damages. Some states do not
46 allow the exclusion or limitation of implied warranties or
47 limitation of liability for incidental or consequential
48 damages, so the above limitation or exclusion may not apply to
49 you.
50
51 If you have questions regarding this software,
52 contact:
53
54 info@digicool.com
55 Digital Creations L.C.
56
57 (540) 371-6909
58
59
60 This header provides access to cStringIO objects from C.
61 Functions are provided for calling cStringIO objects and
62 macros are provided for testing whether you have cStringIO
63 objects.
64
65 Before calling any of the functions or macros, you must initialize
66 the routines with:
67
68 PycStringIO_IMPORT
69
70 This would typically be done in your init function.
71
72 $Log$
Guido van Rossumeec6ef11997-10-07 14:44:48 +000073 Revision 2.6 1997/10/07 14:44:48 guido
74 Use K&R function prototypes.
75
Guido van Rossum142eeb81997-08-13 03:14:41 +000076 Revision 2.5 1997/08/13 03:14:08 guido
77 cPickle release 0.3 from Jim Fulton
Guido van Rossum45c3aab1997-04-09 18:04:08 +000078
Guido van Rossum142eeb81997-08-13 03:14:41 +000079 Revision 1.3 1997/06/13 19:44:02 jim
80 - changed to avoid warning of multiple declarations in 1.5 and
81 our 1.4.
Guido van Rossum0a73dd51997-04-09 17:34:28 +000082
83 Revision 1.2 1997/01/27 14:13:05 jim
84 Changed the way the C API was exported.
Guido van Rossumd81a1ba1997-01-06 22:50:12 +000085
86 Revision 1.1 1997/01/02 15:18:36 chris
87 initial version
Guido van Rossum049cd901996-12-05 23:30:48 +000088
89
90*/
91
Guido van Rossum049cd901996-12-05 23:30:48 +000092/* Basic fuctions to manipulate cStringIO objects from C */
93
Guido van Rossum0a73dd51997-04-09 17:34:28 +000094static struct PycStringIO_CAPI {
95
96 /* Read a string. If the last argument is -1, the remainder will be read. */
Guido van Rossumeec6ef11997-10-07 14:44:48 +000097 int(*cread) Py_FPROTO((PyObject *, char **, int));
Guido van Rossum049cd901996-12-05 23:30:48 +000098
Guido van Rossum0a73dd51997-04-09 17:34:28 +000099 /* Read a line */
Guido van Rossumeec6ef11997-10-07 14:44:48 +0000100 int(*creadline) Py_FPROTO((PyObject *, char **));
Guido van Rossum049cd901996-12-05 23:30:48 +0000101
Guido van Rossum0a73dd51997-04-09 17:34:28 +0000102 /* Write a string */
Guido van Rossumeec6ef11997-10-07 14:44:48 +0000103 int(*cwrite) Py_FPROTO((PyObject *, char *, int));
Guido van Rossum049cd901996-12-05 23:30:48 +0000104
Guido van Rossum0a73dd51997-04-09 17:34:28 +0000105 /* Get the cStringIO object as a Python string */
Guido van Rossumeec6ef11997-10-07 14:44:48 +0000106 PyObject *(*cgetvalue) Py_FPROTO((PyObject *));
Guido van Rossum049cd901996-12-05 23:30:48 +0000107
Guido van Rossum0a73dd51997-04-09 17:34:28 +0000108 /* Create a new output object */
Guido van Rossumeec6ef11997-10-07 14:44:48 +0000109 PyObject *(*NewOutput) Py_FPROTO((int));
Guido van Rossum049cd901996-12-05 23:30:48 +0000110
Guido van Rossum0a73dd51997-04-09 17:34:28 +0000111 /* Create an input object from a Python string */
Guido van Rossumeec6ef11997-10-07 14:44:48 +0000112 PyObject *(*NewInput) Py_FPROTO((PyObject *));
Guido van Rossum049cd901996-12-05 23:30:48 +0000113
Guido van Rossum0a73dd51997-04-09 17:34:28 +0000114 /* The Python types for cStringIO input and output objects.
115 Note that you can do input on an output object.
116 */
117 PyTypeObject *InputType, *OutputType;
118
119} * PycStringIO = NULL;
Guido van Rossum049cd901996-12-05 23:30:48 +0000120
121/* These can be used to test if you have one */
Guido van Rossumd81a1ba1997-01-06 22:50:12 +0000122#define PycStringIO_InputCheck(O) \
Guido van Rossum0a73dd51997-04-09 17:34:28 +0000123 ((O)->ob_type==PycStringIO->InputType)
Guido van Rossumd81a1ba1997-01-06 22:50:12 +0000124#define PycStringIO_OutputCheck(O) \
Guido van Rossum0a73dd51997-04-09 17:34:28 +0000125 ((O)->ob_type==PycStringIO->OutputType)
Guido van Rossum049cd901996-12-05 23:30:48 +0000126
Guido van Rossum142eeb81997-08-13 03:14:41 +0000127static void *
Guido van Rossumeec6ef11997-10-07 14:44:48 +0000128xxxPyCObject_Import(module_name, name)
129 char *module_name;
130 char *name;
Guido van Rossum142eeb81997-08-13 03:14:41 +0000131{
132 PyObject *m, *c;
133 void *r=NULL;
134
135 if((m=PyImport_ImportModule(module_name)))
136 {
137 if((c=PyObject_GetAttrString(m,name)))
138 {
139 r=PyCObject_AsVoidPtr(c);
140 Py_DECREF(c);
141 }
142 Py_DECREF(m);
143 }
144
145 return r;
146}
147
Guido van Rossum049cd901996-12-05 23:30:48 +0000148#define PycString_IMPORT \
Guido van Rossum142eeb81997-08-13 03:14:41 +0000149 PycStringIO=xxxPyCObject_Import("cStringIO", "cStringIO_CAPI")
Guido van Rossum049cd901996-12-05 23:30:48 +0000150
151#endif /* CSTRINGIO_INCLUDED */