- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHeapFile.java
More file actions
Latest commit
141 lines (125 loc) · 3.67 KB
/
Copy pathHeapFile.java
File metadata and controls
141 lines (125 loc) · 3.67 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
packagesimpledb;
importjava.io.*;
importjava.util.*;
/**
* HeapFile is an implementation of a DbFile that stores a collection of tuples in no particular order. Tuples are
* stored on pages, each of which is a fixed size, and the file is simply a collection of those pages. HeapFile works
* closely with HeapPage. The format of HeapPages is described in the HeapPage constructor.
*
* @see simpledb.HeapPage#HeapPage
*/
publicclassHeapFileimplementsDbFile {
/**
* The File associated with this HeapFile.
*/
protectedFilefile;
/**
* The TupleDesc associated with this HeapFile.
*/
protectedTupleDesctd;
/**
* Constructs a heap file backed by the specified file.
*
* @param f
* the file that stores the on-disk backing store for this heap file.
*/
publicHeapFile(Filef, TupleDesctd) {
this.file = f;
this.td = td;
}
/**
* Returns the File backing this HeapFile on disk.
*
* @return the File backing this HeapFile on disk.
*/
publicFilegetFile() {
returnfile;
}
/**
* Returns an ID uniquely identifying this HeapFile. Implementation note: you will need to generate this tableid
* somewhere ensure that each HeapFile has a "unique id," and that you always return the same value for a particular
* HeapFile. We suggest hashing the absolute file name of the file underlying the heapfile, i.e.
* f.getAbsoluteFile().hashCode().
*
* @return an ID uniquely identifying this HeapFile.
*/
publicintgetId() {
returnfile.getAbsoluteFile().hashCode();
}
/**
* Returns the TupleDesc of the table stored in this DbFile.
*
* @return TupleDesc of this DbFile.
*/
publicTupleDescgetTupleDesc() {
returntd;
}
// see DbFile.java for javadocs
publicPagereadPage(PageIdpid) {
try{
FileInputStreamfis = newFileInputStream(file);
byte[] b = newbyte[BufferPool.PAGE_SIZE];
HeapPageIdhpi = (HeapPageId)pid;
try{
HeapPagehp = newHeapPage(hpi,b);
longnum = (long)(hpi.pageno());
fis.skip(num*BufferPool.PAGE_SIZE);
fis.read(b);
hp.data = b;
returnhp;
}catch(IOExceptionex){
System.out.println("IOException");
returnnull;
}
}catch(FileNotFoundExceptionex){
System.out.println("File not found");
returnnull;
}
// some code goes here
//throw new UnsupportedOperationException("Implement this");
}
// see DbFile.java for javadocs
publicvoidwritePage(Pagepage) throwsIOException {
// some code goes here
// not necessary for assignment1
}
/**
* Returns the number of pages in this HeapFile.
*/
publicintnumPages() {
return (int) (file.length() / BufferPool.PAGE_SIZE);
}
// see DbFile.java for javadocs
publicArrayList<Page> addTuple(TransactionIdtid, Tuplet) throwsDbException, IOException,
TransactionAbortedException {
// some code goes here
// not necessary for assignment1
returnnull;
}
// see DbFile.java for javadocs
publicPagedeleteTuple(TransactionIdtid, Tuplet) throwsDbException, TransactionAbortedException {
// some code goes here
// not necessary for assignment1
returnnull;
}
// see DbFile.java for javadocs
publicDbFileIteratoriterator(TransactionIdtid) {
// some code goes here
for (inti=0 ; i<numPages(); i++){//for iterating through all pages of the file
HeapPagehp = newHeapPage();
try{
Pagep = Database.getBufferPool().getPage(tid, hp.getId() ,Permissions.READ_ONLY);
hp = (HeapPage)p;
DbFileIteratordbi = (DbFileIterator)hp.iterator();
returndbi;
}catch(TransactionAbortedExceptione){
System.out.println(e);
returnnull;
}catch(DbExceptione){
System.out.println(e);
returnnull;
}
}
thrownewUnsupportedOperationException("Implement this");
}
}