-
Notifications
You must be signed in to change notification settings - Fork 0
/
parser.c
86 lines (77 loc) · 1.46 KB
/
parser.c
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
#include "shell.h"
/**
* is_cmd - fuction that determines if a file is executable
* @info: info struct
* @path: path to the file
* Return: 1 if true, 0 otherwise
*/
int is_cmd(info_t *info, char *path)
{
struct stat st;
(void)info;
if (!path || stat(path, &st))
return (0);
if (st.st_mode & S_IFREG)
{
return (1);
}
return (0);
}
/**
* dup_chars - function that duplicates characters
* @pathstr: the PATH string
* @start: starting index
* @stop: stopping index
* Return: pointer to new buffer
*/
char *dup_chars(char *pathstr, int start, int stop)
{
static char buf[1024];
int a = 0, b = 0;
for (b = 0, a = start; a < stop; a++)
if (pathstr[a] != ':')
buf[b++] = pathstr[a];
buf[b] = 0;
return (buf);
}
/**
* find_path - function that finds cmd in the PATH string
* @info: the info struct
* @pathstr: the PATH string
* @cmd: the cmd to find
*
* Return: full path of cmd if found or NULL
*/
char *find_path(info_t *info, char *pathstr, char *cmd)
{
int j = 0, curr_pos = 0;
char *path;
if (!pathstr)
return (NULL);
if ((_strlen(cmd) > 2) && starts_with(cmd, "./"))
{
if (is_cmd(info, cmd))
return (cmd);
}
while (1)
{
if (!pathstr[j] || pathstr[j] == ':')
{
path = dup_chars(pathstr, curr_pos, j);
if (!*path)
_strcat(path, cmd);
else
{
_strcat(path, "/");
_strcat(path, cmd);
}
if (is_cmd(info, path))
return (path);
if (!pathstr[j])
break;
curr_pos = j;
}
j++;
}
return (NULL);
}