kernel32: Factor out all kernel32 timeout-conversion snippets to one helper functions.
[wine/wine64.git] / server / serial.c
blob628db5a36d3b87f3e716bd0221ecd8c1f534cf45
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 unsigned int serial_map_access( struct object *obj, unsigned int access );
62 static void serial_destroy(struct object *obj);
64 static enum server_fd_type serial_get_fd_type( struct fd *fd );
65 static void serial_flush( struct fd *fd, struct event **event );
66 static void serial_queue_async( struct fd *fd, const async_data_t *data, int type, int count );
68 struct serial
70 struct object obj;
71 struct fd *fd;
73 /* timeout values */
74 unsigned int readinterval;
75 unsigned int readconst;
76 unsigned int readmult;
77 unsigned int writeconst;
78 unsigned int writemult;
80 unsigned int eventmask;
82 struct termios original;
84 /* FIXME: add dcb, comm status, handler module, sharing */
87 static const struct object_ops serial_ops =
89 sizeof(struct serial), /* size */
90 serial_dump, /* dump */
91 add_queue, /* add_queue */
92 remove_queue, /* remove_queue */
93 default_fd_signaled, /* signaled */
94 no_satisfied, /* satisfied */
95 no_signal, /* signal */
96 serial_get_fd, /* get_fd */
97 serial_map_access, /* map_access */
98 no_lookup_name, /* lookup_name */
99 no_open_file, /* open_file */
100 fd_close_handle, /* close_handle */
101 serial_destroy /* destroy */
104 static const struct fd_ops serial_fd_ops =
106 default_fd_get_poll_events, /* get_poll_events */
107 default_poll_event, /* poll_event */
108 serial_flush, /* flush */
109 serial_get_fd_type, /* get_file_info */
110 default_fd_ioctl, /* ioctl */
111 serial_queue_async, /* queue_async */
112 default_fd_reselect_async, /* reselect_async */
113 default_fd_cancel_async /* cancel_async */
116 /* check if the given fd is a serial port */
117 int is_serial_fd( struct fd *fd )
119 struct termios tios;
121 return !tcgetattr( get_unix_fd(fd), &tios );
124 /* create a serial object for a given fd */
125 struct object *create_serial( struct fd *fd )
127 struct serial *serial;
129 if (!(serial = alloc_object( &serial_ops ))) return NULL;
131 serial->readinterval = 0;
132 serial->readmult = 0;
133 serial->readconst = 0;
134 serial->writemult = 0;
135 serial->writeconst = 0;
136 serial->eventmask = 0;
137 serial->fd = (struct fd *)grab_object( fd );
138 set_fd_user( fd, &serial_fd_ops, &serial->obj );
139 return &serial->obj;
142 static struct fd *serial_get_fd( struct object *obj )
144 struct serial *serial = (struct serial *)obj;
145 return (struct fd *)grab_object( serial->fd );
148 static unsigned int serial_map_access( struct object *obj, unsigned int access )
150 if (access & GENERIC_READ) access |= FILE_GENERIC_READ;
151 if (access & GENERIC_WRITE) access |= FILE_GENERIC_WRITE;
152 if (access & GENERIC_EXECUTE) access |= FILE_GENERIC_EXECUTE;
153 if (access & GENERIC_ALL) access |= FILE_ALL_ACCESS;
154 return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL);
157 static void serial_destroy( struct object *obj)
159 struct serial *serial = (struct serial *)obj;
160 release_object( serial->fd );
163 static void serial_dump( struct object *obj, int verbose )
165 struct serial *serial = (struct serial *)obj;
166 assert( obj->ops == &serial_ops );
167 fprintf( stderr, "Port fd=%p mask=%x\n", serial->fd, serial->eventmask );
170 static struct serial *get_serial_obj( struct process *process, obj_handle_t handle, unsigned int access )
172 return (struct serial *)get_handle_obj( process, handle, access, &serial_ops );
175 static enum server_fd_type serial_get_fd_type( struct fd *fd )
177 return FD_TYPE_SERIAL;
180 static void serial_queue_async( struct fd *fd, const async_data_t *data, int type, int count )
182 struct serial *serial = get_fd_user( fd );
183 timeout_t timeout = 0;
184 struct async *async;
186 assert(serial->obj.ops == &serial_ops);
188 switch (type)
190 case ASYNC_TYPE_READ:
191 timeout = serial->readconst + (timeout_t)serial->readmult*count;
192 break;
193 case ASYNC_TYPE_WRITE:
194 timeout = serial->writeconst + (timeout_t)serial->writemult*count;
195 break;
198 if ((async = fd_queue_async( fd, data, type, count )))
200 if (timeout) async_set_timeout( async, timeout * -10000, STATUS_TIMEOUT );
201 release_object( async );
202 set_error( STATUS_PENDING );
206 static void serial_flush( struct fd *fd, struct event **event )
208 /* MSDN says: If hFile is a handle to a communications device,
209 * the function only flushes the transmit buffer.
211 if (tcflush( get_unix_fd(fd), TCOFLUSH ) == -1) file_set_error();
214 DECL_HANDLER(get_serial_info)
216 struct serial *serial;
218 if ((serial = get_serial_obj( current->process, req->handle, 0 )))
220 /* timeouts */
221 reply->readinterval = serial->readinterval;
222 reply->readconst = serial->readconst;
223 reply->readmult = serial->readmult;
224 reply->writeconst = serial->writeconst;
225 reply->writemult = serial->writemult;
227 /* event mask */
228 reply->eventmask = serial->eventmask;
230 release_object( serial );
234 DECL_HANDLER(set_serial_info)
236 struct serial *serial;
238 if ((serial = get_serial_obj( current->process, req->handle, 0 )))
240 /* timeouts */
241 if (req->flags & SERIALINFO_SET_TIMEOUTS)
243 serial->readinterval = req->readinterval;
244 serial->readconst = req->readconst;
245 serial->readmult = req->readmult;
246 serial->writeconst = req->writeconst;
247 serial->writemult = req->writemult;
250 /* event mask */
251 if (req->flags & SERIALINFO_SET_MASK)
253 serial->eventmask = req->eventmask;
254 if (!serial->eventmask)
256 fd_async_wake_up( serial->fd, ASYNC_TYPE_WAIT, STATUS_SUCCESS );
260 release_object( serial );