Convert async I/O queues to standard lists.
[wine/wine64.git] / server / serial.c
bloba0d59a9a987303079cd77db2ba0ae83a82f7ba6f
1 /*
2 * Server-side serial port communications management
4 * Copyright (C) 1998 Alexandre Julliard
5 * Copyright (C) 2000,2001 Mike McCormack
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include "config.h"
24 #include "wine/port.h"
26 #include <assert.h>
27 #include <fcntl.h>
28 #include <stdarg.h>
29 #include <stdio.h>
30 #include <string.h>
31 #include <stdlib.h>
32 #include <sys/time.h>
33 #include <sys/types.h>
34 #include <time.h>
35 #include <unistd.h>
36 #ifdef HAVE_UTIME_H
37 #include <utime.h>
38 #endif
39 #ifdef HAVE_TERMIOS_H
40 #include <termios.h>
41 #endif
42 #ifdef HAVE_SYS_IOCTL_H
43 #include <sys/ioctl.h>
44 #endif
46 #include "winerror.h"
47 #include "windef.h"
48 #include "winbase.h"
49 #include "winreg.h"
50 #include "winternl.h"
52 #include "file.h"
53 #include "handle.h"
54 #include "thread.h"
55 #include "request.h"
57 static void serial_dump( struct object *obj, int verbose );
58 static struct fd *serial_get_fd( struct object *obj );
59 static void serial_destroy(struct object *obj);
61 static int serial_get_poll_events( struct fd *fd );
62 static void serial_poll_event( struct fd *fd, int event );
63 static int serial_get_info( struct fd *fd );
64 static int serial_flush( struct fd *fd, struct event **event );
65 static void serial_queue_async( struct fd *fd, void *apc, void *user, void *iosb, int type, int count );
66 static void serial_cancel_async( struct fd *fd );
68 struct serial
70 struct object obj;
71 struct fd *fd;
72 unsigned int options;
74 /* timeout values */
75 unsigned int readinterval;
76 unsigned int readconst;
77 unsigned int readmult;
78 unsigned int writeconst;
79 unsigned int writemult;
81 unsigned int eventmask;
82 unsigned int commerror;
84 struct termios original;
86 struct list read_q;
87 struct list write_q;
88 struct list wait_q;
90 /* FIXME: add dcb, comm status, handler module, sharing */
93 static const struct object_ops serial_ops =
95 sizeof(struct serial), /* size */
96 serial_dump, /* dump */
97 default_fd_add_queue, /* add_queue */
98 default_fd_remove_queue, /* remove_queue */
99 default_fd_signaled, /* signaled */
100 no_satisfied, /* satisfied */
101 serial_get_fd, /* get_fd */
102 serial_destroy /* destroy */
105 static const struct fd_ops serial_fd_ops =
107 serial_get_poll_events, /* get_poll_events */
108 serial_poll_event, /* poll_event */
109 serial_flush, /* flush */
110 serial_get_info, /* get_file_info */
111 serial_queue_async, /* queue_async */
112 serial_cancel_async /* cancel_async */
115 /* check if the given fd is a serial port */
116 int is_serial_fd( struct fd *fd )
118 struct termios tios;
120 return !tcgetattr( get_unix_fd(fd), &tios );
123 /* create a serial object for a given fd */
124 struct object *create_serial( struct fd *fd, unsigned int options )
126 struct serial *serial;
127 int unix_fd;
129 if ((unix_fd = dup( get_unix_fd(fd) )) == -1) return NULL;
131 /* set the fd back to blocking if necessary */
132 if (options & (FILE_SYNCHRONOUS_IO_ALERT | FILE_SYNCHRONOUS_IO_NONALERT))
133 fcntl( unix_fd, F_SETFL, 0 );
135 if (!(serial = alloc_object( &serial_ops )))
137 close( unix_fd );
138 return NULL;
140 serial->options = options;
141 serial->readinterval = 0;
142 serial->readmult = 0;
143 serial->readconst = 0;
144 serial->writemult = 0;
145 serial->writeconst = 0;
146 serial->eventmask = 0;
147 serial->commerror = 0;
148 list_init( &serial->read_q );
149 list_init( &serial->write_q );
150 list_init( &serial->wait_q );
151 if (!(serial->fd = create_anonymous_fd( &serial_fd_ops, unix_fd, &serial->obj )))
153 release_object( serial );
154 return NULL;
156 return &serial->obj;
159 static struct fd *serial_get_fd( struct object *obj )
161 struct serial *serial = (struct serial *)obj;
162 return (struct fd *)grab_object( serial->fd );
165 static void serial_destroy( struct object *obj)
167 struct serial *serial = (struct serial *)obj;
169 async_terminate_queue( &serial->read_q, STATUS_CANCELLED );
170 async_terminate_queue( &serial->write_q, STATUS_CANCELLED );
171 async_terminate_queue( &serial->wait_q, STATUS_CANCELLED );
172 if (serial->fd) release_object( serial->fd );
175 static void serial_dump( struct object *obj, int verbose )
177 struct serial *serial = (struct serial *)obj;
178 assert( obj->ops == &serial_ops );
179 fprintf( stderr, "Port fd=%p mask=%x\n", serial->fd, serial->eventmask );
182 static struct serial *get_serial_obj( struct process *process, obj_handle_t handle, unsigned int access )
184 return (struct serial *)get_handle_obj( process, handle, access, &serial_ops );
187 static int serial_get_poll_events( struct fd *fd )
189 struct serial *serial = get_fd_user( fd );
190 int events = 0;
191 assert( serial->obj.ops == &serial_ops );
193 if (!list_empty( &serial->read_q )) events |= POLLIN;
194 if (!list_empty( &serial->write_q )) events |= POLLOUT;
195 if (!list_empty( &serial->wait_q )) events |= POLLIN;
197 /* fprintf(stderr,"poll events are %04x\n",events); */
199 return events;
202 static int serial_get_info( struct fd *fd )
204 int flags = 0;
205 struct serial *serial = get_fd_user( fd );
206 assert( serial->obj.ops == &serial_ops );
208 if (!(serial->options & (FILE_SYNCHRONOUS_IO_ALERT | FILE_SYNCHRONOUS_IO_NONALERT)))
209 flags |= FD_FLAG_OVERLAPPED;
210 else if (!(serial->readinterval == MAXDWORD &&
211 serial->readmult == 0 && serial->readconst == 0))
212 flags |= FD_FLAG_TIMEOUT;
213 if (serial->readinterval == MAXDWORD &&
214 serial->readmult == 0 && serial->readconst == 0)
215 flags |= FD_FLAG_AVAILABLE;
217 return flags;
220 static void serial_poll_event(struct fd *fd, int event)
222 struct serial *serial = get_fd_user( fd );
224 /* fprintf(stderr,"Poll event %02x\n",event); */
226 if (!list_empty( &serial->read_q ) && (POLLIN & event) )
227 async_terminate_head( &serial->read_q, STATUS_ALERTED );
229 if (!list_empty( &serial->write_q ) && (POLLOUT & event) )
230 async_terminate_head( &serial->write_q, STATUS_ALERTED );
232 if (!list_empty( &serial->wait_q ) && (POLLIN & event) )
233 async_terminate_head( &serial->wait_q, STATUS_ALERTED );
235 set_fd_events( fd, serial_get_poll_events(fd) );
238 static void serial_queue_async( struct fd *fd, void *apc, void *user, void *iosb,
239 int type, int count )
241 struct serial *serial = get_fd_user( fd );
242 struct list *queue;
243 int timeout;
244 int events;
246 assert(serial->obj.ops == &serial_ops);
248 switch (type)
250 case ASYNC_TYPE_READ:
251 queue = &serial->read_q;
252 timeout = serial->readconst + serial->readmult*count;
253 break;
254 case ASYNC_TYPE_WAIT:
255 queue = &serial->wait_q;
256 timeout = 0;
257 break;
258 case ASYNC_TYPE_WRITE:
259 queue = &serial->write_q;
260 timeout = serial->writeconst + serial->writemult*count;
261 break;
262 default:
263 set_error(STATUS_INVALID_PARAMETER);
264 return;
267 if (!create_async( fd, current, timeout, queue, apc, user, iosb ))
268 return;
270 /* Check if the new pending request can be served immediately */
271 events = check_fd_events( fd, serial_get_poll_events( fd ) );
272 if (events)
274 /* serial_poll_event() calls set_select_events() */
275 serial_poll_event( fd, events );
276 return;
279 set_fd_events( fd, serial_get_poll_events( fd ) );
282 static void serial_cancel_async( struct fd *fd )
284 struct serial *serial = get_fd_user( fd );
285 assert(serial->obj.ops == &serial_ops);
287 async_terminate_queue( &serial->read_q, STATUS_CANCELLED );
288 async_terminate_queue( &serial->write_q, STATUS_CANCELLED );
289 async_terminate_queue( &serial->wait_q, STATUS_CANCELLED );
292 static int serial_flush( struct fd *fd, struct event **event )
294 /* MSDN says: If hFile is a handle to a communications device,
295 * the function only flushes the transmit buffer.
297 int ret = (tcflush( get_unix_fd(fd), TCOFLUSH ) != -1);
298 if (!ret) file_set_error();
299 return ret;
302 DECL_HANDLER(get_serial_info)
304 struct serial *serial;
306 if ((serial = get_serial_obj( current->process, req->handle, 0 )))
308 /* timeouts */
309 reply->readinterval = serial->readinterval;
310 reply->readconst = serial->readconst;
311 reply->readmult = serial->readmult;
312 reply->writeconst = serial->writeconst;
313 reply->writemult = serial->writemult;
315 /* event mask */
316 reply->eventmask = serial->eventmask;
318 /* comm port error status */
319 reply->commerror = serial->commerror;
321 release_object( serial );
325 DECL_HANDLER(set_serial_info)
327 struct serial *serial;
329 if ((serial = get_serial_obj( current->process, req->handle, 0 )))
331 /* timeouts */
332 if (req->flags & SERIALINFO_SET_TIMEOUTS)
334 serial->readinterval = req->readinterval;
335 serial->readconst = req->readconst;
336 serial->readmult = req->readmult;
337 serial->writeconst = req->writeconst;
338 serial->writemult = req->writemult;
341 /* event mask */
342 if (req->flags & SERIALINFO_SET_MASK)
344 serial->eventmask = req->eventmask;
345 if (!serial->eventmask)
347 async_terminate_queue( &serial->wait_q, STATUS_SUCCESS );
351 /* comm port error status */
352 if (req->flags & SERIALINFO_SET_ERROR)
354 serial->commerror = req->commerror;
357 release_object( serial );