ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro-Mysql/Mysql.xs
(Generate patch)

Comparing Coro-Mysql/Mysql.xs (file contents):
Revision 1.2 by root, Tue Jun 16 17:28:00 2009 UTC vs.
Revision 1.13 by root, Tue Jun 3 03:08:34 2014 UTC

1#include <sys/errno.h> 1#include <errno.h>
2#include <unistd.h> 2#include <unistd.h>
3#include <fcntl.h> 3#include <fcntl.h>
4 4
5#include <mysql.h> 5#include <mysql.h>
6 6
7#include "EXTERN.h" 7#include "EXTERN.h"
8#include "perl.h" 8#include "perl.h"
9#include "XSUB.h" 9#include "XSUB.h"
10 10
11#if HAVE_EV
12# include "EVAPI.h"
13# include "CoroAPI.h"
14#endif
15
16#define IN_DESTRUCT PL_dirty
17
11typedef U16 uint16; 18typedef U16 uint16;
12 19
13/* cached function gv's */ 20/* cached function gv's */
14static CV *readable, *writable; 21static CV *readable, *writable;
22static int use_ev;
15 23
16#include "violite.h" 24#include "violite.h"
17 25
18#define DESC_OFFSET 22
19
20#define CoMy_MAGIC 0x436f4d79 26#define CoMy_MAGIC 0x436f4d79
21 27
22typedef struct { 28typedef struct {
29#if DESC_IS_PTR
30 char desc[30];
31 const char *old_desc;
32#endif
23 int magic; 33 int magic;
24 SV *corosocket; 34 SV *corohandle_sv, *corohandle;
25 int bufofs, bufcnt; 35 int bufofs, bufcnt;
36#if HAVE_EV
37 ev_io rw, ww;
38#endif
26 char buf[VIO_READ_BUFFER_SIZE]; 39 char buf[VIO_READ_BUFFER_SIZE];
40 size_t (*old_read)(Vio*, uchar *, size_t);
41 size_t (*old_write)(Vio*, const uchar *, size_t);
42 int (*old_vioclose)(Vio*);
27} ourdata; 43} ourdata;
28 44
45#if DESC_IS_PTR
46# define OURDATAPTR (*(ourdata **)&((vio)->desc))
47#else
48# define DESC_OFFSET 22
29#define OURDATAPTR (*((ourdata **)((vio)->desc + DESC_OFFSET))) 49# define OURDATAPTR (*((ourdata **)((vio)->desc + DESC_OFFSET)))
50#endif
30 51
31static int 52static xlen
32our_read (Vio *vio, gptr p, int len) 53our_read (Vio *vio, xgptr p, xlen len)
33{ 54{
34 ourdata *our = OURDATAPTR; 55 ourdata *our = OURDATAPTR;
35 56
36 if (!our->bufcnt) 57 if (!our->bufcnt)
37 { 58 {
45 rd = recv (vio->sd, our->buf, sizeof (our->buf), 0); 66 rd = recv (vio->sd, our->buf, sizeof (our->buf), 0);
46 67
47 if (rd >= 0 || errno != EAGAIN) 68 if (rd >= 0 || errno != EAGAIN)
48 break; 69 break;
49 70
71#if HAVE_EV
72 if (use_ev)
50 { 73 {
74 our->rw.data = (void *)sv_2mortal (SvREFCNT_inc (CORO_CURRENT));
75 ev_io_start (EV_DEFAULT_UC, &(our->rw));
76 CORO_SCHEDULE;
77 ev_io_stop (EV_DEFAULT_UC, &(our->rw)); /* avoids races */
78 }
79 else
80#endif
81 {
51 dSP; 82 dSP;
52 PUSHMARK (SP); 83 PUSHMARK (SP);
53 XPUSHs (our->corosocket); 84 XPUSHs (our->corohandle);
54 PUTBACK; 85 PUTBACK;
55 call_sv ((SV *)readable, G_VOID | G_DISCARD); 86 call_sv ((SV *)readable, G_VOID | G_DISCARD);
56 } 87 }
57 } 88 }
58 89
59 if (rd <= 0) 90 if (rd <= 0)
60 return rd; 91 return rd;
61 92
71 our->bufcnt -= len; 102 our->bufcnt -= len;
72 103
73 return len; 104 return len;
74} 105}
75 106
76static int 107static xlen
77our_write (Vio *vio, const gptr p, int len) 108our_write (Vio *vio, cxgptr p, xlen len)
78{ 109{
79 char *ptr = (char *)p; 110 char *ptr = (char *)p;
80 my_bool dummy; 111 my_bool dummy;
81 112
82 vio->vioblocking (vio, 0, &dummy); 113 vio->vioblocking (vio, 0, &dummy);
90 ptr += wr; 121 ptr += wr;
91 len -= wr; 122 len -= wr;
92 } 123 }
93 else if (errno == EAGAIN) 124 else if (errno == EAGAIN)
94 { 125 {
126 ourdata *our = OURDATAPTR;
127
128#if HAVE_EV
129 if (use_ev)
130 {
131 our->ww.data = (void *)sv_2mortal (SvREFCNT_inc (CORO_CURRENT));
132 ev_io_start (EV_DEFAULT_UC, &(our->ww));
133 CORO_SCHEDULE;
134 ev_io_stop (EV_DEFAULT_UC, &(our->ww)); /* avoids races */
135 }
136 else
137#endif
138 {
95 dSP; 139 dSP;
96 PUSHMARK (SP); 140 PUSHMARK (SP);
97 XPUSHs (OURDATAPTR->corosocket); 141 XPUSHs (our->corohandle);
98 PUTBACK; 142 PUTBACK;
99 call_sv ((SV *)writable, G_VOID | G_DISCARD); 143 call_sv ((SV *)writable, G_VOID | G_DISCARD);
144 }
100 } 145 }
101 else if (ptr == (char *)p) 146 else if (ptr == (char *)p)
102 return -1; 147 return -1;
103 else 148 else
104 break; 149 break;
105 } 150 }
106 151
107 return ptr - (char *)p; 152 return ptr - (char *)p;
108} 153}
109 154
155static int
156our_close (Vio *vio)
157{
158 ourdata *our = OURDATAPTR;
159
160 if (vio->read != our_read)
161 croak ("vio.read has unexpected content during unpatch - wtf?");
162
163 if (vio->write != our_write)
164 croak ("vio.write has unexpected content during unpatch - wtf?");
165
166 if (vio->vioclose != our_close)
167 croak ("vio.vioclose has unexpected content during unpatch - wtf?");
168
169#if HAVE_EV
170 if (use_ev)
171 {
172 ev_io_stop (EV_DEFAULT_UC, &(our->rw));
173 ev_io_stop (EV_DEFAULT_UC, &(our->ww));
174 }
175#endif
176
177 SvREFCNT_dec (our->corohandle);
178 SvREFCNT_dec (our->corohandle_sv);
179
180#if DESC_IS_PTR
181 vio->desc = our->old_desc;
182#endif
183
184 Safefree (our);
185
186 vio->vioclose = our->old_vioclose;
187 vio->write = our->old_write;
188 vio->read = our->old_read;
189
190 vio->vioclose (vio);
191}
192
193#if HAVE_EV
194static void
195iocb (EV_P_ ev_io *w, int revents)
196{
197 ev_io_stop (EV_A, w);
198 CORO_READY ((SV *)w->data);
199}
200#endif
201
110MODULE = Coro::Mysql PACKAGE = Coro::Mysql 202MODULE = Coro::Mysql PACKAGE = Coro::Mysql
111 203
112BOOT: 204BOOT:
113{ 205{
114 readable = get_cv ("Coro::Mysql::readable", 0); 206 readable = get_cv ("Coro::Mysql::readable", 0);
116} 208}
117 209
118PROTOTYPES: ENABLE 210PROTOTYPES: ENABLE
119 211
120void 212void
121_patch (IV sock, int fd, SV *corosocket) 213_use_ev ()
214 PPCODE:
215{
216 static int onceonly;
217
218 if (!onceonly)
219 {
220 onceonly = 1;
221#if HAVE_EV
222 I_EV_API ("Coro::Mysql");
223 I_CORO_API ("Coro::Mysql");
224 use_ev = 1;
225#endif
226 }
227
228 XPUSHs (use_ev ? &PL_sv_yes : &PL_sv_no);
229}
230
231void
232_patch (IV sock, int fd, unsigned long client_version, SV *corohandle_sv, SV *corohandle)
122 CODE: 233 CODE:
123{ 234{
124 MYSQL *my = (MYSQL *)sock; 235 MYSQL *my = (MYSQL *)sock;
125 Vio *vio = my->net.vio; 236 Vio *vio = my->net.vio;
126 ourdata *our; 237 ourdata *our;
127 238
239 /* matching versions are required but not sufficient */
240 if (client_version != mysql_get_client_version ())
241 croak ("DBD::mysql linked against different libmysqlclient library than Coro::Mysql (%lu vs. %lu).",
242 client_version, mysql_get_client_version ());
243
128 if (fd != my->net.fd) 244 if (fd != my->net.fd)
129 croak ("DBD::mysql fd and libmysql disagree - library mismatch, unsupported transport or API changes?"); 245 croak ("DBD::mysql fd and libmysql disagree - library mismatch, unsupported transport or API changes?");
130 246
131 if (fd != vio->sd) 247 if (fd != vio->sd)
132 croak ("DBD::mysql fd and vio-sd disagree - library mismatch, unsupported transport or API changes?"); 248 croak ("DBD::mysql fd and vio-sd disagree - library mismatch, unsupported transport or API changes?");
249#if MYSQL_VERSION_ID < 100010 && !defined(MARIADB_BASE_VERSION)
250 if (vio->vioclose != vio_close)
251 croak ("vio.vioclose has unexpected content - library mismatch, unsupported transport or API changes?");
133 252
134 if (vio->write != vio_write) 253 if (vio->write != vio_write)
135 croak ("vio.write has unexpected content - library mismatch, unsupported transport or API changes?"); 254 croak ("vio.write has unexpected content - library mismatch, unsupported transport or API changes?");
136 255
137 if (vio->read != vio_read && vio->read != vio_read_buff) 256 if (vio->read != vio_read
257 && vio->read != vio_read_buff)
138 croak ("vio.read has unexpected content - library mismatch, unsupported transport or API changes?"); 258 croak ("vio.read has unexpected content - library mismatch, unsupported transport or API changes?");
259#endif
139 260
140 Newz (0, our, 1, ourdata); 261 Newz (0, our, 1, ourdata);
141 our->magic = CoMy_MAGIC; 262 our->magic = CoMy_MAGIC;
263 our->corohandle_sv = newSVsv (corohandle_sv);
142 our->corosocket = newSVsv (corosocket); 264 our->corohandle = newSVsv (corohandle);
143 265#if HAVE_EV
266 if (use_ev)
267 {
268 ev_io_init (&(our->rw), iocb, vio->sd, EV_READ);
269 ev_io_init (&(our->ww), iocb, vio->sd, EV_WRITE);
270 }
271#endif
272#if DESC_IS_PTR
273 our->old_desc = vio->desc;
274 strncpy (our->desc, vio->desc, sizeof (our->desc));
275 our->desc [sizeof (our->desc) - 1] = 0;
276#else
144 vio->desc [DESC_OFFSET - 1] = 0; 277 vio->desc [DESC_OFFSET - 1] = 0;
278#endif
145 OURDATAPTR = our; 279 OURDATAPTR = our;
146 280
281 our->old_vioclose = vio->vioclose;
282 our->old_write = vio->write;
283 our->old_read = vio->read;
284
285 vio->vioclose = our_close;
147 vio->write = our_write; 286 vio->write = our_write;
148 vio->read = our_read; 287 vio->read = our_read;
149} 288}
150 289
151void
152_unpatch (IV sock)
153 CODE:
154{
155 MYSQL *my = (MYSQL *)sock;
156 Vio *vio = my->net.vio;
157 my_bool dummy;
158
159 if (vio->read != our_read)
160 croak ("vio.read has unexpected content during unpatch - wtf?");
161
162 if (vio->write != our_write)
163 croak ("vio.write has unexpected content during unpatch - wtf?");
164
165 SvREFCNT_dec (OURDATAPTR->corosocket);
166
167 Safefree (OURDATAPTR);
168
169 vio->read = vio_read;
170 vio->write = vio_write;
171}
172
173
174

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines