-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_cd.c
169 lines (156 loc) · 3.82 KB
/
_cd.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
#include "shell.h"
/**
* c_strcat - concatenate two strings ignoring the first character ("~" in cd)
* @dest: string to be appended to
* @src: string to append
* Return: concatenated string
*/
char *c_strcat(char *dest, char *src)
{
int len = 0;
int len2 = 0;
int total_len = 0;
int j = 0;
/* find total length of both strings to _realloc */
while (dest[len] != '\0')
{
len++;
total_len++;
}
while (src[len2] != '\0')
{
len2++;
total_len++;
}
/* _realloc because dest was malloced outside of function */
dest = _realloc(dest, len, sizeof(char) * total_len + 1);
j = 1; /* ignore the first character */
while (src[j] != '\0')
{
dest[len] = src[j];
len++;
j++;
}
dest[len] = '\0';
return (dest);
}
/**
* c_setenv - custom _setenv by concatenating string first before setting
* @env: environmental variable linked list
* @name: environmental variable name (e.g. "OLDPWD")
* @dir: directory path (e.g. "/home/vagrant/directory1")
* Return: 0 on success (e.g. "OLDPWD=/home/vagrant/directory1")
*/
int c_setenv(list_t **env, char *name, char *dir)
{
int index = 0, j = 0;
char *cat;
list_t *holder;
cat = _strdup(name); /* create new concatenated string */
cat = _strcat(cat, "=");
cat = _strcat(cat, dir);
index = find_env(*env, name); /* get idx to env var in linked list */
/* traverse to idx, free node data, reassign data */
holder = *env;
while (j < index)
{
holder = holder->next;
j++;
}
free(holder->var);
holder->var = _strdup(cat);
free(cat);
return (0);
}
/**
* cd_only - change directory to home
* @env: bring in environmental linked list to update PATH and OLDPWD
* @current: bring in current working directotry
*/
void cd_only(list_t *env, char *current)
{
char *home = NULL;
home = get_env("HOME", env);
c_setenv(&env, "OLDPWD", current); /* update env OLDPWD */
free(current);
if (access(home, F_OK) == 0) /* if exist, go to home dir */
chdir(home);
current = NULL;
current = getcwd(current, 0);
c_setenv(&env, "PWD", current); /* update env PWD */
free(current);
free(home);
}
/**
* cd_execute - executes the cd
* @env: bring in environmental linked list to update PATH and OLDPWD
* @current: bring in current working directotry
* @dir: bring in directory path to change to
* @str: bring in the 1st argument to write out error
* @num: bring in the line number to write out error
* Return: 0 if success 2 if fail
*/
int cd_execute(list_t *env, char *current, char *dir, char *str, int num)
{
int i = 0;
if (access(dir, F_OK) == 0)
{
c_setenv(&env, "OLDPWD", current); /* update env OLDPWD */
free(current);
chdir(dir);
current = NULL;
current = getcwd(current, 0); /* get current working dir */
c_setenv(&env, "PWD", current); /* update env PWD */
free(current);
}
else
{
cant_cd_to(str, num, env);
free(current);
i = 2;
}
return (i);
}
/**
* _cd - change directory
* @str: user's typed in command
* @env: enviromental linked list to retrieve HOME and OLDPWD paths
* @num: nth user command, to be used at error message
* Return: 0 if success 2 if failed
*/
int _cd(char **str, list_t *env, int num)
{
char *current = NULL, *dir = NULL;
int exit_stat = 0;
current = getcwd(current, 0); /* store current working directory */
if (str[1] != NULL)
{
if (str[1][0] == '~') /* Usage: cd ~ */
{
dir = get_env("HOME", env);
dir = c_strcat(dir, str[1]);
}
else if (str[1][0] == '-') /* Usage: cd - */
{
if (str[1][1] == '\0')
dir = get_env("OLDPWD", env);
}
else /* Usage: cd directory1 */
{
if (str[1][0] != '/')
{
dir = getcwd(dir, 0);
dir = _strcat(dir, "/");
dir = _strcat(dir, str[1]);
}
else
dir = _strdup(str[1]);
}
exit_stat = cd_execute(env, current, dir, str[1], num);
free(dir);
}
else /* Usage: cd */
cd_only(env, current);
free_double_ptr(str); /* frees user input */
return (exit_stat);
}