-
Notifications
You must be signed in to change notification settings - Fork 4
/
storage_mgr.c
615 lines (532 loc) · 15.7 KB
/
storage_mgr.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
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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <string.h>
#include <limits.h>
#include "storage_mgr.h"
/************************************************************
* handle data structures *
************************************************************/
/*
typedef struct SM_FileHandle {
char *fileName;
int totalNumPages;
int curPagePos;
void *mgmtInfo;
} SM_FileHandle;
typedef char* SM_PageHandle;
*/
/************************************************************
* interface *
************************************************************/
/* manipulating page files */
/*
extern void initStorageManager (void);
extern RC createPageFile (char *fileName);
extern RC openPageFile (char *fileName, SM_FileHandle *fHandle);
extern RC closePageFile (SM_FileHandle *fHandle);
extern RC destroyPageFile (char *fileName);
*/
/* reading blocks from disc */
/*
extern RC readBlock (int pageNum, SM_FileHandle *fHandle, SM_PageHandle memPage);
extern int getBlockPos (SM_FileHandle *fHandle);
extern RC readFirstBlock (SM_FileHandle *fHandle, SM_PageHandle memPage);
extern RC readPreviousBlock (SM_FileHandle *fHandle, SM_PageHandle memPage);
extern RC readCurrentBlock (SM_FileHandle *fHandle, SM_PageHandle memPage);
extern RC readNextBlock (SM_FileHandle *fHandle, SM_PageHandle memPage);
extern RC readLastBlock (SM_FileHandle *fHandle, SM_PageHandle memPage);
*/
/* writing blocks to a page file */
/*
extern RC writeBlock (int pageNum, SM_FileHandle *fHandle, SM_PageHandle memPage);
extern RC writeCurrentBlock (SM_FileHandle *fHandle, SM_PageHandle memPage);
extern RC appendEmptyBlock (SM_FileHandle *fHandle);
extern RC ensureCapacity (int numberOfPages, SM_FileHandle *fHandle);
*/
/* manipulating page files */
/***************************************************************
* Function Name: initStorageManager
*
* Description:to let user know enter the StorageManager
*
* Parameters:void
*
* Return:void
*
* Author:Chuanwei Tu
*
* History:
* Date Name Content
* 2016/2/1 Chuanwei Tu initializing the Storage Manager
*
***************************************************************/
void initStorageManager(void){
printf("--------Initialzing the StorageManager----------"); // to let user know enter the StorageManager
printf("--------the StorageManager version is 1.00---------- \n");
//return;
}
/***************************************************************
* Function Name: createPageFile
*
* Description: Create a new page file fileName. The initial file size should be one page. This method should fill this single page with '\0' bytes.
*
* Parameters: char *fileName
*
* Return: RC
*
* Author: Xiaoliang Wu
*
* History:
* Date Name Content
* -------------- -------------------------- ----------------
* 2016/02/07 Xiaoliang Wu implement function
*
***************************************************************/
RC createPageFile(char *fileName){
FILE *fp;
char fill[PAGE_SIZE];
int write_result;
fp = fopen(fileName,"w");
if(fp == NULL){
fclose(fp);
return RC_CREATE_FILE_FAIL;
}
memset(fill, '\0', sizeof(fill));
write_result = fwrite(fill, 1, PAGE_SIZE, fp);
if(write_result != PAGE_SIZE){
fclose(fp);
destroyPageFile(fileName);
return RC_CREATE_FILE_FAIL;
}
fclose(fp);
return RC_OK;
}
/***************************************************************
* Function Name: openPageFile
*
* Description: Opens an existing page file.
*
* Parameters:char *fileName ,SM_FileHandle *fHandle
*
* Return: RC
*
* Author: Xiaoliang Wu
*
* History:
* Date Name Content
* 2016/02/07 Xiaoliang Wu implement function
*
***************************************************************/
RC openPageFile (char *fileName, SM_FileHandle *fHandle){
FILE *fp;
int size;
int seek_result;
fp = fopen(fileName, "r");
if(fp == NULL){
return RC_FILE_NOT_FOUND;
}
seek_result = fseek(fp, 0, SEEK_END);
if(seek_result != 0){
fclose(fp);
return RC_GET_NUMBER_OF_BYTES_FAILED;
}
size = ftell(fp);
if(size == -1){
fclose(fp);
return RC_GET_NUMBER_OF_BYTES_FAILED;
}
fHandle->fileName = fileName;
fHandle->totalNumPages = (int)(size % PAGE_SIZE + 1);
fHandle->curPagePos = 0;
return RC_OK;
}
/***************************************************************
* Function Name: closePageFile
*
* Description: Close an open page file
*
* Parameters: SM_FileHandle *fHandle
*
* Return: RC
*
* Author: Xiaoliang Wu
*
* History:
* Date Name Content
* 2016/02/07 Xiaoliang Wu implement function
*
***************************************************************/
RC closePageFile (SM_FileHandle *fHandle){
fHandle->fileName = "";
fHandle->curPagePos = 0;
fHandle->totalNumPages = 0;
return RC_OK;
}
/***************************************************************
* Function Name: destroyPageFile
*
* Description: destroy (delete) a page file
*
* Parameters: SM_FileHandle *fHandle
*
* Return: RC
*
* Author: Xiaoliang Wu
*
* History:
* Date Name Content
* 2016/02/07 Xiaoliang Wu implement function
*
***************************************************************/
RC destroyPageFile (char *fileName){
int remove_result;
remove_result = remove(fileName);
if(remove_result == 0){
return RC_OK;
}else{
return RC_FILE_NOT_FOUND;
}
}
/* reading blocks from disc */
/***************************************************************
* Function Name: readBlock
*
* Description: read the pageNum block from the file defined by fHandle into address memPage
*
* Parameters:int pageNum, SM_FileHandle *fHandle, SM_PageHandle memPage
*
* Return:RC
*
* Author:Zhipeng Liu
*
* History:
* Date Name Content
* 2016/1/30 Zhipeng Liu first time to implement the function
*
***************************************************************/
RC readBlock (int pageNum, SM_FileHandle *fHandle, SM_PageHandle memPage)
{
if(pageNum>fHandle->totalNumPages-1||pageNum<0)
return RC_READ_NON_EXISTING_PAGE;
else
{
FILE *fp;
fp=fopen(fHandle->fileName,"r");
int offset;
offset=fHandle->curPagePos*PAGE_SIZE;
fseek(fp,offset,SEEK_SET);
fread(memPage,sizeof(char),PAGE_SIZE,fp);
fHandle->curPagePos=pageNum;
fclose(fp);
return RC_OK;
}
}
/***************************************************************
* Function Name: getBlockPos
*
* Description:return the current block position in the file
*
* Parameters:SM_FileHandle *fHandle
*
* Return: RC
*
* Author:Zhipeng Liu
*
* History:
* Date Name Content
* 2016/1/30 Zhipeng Liu first time to implement the function
*
***************************************************************/
int getBlockPos (SM_FileHandle *fHandle)
{
return fHandle->curPagePos;
}
/***************************************************************
* Function Name: readFirstBlock
*
* Description:read the first block of the file described in fHandle
*
* Parameters:SM_FileHandle *fHandle, SM_PageHandle memPage
*
* Return:RC
*
* Author:Zhipeng Liu
*
* History:
* Date Name Content
* 2016/1/30 Zhipeng Liu first time to implement the function
*
***************************************************************/
RC readFirstBlock (SM_FileHandle *fHandle, SM_PageHandle memPage)
{
FILE *fp;
fp=fopen(fHandle->fileName,"r");
fseek(fp,0,SEEK_SET);
fread(memPage,sizeof(char),PAGE_SIZE,fp);
fHandle->curPagePos=0;
fclose(fp);
return RC_OK;
}
/***************************************************************
* Function Name:readPreviousBlock
*
* Description:read the previousblock in this file into the address witch memPage pointed
*
* Parameters:SM_FileHandle *fHandle, SM_PageHandle memPage
*
* Return:RC
*
* Author:Zhipeng Liu
*
* History:
* Date Name Content
* 2016/1/27 Zhipeng Liu first time to implement the function
*
***************************************************************/
RC readPreviousBlock (SM_FileHandle *fHandle, SM_PageHandle memPage)
{
if(fHandle->curPagePos<=0||fHandle->curPagePos>fHandle->totalNumPages-1)
return RC_READ_NON_EXISTING_PAGE;
else
{
FILE *fp;
fp=fopen(fHandle->fileName,"r");
int offset=(fHandle->curPagePos-1)*PAGE_SIZE;
fseek(fp,offset,SEEK_SET);
fread(memPage,sizeof(char),PAGE_SIZE,fp);
fHandle->curPagePos=fHandle->curPagePos-1;
fclose(fp);
return RC_OK;
}
}
/***************************************************************
* Function Name: readCurrentBlock
*
* Description: read the current block (pointed by the fHandle->curPagePos) into memo address memPage
*
* Parameters: SM_FileHandle *fHandle, SM_PageHandle memPage
*
* Return: RC
*
* Author: Zhipeng Liu
*
* History:
* Date Name Content
* 2016/1/27 Zhipeng Liu first time to implement the function
*
***************************************************************/
RC readCurrentBlock (SM_FileHandle *fHandle, SM_PageHandle memPage)
{
if(fHandle->curPagePos<0||fHandle->curPagePos>fHandle->totalNumPages-1)
return RC_READ_NON_EXISTING_PAGE;
else
{
FILE *fp;
fp=fopen(fHandle->fileName,"r");
int offset=fHandle->curPagePos*PAGE_SIZE;
fseek(fp,offset,SEEK_SET);
fread(memPage,sizeof(char),PAGE_SIZE,fp);
fclose(fp);
return RC_OK;
}
}
/***************************************************************
* Function Name: readNextBlock
*
* Description: read the next block (the current block defined in the fHandle->curPagePos) in to memo address memPage
*
* Parameters: SM_FileHandle *fHandle, SM_PageHandle memPage
*
* Return: RC
*
* Author: Zhipeng Liu
*
* History:
* Date Name Content
* 2016/1/27 Zhipeng Liu first time to implement the function
*
***************************************************************/
RC readNextBlock (SM_FileHandle *fHandle, SM_PageHandle memPage)
{
if(fHandle->curPagePos<0||fHandle->curPagePos>fHandle->totalNumPages-2)
return RC_READ_NON_EXISTING_PAGE;
else
{
FILE *fp;
fp=fopen(fHandle->fileName,"r");
int offset=(fHandle->curPagePos+1)*PAGE_SIZE;
fseek(fp,offset,SEEK_SET);
fread(memPage,sizeof(char),PAGE_SIZE,fp);
fHandle->curPagePos=fHandle->curPagePos+1;
fclose(fp);
return RC_OK;
}
}
/***************************************************************
* Function Name: readLastBlock
*
* Description: read the last block in this file into memo address memPage
*
* Parameters: SM_FileHandle *fHandle, SM_PageHandle memPage
*
* Return: RC
*
* Author: Zhipeng Liu
*
* History:
* Date Name Content
* 2016/1/27 Zhipeng Liu first time to implement the function
*
***************************************************************/
RC readLastBlock (SM_FileHandle *fHandle, SM_PageHandle memPage)
{
FILE *fp;
fp=fopen(fHandle->fileName,"r");
int offset=-PAGE_SIZE;
fseek(fp,offset,SEEK_END);
fread(memPage,sizeof(char),PAGE_SIZE,fp);
fHandle->curPagePos=fHandle->totalNumPages-1;
fclose(fp);
return RC_OK;
}
/* writing blocks to a page file */
/***************************************************************
* Function Name: writeBlock
*
* Description: Write a page to disk using either the current position or an absolute position.
*
* Parameters: int numberOfPages, SM_FileHandle *fHandle
*
* Return: RC
*
* Author: Xincheng Yang
*
* History:
* Date Name Content
* 2016/2/2 Xincheng Yang first time to implement the function
* 2016/2/2 Xincheng Yang modified some codes
*
***************************************************************/
RC writeBlock (int pageNum, SM_FileHandle *fHandle, SM_PageHandle memPage){
ensureCapacity (pageNum, fHandle); //Make sure the program have enough capacity to write block.
FILE *fp;
RC rv;
fp=fopen(fHandle->fileName,"rb+");
if(fseek(fp,pageNum * PAGE_SIZE, SEEK_SET) != 0){
rv = RC_READ_NON_EXISTING_PAGE;
} else if (fwrite(memPage, PAGE_SIZE, 1, fp) != 1){
rv = RC_WRITE_FAILED;
} else {
fHandle->curPagePos=pageNum; //Success write block, then curPagePos should be changed.
rv = RC_OK;
}
fclose(fp);
return rv;
}
/***************************************************************
* Function Name: writeCurrentBlock
*
* Description: Write a page to disk using either the current position or an absolute position.
*
* Parameters: int numberOfPages, SM_FileHandle *fHandle
*
* Return: RC
*
* Author: Xincheng Yang
*
* History:
* Date Name Content
* 2016/2/2 Xincheng Yang first time to implement the function
*
***************************************************************/
RC writeCurrentBlock (SM_FileHandle *fHandle, SM_PageHandle memPage){
if(fHandle == NULL){
return RC_FILE_HANDLE_NOT_INIT;
}
if(fHandle->curPagePos < 0){
return RC_WRITE_FAILED;
}
return writeBlock(fHandle->curPagePos, fHandle, memPage);
}
/***************************************************************
* Function Name: appendEmptyBlock
*
* Description: Increase the number of pages in the file by one. The new last page should be filled with zero bytes.
*
* Parameters: int numberOfPages, SM_FileHandle *fHandle
*
* Return: RC
*
* Author: Xincheng Yang
*
* History:
* Date Name Content
* 2016/2/1 Xincheng Yang first time to implement the function
* 2016/2/2 Xincheng Yang modified some codes
*
***************************************************************/
RC appendEmptyBlock (SM_FileHandle *fHandle){
if(fHandle == NULL){
return RC_FILE_HANDLE_NOT_INIT;
}
FILE *fp;
char *allocData;
RC rv;
allocData = (char *)calloc(1, PAGE_SIZE);
fp=fopen(fHandle->fileName,"ab+");
if(fwrite(allocData, PAGE_SIZE, 1, fp) != 1)
{
rv = RC_WRITE_FAILED;
} else {
fHandle -> totalNumPages += 1;
rv = RC_OK;
}
free(allocData);
fclose(fp);
return rv;
}
/***************************************************************
* Function Name: ensureCapacity
*
* Description: If the file has less than numberOfPages pages then increase the size to numberOfPages.
*
* Parameters: int numberOfPages, SM_FileHandle *fHandle
*
* Return: RC
*
* Author: Xincheng Yang
*
* History:
* Date Name Content
* 2016/2/1 Xincheng Yang first time to implement the function
*
***************************************************************/
RC ensureCapacity (int numberOfPages, SM_FileHandle *fHandle){
if(fHandle == NULL){
return RC_FILE_HANDLE_NOT_INIT;
}
if(fHandle -> totalNumPages >= numberOfPages){
return RC_OK;
}
FILE *fp;
long allocCapacity;
char *allocData;
RC rv;
allocCapacity= (numberOfPages - fHandle -> totalNumPages) * PAGE_SIZE;
allocData = (char *)calloc(1,allocCapacity);
fp=fopen(fHandle->fileName,"ab+");
if(fwrite(allocData, allocCapacity, 1, fp) == 0)
{
rv = RC_WRITE_FAILED;
} else {
fHandle -> totalNumPages = numberOfPages; //When write success, totalNumPages should be changed to numberOfPages.
rv = RC_OK;
}
free(allocData);
fclose(fp);
return rv;
}