d3d10core/tests: Port test_occlusion_query() from d3d11.
[wine.git] / server / serial.c
blob03d726a98ea589182a87eb6562c01c2367ee2c27
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, 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 void serial_destroy(struct object *obj);
63 static enum server_fd_type serial_get_fd_type( struct fd *fd );
64 static void serial_queue_async( struct fd *fd, const async_data_t *data, int type, int count );
65 static void serial_reselect_async( struct fd *fd, struct async_queue *queue );
67 struct serial
69 struct object obj;
70 struct fd *fd;
72 struct timeout_user *read_timer;
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 generation; /* event mask change counter */
83 unsigned int pending_write : 1;
84 unsigned int pending_wait : 1;
86 struct termios original;
88 /* FIXME: add dcb, comm status, handler module, sharing */
91 static const struct object_ops serial_ops =
93 sizeof(struct serial), /* size */
94 serial_dump, /* dump */
95 no_get_type, /* get_type */
96 add_queue, /* add_queue */
97 remove_queue, /* remove_queue */
98 default_fd_signaled, /* signaled */
99 no_satisfied, /* satisfied */
100 no_signal, /* signal */
101 serial_get_fd, /* get_fd */
102 default_fd_map_access, /* map_access */
103 default_get_sd, /* get_sd */
104 default_set_sd, /* set_sd */
105 no_lookup_name, /* lookup_name */
106 no_link_name, /* link_name */
107 NULL, /* unlink_name */
108 no_open_file, /* open_file */
109 fd_close_handle, /* close_handle */
110 serial_destroy /* destroy */
113 static const struct fd_ops serial_fd_ops =
115 default_fd_get_poll_events, /* get_poll_events */
116 default_poll_event, /* poll_event */
117 serial_get_fd_type, /* get_fd_type */
118 no_fd_read, /* read */
119 no_fd_write, /* write */
120 no_fd_flush, /* flush */
121 default_fd_ioctl, /* ioctl */
122 serial_queue_async, /* queue_async */
123 serial_reselect_async, /* reselect_async */
124 default_fd_cancel_async /* cancel_async */
127 /* check if the given fd is a serial port */
128 int is_serial_fd( struct fd *fd )
130 struct termios tios;
132 return !tcgetattr( get_unix_fd(fd), &tios );
135 /* create a serial object for a given fd */
136 struct object *create_serial( struct fd *fd )
138 struct serial *serial;
140 if (!(serial = alloc_object( &serial_ops ))) return NULL;
142 serial->read_timer = NULL;
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->generation = 0;
150 serial->pending_write = 0;
151 serial->pending_wait = 0;
152 serial->fd = (struct fd *)grab_object( fd );
153 set_fd_user( fd, &serial_fd_ops, &serial->obj );
154 return &serial->obj;
157 static struct fd *serial_get_fd( struct object *obj )
159 struct serial *serial = (struct serial *)obj;
160 return (struct fd *)grab_object( serial->fd );
163 static void serial_destroy( struct object *obj)
165 struct serial *serial = (struct serial *)obj;
166 if (serial->read_timer) remove_timeout_user( serial->read_timer );
167 release_object( serial->fd );
170 static void serial_dump( struct object *obj, int verbose )
172 struct serial *serial = (struct serial *)obj;
173 assert( obj->ops == &serial_ops );
174 fprintf( stderr, "Port fd=%p mask=%x\n", serial->fd, serial->eventmask );
177 static struct serial *get_serial_obj( struct process *process, obj_handle_t handle, unsigned int access )
179 return (struct serial *)get_handle_obj( process, handle, access, &serial_ops );
182 static enum server_fd_type serial_get_fd_type( struct fd *fd )
184 return FD_TYPE_SERIAL;
187 static void serial_queue_async( struct fd *fd, const async_data_t *data, int type, int count )
189 struct serial *serial = get_fd_user( fd );
190 timeout_t timeout = 0;
191 struct async *async;
193 assert(serial->obj.ops == &serial_ops);
195 switch (type)
197 case ASYNC_TYPE_READ:
198 timeout = serial->readconst + (timeout_t)serial->readmult*count;
199 break;
200 case ASYNC_TYPE_WRITE:
201 timeout = serial->writeconst + (timeout_t)serial->writemult*count;
202 break;
205 if ((async = fd_queue_async( fd, data, type )))
207 if (timeout) async_set_timeout( async, timeout * -10000, STATUS_TIMEOUT );
208 release_object( async );
209 set_error( STATUS_PENDING );
213 static void serial_read_timeout( void *arg )
215 struct serial *serial = arg;
217 serial->read_timer = NULL;
218 fd_async_wake_up( serial->fd, ASYNC_TYPE_READ, STATUS_TIMEOUT );
221 static void serial_reselect_async( struct fd *fd, struct async_queue *queue )
223 struct serial *serial = get_fd_user( fd );
225 if (serial->read_timer)
227 if (!(default_fd_get_poll_events( fd ) & POLLIN))
229 remove_timeout_user( serial->read_timer );
230 serial->read_timer = NULL;
233 else if (serial->readinterval && (default_fd_get_poll_events( fd ) & POLLIN))
235 serial->read_timer = add_timeout_user( (timeout_t)serial->readinterval * -10000,
236 serial_read_timeout, serial );
238 default_fd_reselect_async( fd, queue );
241 DECL_HANDLER(get_serial_info)
243 struct serial *serial;
245 if ((serial = get_serial_obj( current->process, req->handle, 0 )))
247 if (req->flags & SERIALINFO_PENDING_WAIT)
249 if (serial->pending_wait)
251 release_object( serial );
252 set_error( STATUS_INVALID_PARAMETER );
253 return;
255 serial->pending_wait = 1;
258 /* timeouts */
259 reply->readinterval = serial->readinterval;
260 reply->readconst = serial->readconst;
261 reply->readmult = serial->readmult;
262 reply->writeconst = serial->writeconst;
263 reply->writemult = serial->writemult;
265 /* event mask */
266 reply->eventmask = serial->eventmask;
267 reply->cookie = serial->generation;
269 /* pending write */
270 reply->pending_write = serial->pending_write;
271 if (req->flags & SERIALINFO_PENDING_WRITE)
272 serial->pending_write = 0;
274 release_object( serial );
278 DECL_HANDLER(set_serial_info)
280 struct serial *serial;
282 if ((serial = get_serial_obj( current->process, req->handle, 0 )))
284 if (req->flags & SERIALINFO_PENDING_WAIT)
286 if (!serial->pending_wait)
288 release_object( serial );
289 set_error( STATUS_INVALID_PARAMETER );
290 return;
292 serial->pending_wait = 0;
295 /* timeouts */
296 if (req->flags & SERIALINFO_SET_TIMEOUTS)
298 serial->readinterval = req->readinterval;
299 serial->readconst = req->readconst;
300 serial->readmult = req->readmult;
301 serial->writeconst = req->writeconst;
302 serial->writemult = req->writemult;
305 /* pending write */
306 if (req->flags & SERIALINFO_PENDING_WRITE)
307 serial->pending_write = 1;
309 /* event mask */
310 if (req->flags & SERIALINFO_SET_MASK)
312 serial->eventmask = req->eventmask;
313 serial->generation++;
314 fd_async_wake_up( serial->fd, ASYNC_TYPE_WAIT, STATUS_SUCCESS );
317 release_object( serial );