better historique, but do_lexer_routine no more 'a la Norme'
This commit is contained in:
commit
b1eaa947a6
91 changed files with 377 additions and 421 deletions
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/01/20 15:02:39 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 12:36:08 by gwojda ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:34:47 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/11/27 20:29:56 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 11:39:13 by wescande ### ########.fr */
|
||||
/* Updated: 2017/03/20 16:07:29 by wescande ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -21,10 +21,10 @@
|
|||
# define IS_PIPEEND(p) ((p).fdout == STDOUT)
|
||||
# define IS_PIPESINGLE(p) (IS_PIPESTART(p) && IS_PIPEEND(p))
|
||||
|
||||
# define EXEC_AND_IF (1 << 2)
|
||||
# define EXEC_OR_IF (1 << 3)
|
||||
# define EXEC_IF_BRANCH (1 << 4)
|
||||
# define EXEC_CASE_BRANCH (1 << 5)
|
||||
# define EXEC_AND_IF (1 << 0)
|
||||
# define EXEC_OR_IF (1 << 1)
|
||||
# define EXEC_IF_BRANCH (1 << 2)
|
||||
# define EXEC_CASE_BRANCH (1 << 3)
|
||||
|
||||
# define EXEC_AOL_MASK (EXEC_AND_IF | EXEC_OR_IF)
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/12/10 16:55:09 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 11:38:24 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:39:42 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -16,7 +16,6 @@
|
|||
# include <sys/types.h>
|
||||
# include <sys/wait.h>
|
||||
# include <termios.h>
|
||||
/* # include "libft.h" */
|
||||
# include "types.h"
|
||||
# include "exec.h"
|
||||
|
||||
|
|
@ -43,15 +42,14 @@ void job_update_rank(void);
|
|||
|
||||
int do_job_notification(void);
|
||||
void job_notify_new(int id);
|
||||
void job_notify_change(int id);
|
||||
void job_format(t_job *j, int opts);
|
||||
void job_format_head(t_job *j);
|
||||
|
||||
void job_update_status(void);
|
||||
void mark_job_as_running (t_job *j);
|
||||
int mark_process_status(pid_t pid, int status);
|
||||
int job_is_stopped(int id);
|
||||
int job_is_completed(int id);
|
||||
int job_is_stopped(t_job *job);
|
||||
int job_is_completed(t_job *job);
|
||||
|
||||
void job_new(char **av, pid_t pid);
|
||||
void job_run(t_job *job, int foreground);
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/12/01 12:15:50 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 16:24:10 by ariard ### ########.fr */
|
||||
/* Updated: 2017/03/20 16:44:48 by ariard ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -17,8 +17,6 @@
|
|||
# include "libft.h"
|
||||
# include "types.h"
|
||||
|
||||
# define RW_SEP (TK_NEWLINE | TK_AMP | TK_SEMI | TK_WHILE | TK_DONE\
|
||||
| TK_DO | TK_IF | TK_FI | TK_THEN | TK_ELIF | TK_ELSE)
|
||||
enum e_lexstate
|
||||
{
|
||||
DEFAULT,
|
||||
|
|
|
|||
|
|
@ -72,6 +72,7 @@ ft_printf/ft_printf.c\
|
|||
ft_printf/ft_printf_color.c\
|
||||
ft_printf/ft_printf_parse.c\
|
||||
ft_printf/ft_transform.c\
|
||||
ft_printf/ft_vprintf.c\
|
||||
ft_printf/lib_fmt.c\
|
||||
ft_printf/lib_fmt_error.c\
|
||||
ft_printf/lib_pad.c\
|
||||
|
|
|
|||
|
|
@ -6,12 +6,12 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/14 20:22:56 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/15 19:00:17 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:48:05 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef CLI_OPTS_H
|
||||
# define CLI_OPTS_H
|
||||
#ifndef CLIOPTS_H
|
||||
# define CLIOPTS_H
|
||||
|
||||
# include "libft.h"
|
||||
# include "error.h"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/14 15:34:21 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/16 14:19:49 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:48:46 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -16,9 +16,9 @@
|
|||
# include "libft.h"
|
||||
# include <stdarg.h>
|
||||
|
||||
# define DG_PROTO "{inv}{ran}%5i{yel}%21s {bol}{blu}%-3d{eoc}"
|
||||
# define DG_MSG "{inv}{ran}%5i{yel}%21s {bol}{blu}%-3d{eoc}"
|
||||
# define DG_ARGS getpid(), getpid(), ft_path_notdir(__FILE__), __LINE__
|
||||
# define DG(s, ...) ft_dprintf(STDBUG, DG_PROTO s "{eoc}\n", DG_ARGS, ##__VA_ARGS__)
|
||||
# define DG(s, ...) ft_dprintf(STDBUG,DG_MSG s "{eoc}\n",DG_ARGS,##__VA_ARGS__)
|
||||
|
||||
# define ERR_PROTO(s, ...) "{red}%s: " s "{eoc}\n", PROGNAME, ##__VA_ARGS__
|
||||
# define ERR_SET(n, ...) error_set(n, ##__VA_ARGS__)
|
||||
|
|
|
|||
|
|
@ -1,11 +1,12 @@
|
|||
/* ************************************************************************** */ /* */
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* math.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/02/18 13:19:12 by jhalford #+# #+# */
|
||||
/* Updated: 2017/02/18 13:19:57 by jhalford ### ########.fr */
|
||||
/* Created: 2017/03/20 15:41:59 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 15:42:13 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/08 11:50:46 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/15 18:43:15 by ariard ### ########.fr */
|
||||
/* Updated: 2017/03/20 14:09:06 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -18,7 +18,9 @@ t_btree *btree_map(t_btree *root, void *(*f)(void *))
|
|||
|
||||
if (!root)
|
||||
return (NULL);
|
||||
new = btree_create_node((*f)(root->item), root->content_size);
|
||||
if (!(new = (t_btree *)malloc(sizeof(*new))))
|
||||
return (NULL);
|
||||
new->item = (*f)(root->item);
|
||||
new->left = btree_map(root->left, f);
|
||||
new->right = btree_map(root->right, f);
|
||||
return (new);
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/14 20:04:04 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 09:28:34 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:50:08 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -39,7 +39,8 @@ static t_cliopts *get_map_short(t_cliopts opt_map[], char arg)
|
|||
return (NULL);
|
||||
}
|
||||
|
||||
static int cliopts_parse_short(char ***av, t_cliopts opt_map[], void *data)
|
||||
static int cliopts_parse_short(
|
||||
char ***av, t_cliopts opt_map[], void *data)
|
||||
{
|
||||
t_cliopts *map;
|
||||
char *arg;
|
||||
|
|
@ -67,7 +68,8 @@ static int cliopts_parse_short(char ***av, t_cliopts opt_map[], void *data)
|
|||
return (0);
|
||||
}
|
||||
|
||||
static int cliopts_parse_long(char ***av, t_cliopts opt_map[], void *data)
|
||||
static int cliopts_parse_long(
|
||||
char ***av, t_cliopts opt_map[], void *data)
|
||||
{
|
||||
t_cliopts *map;
|
||||
char *arg;
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/14 20:03:18 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/14 20:24:39 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:48:57 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/11/07 13:31:48 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/11 13:14:19 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:50:57 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
char *ft_signed_conversion(t_fmt *fmt, va_list ap)
|
||||
{
|
||||
char base10[] = "0123456789";
|
||||
static char base10[] = "0123456789";
|
||||
long long arg;
|
||||
|
||||
arg = va_arg(ap, int);
|
||||
|
|
|
|||
|
|
@ -6,25 +6,12 @@
|
|||
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/11/07 13:33:27 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 09:22:14 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 16:13:24 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "ft_printf.h"
|
||||
|
||||
t_conv g_convs[] =
|
||||
{
|
||||
{'d', "0- +", "0123456789", &ft_signed_conversion, NULL},
|
||||
{'i', "0- +", "0123456789", &ft_signed_conversion, NULL},
|
||||
{'u', "0-", "0123456789", &ft_unsigned_conversion, NULL},
|
||||
{'o', "#0-", "01234567", &ft_unsigned_conversion, &ft_pad_sharp_o},
|
||||
{'x', "#0-", "0123456789abcdef", &ft_unsigned_conversion, &ft_pad_sharp_xb},
|
||||
{'X', "#0-", "0123456789ABCDEF", &ft_unsigned_conversion, &ft_pad_sharp_xb},
|
||||
{'b', "#0-", "01", &ft_unsigned_conversion, &ft_pad_sharp_xb},
|
||||
{'s', "-", "", &ft_str_conversion, NULL},
|
||||
{'c', "-", "", &ft_char_conversion, NULL},
|
||||
};
|
||||
|
||||
int ft_printf(const char *format, ...)
|
||||
{
|
||||
va_list ap;
|
||||
|
|
@ -44,64 +31,7 @@ int ft_dprintf(int fd, const char *format, ...)
|
|||
int ft_asprintf(char **ret, const char *format, ...)
|
||||
{
|
||||
va_list ap;
|
||||
|
||||
va_start(ap, format);
|
||||
return (ft_vasprintf(ret, format, ap));
|
||||
}
|
||||
|
||||
int ft_vdprintf(int fd, const char *format, va_list ap)
|
||||
{
|
||||
char *ret;
|
||||
|
||||
ret = NULL;
|
||||
if (ft_vasprintf(&ret, format, ap))
|
||||
return (1);
|
||||
ft_putstr_fd(ret, fd);
|
||||
ft_strdel(&ret);
|
||||
return (0);
|
||||
}
|
||||
|
||||
int ft_vasprintf(char **ret, const char *format, va_list ap)
|
||||
{
|
||||
char *str;
|
||||
char *tmp;
|
||||
char *final;
|
||||
|
||||
str = (char *)format;
|
||||
final = ft_strnew(1);
|
||||
while (*str)
|
||||
{
|
||||
tmp = final;
|
||||
if (*str == '{')
|
||||
ft_printf_color(&final, &str, ap);
|
||||
else if (*str == '%')
|
||||
{
|
||||
if (ft_fmtcalc(&final, &str, ap))
|
||||
return (1);
|
||||
}
|
||||
else
|
||||
final = ft_strjoin(final, (char[]){*str++, 0});
|
||||
ft_strdel(&tmp);
|
||||
}
|
||||
*ret = final;
|
||||
return (0);
|
||||
}
|
||||
|
||||
int ft_fmtcalc(char **final, char **str, va_list ap)
|
||||
{
|
||||
t_fmt *fmt;
|
||||
char *transform;
|
||||
|
||||
*str += 1;
|
||||
if (!(fmt = ft_printf_parse(str, ap)))
|
||||
return (1);
|
||||
if (!fmt->valid)
|
||||
ft_strncat(*final, &fmt->conversion, 1);
|
||||
else
|
||||
{
|
||||
transform = ft_transform(fmt, ap);
|
||||
*final = ft_strjoin(*final, transform);
|
||||
ft_strdel(&transform);
|
||||
}
|
||||
free(fmt);
|
||||
return (0);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/12/06 18:07:39 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/11 14:00:20 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:51:32 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -44,7 +44,6 @@ void ft_printf_color(char **final, char **str, va_list ap)
|
|||
{
|
||||
if (ft_strncmp(*str, g_colors[i].key, 5) == 0)
|
||||
{
|
||||
/* if (isatty(fd)) */
|
||||
*final = ft_strjoin(*final, g_colors[i].val);
|
||||
*str += 5;
|
||||
return ;
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/11/07 13:33:24 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 09:17:48 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:55:08 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -121,4 +121,3 @@ t_fmt *ft_printf_parse(char **format, va_list ap)
|
|||
fmt->valid = ft_fmt_validate_conv(fmt) ? 0 : 1;
|
||||
return (fmt);
|
||||
}
|
||||
|
||||
|
|
|
|||
84
42sh/libft/src/ft_printf/ft_vprintf.c
Normal file
84
42sh/libft/src/ft_printf/ft_vprintf.c
Normal file
|
|
@ -0,0 +1,84 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_vprintf.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/20 15:52:57 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 15:53:17 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "ft_printf.h"
|
||||
|
||||
t_conv g_convs[] =
|
||||
{
|
||||
{'d', "0- +", "0123456789", &ft_signed_conversion, NULL},
|
||||
{'i', "0- +", "0123456789", &ft_signed_conversion, NULL},
|
||||
{'u', "0-", "0123456789", &ft_unsigned_conversion, NULL},
|
||||
{'o', "#0-", "01234567", &ft_unsigned_conversion, &ft_pad_sharp_o},
|
||||
{'x', "#0-", "0123456789abcdef", &ft_unsigned_conversion, &ft_pad_sharp_xb},
|
||||
{'X', "#0-", "0123456789ABCDEF", &ft_unsigned_conversion, &ft_pad_sharp_xb},
|
||||
{'b', "#0-", "01", &ft_unsigned_conversion, &ft_pad_sharp_xb},
|
||||
{'s', "-", "", &ft_str_conversion, NULL},
|
||||
{'c', "-", "", &ft_char_conversion, NULL},
|
||||
};
|
||||
|
||||
int ft_vdprintf(int fd, const char *format, va_list ap)
|
||||
{
|
||||
char *ret;
|
||||
|
||||
ret = NULL;
|
||||
if (ft_vasprintf(&ret, format, ap))
|
||||
return (1);
|
||||
ft_putstr_fd(ret, fd);
|
||||
ft_strdel(&ret);
|
||||
return (0);
|
||||
}
|
||||
|
||||
int ft_vasprintf(char **ret, const char *format, va_list ap)
|
||||
{
|
||||
char *str;
|
||||
char *tmp;
|
||||
char *final;
|
||||
|
||||
str = (char *)format;
|
||||
final = ft_strnew(1);
|
||||
while (*str)
|
||||
{
|
||||
tmp = final;
|
||||
if (*str == '{')
|
||||
ft_printf_color(&final, &str, ap);
|
||||
else if (*str == '%')
|
||||
{
|
||||
if (ft_fmtcalc(&final, &str, ap))
|
||||
return (1);
|
||||
}
|
||||
else
|
||||
final = ft_strjoin(final, (char[]){*str++, 0});
|
||||
ft_strdel(&tmp);
|
||||
}
|
||||
*ret = final;
|
||||
return (0);
|
||||
}
|
||||
|
||||
int ft_fmtcalc(char **final, char **str, va_list ap)
|
||||
{
|
||||
t_fmt *fmt;
|
||||
char *transform;
|
||||
|
||||
*str += 1;
|
||||
if (!(fmt = ft_printf_parse(str, ap)))
|
||||
return (1);
|
||||
if (!fmt->valid)
|
||||
ft_strncat(*final, &fmt->conversion, 1);
|
||||
else
|
||||
{
|
||||
transform = ft_transform(fmt, ap);
|
||||
*final = ft_strjoin(*final, transform);
|
||||
ft_strdel(&transform);
|
||||
}
|
||||
free(fmt);
|
||||
return (0);
|
||||
}
|
||||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/11/07 13:33:48 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/05 15:19:49 by wescande ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:54:47 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -24,8 +24,11 @@ void ft_pad_sharp_o(char *str, t_fmt *fmt)
|
|||
|
||||
void ft_pad_sharp_xb(char *str, t_fmt *fmt)
|
||||
{
|
||||
char start[3] = {'0',fmt->conversion, 0};
|
||||
char start[3];
|
||||
|
||||
start[0] = '0';
|
||||
start[1] = fmt->conversion;
|
||||
start[2] = 0;
|
||||
if (str[0] == '0')
|
||||
{
|
||||
if (str[1] == '0')
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/11/03 14:57:21 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 12:25:42 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 14:06:55 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/11/03 14:57:33 by jhalford #+# #+# */
|
||||
/* Updated: 2016/11/16 12:23:13 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 16:19:07 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/02/03 16:07:17 by jhalford #+# #+# */
|
||||
/* Updated: 2017/02/03 16:12:40 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:55:29 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,15 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_strcspn.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/20 15:55:33 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 16:00:37 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libft.h"
|
||||
|
||||
size_t ft_strcspn(char *s, const char *delim)
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: ariard <ariard@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/02 15:11:28 by ariard #+# #+# */
|
||||
/* Updated: 2017/03/07 11:44:29 by ariard ### ########.fr */
|
||||
/* Updated: 2017/03/20 16:01:06 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/11/03 14:58:40 by jhalford #+# #+# */
|
||||
/* Updated: 2016/12/05 17:20:45 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 16:10:24 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/01/20 15:01:45 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 14:46:56 by wescande ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:34:56 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/11/28 14:25:17 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 14:38:25 by wescande ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:35:09 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -3,10 +3,10 @@
|
|||
/* ::: :::::::: */
|
||||
/* exec_and_if.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/11/30 20:52:28 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/10 14:26:32 by ariard ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:40:02 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -14,7 +14,6 @@
|
|||
|
||||
int exec_and_if(t_btree **ast)
|
||||
{
|
||||
/* t_data *data; */
|
||||
t_exec *exec;
|
||||
|
||||
exec = &data_singleton()->exec;
|
||||
|
|
@ -23,24 +22,5 @@ int exec_and_if(t_btree **ast)
|
|||
exec->attrs &= ~EXEC_OR_IF;
|
||||
exec->attrs |= EXEC_AND_IF;
|
||||
ft_exec(&(*ast)->right);
|
||||
|
||||
/* data = data_singleton(); */
|
||||
/* if (data->exec.aol_status == NULL */
|
||||
/* || (data->exec.aol_search == TK_AND_IF */
|
||||
/* && *data->exec.aol_status == '0') */
|
||||
/* || (data->exec.aol_search == TK_OR_IF */
|
||||
/* && *data->exec.aol_status != '0')) */
|
||||
/* { */
|
||||
/* ft_exec(&(*ast)->left); */
|
||||
/* data->exec.aol_status = ft_getenv(data->env, "?"); */
|
||||
/* } */
|
||||
/* data->exec.aol_search = TK_AND_IF; */
|
||||
/* if (*data->exec.aol_status == '0' */
|
||||
/* || ((t_astnode*)(*ast)->right->item)->type != TK_COMMAND) */
|
||||
/* ft_exec(&(*ast)->right); */
|
||||
/* data->exec.aol_status = NULL; */
|
||||
/* data->exec.aol_search = 0; */
|
||||
|
||||
// btree_delone(ast, &ast_free);
|
||||
return (0);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: ariard <ariard@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/10 14:46:27 by ariard #+# #+# */
|
||||
/* Updated: 2017/03/10 16:25:35 by ariard ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:41:04 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/07 20:33:45 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/15 01:21:45 by ariard ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:42:17 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -18,15 +18,11 @@ int exec_case_branch(t_btree **ast)
|
|||
char **av;
|
||||
t_exec *exec;
|
||||
|
||||
DG("exec branch case");
|
||||
exec = &data_singleton()->exec;
|
||||
if (EXEC_IS_CASE_BRANCH(exec->attrs))
|
||||
return (0);
|
||||
node = (*ast)->item;
|
||||
av = token_to_argv(node->data.cmd.token, 1);
|
||||
DG("compare pattern %s ", av[0]);
|
||||
DG("and case %s", ((char **)exec->case_pattern)[0]);
|
||||
DG();
|
||||
if (ft_strcmp(av[0], ((char **)exec->case_pattern)[0]) == 0)
|
||||
{
|
||||
exec->attrs |= EXEC_CASE_BRANCH;
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/07 15:47:30 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/20 10:54:59 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 12:47:34 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -3,10 +3,10 @@
|
|||
/* ::: :::::::: */
|
||||
/* exec_or_if.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/11/30 21:06:17 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/05 15:18:49 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:40:15 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -14,7 +14,6 @@
|
|||
|
||||
int exec_or_if(t_btree **ast)
|
||||
{
|
||||
/* t_data *data; */
|
||||
t_exec *exec;
|
||||
|
||||
exec = &data_singleton()->exec;
|
||||
|
|
@ -23,24 +22,5 @@ int exec_or_if(t_btree **ast)
|
|||
exec->attrs &= ~EXEC_AND_IF;
|
||||
exec->attrs = EXEC_OR_IF;
|
||||
ft_exec(&(*ast)->right);
|
||||
|
||||
/* data = data_singleton(); */
|
||||
/* if (data->exec.aol_status == NULL */
|
||||
/* || (data->exec.aol_search == TK_AND_IF */
|
||||
/* && *data->exec.aol_status == '0') */
|
||||
/* || (data->exec.aol_search == TK_OR_IF */
|
||||
/* && *data->exec.aol_status != '0')) */
|
||||
/* { */
|
||||
/* ft_exec(&(*ast)->left); */
|
||||
/* data->exec.aol_status = ft_getenv(data->env, "?"); */
|
||||
/* } */
|
||||
/* data->exec.aol_search = TK_OR_IF; */
|
||||
/* if (*data->exec.aol_status != '0' */
|
||||
/* || ((t_astnode*)(*ast)->right->item)->type != TK_COMMAND) */
|
||||
/* ft_exec(&(*ast)->right); */
|
||||
/* data->exec.aol_status = NULL; */
|
||||
/* data->exec.aol_search = 0; */
|
||||
|
||||
// btree_delone(ast, &ast_free);
|
||||
return (0);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,10 +3,10 @@
|
|||
/* ::: :::::::: */
|
||||
/* exec_pipe.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/11/27 21:13:23 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/03 16:27:48 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:42:40 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -20,6 +20,5 @@ int exec_pipe(t_btree **ast)
|
|||
push(&exec->op_stack, TK_PIPE);
|
||||
ft_exec(&(*ast)->left);
|
||||
ft_exec(&(*ast)->right);
|
||||
/* btree_delone(ast, &ast_free); */
|
||||
return (0);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,15 +3,21 @@
|
|||
/* ::: :::::::: */
|
||||
/* exec_reset.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/08 14:31:42 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 11:35:49 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 16:09:02 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "minishell.h"
|
||||
|
||||
static void print_error(char *std)
|
||||
{
|
||||
ft_dprintf(2, "{red}%s: internal fcntl %s error errno=%i{eoc}\n",
|
||||
SHELL_NAME, std, errno);
|
||||
}
|
||||
|
||||
int exec_reset(void)
|
||||
{
|
||||
t_exec *exec;
|
||||
|
|
@ -19,12 +25,15 @@ int exec_reset(void)
|
|||
|
||||
exec = &data_singleton()->exec;
|
||||
jobc = &data_singleton()->jobc;
|
||||
if ((exec->fd_save[0] = fcntl(STDIN, F_DUPFD_CLOEXEC, 10)) == -1 && errno != EBADF)
|
||||
ft_dprintf(2, "{red}%s: internal fcntl STDIN error errno=%i{eoc}\n", SHELL_NAME, errno);
|
||||
if ((exec->fd_save[1] = fcntl(STDOUT, F_DUPFD_CLOEXEC, 10)) == -1 && errno != EBADF)
|
||||
ft_dprintf(2, "{red}%s: internal fcntl STDOUT error errno=%i{eoc}\n", SHELL_NAME, errno);
|
||||
if ((exec->fd_save[2] = fcntl(STDERR, F_DUPFD_CLOEXEC, 10)) == -1 && errno != EBADF)
|
||||
ft_dprintf(2, "{red}%s: internal fcntl STDERR error errno=%i{eoc}\n", SHELL_NAME, errno);
|
||||
if (errno != EBADF)
|
||||
{
|
||||
if ((exec->fd_save[0] = fcntl(STDIN, F_DUPFD_CLOEXEC, 10)) == -1)
|
||||
print_error("STDIN");
|
||||
if ((exec->fd_save[1] = fcntl(STDOUT, F_DUPFD_CLOEXEC, 10)) == -1)
|
||||
print_error("STDOUT");
|
||||
if ((exec->fd_save[2] = fcntl(STDERR, F_DUPFD_CLOEXEC, 10)) == -1)
|
||||
print_error("STDERR");
|
||||
}
|
||||
exec->op_stack = NULL;
|
||||
exec->fdin = STDIN;
|
||||
exec->attrs = 0;
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: ariard <ariard@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/07 11:12:05 by ariard #+# #+# */
|
||||
/* Updated: 2017/03/14 23:55:40 by ariard ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:43:34 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/08 02:45:15 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/15 18:57:03 by ariard ### ########.fr */
|
||||
/* Updated: 2017/03/20 14:07:39 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/12/12 12:41:11 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 10:40:20 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 14:33:51 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -32,5 +32,5 @@ int mark_process_status(pid_t pid, int status)
|
|||
return (0);
|
||||
}
|
||||
ft_dprintf(2, "{red}No child process %d.\n", pid);
|
||||
return (0);
|
||||
return (1);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/08 03:38:36 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/15 16:48:40 by ariard ### ########.fr */
|
||||
/* Updated: 2017/03/20 16:28:33 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -30,8 +30,8 @@ void *node_copy(void *data)
|
|||
new->data.cmd.redir = ft_lstmap(old->data.cmd.redir, &redir_copy);
|
||||
new->data.cmd.token = ft_ld_copy(old->data.cmd.token, &tab_esc_copy);
|
||||
}
|
||||
if (old->type == TK_FOR || old->type == TK_PAREN_OPEN || old->type == TK_CASE
|
||||
|| old->type == FNAME)
|
||||
if (old->type == TK_FOR || old->type == TK_PAREN_OPEN
|
||||
|| old->type == TK_CASE || old->type == FNAME)
|
||||
new->data.cmd.token = ft_ld_copy(old->data.cmd.token, &tab_esc_copy);
|
||||
return (new);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/08 00:58:02 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/13 22:31:32 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 16:29:37 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/08 02:26:31 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/15 02:04:14 by ariard ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:49:52 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/08 02:37:04 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/15 01:05:43 by ariard ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:50:03 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/08 02:38:12 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/13 22:31:26 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:50:05 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -3,10 +3,10 @@
|
|||
/* ::: :::::::: */
|
||||
/* plaunch_brace.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/13 19:09:30 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/17 20:35:24 by wescande ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:50:10 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -3,10 +3,10 @@
|
|||
/* ::: :::::::: */
|
||||
/* plaunch_builtin.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/07 15:48:24 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/17 20:22:12 by wescande ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:50:12 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/07 19:02:23 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/17 20:17:07 by wescande ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:50:14 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* process_empty.c :+: :+: :+: */
|
||||
/* plaunch_empty.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/13 17:26:01 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/17 20:23:18 by wescande ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:50:16 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -17,4 +17,3 @@ int plaunch_empty(t_process *p)
|
|||
(void)p;
|
||||
return (0);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -3,10 +3,10 @@
|
|||
/* ::: :::::::: */
|
||||
/* plaunch_file.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/07 14:53:31 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/17 20:22:38 by wescande ### ########.fr */
|
||||
/* Updated: 2017/03/20 16:29:20 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -22,7 +22,7 @@ int plaunch_file(t_process *p)
|
|||
{
|
||||
if (!p->data.cmd.path)
|
||||
error_launch("command not found: ", p->data.cmd.av[0], 127);
|
||||
else if (!p->data.cmd.stat)
|
||||
else if (access(p->data.cmd.path, F_OK) == -1)
|
||||
error_launch(p->data.cmd.av[0], ": no such file or directory", 127);
|
||||
else if (S_ISDIR(p->data.cmd.stat->st_mode))
|
||||
error_launch(p->data.cmd.av[0], ": is a directory", 126);
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/15 00:49:20 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/17 20:16:46 by wescande ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:51:47 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/08 03:23:59 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/17 20:29:36 by wescande ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:50:21 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/07 17:26:53 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/17 20:30:36 by wescande ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:50:23 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/08 00:11:44 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/17 20:28:08 by wescande ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:50:25 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/07 22:04:42 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/18 01:52:33 by wescande ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:50:27 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/07 17:20:53 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/18 01:48:53 by wescande ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:50:29 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -3,10 +3,10 @@
|
|||
/* ::: :::::::: */
|
||||
/* process_launch.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/13 22:21:19 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 14:57:26 by wescande ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:58:12 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -25,7 +25,6 @@ int do_the_muther_forker(t_process *p)
|
|||
return (pid);
|
||||
if (!p)
|
||||
return (pid);
|
||||
DG("START OF FORK");
|
||||
if (process_redirect(p))
|
||||
exit(1);
|
||||
process_setgroup(p, 0);
|
||||
|
|
@ -55,15 +54,12 @@ int process_launch(t_process *p)
|
|||
{
|
||||
pid_t pid;
|
||||
|
||||
DG("p->type=%i", p->type);
|
||||
p->state = PROCESS_RUNNING;
|
||||
if (!(pid = do_the_fork_if_i_have_to(p)))
|
||||
{
|
||||
DG("launcher did not fork!");
|
||||
process_resetfds(p);
|
||||
return (1);
|
||||
}
|
||||
DG("launcher forked! with : %d ", pid);
|
||||
p->pid = pid;
|
||||
process_setgroup(p, pid);
|
||||
if (p->fdin != STDIN)
|
||||
|
|
|
|||
|
|
@ -3,10 +3,10 @@
|
|||
/* ::: :::::::: */
|
||||
/* process_redirect.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/11/29 16:04:18 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/16 23:28:44 by ariard ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:57:02 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -23,6 +23,12 @@ t_itof g_redirmap[] =
|
|||
{0, NULL},
|
||||
};
|
||||
|
||||
static void process_close(int fd1, int fd2)
|
||||
{
|
||||
if (fd1 != fd2)
|
||||
close(fd1);
|
||||
}
|
||||
|
||||
int process_redirect(t_process *p)
|
||||
{
|
||||
t_list *redirs;
|
||||
|
|
@ -30,29 +36,23 @@ int process_redirect(t_process *p)
|
|||
int i;
|
||||
|
||||
redirs = p->redirs;
|
||||
if (p->to_close != STDIN)
|
||||
close(p->to_close);
|
||||
process_close(p->to_close, STDIN);
|
||||
while (redirs)
|
||||
{
|
||||
redir = redirs->content;
|
||||
if (redir->n > 9)
|
||||
return (bad_fd(redir->n));
|
||||
i = 0;
|
||||
while (g_redirmap[i].id)
|
||||
{
|
||||
i = -1;
|
||||
while (g_redirmap[++i].id)
|
||||
if (g_redirmap[i].id == redir->type)
|
||||
{
|
||||
if ((g_redirmap[i].f)(redir))
|
||||
return (1);
|
||||
break ;
|
||||
}
|
||||
i++;
|
||||
}
|
||||
redirs = redirs->next;
|
||||
}
|
||||
if (p->fdin != STDIN)
|
||||
dup2_close(p->fdin, STDIN);
|
||||
if (p->fdout != STDOUT)
|
||||
dup2_close(p->fdout, STDOUT);
|
||||
process_close(p->fdin, STDIN);
|
||||
process_close(p->fdout, STDOUT);
|
||||
return (0);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* set_process.c :+: :+: :+: */
|
||||
/* process_set.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/05 14:54:45 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 12:22:50 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 16:02:08 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -69,6 +69,7 @@ int process_set(t_process *p, t_btree *ast)
|
|||
exec->fdin = fds[PIPE_READ];
|
||||
if (!ast)
|
||||
return (0);
|
||||
p->redirs = ft_lstmap(((t_astnode *)ast->item)->data.cmd.redir, &redir_copy);
|
||||
p->redirs = ft_lstmap(((t_astnode *)ast->item)->data.cmd.redir,
|
||||
&redir_copy);
|
||||
return (process_set_spec(p, ast));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,10 +3,10 @@
|
|||
/* ::: :::::::: */
|
||||
/* process_setgroup.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/12/13 17:48:10 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/19 14:04:57 by wescande ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:58:33 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -23,15 +23,10 @@ int process_setgroup(t_process *p, pid_t pid)
|
|||
j = &data->exec.job;
|
||||
if (!SH_IS_INTERACTIVE(data_singleton()->opts))
|
||||
return (0);
|
||||
DG("setpgid(%i, %i)", pid, j->pgid);
|
||||
if (setpgid(pid, j->pgid) == -1)
|
||||
ft_dprintf(2, "{red}%s: internal setpgid() errno=%i{eoc}\n", SHELL_NAME, errno);
|
||||
/* if (JOB_IS_FG(j->attrs)) */
|
||||
ft_dprintf(2, "{red}%s: internal setpgid() errno=%i{eoc}\n",
|
||||
SHELL_NAME, errno);
|
||||
if (pid == 0 && JOB_IS_FG(j->attrs))
|
||||
{
|
||||
DG("tcsetpgrp[%i]", j->pgid);
|
||||
tcsetpgrp(STDIN, j->pgid);
|
||||
DG("after tcsetpgrp");
|
||||
}
|
||||
return (0);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,14 +3,13 @@
|
|||
/* ::: :::::::: */
|
||||
/* pset_brace.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/13 19:07:34 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 10:29:06 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:58:50 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
||||
#include "minishell.h"
|
||||
|
||||
int pset_brace(t_process *p, t_btree *ast)
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/07 20:36:04 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/20 10:27:59 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:59:05 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -14,8 +14,8 @@
|
|||
|
||||
int pset_case(t_process *p, t_btree *ast)
|
||||
{
|
||||
DG("set case");
|
||||
p->data.d_case.token = ft_ld_copy(((t_astnode *)ast->item)->data.cmd.token, tab_esc_copy);
|
||||
p->data.d_case.token = ft_ld_copy(((t_astnode *)ast->item)->data.cmd.token,
|
||||
tab_esc_copy);
|
||||
p->data.d_case.content = btree_map(ast->right, &node_copy);
|
||||
p->type = PROCESS_CASE;
|
||||
return (0);
|
||||
|
|
|
|||
|
|
@ -3,10 +3,10 @@
|
|||
/* ::: :::::::: */
|
||||
/* pset_cmd.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/07 15:06:05 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/20 10:28:38 by jhalford ### ########.fr */
|
||||
/* Created: 2017/03/20 12:41:54 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 16:28:02 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -16,38 +16,25 @@ int pset_cmd(t_process *p, t_btree *ast)
|
|||
{
|
||||
t_btree *func;
|
||||
|
||||
if (ast && !(p->data.cmd.av = token_to_argv(((t_astnode *)ast->item)->data.cmd.token, 1)))
|
||||
{
|
||||
p->type = PROCESS_EMPTY;
|
||||
return (0);
|
||||
}
|
||||
p->data.cmd.path = NULL;
|
||||
p->data.cmd.execf = NULL;
|
||||
p->data.cmd.stat = ft_memalloc(sizeof(struct stat));
|
||||
p->type = PROCESS_FILE;
|
||||
if (ast && !(p->data.cmd.av =
|
||||
token_to_argv(((t_astnode *)ast->item)->data.cmd.token, 1)))
|
||||
return ((p->type = PROCESS_EMPTY) ? 0 : 0);
|
||||
if ((func = is_function(p)))
|
||||
{
|
||||
btree_print(STDBUG, func, &ft_putast);
|
||||
p->data.function.content = func;
|
||||
p->type = PROCESS_FUNCTION;
|
||||
}
|
||||
else if ((p->data.cmd.execf = is_builtin(p)))
|
||||
p->type = PROCESS_BUILTIN;
|
||||
else if (ft_strchr(p->data.cmd.av[0], '/'))
|
||||
else if ((p->type = PROCESS_FILE))
|
||||
{
|
||||
p->data.cmd.stat = ft_memalloc(sizeof(struct stat));
|
||||
p->data.cmd.execf = &execve;
|
||||
p->data.cmd.path = ft_strdup(p->data.cmd.av[0]);
|
||||
if (stat(p->data.cmd.path, p->data.cmd.stat) == -1)
|
||||
ft_memdel((void**)&p->data.cmd.stat);
|
||||
}
|
||||
else if ((p->data.cmd.path = ft_hash(p->data.cmd.av[0])))
|
||||
{
|
||||
p->data.cmd.execf = &execve;
|
||||
if (stat(p->data.cmd.path, p->data.cmd.stat) == -1)
|
||||
{
|
||||
ft_memdel((void**)&p->data.cmd.stat);
|
||||
ft_dprintf(2, "{red}%s: %s: unexpected stat (2) failure\n", SHELL_NAME, p->data.cmd.path);
|
||||
}
|
||||
p->data.cmd.path = ft_strchr(p->data.cmd.av[0], '/') ?
|
||||
ft_strdup(p->data.cmd.av[0]) : ft_hash(p->data.cmd.av[0]);
|
||||
if (p->data.cmd.path && !access(p->data.cmd.path, F_OK)
|
||||
&& stat(p->data.cmd.path, p->data.cmd.stat) == -1)
|
||||
return (-1);
|
||||
}
|
||||
return (0);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/07 19:38:05 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/20 10:28:13 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:59:25 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -14,7 +14,8 @@
|
|||
|
||||
int pset_for(t_process *p, t_btree *ast)
|
||||
{
|
||||
p->data.d_for.token = ft_ld_copy(((t_astnode *)ast->item)->data.cmd.token, tab_esc_copy);
|
||||
p->data.d_for.token = ft_ld_copy(((t_astnode *)ast->item)->data.cmd.token,
|
||||
tab_esc_copy);
|
||||
p->data.d_for.content = btree_map(ast->right, &node_copy);
|
||||
p->type = PROCESS_FOR;
|
||||
return (0);
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/07 19:19:50 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/20 10:27:36 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 16:26:35 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* pset_sub.c :+: :+: :+: */
|
||||
/* pset_subshell.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/08 00:02:01 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/20 10:28:24 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 16:26:37 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -3,10 +3,10 @@
|
|||
/* ::: :::::::: */
|
||||
/* pset_until.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* By: gwojda <gwojda@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/07 22:22:24 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/20 10:27:47 by jhalford ### ########.fr */
|
||||
/* Created: 2017/03/20 16:26:43 by gwojda #+# #+# */
|
||||
/* Updated: 2017/03/20 16:26:44 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -3,10 +3,10 @@
|
|||
/* ::: :::::::: */
|
||||
/* pset_while.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/07 19:38:10 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/20 10:27:31 by jhalford ### ########.fr */
|
||||
/* Created: 2017/03/20 12:39:07 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 16:26:47 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: ariard <ariard@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/08 00:02:58 by ariard #+# #+# */
|
||||
/* Updated: 2017/03/20 12:21:26 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 16:26:50 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: ariard <ariard@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/03 18:12:57 by ariard #+# #+# */
|
||||
/* Updated: 2017/03/20 12:21:21 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 16:26:51 by gwojda ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,8 @@
|
|||
/* +:+ +:+ +:+ */
|
||||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Updated: 2017/02/07 16:05:09 by jhalford ### ########.fr */
|
||||
/* Created: 2017/03/20 12:36:10 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 12:36:15 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/02/06 22:03:53 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/13 17:40:54 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 12:38:41 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/02/06 22:12:31 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/16 19:07:41 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 12:36:22 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -24,7 +24,8 @@ int redirect_greatand(t_redir *redir)
|
|||
}
|
||||
if (!ft_stris(redir->word, ft_isdigit))
|
||||
{
|
||||
ft_dprintf(2, "{red}%s: %s: can only be digits{eoc}\n", SHELL_NAME, redir->word);
|
||||
ft_dprintf(2, "{red}%s: %s: can only be digits{eoc}\n",
|
||||
data_singleton()->argv[0], redir->word);
|
||||
return (1);
|
||||
}
|
||||
fdold = ft_atoi(redir->word);
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/02/06 22:09:53 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/13 19:22:09 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 12:36:55 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -22,7 +22,7 @@ int redirect_less(t_redir *redir)
|
|||
{
|
||||
ft_dprintf(2, "{red}%s: %s: no such file or directory\n",
|
||||
SHELL_NAME, redir->word);
|
||||
exit (1);
|
||||
return (1);
|
||||
}
|
||||
dup2(fdold, fdnew);
|
||||
return (0);
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/02/06 22:11:18 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/15 17:49:15 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 12:36:38 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -24,7 +24,8 @@ int redirect_lessand(t_redir *redir)
|
|||
}
|
||||
if (!ft_stris(redir->word, ft_isdigit))
|
||||
{
|
||||
ft_dprintf(2, "{red}%s: %s: can only be digits{eoc}\n", SHELL_NAME, redir->word);
|
||||
ft_dprintf(2, "{red}%s: %s: can only be digits{eoc}\n",
|
||||
data_singleton()->argv[0], redir->word);
|
||||
return (1);
|
||||
}
|
||||
fdold = ft_atoi(redir->word);
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/11/28 14:25:17 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 14:38:34 by wescande ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:35:33 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/07 15:55:53 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/20 10:24:57 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:36:33 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/12/15 13:01:19 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 12:15:50 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:23:28 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -27,10 +27,11 @@ int do_job_notification(void)
|
|||
{
|
||||
j = jlist->content;
|
||||
jlist = jlist->next;
|
||||
if ((job_is_stopped(j->id) && !(j->attrs & JOB_NOTIFIED)))
|
||||
if (job_is_completed(j)
|
||||
|| (job_is_stopped(j) && !(j->attrs & JOB_NOTIFIED)))
|
||||
{
|
||||
ret = 1;
|
||||
job_notify_change(j->id);
|
||||
job_format(j, JOBS_OPTS_L);
|
||||
j->attrs |= JOB_NOTIFIED;
|
||||
job_remove(j->id);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/12/13 13:54:51 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 11:32:08 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 14:16:48 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/01/31 15:07:30 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/03 19:42:19 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:18:52 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/01/09 12:38:31 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 11:10:27 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 14:27:04 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -27,7 +27,7 @@ void job_getrank(int (*rank)[2])
|
|||
while (jlist && i < 2)
|
||||
{
|
||||
job = jlist->content;
|
||||
if (job_is_stopped(job->id))
|
||||
if (job_is_stopped(job))
|
||||
(*rank)[i++] = job->id;
|
||||
jlist = jlist->next;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,26 +6,22 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/12/13 15:10:20 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 11:30:44 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 14:37:10 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "minishell.h"
|
||||
|
||||
int job_is_completed(int id)
|
||||
int job_is_completed(t_job *job)
|
||||
{
|
||||
t_list *lst;
|
||||
t_job *job;
|
||||
t_jobc *jobc;
|
||||
t_process *p;
|
||||
|
||||
jobc = &data_singleton()->jobc;
|
||||
job = ft_lst_find(jobc->first_job, &id, job_cmp_id)->content;
|
||||
lst = job->first_process;
|
||||
while (lst)
|
||||
{
|
||||
p = lst->content;
|
||||
if (!(p->state == PROCESS_COMPLETED))
|
||||
if (p->state != PROCESS_COMPLETED)
|
||||
return (0);
|
||||
lst = lst->next;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,27 +6,22 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/12/13 15:06:45 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 11:32:00 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 14:36:37 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "minishell.h"
|
||||
|
||||
int job_is_stopped(int id)
|
||||
int job_is_stopped(t_job *job)
|
||||
{
|
||||
t_list *lst;
|
||||
t_job *job;
|
||||
t_jobc *jobc;
|
||||
t_process *p;
|
||||
|
||||
jobc = &data_singleton()->jobc;
|
||||
job = ft_lst_find(jobc->first_job, &id, job_cmp_id)->content;
|
||||
lst = job->first_process;
|
||||
while (lst)
|
||||
{
|
||||
p = lst->content;
|
||||
if (!((p->state == PROCESS_COMPLETED)
|
||||
|| !(p->state == PROCESS_SUSPENDED)))
|
||||
if (p->state != PROCESS_COMPLETED && p->state != PROCESS_SUSPENDED)
|
||||
return (0);
|
||||
lst = lst->next;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/12/12 15:04:03 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 10:21:10 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 14:24:47 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/12/13 14:27:01 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/17 23:10:47 by wescande ### ########.fr */
|
||||
/* Updated: 2017/03/20 14:26:31 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/12/15 12:51:08 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 11:40:09 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 14:31:22 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -23,12 +23,14 @@ void job_remove(int id)
|
|||
if (!(jlist = ft_lst_find(jobc->first_job, &id, job_cmp_id)))
|
||||
return ;
|
||||
j = jlist->content;
|
||||
if (job_is_completed(id))
|
||||
if (job_is_completed(j))
|
||||
{
|
||||
DG();
|
||||
p = ft_lstlast(j->first_process)->content;
|
||||
set_exitstatus(p->status, 0);
|
||||
if (id < data_singleton()->jobc.current_id)
|
||||
data_singleton()->jobc.current_id = id;
|
||||
ft_lst_delif(&jobc->first_job, &id, job_cmp_id, job_free);
|
||||
DG();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/12/15 12:56:11 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 12:12:45 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 14:36:02 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/12/15 11:49:05 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/16 18:01:57 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 14:31:28 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -16,11 +16,14 @@ int job_wait(int id)
|
|||
{
|
||||
pid_t pid;
|
||||
t_job *j;
|
||||
t_list *jlist;
|
||||
t_jobc *jobc;
|
||||
int status;
|
||||
|
||||
jobc = &data_singleton()->jobc;
|
||||
j = ft_lst_find(jobc->first_job, &id, job_cmp_id)->content;
|
||||
if (!(jlist = ft_lst_find(jobc->first_job, &id, job_cmp_id)))
|
||||
return (-1);
|
||||
j = jlist->content;
|
||||
while (1)
|
||||
{
|
||||
if ((pid = waitpid(-j->pgid, &status, WUNTRACED)) == -1
|
||||
|
|
@ -28,8 +31,8 @@ int job_wait(int id)
|
|||
ft_dprintf(2, "{red}%s: waitpid error errno=%i{eoc}\n",
|
||||
SHELL_NAME, errno);
|
||||
if (pid <= 1 || mark_process_status(pid, status)
|
||||
|| job_is_stopped(id)
|
||||
|| job_is_completed(id))
|
||||
|| job_is_stopped(j)
|
||||
|| job_is_completed(j))
|
||||
break ;
|
||||
}
|
||||
return (0);
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/12/12 12:41:11 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 11:39:42 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 12:55:37 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/19 14:24:38 by wescande #+# #+# */
|
||||
/* Updated: 2017/03/20 16:42:26 by ariard ### ########.fr */
|
||||
/* Updated: 2017/03/20 16:44:31 by ariard ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/02/09 20:39:06 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/20 10:02:52 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:00:58 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -26,6 +26,7 @@ t_lexstate get_state_global(t_lexer *lexer)
|
|||
if ((ft_is_delim(c) && (ret = DELIM))
|
||||
|| ((c == '&' || c == ';' || c == '|' || c == '!') && (ret = SEP))
|
||||
|| ((c == '\\') && (ret = BACKSLASH))
|
||||
|| ((c == '\n') && (ret = NEWLINE))
|
||||
|| ((c == '\'') && (ret = QUOTE))
|
||||
|| ((c == '\"') && (ret = DQUOTE))
|
||||
|| ((c == '`') && (ret = BQUOTE))
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/12/03 11:58:44 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/08 12:09:52 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:32:07 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -22,10 +22,7 @@ int lexer_delim(t_list **alst, t_lexer *lexer)
|
|||
lexer->state = DEFAULT;
|
||||
if (token->type)
|
||||
return (lexer_lex(&(*alst)->next, lexer));
|
||||
else
|
||||
{
|
||||
if (lexer->str[lexer->pos] == 0)
|
||||
ft_lst_delif(alst, (*alst)->content, &ft_addrcmp, &token_free);
|
||||
return (lexer_lex(alst, lexer));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/02/09 17:08:51 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/19 12:13:42 by gwojda ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:02:05 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -37,11 +37,6 @@ int ft_is_delim(char c)
|
|||
return (c == ' ' || c == '\t');
|
||||
}
|
||||
|
||||
int ft_is_delim_list(char c)
|
||||
{
|
||||
return (c == ';' || c == '\n' || c == '&');
|
||||
}
|
||||
|
||||
int lexer_lex(t_list **alst, t_lexer *lexer)
|
||||
{
|
||||
t_token *token;
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: ariard <ariard@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/01/23 23:19:46 by ariard #+# #+# */
|
||||
/* Updated: 2017/03/03 18:00:24 by jhalford ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:25:03 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -16,18 +16,10 @@ int lexer_newline(t_list **alst, t_lexer *lexer)
|
|||
{
|
||||
t_token *token;
|
||||
|
||||
if (*alst)
|
||||
{
|
||||
token = (*alst)->content;
|
||||
if (*token->data)
|
||||
return (lexer_newline(&(*alst)->next, lexer));
|
||||
}
|
||||
else
|
||||
{
|
||||
token = token_init();
|
||||
*alst = ft_lstnew(token, sizeof(*token));
|
||||
}
|
||||
token = (*alst)->content;
|
||||
if (token->type)
|
||||
return (lexer_lex(&(*alst)->next, lexer));
|
||||
lexer->pos++;
|
||||
token->type = TK_NEWLINE;
|
||||
return (lexer_lex(&(*alst)->next, lexer));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2016/11/30 16:29:57 by jhalford #+# #+# */
|
||||
/* Updated: 2017/03/16 18:21:30 by ariard ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:23:35 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: ariard <ariard@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2017/03/05 17:28:31 by ariard #+# #+# */
|
||||
/* Updated: 2017/03/16 17:56:16 by ariard ### ########.fr */
|
||||
/* Updated: 2017/03/20 15:39:36 by jhalford ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue