-
Notifications
You must be signed in to change notification settings - Fork 0
/
FakeFileSystem.java
91 lines (86 loc) · 1.88 KB
/
FakeFileSystem.java
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
import java.io.IOException;
import java.io.RandomAccessFile;
public class FakeFileSystem implements Device
{
private static FakeFileSystem fileSystem = null;
public RandomAccessFile[] randomAccessFiles = new RandomAccessFile[10];
private FakeFileSystem()
{
}
public static FakeFileSystem getFileSystem()
{
if(fileSystem == null)
{
fileSystem = new FakeFileSystem();
}
return fileSystem;
}
public int open(String s)
{
try
{
for(int i = 0; i < randomAccessFiles.length; i++)
{
if(randomAccessFiles[i] == null)
{
randomAccessFiles[i] = new RandomAccessFile(s, "rw");
return i;
}
}
}
catch(IOException e)
{
e.printStackTrace();
}
return -1;
}
public void close(int id)
{
try
{
randomAccessFiles[id].close();
randomAccessFiles[id] = null;
}
catch(IOException e)
{
e.printStackTrace();
}
}
public byte[] read(int id, int size)
{
byte[] buffer = new byte[size];
try
{
randomAccessFiles[id].read(buffer);
}
catch(IOException e)
{
e.printStackTrace();
}
return buffer;
}
public void seek(int id, int to)
{
try
{
randomAccessFiles[id].seek(to);
}
catch(IOException e)
{
e.printStackTrace();
}
}
public int write(int id, byte[] data)
{
try
{
randomAccessFiles[id].write(data);
return 0;
}
catch(IOException e)
{
e.printStackTrace();
return 1;
}
}
}