- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFakeFileSystem.java
More file actions
Latest commit
146 lines (128 loc) · 3.74 KB
/
Copy pathFakeFileSystem.java
File metadata and controls
146 lines (128 loc) · 3.74 KB
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
importjava.io.RandomAccessFile;
importjava.util.Optional;
publicclassFakeFileSystemimplementsDevice{
privateRandomAccessFilefiles[];
/**
* Constructor.
*/
FakeFileSystem(){
files = newRandomAccessFile[Device.DEVICE_COUNT];
}
/**
* Opens the desired File.
*
* @param device The desired file's name.
*/
publicOptional<Integer> open(Strings) {
intfid = -1;
s = s.trim(); // Trim any uneeded whitespace.
// Look for an open entry
for(inti=0; i<Device.DEVICE_COUNT; i++){
if(files[i] == null){ // If we find one, store the entry.
fid = i;
break;
}
}
// Get rid of any leading/tailing whitespace.
dbMes("OPEN: fid = " + fid + " String = \"" + s + "\"");
if(fid == -1){
// If we didn't find an open entry, return failure.
dbMes("ERROR: No availible entry.");
returnOptional.empty();
}
elseif (s != null && s.equals("") == false){
// If the string is valid, open the file and return the fid.
try{
files[fid] = newRandomAccessFile(s, "rw"); //Trim any whitespace from the string.
dbMes("FID: " + fid);
returnOptional.of(fid);
}
catch (Exceptione){
dbMes("Open(): ERROR: " + e.getMessage());
returnOptional.empty();
}
}
else
returnOptional.empty();
}
/**
* Reads from the desired File.
*
* @param id The FID of the desired File.
* @param size The amount of data to be read.
*/
publicOptional<byte[]> read(intid, intsize) {
byte[] retval = newbyte[size];
dbMes("Read()");
try{
files[id].read(retval);
dbMes("Read: \"" + newString(retval) + "\"");
returnOptional.of(retval);
}
catch (Exceptione){
dbMes("Read(): ERROR: " + e.getMessage());
returnOptional.empty();
}
}
/**
* Moves the curser within the file.
*
* @param id The FID of the file.
* @param to The distance to move the curser.
*/
publicvoidseek(intid, intto) {
dbMes("Seek()");
try{
files[id].seek(to);
dbMes("Seeked.");
}
catch(Exceptione){
dbMes("Seek(): ERROR: " + e.getMessage());
}
}
/**
* Writes to the desired File.
*
* @param id The FID of the desired File.
* @param data The data to be writen to the File.
*/
publicOptional<Integer> write(intid, byte[] data) {
dbMes("Write() \"" + newString(data) + "\"");
try{
files[id].write(data);
returnOptional.of(data.length);
}
catch(Exceptione){
dbMes("Write(): ERROR: " + e.getMessage());
returnOptional.empty();
}
}
/**
* Closes the desired File.
*
* @param id The FID of the desired File.
*/
publicvoidclose(intid) {
dbMes("Close()");
if(files[id] == null){
dbMes("Close(): ERROR: Null device");
}
else{
try{
files[id].close();
}
catch (Exceptione){
dbMes("Close(): ERROR: " + e.getMessage());
}
files[id] = null;
}
}
/**
* EXTRA METHOD!!! Prints a message to the terminal to help bebugging.
*
* @param message The message printed to the terminal.
*/
privatevoiddbMes(Stringmessage){
OS.dbMes("|||FAKE_FILE_SYS: " + message);
}
}