d3d9: Add a test for IDirect3DVertexDeclaration9_GetDeclaration.
[wine/multimedia.git] / server / serial.c
blob42d274fec978509e1cddf3d339350a41ac4a93cb
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
45 #ifdef HAVE_POLL_H
46 #include <poll.h>
47 #endif
49 #include "ntstatus.h"
50 #define WIN32_NO_STATUS
51 #include "windef.h"
52 #include "winternl.h"
54 #include "file.h"
55 #include "handle.h"
56 #include "thread.h"
57 #include "request.h"
59 static void serial_dump( struct object *obj, int verbose );
60 static struct fd *serial_get_fd( struct object *obj );
61 static unsigned int serial_map_access( struct object *obj, unsigned int access );
62 static void serial_destroy(struct object *obj);
64 static int serial_get_poll_events( struct fd *fd );
65 static void serial_poll_event( struct fd *fd, int event );
66 static int serial_get_info( struct fd *fd );
67 static int serial_flush( struct fd *fd, struct event **event );
68 static void serial_queue_async( struct fd *fd, void *apc, void *user, void *iosb, int type, int count );
69 static void serial_cancel_async( struct fd *fd );
71 struct serial
73 struct object obj;
74 struct fd *fd;
75 unsigned int options;
77 /* timeout values */
78 unsigned int readinterval;
79 unsigned int readconst;
80 unsigned int readmult;
81 unsigned int writeconst;
82 unsigned int writemult;
84 unsigned int eventmask;
85 unsigned int commerror;
87 struct termios original;
89 struct list read_q;
90 struct list write_q;
91 struct list wait_q;
93 /* FIXME: add dcb, comm status, handler module, sharing */
96 static const struct object_ops serial_ops =
98 sizeof(struct serial), /* size */
99 serial_dump, /* dump */
100 default_fd_add_queue, /* add_queue */
101 default_fd_remove_queue, /* remove_queue */
102 default_fd_signaled, /* signaled */
103 no_satisfied, /* satisfied */
104 no_signal, /* signal */
105 serial_get_fd, /* get_fd */
106 serial_map_access, /* map_access */
107 no_lookup_name, /* lookup_name */
108 no_close_handle, /* close_handle */
109 serial_destroy /* destroy */
112 static const struct fd_ops serial_fd_ops =
114 serial_get_poll_events, /* get_poll_events */
115 serial_poll_event, /* poll_event */
116 serial_flush, /* flush */
117 serial_get_info, /* get_file_info */
118 serial_queue_async, /* queue_async */
119 serial_cancel_async /* cancel_async */
122 /* check if the given fd is a serial port */
123 int is_serial_fd( struct fd *fd )
125 struct termios tios;
127 return !tcgetattr( get_unix_fd(fd), &tios );
130 /* create a serial object for a given fd */
131 struct object *create_serial( struct fd *fd, unsigned int options )
133 struct serial *serial;
134 int unix_fd = get_unix_fd( fd );
136 /* set the fd back to blocking if necessary */
137 if (options & (FILE_SYNCHRONOUS_IO_ALERT | FILE_SYNCHRONOUS_IO_NONALERT))
138 fcntl( unix_fd, F_SETFL, 0 );
140 if (!(serial = alloc_object( &serial_ops ))) return NULL;
142 serial->options = options;
143 serial->readinterval = 0;
144 serial->readmult = 0;
145 serial->readconst = 0;
146 serial->writemult = 0;
147 serial->writeconst = 0;
148 serial->eventmask = 0;
149 serial->commerror = 0;
150 list_init( &serial->read_q );
151 list_init( &serial->write_q );
152 list_init( &serial->wait_q );
153 serial->fd = (struct fd *)grab_object( fd );
154 set_fd_user( fd, &serial_fd_ops, &serial->obj );
155 return &serial->obj;
158 static struct fd *serial_get_fd( struct object *obj )
160 struct serial *serial = (struct serial *)obj;
161 return (struct fd *)grab_object( serial->fd );
164 static unsigned int serial_map_access( struct object *obj, unsigned int access )
166 if (access & GENERIC_READ) access |= FILE_GENERIC_READ;
167 if (access & GENERIC_WRITE) access |= FILE_GENERIC_WRITE;
168 if (access & GENERIC_EXECUTE) access |= FILE_GENERIC_EXECUTE;
169 if (access & GENERIC_ALL) access |= FILE_ALL_ACCESS;
170 return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL);
173 static void serial_destroy( struct object *obj)
175 struct serial *serial = (struct serial *)obj;
177 async_terminate_queue( &serial->read_q, STATUS_CANCELLED );
178 async_terminate_queue( &serial->write_q, STATUS_CANCELLED );
179 async_terminate_queue( &serial->wait_q, STATUS_CANCELLED );
180 if (serial->fd) release_object( serial->fd );
183 static void serial_dump( struct object *obj, int verbose )
185 struct serial *serial = (struct serial *)obj;
186 assert( obj->ops == &serial_ops );
187 fprintf( stderr, "Port fd=%p mask=%x\n", serial->fd, serial->eventmask );
190 static struct serial *get_serial_obj( struct process *process, obj_handle_t handle, unsigned int access )
192 return (struct serial *)get_handle_obj( process, handle, access, &serial_ops );
195 static int serial_get_poll_events( struct fd *fd )
197 struct serial *serial = get_fd_user( fd );
198 int events = 0;
199 assert( serial->obj.ops == &serial_ops );
201 if (!list_empty( &serial->read_q )) events |= POLLIN;
202 if (!list_empty( &serial->write_q )) events |= POLLOUT;
203 if (!list_empty( &serial->wait_q )) events |= POLLIN;
205 /* fprintf(stderr,"poll events are %04x\n",events); */
207 return events;
210 static int serial_get_info( struct fd *fd )
212 int flags = 0;
213 struct serial *serial = get_fd_user( fd );
214 assert( serial->obj.ops == &serial_ops );
216 if (!(serial->options & (FILE_SYNCHRONOUS_IO_ALERT | FILE_SYNCHRONOUS_IO_NONALERT)))
217 flags |= FD_FLAG_OVERLAPPED;
218 else if (!(serial->readinterval == MAXDWORD &&
219 serial->readmult == 0 && serial->readconst == 0))
220 flags |= FD_FLAG_TIMEOUT;
221 if (serial->readinterval == MAXDWORD &&
222 serial->readmult == 0 && serial->readconst == 0)
223 flags |= FD_FLAG_AVAILABLE;
225 return flags;
228 static void serial_poll_event(struct fd *fd, int event)
230 struct serial *serial = get_fd_user( fd );
232 /* fprintf(stderr,"Poll event %02x\n",event); */
234 if (!list_empty( &serial->read_q ) && (POLLIN & event) )
235 async_terminate_head( &serial->read_q, STATUS_ALERTED );
237 if (!list_empty( &serial->write_q ) && (POLLOUT & event) )
238 async_terminate_head( &serial->write_q, STATUS_ALERTED );
240 if (!list_empty( &serial->wait_q ) && (POLLIN & event) )
241 async_terminate_head( &serial->wait_q, STATUS_ALERTED );
243 set_fd_events( fd, serial_get_poll_events(fd) );
246 static void serial_queue_async( struct fd *fd, void *apc, void *user, void *iosb,
247 int type, int count )
249 struct serial *serial = get_fd_user( fd );
250 struct list *queue;
251 int timeout;
252 int events;
254 assert(serial->obj.ops == &serial_ops);
256 switch (type)
258 case ASYNC_TYPE_READ:
259 queue = &serial->read_q;
260 timeout = serial->readconst + serial->readmult*count;
261 break;
262 case ASYNC_TYPE_WAIT:
263 queue = &serial->wait_q;
264 timeout = 0;
265 break;
266 case ASYNC_TYPE_WRITE:
267 queue = &serial->write_q;
268 timeout = serial->writeconst + serial->writemult*count;
269 break;
270 default:
271 set_error(STATUS_INVALID_PARAMETER);
272 return;
275 if (!create_async( current, &timeout, queue, apc, user, iosb ))
276 return;
278 /* Check if the new pending request can be served immediately */
279 events = check_fd_events( fd, serial_get_poll_events( fd ) );
280 if (events)
282 /* serial_poll_event() calls set_select_events() */
283 serial_poll_event( fd, events );
284 return;
287 set_fd_events( fd, serial_get_poll_events( fd ) );
290 static void serial_cancel_async( struct fd *fd )
292 struct serial *serial = get_fd_user( fd );
293 assert(serial->obj.ops == &serial_ops);
295 async_terminate_queue( &serial->read_q, STATUS_CANCELLED );
296 async_terminate_queue( &serial->write_q, STATUS_CANCELLED );
297 async_terminate_queue( &serial->wait_q, STATUS_CANCELLED );
300 static int serial_flush( struct fd *fd, struct event **event )
302 /* MSDN says: If hFile is a handle to a communications device,
303 * the function only flushes the transmit buffer.
305 int ret = (tcflush( get_unix_fd(fd), TCOFLUSH ) != -1);
306 if (!ret) file_set_error();
307 return ret;
310 DECL_HANDLER(get_serial_info)
312 struct serial *serial;
314 if ((serial = get_serial_obj( current->process, req->handle, 0 )))
316 /* timeouts */
317 reply->readinterval = serial->readinterval;
318 reply->readconst = serial->readconst;
319 reply->readmult = serial->readmult;
320 reply->writeconst = serial->writeconst;
321 reply->writemult = serial->writemult;
323 /* event mask */
324 reply->eventmask = serial->eventmask;
326 /* comm port error status */
327 reply->commerror = serial->commerror;
329 release_object( serial );
333 DECL_HANDLER(set_serial_info)
335 struct serial *serial;
337 if ((serial = get_serial_obj( current->process, req->handle, 0 )))
339 /* timeouts */
340 if (req->flags & SERIALINFO_SET_TIMEOUTS)
342 serial->readinterval = req->readinterval;
343 serial->readconst = req->readconst;
344 serial->readmult = req->readmult;
345 serial->writeconst = req->writeconst;
346 serial->writemult = req->writemult;
349 /* event mask */
350 if (req->flags & SERIALINFO_SET_MASK)
352 serial->eventmask = req->eventmask;
353 if (!serial->eventmask)
355 async_terminate_queue( &serial->wait_q, STATUS_SUCCESS );
359 /* comm port error status */
360 if (req->flags & SERIALINFO_SET_ERROR)
362 serial->commerror = req->commerror;
365 release_object( serial );