1 /* stdio on a Mach device port.
2 Translates \n to \r\n on output, echos and translates \r to \n on input.
3 Copyright (C) 1992,93,94,96,97,2000 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
23 #include <device/device.h>
29 devstream_write (void *cookie
, const char *buffer
, size_t n
)
31 const device_t dev
= (device_t
) cookie
;
33 int write_some (const char *p
, size_t to_write
)
42 if (thiswrite
> IO_INBAND_MAX
)
43 thiswrite
= IO_INBAND_MAX
;
45 if (err
= device_write_inband (dev
, 0, 0, p
, thiswrite
, &wrote
))
57 static const char crlf
[] = "\r\n";
58 return write_some (crlf
, 2);
61 /* Search for newlines (LFs) in the buffer. */
63 const char *start
= buffer
, *p
;
64 while ((p
= memchr (start
, '\n', n
)) != NULL
)
66 /* Found one. Write out through the preceding character,
67 and then write a CR/LF pair. */
69 if ((p
> start
&& !write_some (start
, p
- start
))
71 return (start
- buffer
) ?: -1;
77 /* Write the remainder of the buffer. */
78 if (write_some (start
, n
))
80 return (start
- buffer
) ?: -1;
84 devstream_read (void *cookie
, char *buffer
, size_t to_read
)
86 const device_t dev
= (device_t
) cookie
;
89 mach_msg_type_number_t nread
= to_read
;
91 err
= device_read_inband (dev
, 0, 0, to_read
, buffer
, &nread
);
98 /* Translate CR to LF. */
101 for (p
= memchr (buffer
, '\r', nread
); p
;
102 p
= memchr (p
+ 1, '\r', (buffer
+ nread
) - (p
+ 1)))
106 /* Echo back what we read. */
107 (void) devstream_write (cookie
, buffer
, nread
);
113 dealloc_ref (void *cookie
)
115 if (mach_port_deallocate (mach_task_self (), (mach_port_t
) cookie
))
124 #define cookie_io_functions_t __io_functions
125 #define write __write
127 #define close __close
131 mach_open_devstream (mach_port_t dev
, const char *mode
)
135 if (mach_port_mod_refs (mach_task_self (), dev
, MACH_PORT_RIGHT_SEND
, 1))
141 stream
= fopencookie ((void *) dev
, mode
,
142 (cookie_io_functions_t
) { write
: devstream_write
,
143 read
: devstream_read
,
144 close
: dealloc_ref
});
147 mach_port_deallocate (mach_task_self (), dev
);