-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfileio_func.c
144 lines (129 loc) · 2.88 KB
/
fileio_func.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
#include "s_shell.h"
/**
* getHistoryFile - gets the history file
* @info: parameter struct
*
* Return: allocated string containg history file
*/
char *getHistoryFile(info_t *info)
{
char *buffer, *dir;
dir = getEnvironmentVariable(info, "HOME=");
if (!dir)
return (NULL);
buffer = malloc(sizeof(char) * (_strlen(dir) + _strlen(HIST_FILE) + 2));
if (!buffer)
return (NULL);
buffer[0] = 0;
_strcpy(buffer, dir);
_strcat(buffer, "/");
_strcat(buffer, HIST_FILE);
return (buffer);
}
/**
* writeHistory - creates a file, or appends to an existing file
* @info: the parameter struct
*
* Return: 1 on success, else -1
*/
int writeHistory(info_t *info)
{
ssize_t fd;
char *filename = getHistoryFile(info);
str_list_t *node = NULL;
if (!filename)
return (-1);
fd = open(filename, O_CREAT | O_TRUNC | O_RDWR, 0644);
free(filename);
if (fd == -1)
return (-1);
for (node = info->history; node; node = node->next)
{
_putsfd(node->str, fd);
_putfd('\n', fd);
}
_putfd(BUFFER_FLUSH, fd);
close(fd);
return (1);
}
/**
* readHistory - reads history from file
* @info: the parameter struct
*
* Return: histcount on success, 0 otherwise
*/
int readHistory(info_t *info)
{
int i, last = 0, linecount = 0;
ssize_t fd, rdlen, fsize = 0;
struct stat st;
char *buffer = NULL, *filename = getHistoryFile(info);
if (!filename)
return (0);
fd = open(filename, O_RDONLY);
free(filename);
if (fd == -1)
return (0);
if (!fstat(fd, &st))
fsize = st.st_size;
if (fsize < 2)
return (0);
buffer = malloc(sizeof(char) * (fsize + 1));
if (!buffer)
return (0);
rdlen = read(fd, buffer, fsize);
buffer[fsize] = 0;
if (rdlen <= 0)
return (free(buffer), 0);
close(fd);
for (i = 0; i < fsize; i++)
if (buffer[i] == '\n')
{
buffer[i] = 0;
buildHistoryList(info, buffer + last, linecount++);
last = i + 1;
}
if (last != i)
buildHistoryList(info, buffer + last, linecount++);
free(buffer);
info->histcount = linecount;
while (info->histcount-- >= HIST_MAX)
deleteNodeAtIndex(&(info->history), 0);
renumberHistory(info);
return (info->histcount);
}
/**
* buildHistoryList - adds entry to a history linked list
* @info: Structure containing potential arguments. Used to maintain
* @buffer: buffer
* @linecount: the history linecount, histcount
*
* Return: Always 0
*/
int buildHistoryList(info_t *info, char *buffer, int linecount)
{
str_list_t *node = NULL;
if (info->history)
node = info->history;
addNodeEnd(&node, buffer, linecount);
if (!info->history)
info->history = node;
return (0);
}
/**
* renumberHistory - renumbers the history linked list after changes
* @info: Structure containing potential arguments. Used to maintain
*
* Return: the new histcount
*/
int renumberHistory(info_t *info)
{
str_list_t *node = info->history;
int index = 0;
while (node)
{
node->num = index++;
node = node->next;
}
return (info->histcount = index);
}