-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisc_list.cpp
309 lines (272 loc) · 6.14 KB
/
disc_list.cpp
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdio.h>
#include <iostream>
using namespace std;
/*
一个磁盘上的list
*/
/*
读取:
先读入一个固定大小的结构,其中包含必要的元信息,从元信息中得到长度信息,再读入。
*/
struct Link{
size_t node_size;
off_t offset; //offset为0为结尾
};
struct Node{
bool valid;
char* data;
Link next;
};
struct Head{
Link first;
};
static Head head;
size_t head_size = sizeof(head.first.node_size) + sizeof(head.first.offset);
static int fd=-1;
off_t Lseek(int fd, off_t offset, int whence)
{
off_t off;
if((off = lseek(fd, offset, whence)) < 0){
perror("lseek");
exit(1);
}
return off;
}
ssize_t Read(int fd, void *buf, size_t count)
{
ssize_t size;
if((size = read(fd, buf, count)) < 0){
perror("read");
exit(1);
}
return size;
}
ssize_t Write(int fd, const void *buf, size_t count)
{
ssize_t size;
if((size = write(fd, buf, count)) < 0){
perror("write");
exit(1);
}
return size;
}
void *Malloc(size_t size)
{
void * ptr = malloc(size);
if(!ptr){
fprintf(stderr, "not enough memory\n");
exit(1);
}
return ptr;
}
char* head_encode(Head* headp)
{
char* buf = (char*) Malloc(head_size);
char* ptr = buf;
memcpy(ptr, &headp->first.node_size, sizeof(headp->first.node_size)); //写入下一个结点的大小信息
ptr += sizeof(headp->first.node_size);
memcpy(ptr, &headp->first.offset, sizeof(headp->first.offset)); //写入下一个结点的offset信息
return buf;
}
void head_decode(char* buf)
{
char* ptr = buf;
memcpy(&head.first.node_size, ptr, sizeof(head.first.node_size)); //写入下一个结点的大小信息
ptr += sizeof(head.first.node_size);
memcpy(&head.first.offset, ptr, sizeof(head.first.offset)); //写入下一个结点的offset信息
}
//把head写入文件
void write_head()
{
char* head_rep = head_encode(&head);
Lseek(fd, 0, SEEK_SET);
Write(fd, head_rep, head_size);
free(head_rep);
}
//从文件中读取头部信息
void read_head()
{
char* buf = (char*)Malloc(head_size);
Lseek(fd, 0, SEEK_SET);
Read(fd, buf, head_size);
head_decode(buf);
free(buf);
}
bool list_init(char* file)
{
/* 先看文件是否存在,如果存在就假定它的格式是正确的,读取头部元数据;
如果不存在,则是新建文件,按照disc list的办法格式化之
*/
if(access(file, F_OK) < 0){
fd = open(file, O_CREAT|O_RDWR, 0644);
if(fd<0){
perror("open");
exit(1);
}
write_head(); //是否要把新建的head写入到文件??写入。
}else{
fd = open(file, O_RDWR);
if(fd<0){
perror("open");
exit(1);
}
//读取头结点信息
read_head();
}
return fd<0? false:true;
}
void list_release(){
close(fd);
fd = -1;
}
char* node_encode(Node* np, size_t* size)
{
int data_size = strlen(np->data)+1;
*size = sizeof(np->valid) + data_size
+ sizeof(np->next.node_size) + sizeof(np->next.offset);
char* buf = (char*) Malloc(*size);
char* ptr = buf;
memcpy(ptr, &np->valid, sizeof(np->valid)); //写入结点的有效信息
ptr += sizeof(np->valid);
strcpy(ptr, np->data);
ptr += data_size;
memcpy(ptr, &np->next.node_size, sizeof(np->next.node_size)); //写入下一个结点的大小信息
ptr += sizeof(np->next.node_size);
memcpy(ptr, &np->next.offset, sizeof(np->next.offset)); //写入下一个结点的offset信息
return buf;
}
Node* node_decode(char* buf)
{
Node* np = (Node*)Malloc(sizeof(Node));
char* ptr = buf;
memcpy(&np->valid, ptr, sizeof(np->valid)); //读取结点的有效信息
ptr += sizeof(np->valid);
np->data = strdup(ptr); /* 读取结点中的数据,C style string */
ptr += strlen(np->data)+1;
memcpy(&np->next.node_size, ptr, sizeof(np->next.node_size)); //读取下一个结点的大小信息
ptr += sizeof(np->next.node_size);
memcpy(&np->next.offset, ptr, sizeof(np->next.offset)); //读取下一个结点的offset信息
return np;
}
size_t node_size(Node* np)
{
size_t sz = sizeof(np->valid);
sz += strlen(np->data)+1; //
sz += sizeof(np->next.node_size); //
sz += sizeof(np->next.offset); //
return sz;
}
Node* node_read(Link lp)
{
char* buf = (char*)Malloc(lp.node_size);
Lseek(fd, lp.offset, SEEK_SET);
Read(fd, buf, lp.node_size); //至此,结点中的内容在buf里
Node* np = node_decode(buf);
free(buf);
return np;
}
void node_write_inplace(Node* np, off_t offset)
{
size_t size;
char* node_rep = node_encode(np, &size);
Lseek(fd, offset, SEEK_SET);
Write(fd, node_rep, size);
}
void node_free(Node* np)
{
free(np->data);
free(np);
}
void list_print()
{
Link p=head.first;
printf("current list:\n");
while(p.offset!=0){
Node* np = node_read(p);
if(np->valid)
printf("%s, ", np->data);
p=np->next;
node_free(np);
}
printf("\n");
}
//copy list to another file, only valid nodes are copied.
void list_copy()
{
}
/*
bool list_get(char* data)
{
Link p=head.first;
while(p.offset!=0){
Node* np = node_read(p);
if(np->valid && !strcmp(np->data, data)) //matched
return true;
p=np->next;
node_free(np);
}
return false;
}
*/
void list_add(const char* data)
{
Node* np = (Node*)Malloc(sizeof(Node));
np->valid = true;
np->data = strdup(data);
np->next = head.first;
//write np 文件结尾, 返回写的offset
size_t size;
char* node_rep = node_encode(np, &size);
off_t offset = Lseek(fd, 0, SEEK_END);
Write(fd, node_rep, size);
//新的链表第一个结点的offset
head.first.offset = offset;
//新的链表第一个结点的大小信息
head.first.node_size = node_size(np);
write_head();
node_free(np);
free(node_rep);
}
bool list_del(const char* data)
{
Link p=head.first;
while(p.offset!=0){
Node* np = node_read(p);
if(np->valid && !strcmp(np->data, data)){ //matched
np->valid = false;
node_write_inplace(np, p.offset);
return true;
}
p=np->next;
node_free(np);
}
return false;
}
int main()
{
string cmd, data;
if(!list_init("mylist")){
cerr<<"db open failed:"<<endl;
perror("open");
}
while(1){
cout<<"please input command:"<<endl;
cin>>cmd;
if(cmd == "add"){
cin>>data;
list_add(data.c_str());
}else if(cmd == "del"){
cin>>data;
list_del(data.c_str());
}
else{
return 0;
}
list_print();
}
return 0;
}