-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathllist.c
180 lines (165 loc) · 6.07 KB
/
llist.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
170
171
172
173
174
175
176
177
178
179
180
/******************************************************************************\
* Copyright (C) 2001, hexcurse is written by Jewfish and Armoth *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software *
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
* *
\******************************************************************************/
#include "hex.h"
/********************************************************\
* Description: deletes an item from the linked list and*
* returns the head of the linked list. *
\********************************************************/
hexList *deleteNode(hexList *head, off_t loc)
{
if (head == NULL) /* if NULL */
return head; /* just return */
else if (head->loc > loc)
return head;
else if (head->loc < loc) /* if loc > current */
head->next = deleteNode(head->next, loc); /* go to next list */
else if (head->loc == loc) /* if correct loc */
{
hexList *tmpHead = head;
head = head->next; /* "delete" it */
free(tmpHead); /* free the memory */
}
/*printDebug(head, loc);*/
return head;
}
/********************************************************\
* Description: inserts an item into the linked list and*
* returns the head of the linked list. *
\********************************************************/
hexList *insertItem(hexList *head, off_t loc, int val)
{
if (head == NULL) /* if NULL create item*/
{
head = llalloc(); /* allocate space */
head->loc = loc; /* store current line */
head->val = val; /* store value */
head->next = NULL; /* make next = NULL */
}
else if (head-> loc == loc)
{
hexList *tmpHead; /* create new tmp item*/
tmpHead = llalloc(); /* allocate space */
tmpHead->loc = loc; /* store the location */
tmpHead->val = val; /* store the value */
tmpHead->next = head; /* point next to head */
head = tmpHead; /* point head to tmp */
}
else if (head->loc < loc || head->next == NULL) /* recursively call it*/
head->next = insertItem(head->next, loc, val);
/* insert into list */
else if (head->next != NULL && head->next->loc >= loc)
{
hexList *tmpHead; /* create new tmp item*/
tmpHead = llalloc(); /* allocate space */
tmpHead->loc = loc; /* store the location */
tmpHead->val = val; /* store the value */
tmpHead->next = head; /* point next to head */
head = tmpHead; /* point head to tmp */
}
return head; /* return the head */
}
/********************************************************\
* Description: Search through the linked list for to *
* check if loc exist in the list. The *
* function returns -1 if not found or a *
* positve int of the modified value *
\********************************************************/
int searchList(hexList *head, off_t loc)
{
hexList *tmpHead; /* allocate temp space*/
tmpHead = head; /* temp points to head*/
while (tmpHead != NULL) /* while not null */
{
if (tmpHead->loc == loc) /*if loc == return val*/
return tmpHead->val;
else
tmpHead = tmpHead->next; /* move to next item */
}
return -1;
}
/********************************************************\
* Description: write the changes to either the current *
* file or to a specified output file *
\*******************************************************/
int writeChanges()
{
FILE *fpOUT = NULL;
FILE *fptmp = NULL;
off_t buff,prev_loc; /* declare llist vars */
hexList *tmpHead = head;
if (fpOUTfilename && fpIN && (fpOUT = fopen(fpOUTfilename, "w+")))
{ /* open the write file*/
fptmp = fpOUT;
rewind(fpIN); /* set file loc to 0 */
rewind(fpOUT);
while ((buff = fgetc(fpIN)) != EOF) /*write to file buffer*/
fputc(buff, fpOUT);
}
else if (fpIN) /* if no output file */
{
fptmp = fpIN;
fpIN = fopen(fpINfilename, "r+");
if (!fpIN)
{
fpIN = fptmp;
popupWin("Cannot write to file: bad permissions", -1);
return 1;
}
fclose(fptmp);
fptmp = fpIN;
}
else
{
popupWin("No data written.", -1);
return 1;
}
rewind(fpIN);
rewind(fptmp);
prev_loc = -1;
while (tmpHead != NULL) /* write to file */
{
/* only print the latest change from the linked list*/
if (prev_loc != tmpHead->loc) {
fseeko(fptmp, tmpHead->loc, SEEK_SET);
fputc(tmpHead->val, fptmp);
}
prev_loc = tmpHead->loc;
tmpHead = tmpHead->next;
}
fflush(fptmp); /* flush buffto disk */
rewind(fpIN); /* reset file pointer */
if (fpIN != fptmp)
fclose(fptmp);
return 0;
}
/********************************************************\
* Description: recursivly frees all the memory that was*
* allocated via malloc(), this avoids *
* memory leaks that exist far too many *
* programs that you have to pay to use *
\********************************************************/
hexList *freeList(hexList *head)
{
if (head != NULL) /* while head != NULL */
{
freeList(head->next); /* check next item */
free(head); /* free the memory */
}
return NULL; /* return NULL to head*/
}