summaryrefslogtreecommitdiffstats
path: root/src/ft_e_externs_next.c
blob: 36bf5e64bc0e85425f77cb589da06cac8a083833 (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
95
96
97
98
99
100
101
102
103
104
105
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   ft_e_externs_next.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 <dirent.h>
#include <stdlib.h>
#include <stddef.h>

#include "ft_f_fail.h"
#include "ft_s_destroy.h"
#include "ft_s_lcom.h"
#include "ft_s_struct.h"

static char
	*ft_get_fullpath(const char p_path[],
					const char d_name[],
					t_msh *msh)
{
	char			*fullpath;
	const size_t	path_len = ft_strlen(p_path);
	const size_t	name_len = ft_strlen(d_name);

	if (!(fullpath = (char*)malloc((path_len + name_len + 2) * sizeof(char))))
	{
		ft_lcom_clear(&msh->curr);
		ft_s_destroy(msh);
		ft_fail_alloc(msh);
	}
	ft_memcpy(fullpath, p_path, path_len);
	*(fullpath + (path_len)) = '/';
	ft_memcpy(fullpath + path_len + 1, d_name, name_len);
	*(fullpath + (path_len + name_len + 1)) = '\0';
	return (fullpath);
}

char
	*ft_search_in_path(const char com[],
					char *envpath[],
					t_msh *msh)
{
	/* TODO: norme */
	struct dirent	*ent;
	char			**p_path;
	char			*fullpath;
	DIR				*dir;

	p_path = envpath;
	while (*p_path)
	{
		if ((dir = opendir(*p_path)) != NULL)
		{
			while ((ent = readdir(dir)) != NULL)
			{
				/* TODO: check for not bins (dirs, etc) */
				if (ft_strncmp(com, ent->d_name, ft_strlen(com) + 1) == 0)
				{
					fullpath = ft_get_fullpath(*p_path, ent->d_name, msh);
					closedir(dir);
					return (fullpath);
				}
			}
			closedir(dir);
		}
		p_path++;
	}
	return (NULL);
}

char
	**ft_get_env_path(t_msh *msh)
{
	char	**p_env;
	char	**envpath;
	char	*envline;

	p_env = msh->envp;
	while (*p_env && ft_strncmp("PATH", *p_env, 4) != 0)
	{
		p_env++;
	}
	if (*p_env == NULL)
		return (NULL);
	envline = ft_strchr(*p_env, '=');
	envline += 1;
	if (*envline != '\0')
	{
		if (!(envpath = ft_split(envline, ':')))
		{
			ft_lcom_clear(&msh->curr);
			ft_s_destroy(msh);
			ft_fail_alloc(msh);
		}
		return (envpath);
	}
	return (NULL);
}