FreeTDS API
Loading...
Searching...
No Matches
stream.h
1/* FreeTDS - Library of routines accessing Sybase and Microsoft databases
2 * Copyright (C) 2013 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 _tdsguard_a5iqP6Ed7kDGP9L1OvOL7W_
21#define _tdsguard_a5iqP6Ed7kDGP9L1OvOL7W_
22
23#ifndef _tdsguard_hfOrWb5znoUCWdBPoNQvqN_
24#error Include tds.h first
25#endif
26
27#include <stdio.h> /* FILE * */
28#include <freetds/iconv.h> /* TDS_ICONV_DIRECTION */
29#include <freetds/pushvis.h>
30
32typedef struct tds_input_stream {
37 int (*read)(struct tds_input_stream *stream, void *ptr, size_t len);
39
41typedef struct tds_output_stream {
43 int (*write)(struct tds_output_stream *stream, size_t len);
52 char *buffer;
53 size_t buf_len;
55
59typedef struct tds_fileout_stream
60{
61 TDSOUTSTREAM stream;
62 FILE *fp;
63 char block[4096];
68
69void tds_fileout_stream_init(TDSFILEOUTSTREAM * s, FILE * fp, int buff_mode);
70
71TDSRET tds_fileout_stream_flush(TDSFILEOUTSTREAM * s);
72TDSRET tds_fileout_stream_put(TDSFILEOUTSTREAM * s, void const *src, size_t n);
73
75TDSRET tds_convert_stream(TDSSOCKET * tds, TDSICONV * char_conv, TDS_ICONV_DIRECTION direction,
76 TDSINSTREAM * istream, TDSOUTSTREAM *ostream);
78TDSRET tds_copy_stream(TDSINSTREAM * istream, TDSOUTSTREAM * ostream);
79
80/* Additional streams */
81
83typedef struct tds_datain_stream {
84 TDSINSTREAM stream;
85 size_t wire_size;
86 TDSSOCKET *tds;
88
89void tds_datain_stream_init(TDSDATAINSTREAM * stream, TDSSOCKET * tds, size_t wire_size);
90
92typedef struct tds_dataout_stream {
93 TDSOUTSTREAM stream;
94 TDSSOCKET *tds;
95 size_t written;
97
99
101typedef struct tds_staticin_stream {
102 TDSINSTREAM stream;
103 const char *buffer;
104 size_t buf_left;
106
107void tds_staticin_stream_init(TDSSTATICINSTREAM * stream, const void *ptr, size_t len);
108
112typedef struct tds_staticout_stream {
113 TDSOUTSTREAM stream;
115
116void tds_staticout_stream_init(TDSSTATICOUTSTREAM * stream, void *ptr, size_t len);
117
119typedef struct tds_dynamic_stream {
120 TDSOUTSTREAM stream;
122 void **buf;
124 size_t allocated;
126 size_t size;
128
129TDSRET tds_dynamic_stream_init(TDSDYNAMICSTREAM * stream, void **ptr, size_t allocated);
130
131#include <freetds/popvis.h>
132
133#endif
134
Definition iconv.h:98
define a stream of data used for input
Definition stream.h:32
int(* read)(struct tds_input_stream *stream, void *ptr, size_t len)
read some data Return 0 if end of stream Return <0 if error (actually not defined)
Definition stream.h:37
define a stream of data used for output
Definition stream.h:41
char * buffer
write buffer.
Definition stream.h:52
int(* write)(struct tds_output_stream *stream, size_t len)
write len bytes from buffer, return <0 if error or len
Definition stream.h:43
Output stream that writes to file.
Definition stream.h:60
int buff_mode
How to buffer the data – _IONBF, _IOLBF or _IOFBF (default).
Definition stream.h:66
input stream to read data from tds protocol
Definition stream.h:83
size_t wire_size
bytes still to read
Definition stream.h:85
output stream to write data to tds protocol
Definition stream.h:92
input stream to read data from a static buffer
Definition stream.h:101
output stream to write data to a static buffer.
Definition stream.h:112
output stream to write data to a dynamic buffer
Definition stream.h:119
void ** buf
where is stored the pointer
Definition stream.h:122
size_t size
size of data inside buffer
Definition stream.h:126
size_t allocated
currently allocated buffer
Definition stream.h:124
Information for a server connection.
Definition tds.h:1174
TDSRET tds_dynamic_stream_init(TDSDYNAMICSTREAM *stream, void **ptr, size_t allocated)
Initialize a dynamic output stream.
Definition stream.c:354
TDSRET tds_copy_stream(TDSINSTREAM *istream, TDSOUTSTREAM *ostream)
Reads and writes from a stream to another.
Definition stream.c:163
TDSRET tds_convert_stream(TDSSOCKET *tds, TDSICONV *char_conv, TDS_ICONV_DIRECTION direction, TDSINSTREAM *istream, TDSOUTSTREAM *ostream)
Reads and writes from a stream converting characters.
Definition stream.c:71
void tds_staticout_stream_init(TDSSTATICOUTSTREAM *stream, void *ptr, size_t len)
Initialize an output stream for write into a static allocated buffer.
Definition stream.c:313
void tds_dataout_stream_init(TDSDATAOUTSTREAM *stream, TDSSOCKET *tds)
Initialize a data output stream.
Definition stream.c:244
void tds_staticin_stream_init(TDSSTATICINSTREAM *stream, const void *ptr, size_t len)
Initialize an input stream for read from a static allocated buffer.
Definition stream.c:286
void tds_datain_stream_init(TDSDATAINSTREAM *stream, TDSSOCKET *tds, size_t wire_size)
Initialize a data input stream.
Definition stream.c:204