-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisk.cpp
160 lines (143 loc) · 3.11 KB
/
disk.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
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include "disk.h"
char disk[MAX_BLOCK][BLOCK_SIZE];
char data_disk[BLOCK_SIZE];
char buff[BLOCK_SIZE * BUFFER];
int buf_size = 0;
int disk_read(int block, char *buf)
{
if(block < 0 || block >= MAX_BLOCK /*|| strlen(buf) < strlen(disk[block])*/) {
printf("disk_read error\n");
return -1;
}
memcpy(buf, disk[block], BLOCK_SIZE);
return 0;
}
int disk_write(int block, char *buf)
{
if(block < 0 || block >= MAX_BLOCK /*|| strlen(disk[block]) < strlen(buf)*/) {
printf("disk_write error\n");
return -1;
}
memcpy(disk[block], buf, BLOCK_SIZE);
return 0;
}
int disk_mount(char *name)
{
FILE *fp = fopen(name, "r");
if(fp != NULL) {
fread(disk, BLOCK_SIZE, MAX_BLOCK, fp);
fclose(fp);
return 1;
}
return 0;
}
int disk_umount(char *name)
{
FILE *fp = fopen(name, "w");
if(fp == NULL) {
fprintf(stderr, "disk_umount: file open error! %s\n", name);
return -1;
}
fwrite(disk, BLOCK_SIZE, MAX_BLOCK, fp);
fclose(fp);
return 1;
}
int data_disk_read(char *name, int block, char *buf)
{
FILE *fp = fopen(name, "r");
if (fp != NULL) {
fseek(fp, (long long)block * BLOCK_SIZE, 0);
fread(data_disk, BLOCK_SIZE, 1, fp);
memcpy(buf, data_disk, BLOCK_SIZE);
fclose(fp);
return 1;
}
return 0;
}
int data_disk_write(char *name, int block, char *buf)
{
memcpy(buff + buf_size * BLOCK_SIZE, buf, BLOCK_SIZE);
buf_size++;
if (buf_size == BUFFER) {
FILE *fp = fopen(name, "a");
buf_size = 0;
if (fp != NULL) {
fwrite(buff, BLOCK_SIZE, BUFFER, fp);
fclose(fp);
return 1;
}
}
return 0;
}
int small_sst_read(char *name, int sst_size, char *buf)
{
FILE *fp = fopen(name, "r");
int buf_len = sst_size * 16;
if (fp != NULL) {
fread(buf, buf_len, 1, fp);
fclose(fp);
return 1;
}
return 0;
}
int small_sst_write(char *name, int sst_size, char *buf)
{
FILE *fp = fopen(name, "w");
int buf_len = sst_size * 16;
if (fp != NULL) {
fwrite(buf, buf_len, 1, fp);
fclose(fp);
return 1;
}
return 0;
}
int sst_read(char *name, int sst_size, char *buf)
{
FILE *fp = fopen(name, "r");
long long buf_len = sst_size * 16LL;
if (fp != NULL) {
fread(buf, BLOCK_SIZE, buf_len / BLOCK_SIZE, fp);
fclose(fp);
return 1;
}
return 0;
}
int sst_write(char *name, int sst_size, char *buf)
{
FILE *fp = fopen(name, "w");
long long buf_len = sst_size * 16LL;
if (fp != NULL) {
fwrite(buf, BLOCK_SIZE, buf_len / BLOCK_SIZE + (buf_len % BLOCK_SIZE == 0), fp);
fclose(fp);
return 1;
}
return 0;
}
int sst_read_index(char *name, int index, char *buf)
{
FILE *fp = fopen(name, "r");
if (fp != NULL) {
fseek(fp, (long long)index * 16, 0);
fread(buf, 16, 1, fp);
fclose(fp);
return 1;
}
return 0;
}
int sst_read_pos(int num, int pos, char *buf)
{
char name[20];
snprintf(name, sizeof(name), "sst_%d", num);
FILE *fp = fopen(name, "r");
if (fp != NULL) {
fseek(fp, (long long)pos * BLOCK_SIZE, 0);
fread(buf, BLOCK_SIZE, 1, fp);
fclose(fp);
return 1;
}
return 0;
}