hlink/tests: Add a trailing '\n' to an ok() call.
[wine.git] / server / serial.c
blob6f9cc2444f7eb9c096a00343827ed44254f402e2
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 */
126 /* check if the given fd is a serial port */
127 int is_serial_fd( struct fd *fd )
129 struct termios tios;
131 return !tcgetattr( get_unix_fd(fd), &tios );
134 /* create a serial object for a given fd */
135 struct object *create_serial( struct fd *fd )
137 struct serial *serial;
139 if (!(serial = alloc_object( &serial_ops ))) return NULL;
141 serial->read_timer = NULL;
142 serial->readinterval = 0;
143 serial->readmult = 0;
144 serial->readconst = 0;
145 serial->writemult = 0;
146 serial->writeconst = 0;
147 serial->eventmask = 0;
148 serial->generation = 0;
149 serial->pending_write = 0;
150 serial->pending_wait = 0;
151 serial->fd = (struct fd *)grab_object( fd );
152 set_fd_user( fd, &serial_fd_ops, &serial->obj );
153 return &serial->obj;
156 static struct fd *serial_get_fd( struct object *obj )
158 struct serial *serial = (struct serial *)obj;
159 return (struct fd *)grab_object( serial->fd );
162 static void serial_destroy( struct object *obj)
164 struct serial *serial = (struct serial *)obj;
165 if (serial->read_timer) remove_timeout_user( serial->read_timer );
166 release_object( serial->fd );
169 static void serial_dump( struct object *obj, int verbose )
171 struct serial *serial = (struct serial *)obj;
172 assert( obj->ops == &serial_ops );
173 fprintf( stderr, "Port fd=%p mask=%x\n", serial->fd, serial->eventmask );
176 static struct serial *get_serial_obj( struct process *process, obj_handle_t handle, unsigned int access )
178 return (struct serial *)get_handle_obj( process, handle, access, &serial_ops );
181 static enum server_fd_type serial_get_fd_type( struct fd *fd )
183 return FD_TYPE_SERIAL;
186 static void serial_queue_async( struct fd *fd, const async_data_t *data, int type, int count )
188 struct serial *serial = get_fd_user( fd );
189 timeout_t timeout = 0;
190 struct async *async;
192 assert(serial->obj.ops == &serial_ops);
194 switch (type)
196 case ASYNC_TYPE_READ:
197 timeout = serial->readconst + (timeout_t)serial->readmult*count;
198 break;
199 case ASYNC_TYPE_WRITE:
200 timeout = serial->writeconst + (timeout_t)serial->writemult*count;
201 break;
204 if ((async = fd_queue_async( fd, data, NULL, type )))
206 if (timeout) async_set_timeout( async, timeout * -10000, STATUS_TIMEOUT );
207 release_object( async );
208 set_error( STATUS_PENDING );
212 static void serial_read_timeout( void *arg )
214 struct serial *serial = arg;
216 serial->read_timer = NULL;
217 fd_async_wake_up( serial->fd, ASYNC_TYPE_READ, STATUS_TIMEOUT );
220 static void serial_reselect_async( struct fd *fd, struct async_queue *queue )
222 struct serial *serial = get_fd_user( fd );
224 if (serial->read_timer)
226 if (!(default_fd_get_poll_events( fd ) & POLLIN))
228 remove_timeout_user( serial->read_timer );
229 serial->read_timer = NULL;
232 else if (serial->readinterval && (default_fd_get_poll_events( fd ) & POLLIN))
234 serial->read_timer = add_timeout_user( (timeout_t)serial->readinterval * -10000,
235 serial_read_timeout, serial );
237 default_fd_reselect_async( fd, queue );
240 DECL_HANDLER(get_serial_info)
242 struct serial *serial;
244 if ((serial = get_serial_obj( current->process, req->handle, 0 )))
246 if (req->flags & SERIALINFO_PENDING_WAIT)
248 if (serial->pending_wait)
250 release_object( serial );
251 set_error( STATUS_INVALID_PARAMETER );
252 return;
254 serial->pending_wait = 1;
257 /* timeouts */
258 reply->readinterval = serial->readinterval;
259 reply->readconst = serial->readconst;
260 reply->readmult = serial->readmult;
261 reply->writeconst = serial->writeconst;
262 reply->writemult = serial->writemult;
264 /* event mask */
265 reply->eventmask = serial->eventmask;
266 reply->cookie = serial->generation;
268 /* pending write */
269 reply->pending_write = serial->pending_write;
270 if (req->flags & SERIALINFO_PENDING_WRITE)
271 serial->pending_write = 0;
273 release_object( serial );
277 DECL_HANDLER(set_serial_info)
279 struct serial *serial;
281 if ((serial = get_serial_obj( current->process, req->handle, 0 )))
283 if (req->flags & SERIALINFO_PENDING_WAIT)
285 if (!serial->pending_wait)
287 release_object( serial );
288 set_error( STATUS_INVALID_PARAMETER );
289 return;
291 serial->pending_wait = 0;
294 /* timeouts */
295 if (req->flags & SERIALINFO_SET_TIMEOUTS)
297 serial->readinterval = req->readinterval;
298 serial->readconst = req->readconst;
299 serial->readmult = req->readmult;
300 serial->writeconst = req->writeconst;
301 serial->writemult = req->writemult;
304 /* pending write */
305 if (req->flags & SERIALINFO_PENDING_WRITE)
306 serial->pending_write = 1;
308 /* event mask */
309 if (req->flags & SERIALINFO_SET_MASK)
311 serial->eventmask = req->eventmask;
312 serial->generation++;
313 fd_async_wake_up( serial->fd, ASYNC_TYPE_WAIT, STATUS_SUCCESS );
316 release_object( serial );