Finished history search with up/down keys and refactored its navigation. Added username and ip address to the prompt

This commit is contained in:
Dmitriy Shishkov 2020-07-13 17:19:56 +05:00
parent 6542dbd9dd
commit 6059ff4a52
11 changed files with 294 additions and 161 deletions

1
.gitignore vendored
View File

@ -4,3 +4,4 @@ a.out
val/ val/
tmp* tmp*
test/ test/
vgcore*

View File

@ -9,7 +9,8 @@ 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 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
# 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.

View File

@ -2,7 +2,8 @@
#define _HISTORY_H #define _HISTORY_H
void append_to_history(char *line); void append_to_history(char *line);
void clear_search_tree(); void clear_sub_history();
char *previous_hist_entry(); char *previous_hist_entry(char *line);
char *next_hist_entry(char *line);
#endif #endif

View File

@ -23,5 +23,6 @@ enum keys {
void change_mode(int on); void change_mode(int on);
char *read_line(); char *read_line();
int process_keypress(char c); int process_keypress(char c);
void free_input(int *pos, int *n, char **line);
#endif #endif

View File

@ -9,10 +9,13 @@
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#include <termios.h> #include <termios.h>
#include <ifaddrs.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/wait.h> #include <sys/wait.h>
#include <arpa/inet.h>
#include "../include/tree.h" #include "../include/tree.h"
// Defines // Defines
@ -20,9 +23,9 @@
#define ARG_SIZE 32 #define ARG_SIZE 32
// Types definitions // Types definitions
struct hist_tree struct hist_sub
{ {
struct tree_node *r; char **content;
int length; int length;
int pos; int pos;
}; };
@ -32,8 +35,9 @@ struct history
char **content; char **content;
int length; int length;
int pos; int pos;
char *curr_command;
struct hist_tree tree; struct hist_sub sub;
}; };
typedef struct typedef struct

View File

@ -1,5 +1,6 @@
#include "../include/history.h" #include "../include/history.h"
#include "../include/shell.h" #include "../include/shell.h"
#include "../include/utils.h"
/** /**
* @brief Append entry to commands history * @brief Append entry to commands history
@ -12,6 +13,9 @@ void append_to_history(char *line)
if (strcmp(line, term.hist.content[term.hist.length - 1]) == 0) if (strcmp(line, term.hist.content[term.hist.length - 1]) == 0)
return; return;
if (line[0] == '\0')
return;
term.hist.length++; term.hist.length++;
term.hist.content = (char **)realloc(term.hist.content, term.hist.length * sizeof(char *)); term.hist.content = (char **)realloc(term.hist.content, term.hist.length * sizeof(char *));
term.hist.content[term.hist.length - 1] = strdup(line); term.hist.content[term.hist.length - 1] = strdup(line);
@ -19,15 +23,13 @@ void append_to_history(char *line)
term.hist.pos = -1; term.hist.pos = -1;
} }
/** void clear_sub_history()
* @brief Clear history entries search tree
*
*/
void clear_search_tree()
{ {
term.hist.tree.length = -1; free(term.hist.sub.content);
term.hist.tree.pos = -1;
free_tree(term.hist.tree.r); term.hist.sub.content = malloc(0);
term.hist.sub.length = -1;
term.hist.sub.pos = -1;
} }
/** /**
@ -38,9 +40,78 @@ void clear_search_tree()
*/ */
char *previous_hist_entry(char *line) char *previous_hist_entry(char *line)
{ {
static int h_size;
if (line == NULL) if (line == NULL)
{ {
if (term.hist.pos + 1 == term.hist.length)
return NULL;
term.hist.pos++; term.hist.pos++;
return term.hist.content[term.hist.length - term.hist.pos - 1]; return strdup(term.hist.content[term.hist.length - term.hist.pos - 1]);
} }
if (term.hist.sub.length < 0)
{
term.hist.sub.length++;
for (int i = 0; i < term.hist.length; i++)
if (strncmp(term.hist.content[i], line, strlen(line)) == 0)
{
term.hist.sub.length++;
term.hist.sub.content = realloc(term.hist.sub.content, term.hist.sub.length * sizeof(char *));
term.hist.sub.content[term.hist.sub.length - 1] = term.hist.content[i];
}
h_size = term.hist.sub.length;
}
else
{
int tmp_len = term.hist.sub.length;
term.hist.sub.length = 0;
for (int i = 0; i < tmp_len; i++)
if (strncmp(term.hist.sub.content[i], line, strlen(line)) == 0)
{
term.hist.sub.length++;
term.hist.sub.content[term.hist.sub.length - 1] = term.hist.sub.content[i];
}
term.hist.sub.content = realloc(term.hist.sub.content, term.hist.sub.length * sizeof(char *));
if (term.hist.sub.length != h_size)
{
h_size = term.hist.sub.length;
term.hist.sub.pos = -1;
}
}
term.hist.sub.pos++;
if (term.hist.sub.pos >= term.hist.sub.length)
{
term.hist.sub.pos = term.hist.sub.length - 1;
return NULL;
}
return strdup(term.hist.sub.content[term.hist.sub.length - term.hist.sub.pos - 1]);
}
/**
* @brief Get next history entry
*
* @param line
* @return char*
*/
char *next_hist_entry(char *line)
{
if (line == NULL)
{
if (term.hist.pos == 0)
return NULL;
term.hist.pos--;
return strdup(term.hist.content[term.hist.length - term.hist.pos - 1]);
}
if (term.hist.sub.pos <= 0)
return NULL;
term.hist.sub.pos--;
return strdup(term.hist.sub.content[term.hist.sub.length - term.hist.sub.pos - 1]);
} }

View File

@ -1,6 +1,7 @@
#include "../include/input.h" #include "../include/input.h"
#include "../include/keys.h" #include "../include/keys.h"
#include "../include/shell.h" #include "../include/shell.h"
#include "../include/output.h"
/** /**
* @brief Switches console raw mode * @brief Switches console raw mode
@ -43,10 +44,6 @@ char *read_line()
{ {
switch (c) switch (c)
{ {
case DELETE_KEY:
delete_key(pos, &n, &line);
break;
case UP_KEY: case UP_KEY:
up_key(&pos, &n, &line); up_key(&pos, &n, &line);
break; break;
@ -55,6 +52,16 @@ char *read_line()
down_key(&pos, &n, &line); down_key(&pos, &n, &line);
break; break;
default:
term.hist.pos = -1;
switch (c)
{
case DELETE_KEY:
delete_key(pos, &n, &line);
break;
case LEFT_KEY: case LEFT_KEY:
move_left(&pos); move_left(&pos);
break; break;
@ -98,6 +105,7 @@ char *read_line()
} }
} }
} }
}
} }
/** /**
@ -175,3 +183,23 @@ int process_keypress(char c)
return c; return c;
} }
} }
void free_input(int *pos, int *n, char **line)
{
char *buff = strdup("");
size_t buff_size = 1;
free(*line);
*line = strdup("");
*n = 0;
for (int i = 0; i < *pos; i++)
append_to_buff(&buff, &buff_size, "\033[D", 3);
append_to_buff(&buff, &buff_size, "\033[K", 3);
*pos = *n;
print_str(buff, buff_size);
free(buff);
}

View File

@ -4,6 +4,7 @@
#include "../include/complete.h" #include "../include/complete.h"
#include "../include/shell.h" #include "../include/shell.h"
#include "../include/history.h" #include "../include/history.h"
#include "../include/input.h"
/** /**
* @brief Delete key action * @brief Delete key action
@ -41,68 +42,36 @@ void delete_key(int pos, int *n, char **line)
*/ */
void up_key(int *pos, int *n, char **line) void up_key(int *pos, int *n, char **line)
{ {
if (term.hist.pos + 1 == term.hist.length)
return;
print_str("\033[K", 3); char *buff = strdup("\033[K");
(*line)[*pos] = '\0'; size_t buff_size = 4;
char *buff = strdup(""); char *entry = NULL;
size_t buff_size = 1;
if (*pos == 0) if (*pos == 0)
{ entry = previous_hist_entry(NULL);
*line = strdup(previous_hist_entry(NULL));
*n = strlen(*line);
append_to_buff(&buff, &buff_size, "\0337", 2);
append_to_buff(&buff, &buff_size, *line, *n);
append_to_buff(&buff, &buff_size, "\0338", 2);
print_str(buff, buff_size);
free(buff);
}
else else
{ {
if (term.hist.tree.length < 0) (*line)[*pos] = '\0';
{ entry = previous_hist_entry(*line);
term.hist.tree.r = get_new_node();
for (int i = 0; i < term.hist.length; i++)
insert_tree(term.hist.tree.r, term.hist.content[i]);
term.hist.tree.length = term.hist.length;
term.hist.tree.pos = 0;
} }
char **tmp_strings = malloc(0); if (entry == NULL)
ssize_t sz = list_strings_containing(term.hist.tree.r, *line, &tmp_strings);
if (sz < 1)
{ {
free(buff); free(buff);
return; return;
} }
free(*line); free(*line);
*line = strdup(tmp_strings[term.hist.tree.pos]); *line = entry;
*n = strlen(*line); *n = strlen(*line);
append_to_buff(&buff, &buff_size, "\033[2K", 4); append_to_buff(&buff, &buff_size, "\0337", 2);
append_to_buff(&buff, &buff_size, "\033[2A", 4); append_to_buff(&buff, &buff_size, *line + *pos, *n - *pos);
append_to_buff(&buff, &buff_size, "\0338", 2);
char *prompt = compose_prompt();
append_to_buff(&buff, &buff_size, prompt, strlen(prompt));
append_to_buff(&buff, &buff_size, *line, *n);
for (int i = 0; i < *n - *pos; i++)
append_to_buff(&buff, &buff_size, "\033[D", 3);
print_str(buff, buff_size); print_str(buff, buff_size);
free(buff); free(buff);
for (int i = 0; i < sz; i++)
insert_tree(term.hist.tree.r, tmp_strings[i]);
}
} }
/** /**
@ -114,49 +83,58 @@ void up_key(int *pos, int *n, char **line)
*/ */
void down_key(int *pos, int *n, char **line) void down_key(int *pos, int *n, char **line)
{ {
if (term.hist.pos < 0)
return;
print_str("\033[K", 3); char *buff = strdup("\033[K");
(*line)[*pos] = '\0'; size_t buff_size = 4;
char *buff = strdup(""); char *entry = NULL;
size_t buff_size = 1;
if (term.hist.pos == 0)
{
term.hist.pos--;
free(*line);
*line = strdup(buff);
*n = 0;
*pos = *n;
for (int i = 0; i < *pos; i++)
append_to_buff(&buff, &buff_size, "\033[D", 3);
append_to_buff(&buff, &buff_size, "\033[K", 3);
print_str(buff, buff_size);
free(buff);
return;
}
if (*pos == 0) if (*pos == 0)
{ {
if (term.hist.pos <= 0)
{
if (term.hist.pos == 0)
term.hist.pos--; term.hist.pos--;
*line = strdup(term.hist.content[term.hist.length - term.hist.pos - 1]);
free(buff);
free_input(pos, n, line);
return;
}
entry = next_hist_entry(NULL);
}
else
{
(*line)[*pos] = '\0';
if (term.hist.sub.pos <= 0)
{
if (term.hist.sub.pos == 0)
term.hist.sub.pos--;
free(buff);
free_input(pos, n, line);
return;
}
entry = next_hist_entry(*line);
}
if (entry == NULL)
{
free(buff);
return;
}
*line = entry;
*n = strlen(*line); *n = strlen(*line);
append_to_buff(&buff, &buff_size, "\0337", 2); append_to_buff(&buff, &buff_size, "\0337", 2);
append_to_buff(&buff, &buff_size, *line, *n); append_to_buff(&buff, &buff_size, *line + *pos, *n - *pos);
append_to_buff(&buff, &buff_size, "\0338", 2); append_to_buff(&buff, &buff_size, "\0338", 2);
print_str(buff, buff_size); print_str(buff, buff_size);
free(buff); free(buff);
}
} }
/** /**
@ -166,7 +144,7 @@ void down_key(int *pos, int *n, char **line)
*/ */
void move_left(int *pos) void move_left(int *pos)
{ {
clear_search_tree(); clear_sub_history();
if (*pos > 0) if (*pos > 0)
{ {
print_str("\033[D", 3); print_str("\033[D", 3);
@ -186,6 +164,8 @@ void move_right(int *pos, int n)
{ {
print_str("\033[C", 3); print_str("\033[C", 3);
(*pos)++; (*pos)++;
clear_sub_history();
} }
} }
@ -196,7 +176,8 @@ void move_right(int *pos, int n)
*/ */
void home_key(int *pos) void home_key(int *pos)
{ {
clear_search_tree(); clear_sub_history();
char *buff = strdup(""); char *buff = strdup("");
size_t buff_size = 1; size_t buff_size = 1;
@ -241,7 +222,7 @@ void backspace_key(int *pos, int *n, char **line)
{ {
if (*pos > 0) if (*pos > 0)
{ {
clear_search_tree(); clear_sub_history();
remove_on_pos(line, *pos); remove_on_pos(line, *pos);
(*n)--; (*n)--;
@ -269,7 +250,7 @@ void backspace_key(int *pos, int *n, char **line)
void new_line(char *line) void new_line(char *line)
{ {
append_to_history(line); append_to_history(line);
clear_search_tree(); clear_sub_history();
print_str("\n", 1); print_str("\n", 1);
} }
@ -282,7 +263,7 @@ void new_line(char *line)
*/ */
void tab_key(int *pos, int *n, char **line) void tab_key(int *pos, int *n, char **line)
{ {
clear_search_tree(); clear_sub_history();
(*line)[*pos] = '\0'; (*line)[*pos] = '\0';
*line = realloc(*line, strlen(*line) + 1); *line = realloc(*line, strlen(*line) + 1);

View File

@ -44,9 +44,9 @@ t_ init_term()
term.hist.pos = -1; term.hist.pos = -1;
term.hist.content = (char **)malloc(sizeof(char *) * term.hist.length); term.hist.content = (char **)malloc(sizeof(char *) * term.hist.length);
term.hist.tree.length = -1; term.hist.sub.length = -1;
term.hist.tree.pos = -1; term.hist.sub.pos = -1;
term.hist.tree.r = NULL; term.hist.sub.content = (char **)malloc(sizeof(char *) * 0);
signal(SIGINT, SIG_IGN); signal(SIGINT, SIG_IGN);

View File

@ -166,6 +166,31 @@ int sh_exec(char **args)
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
char *get_ip_addr()
{
struct ifaddrs *host, *tmp;
getifaddrs(&host);
tmp = host;
char *ip = NULL;
while (tmp)
{
if (tmp->ifa_addr && tmp->ifa_addr->sa_family == AF_INET)
{
struct sockaddr_in *pAddr = (struct sockaddr_in *)tmp->ifa_addr;
ip = inet_ntoa(pAddr->sin_addr);
if (strncmp(ip, "127", 3) != 0)
break;
}
tmp = tmp->ifa_next;
}
freeifaddrs(host);
return ip;
}
/** /**
* @brief Creates prompt string * @brief Creates prompt string
* *
@ -173,14 +198,38 @@ int sh_exec(char **args)
*/ */
char *compose_prompt() char *compose_prompt()
{ {
// New line
char *prompt = strdup("\n"); char *prompt = strdup("\n");
// Username
char *username = getenv("USER");
if (username == NULL)
username = "none";
prompt = realloc(prompt, strlen(prompt) + strlen("\033[97;44m") + strlen(username) + 2);
prompt = strcat(prompt, "\033[97;44m");
prompt = strcat(prompt, username);
// Current host ip
char *ip = get_ip_addr();
if (ip == NULL)
ip = "none";
prompt = realloc(prompt, strlen(prompt) + 1 + strlen(ip) + strlen("\033[39m") + strlen("\033[48;2;28;32;35m") + 2);
prompt = strcat(prompt, "@");
prompt = strcat(prompt, ip);
prompt = strcat(prompt, "\033[39m");
prompt = strcat(prompt, "\033[48;2;28;32;35m");
prompt = strcat(prompt, ":");
// Current path
char *full_path = get_current_dir_name(); char *full_path = get_current_dir_name();
prompt = realloc(prompt, strlen(prompt) + strlen(full_path) + 2); prompt = realloc(prompt, strlen(prompt) + strlen("\033[92;1m") + strlen("\033[39;0m") + strlen(full_path) + 2);
prompt = strcat(prompt, "\033[92;1m");
prompt = strcat(prompt, full_path); prompt = strcat(prompt, full_path);
prompt = strcat(prompt, "\033[39;0m");
free(full_path); free(full_path);
// Permissions specific character before user input
prompt = realloc(prompt, strlen(prompt) + 4); prompt = realloc(prompt, strlen(prompt) + 4);
if (getuid() == 0) if (getuid() == 0)
{ {

View File

@ -21,8 +21,6 @@ void append_to_pos(char **str, int pos, char ch)
(*str)[pos] = ch; (*str)[pos] = ch;
(*str)[len + 1] = '\0'; (*str)[len + 1] = '\0';
} }
else
fprintf(stderr, "Can't add \"%c\" symbol outside of the string\n", ch);
} }
/** /**
@ -42,8 +40,6 @@ void remove_on_pos(char **str, int pos)
(*str)[len] = '\0'; (*str)[len] = '\0';
*str = realloc(*str, len); *str = realloc(*str, len);
} }
else
fprintf(stderr, "Can't remove symbol outside the string\n");
} }
/** /**
@ -146,7 +142,7 @@ char **slice_array(char **arr, int beg, int end, bool asc)
int get_null_term_arr_size(char **arr) int get_null_term_arr_size(char **arr)
{ {
int k = 0; int k = 0;
for (int i = 0; arr[i]!= NULL; i++) for (int i = 0; arr[i] != NULL; i++)
k++; k++;
return k; return k;