-
Notifications
You must be signed in to change notification settings - Fork 0
/
RecordId.java
55 lines (46 loc) · 1.35 KB
/
RecordId.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
package simpledb;
/**
* A RecordId is a reference to a specific tuple on a specific page of a
* specific table.
*/
public class RecordId {
int tupleno;
PageId pid;
/** Creates a new RecordId refering to the specified PageId and tuple number.
* @param pid the pageid of the page on which the tuple resides
* @param tupleno the tuple number within the page.
*/
public RecordId(PageId pid, int tupleno) {
this.pid = pid;
this.tupleno = tupleno;
}
/**
* @return the tuple number this RecordId references.
*/
public int tupleno() {
return tupleno;
}
/**
* @return the page id this RecordId references.
*/
public PageId getPageId() {
return pid;
}
/**
* Two RecordId objects are considered equal if they represent the same tuple.
* @return True if this and o represent the same tuple
*/
@Override
public boolean equals(Object o) {
return this.pid.equals(((RecordId)o).pid) && this.tupleno == ((RecordId)o).tupleno;
}
/**
* You should implement the hashCode() so that two equal RecordId instances
* (with respect to equals()) have the same hashCode().
* @return An int that is the same for equal RecordId objects.
*/
@Override
public int hashCode() {
return pid.hashCode()+tupleno;
}
}