summaryrefslogtreecommitdiffstats
path: root/src/u_utils.c
blob: 3d84be37f2f86a000cb72c4ef126ef851425a603 (plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   u_utils.c                                          :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: rbousset <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/02/14 17:19:27 by rbousset          #+#    #+#             */
/*   Updated: 2020/02/14 17:19:29 by rbousset         ###   ########lyon.fr   */
/*                                                                            */
/* ************************************************************************** */

#include <libft.h>
#include <stdlib.h>
#include <stdint.h>
#include <unistd.h>
#include <signal.h>
#include <term.h>
#include <curses.h>

#include "d_define.h"
#include "f_fail.h"
#include "s_struct.h"

t_bool		u_is_not_escaped(const char *head, const char *ptr)
{
	if (((ptr - head) == 0) ||
		((ptr - head) >= 1 && *(ptr - 1) != C_BACKS) ||
		((ptr - head) > 1 && *(ptr - 1) == C_BACKS && *(ptr - 2) == C_BACKS))
		return (TRUE);
	return (FALSE);
}

void		u_eof_fd(int32_t fd)
{
	char	*line;

	close(fd);
	get_next_line(fd, &line);
	ft_memdel((void*)&line);
}

char		**u_get_env_var_names(t_msh *msh)
{
	char	**vars;
	size_t	i;

	i = 0;
	while (msh->envp[i] != NULL)
		i++;
	if ((vars = (char**)malloc((i + 1) * sizeof(char*))) == NULL)
		f_alloc_and_destroy_msh(msh);
	i = 0;
	while (msh->envp[i] != NULL)
	{
		if ((vars[i] =
			(char*)malloc((ft_strclen(msh->envp[i], '=') + 1)
			* sizeof(char))) == NULL)
			f_alloc_and_destroy_msh(msh);
		ft_strlcpy(vars[i], msh->envp[i], ft_strclen(msh->envp[i], '=') + 1);
		i++;
	}
	vars[i] = NULL;
	return (vars);
}

uint64_t	u_builtins_get_argc(const char *args[])
{
	uint64_t	argc;

	argc = 0;
	while (args[argc] != NULL)
	{
		argc++;
	}
	return (argc);
}

uint8_t		u_get_builtin_id(const char bin[])
{
	char	tmp[M_BUILTINS_REF_LEN];
	char	*tok;
	uint8_t	i;

	i = 0;
	ft_strlcpy(tmp, M_BUILTINS_REF, M_BUILTINS_REF_LEN);
	tok = ft_strtok(tmp, ":");
	while (tok != NULL && ft_strncmp(bin, tok, ft_strlen(tok) + 1) != 0)
	{
		tok = ft_strtok(NULL, ":");
		i++;
	}
	return (i);
}