[2677758] | 1 | /*
|
---|
| 2 | * Copyright (C) 2003 Josef Cejka
|
---|
| 3 | * Copyright (C) 2005 Jakub Jermar
|
---|
| 4 | * All rights reserved.
|
---|
| 5 | *
|
---|
| 6 | * Redistribution and use in source and binary forms, with or without
|
---|
| 7 | * modification, are permitted provided that the following conditions
|
---|
| 8 | * are met:
|
---|
| 9 | *
|
---|
| 10 | * - Redistributions of source code must retain the above copyright
|
---|
| 11 | * notice, this list of conditions and the following disclaimer.
|
---|
| 12 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 13 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 14 | * documentation and/or other materials provided with the distribution.
|
---|
| 15 | * - The name of the author may not be used to endorse or promote products
|
---|
| 16 | * derived from this software without specific prior written permission.
|
---|
| 17 | *
|
---|
| 18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 28 | */
|
---|
| 29 |
|
---|
| 30 | #include <console/console.h>
|
---|
| 31 | #include <console/chardev.h>
|
---|
| 32 | #include <synch/waitq.h>
|
---|
| 33 | #include <synch/spinlock.h>
|
---|
| 34 | #include <arch/types.h>
|
---|
| 35 | #include <typedefs.h>
|
---|
| 36 | #include <arch.h>
|
---|
| 37 |
|
---|
| 38 | /** Standard input character device. */
|
---|
| 39 | chardev_t *stdin = NULL;
|
---|
[973be64e] | 40 | chardev_t *stdout = NULL;
|
---|
[2677758] | 41 |
|
---|
| 42 | /** Get string from character device.
|
---|
| 43 | *
|
---|
| 44 | * Read characters from character device until first occurrence
|
---|
| 45 | * of newline character.
|
---|
| 46 | *
|
---|
| 47 | * @param chardev Character device.
|
---|
[ff3b3197] | 48 | * @param buf Buffer where to store string terminated by '\0'.
|
---|
[2677758] | 49 | * @param len Size of the buffer.
|
---|
[ff3b3197] | 50 | *
|
---|
| 51 | * @return Number of characters read.
|
---|
[2677758] | 52 | */
|
---|
[ff3b3197] | 53 | count_t gets(chardev_t *chardev, char *buf, size_t buflen)
|
---|
[2677758] | 54 | {
|
---|
| 55 | index_t index = 0;
|
---|
| 56 | char ch;
|
---|
| 57 |
|
---|
| 58 | while (index < buflen) {
|
---|
| 59 | ch = getc(chardev);
|
---|
| 60 | if (ch == '\n') { /* end of string => write 0, return */
|
---|
[ff3b3197] | 61 | buf[index] = '\0';
|
---|
| 62 | return (count_t) index;
|
---|
[2677758] | 63 | }
|
---|
[ff3b3197] | 64 | buf[index++] = ch;
|
---|
[2677758] | 65 | }
|
---|
[ff3b3197] | 66 | return (count_t) index;
|
---|
[2677758] | 67 | }
|
---|
| 68 |
|
---|
| 69 | /** Get character from character device.
|
---|
| 70 | *
|
---|
| 71 | * @param chardev Character device.
|
---|
| 72 | *
|
---|
| 73 | * @return Character read.
|
---|
| 74 | */
|
---|
| 75 | __u8 getc(chardev_t *chardev)
|
---|
| 76 | {
|
---|
| 77 | __u8 ch;
|
---|
| 78 | ipl_t ipl;
|
---|
| 79 |
|
---|
| 80 | waitq_sleep(&chardev->wq);
|
---|
| 81 | ipl = interrupts_disable();
|
---|
| 82 | spinlock_lock(&chardev->lock);
|
---|
| 83 | ch = chardev->buffer[(chardev->index - chardev->counter) % CHARDEV_BUFLEN];
|
---|
| 84 | chardev->counter--;
|
---|
| 85 | spinlock_unlock(&chardev->lock);
|
---|
| 86 | interrupts_restore(ipl);
|
---|
| 87 |
|
---|
[973be64e] | 88 | chardev->op->resume(chardev);
|
---|
[2677758] | 89 |
|
---|
| 90 | return ch;
|
---|
| 91 | }
|
---|
[973be64e] | 92 |
|
---|
| 93 | void putchar(char c)
|
---|
| 94 | {
|
---|
| 95 | stdout->op->write(stdout, c);
|
---|
| 96 | }
|
---|