-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathterminal_setting.c
66 lines (58 loc) · 2.02 KB
/
terminal_setting.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* terminal_setting.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jaesjeon <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/08/25 11:07:18 by jaesjeon #+# #+# */
/* Updated: 2022/09/23 17:13:03 by jaesjeon ### ########.fr */
/* */
/* ************************************************************************** */
#include "minishell_info.h"
#include "minishell.h"
static void _sigint_handler(int signum)
{
if (signum == SIGINT)
{
write(STDOUT_FILENO, "\n", 1);
if (rl_on_new_line() == -1)
exit(GENERAL_EXIT_CODE);
rl_replace_line("", 1);
rl_redisplay();
}
}
void set_init_signal(void)
{
signal(SIGINT, _sigint_handler);
signal(SIGTERM, SIG_IGN);
signal(SIGTSTP, SIG_IGN);
signal(SIGQUIT, SIG_IGN);
signal(SIGTTIN, SIG_IGN);
signal(SIGTTOU, SIG_IGN);
}
void set_int_quit_signal(void *sigint_action, void *sigquit_action)
{
signal(SIGINT, sigint_action);
signal(SIGQUIT, sigquit_action);
}
int terminal_off_control_chars(void)
{
struct termios termios_p;
if (tcgetattr(STDIN_FILENO, &termios_p) == ERROR)
exit(GENERAL_EXIT_CODE);
termios_p.c_lflag &= ~(ECHOCTL);
if (tcsetattr(STDIN_FILENO, TCSANOW, &termios_p) == ERROR)
exit(GENERAL_EXIT_CODE);
return (SUCCESS);
}
int terminal_on_control_chars(void)
{
struct termios termios_p;
if (tcgetattr(STDIN_FILENO, &termios_p) == ERROR)
exit(GENERAL_EXIT_CODE);
termios_p.c_lflag |= ECHOCTL;
if (tcsetattr(STDIN_FILENO, TCSANOW, &termios_p) == ERROR)
exit(GENERAL_EXIT_CODE);
return (SUCCESS);
}