2 * Copyright (C) 2006-2014 Andre Noll <maan@tuebingen.mpg.de>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file stdin.c Functions that deal with reading from stdin. */
17 #include "buffer_tree.h"
21 * If there is space left in the buffer of the stdin task add STDIN_FILENO to
22 * the read fd set of s.
24 static void stdin_pre_select(struct sched
*s
, void *context
)
26 struct stdin_task
*sit
= context
;
29 ret
= btr_node_status(sit
->btrn
, 0, BTR_NT_ROOT
);
34 if (btr_pool_unused(sit
->btrp
) > 0)
35 return para_fd_set(STDIN_FILENO
, &s
->rfds
, &s
->max_fileno
);
36 sched_request_timeout_ms(100, s
);
40 * This function checks if STDIN_FILENO was included by in the read fd set of s
41 * during the previous pre_select call. If so, and if STDIN_FILENO is readable,
42 * data is read from stdin and fed into the buffer tree.
44 static int stdin_post_select(struct sched
*s
, void *context
)
46 struct stdin_task
*sit
= context
;
51 ret
= btr_node_status(sit
->btrn
, 0, BTR_NT_ROOT
);
56 sz
= btr_pool_get_buffer(sit
->btrp
, &buf
);
59 if (sit
->must_set_nonblock_flag
) {
60 ret
= mark_fd_nonblocking(STDIN_FILENO
);
63 sit
->must_set_nonblock_flag
= false;
66 * Do not use the maximal size to avoid having only a single buffer
67 * reference for the whole pool. This is bad because if that single
68 * reference can not be freed, we're stuck.
70 sz
= PARA_MIN(sz
, btr_pool_size(sit
->btrp
) / 2);
71 ret
= read_nonblock(STDIN_FILENO
, buf
, sz
, &s
->rfds
, &n
);
73 btr_add_output_pool(sit
->btrp
, n
, sit
->btrn
);
77 btr_remove_node(&sit
->btrn
);
78 /* Revert to blocking mode if necessary. */
79 fcntl(STDIN_FILENO
, F_SETFL
, sit
->fd_flags
);
80 //btr_pool_free(sit->btrp);
85 * Register a stdin task structure.
87 * \param sit The stdin task structure to register.
88 * \param s The task will be added to this scheduler's task list.
90 * This allocates a buffer tree pool for I/O, sets up \a sit and registers a
91 * task with \a sit as context pointer.
93 void stdin_task_register(struct stdin_task
*sit
, struct sched
*s
)
96 struct task_info ti
= {
98 .pre_select
= stdin_pre_select
,
99 .post_select
= stdin_post_select
,
103 sit
->btrp
= btr_pool_new("stdin", 128 * 1024);
105 * Both STDIN_FILENO and STDOUT_FILENO may refer to the same open file
106 * description (the terminal), and thus share the same file status
107 * flags. In order to not interfere with the stdout task, we only get
108 * the file status flags for STDIN here and save a copy. The nonblock
109 * flag is set later on the first read.
111 ret
= fcntl(STDIN_FILENO
, F_GETFL
);
113 PARA_EMERG_LOG("F_GETFL: %s\n", strerror(errno
));
117 sit
->must_set_nonblock_flag
= (sit
->fd_flags
& O_NONBLOCK
) == 0;
118 sit
->task
= task_register(&ti
, s
);