Added files input/output redirection

This commit is contained in:
Dmitriy Shishkov 2020-07-16 22:25:27 +05:00
parent 56ae617430
commit 3e3f5e4313
6 changed files with 77 additions and 5 deletions

View File

@ -9,12 +9,12 @@ Work is still in porgress, buf when you will see a "finished" topic assigned to
* Running commands in separate process and termination them with `ctrl+c` * Running commands in separate process and termination them with `ctrl+c`
* `cd`, `exit` and `exec` builtin commands * `cd`, `exit` and `exec` builtin commands
* Files and commands from `/usr/bin` autocompletion on `Tab` keypress * Files and commands from `/usr/bin` autocompletion on `Tab` keypress
* History of commands and navigation or search through it with `up/down` keys * History of commands and navigation or search through it with `up`/`down` keys
* Username, ip address and current path in prompt before each command input * Username, ip address and current path in prompt before each command input
* Show previous command return status in prompt and invert it with `!`, separated with space, specified before it * Show previous command return status in prompt and invert it with `!`, separated with space, specified before it
* Running multiple commands separated by `;`, `&&` or `||` * Running multiple commands separated by `;`, `&&` or `||`
* Expand `*` wildcards * Expand `*` wildcards
* Commands I/O redirection with `|` pipes * Commands I/O redirection with `|` pipes and `>`, `<`, `>>`, `<>` file input/output
# Builtin commands # Builtin commands
* `cd`: changes current working directory to the one specified by user. If no arguments provided, shows error. * `cd`: changes current working directory to the one specified by user. If no arguments provided, shows error.
@ -22,7 +22,6 @@ Work is still in porgress, buf when you will see a "finished" topic assigned to
* `exec`: executes entered command and exits * `exec`: executes entered command and exits
# TODO # TODO
* Files input/output
* Replace linux `echo` command with builtin one with support of environmental variables * Replace linux `echo` command with builtin one with support of environmental variables
* Environmental variables * Environmental variables
* `Ctrl+Z` running programm with `fd` * `Ctrl+Z` running programm with `fd`

1
foo Normal file
View File

@ -0,0 +1 @@
zim

View File

@ -9,6 +9,7 @@
#include <ifaddrs.h> #include <ifaddrs.h>
#include <glob.h> #include <glob.h>
#include <stdbool.h> #include <stdbool.h>
#include <fcntl.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/wait.h> #include <sys/wait.h>

View File

@ -151,6 +151,75 @@ cmds_p *process_line(char *line)
curr_cmd->pipes_am++; curr_cmd->pipes_am++;
curr_pipe = curr_pipe->next; curr_pipe = curr_pipe->next;
} }
else if (line[i] == '>' || line[i] == '<')
{
int flags = 0;
int f = 0;
if (line[i] == '>' && line[i + 1] == '>')
{
flags = O_CREAT | O_APPEND | O_WRONLY;
i++;
tmp++;
f = 0;
}
else if (line[i] == '>')
{
flags = O_CREAT | O_TRUNC | O_WRONLY;
f = 0;
}
else if (line[i] == '<' && line[i + 1] == '>')
{
flags = O_CREAT | O_RDWR;
i++;
tmp++;
f = 1;
}
else if (line[i] == '<')
{
flags = O_RDONLY;
f = 2;
}
i++;
tmp++;
if (line[i] == ' ')
{
i++;
tmp++;
}
int j = i;
for (; j < line_size; j++)
if (line[j] == ' ' || line[j] == '|' || line[j] == '&' || line[j] == ';')
break;
free_tmp[j] = '\0';
if (tmp[0] == '"')
tmp++;
if (free_tmp[j - 1] == '"')
free_tmp[j - 1] = '\0';
int ffd;
if ((ffd = open(tmp, flags)) < 0)
{
perror("file redirection: open");
return NULL;
}
if (f == 0)
curr_pipe->pipefd[1] = ffd;
else if (f == 1)
for (int k = 0; k < 2; k++)
curr_pipe->pipefd[k] = ffd;
else if (f == 2)
curr_pipe->pipefd[0] = ffd;
tmp += j - i + 1;
i = j;
}
else if (line[i] == ' ') else if (line[i] == ' ')
{ {
free_tmp[i] = '\0'; free_tmp[i] = '\0';
@ -200,8 +269,8 @@ cmds_p *process_line(char *line)
curr_pipe->args = realloc(curr_pipe->args, sizeof(char *) * (curr_pipe->args_am + 1)); curr_pipe->args = realloc(curr_pipe->args, sizeof(char *) * (curr_pipe->args_am + 1));
curr_pipe->args[curr_pipe->args_am] = NULL; curr_pipe->args[curr_pipe->args_am] = NULL;
} }
if (curr_pipe->pipefd[1] < 0)
curr_pipe->pipefd[1] = STDOUT_FILENO; curr_pipe->pipefd[1] = STDOUT_FILENO;
return coms; return coms;
} }

1
test.txt Normal file
View File

@ -0,0 +1 @@
Test

1
test.txt;cat Normal file
View File

@ -0,0 +1 @@
Test test.txt