Class Page<K,V>
java.lang.Object
org.h2.mvstore.Page<K,V>
- All Implemented Interfaces:
Cloneable
A page (a node or a leaf).
For b-tree nodes, the key at a given index is larger than the largest key of the child at the same index.
Serialized format: length of a serialized page in bytes (including this field): int check value: short page number (0-based sequential number within a chunk): varInt map id: varInt number of keys: varInt type: byte (0: leaf, 1: node; +2: compressed) children of the non-leaf node (1 more than keys) compressed: bytes saved (varInt) keys values of the leaf node (one for each key)
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classA pointer to a page, either in-memory or using a page position. -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionprotected intCalculate estimated memory used in persistent case.clone()copy()Create a copy of this page.final K[]createKeyStorage(int size) Create array for keys storage.static <K,V> Page <K, V> createNode(MVMap<K, V> map, K[] keys, Page.PageReference<K, V>[] children, long totalCount, int memory) Create a new non-leaf page.static <K,V> Page.PageReference<K, V>[] createRefStorage(int size) Create an array of page references.protected voiddump(StringBuilder buff) Dump debug data for this page.getAppendCursorPos(CursorPos<K, V> cursorPos) Extend path from a given CursorPos chain to "append point" in a B-tree, rooted at this Page.getChildPage(int index) Get the child page at the given index.abstract longgetChildPagePos(int index) Get the position of the child.longAmount of used disk space in persistent case including child pages.getKey(int index) Get the key at the given index.final intGet the number of keys in this page.final intgetMapId()Get the id of the page's owner mapfinal intabstract intfinal longgetPos()Get the position of the pagegetPrependCursorPos(CursorPos<K, V> cursorPos) Extend path from a given CursorPos chain to "prepend point" in a B-tree, rooted at this Page.abstract intabstract longGet the total number of key-value pairs, including child pages.abstract VgetValue(int index) Get the value at the given index.abstract voidinsertLeaf(int index, K key, V value) Insert a key-value pair into this leaf.abstract voidinsertNode(int index, K key, Page<K, V> childPage) Insert a child page into this node.booleanfinal booleanisLeaf()Check whether this is a leaf page.protected final booleanfinal booleanfinal booleanisSaved()protected abstract voidreadPayLoad(ByteBuffer buff) Read the page payload from the buffer.voidremove(int index) Remove the key and value (or child) at the given index.abstract intremoveAllRecursive(long version) Remove all page data recursively.final intremovePage(long version) Make accounting changes (chunk occupancy or "unsaved" RAM), related to this page removal.abstract voidReplace the child page.voidCalled when done with copying page.final voidReplace the key at an index in this page.abstract VReplace the value at an index in this page.toString()protected final intwrite(Chunk chunk, WriteBuffer buff, List<Long> toc) Store the page and update the position.protected abstract voidwriteChildren(WriteBuffer buff, boolean withCounts) Write page children to the buff.protected abstract voidwriteValues(WriteBuffer buff) Write values that the buffer contains to the buff.
-
Field Details
-
map
-
pageNo
public int pageNoSequential 0-based number of the page within containing chunk.
-
-
Method Details
-
createNode
public static <K,V> Page<K,V> createNode(MVMap<K, V> map, K[] keys, Page.PageReference<K, V>[] children, long totalCount, int memory) Create a new non-leaf page. The arrays are not cloned.- Type Parameters:
K- the key classV- the value class- Parameters:
map- the mapkeys- the keyschildren- the child page positionstotalCount- the total number of keysmemory- the memory used in bytes- Returns:
- the page
-
getMapId
public final int getMapId()Get the id of the page's owner map- Returns:
- id
-
getKey
Get the key at the given index.- Parameters:
index- the index- Returns:
- the key
-
getChildPage
-
getChildPagePos
public abstract long getChildPagePos(int index) Get the position of the child.- Parameters:
index- the index- Returns:
- the position
-
getValue
Get the value at the given index.- Parameters:
index- the index- Returns:
- the value
-
getKeyCount
public final int getKeyCount()Get the number of keys in this page.- Returns:
- the number of keys
-
isLeaf
public final boolean isLeaf()Check whether this is a leaf page.- Returns:
- true if it is a leaf
-
getNodeType
public abstract int getNodeType() -
getPos
public final long getPos()Get the position of the page- Returns:
- the position
-
toString
-
dump
Dump debug data for this page.- Parameters:
buff- append buffer
-
copy
-
clone
-
getTotalCount
public abstract long getTotalCount()Get the total number of key-value pairs, including child pages.- Returns:
- the number of key-value pairs
-
setChild
-
setKey
Replace the key at an index in this page.- Parameters:
index- the indexkey- the new key
-
setValue
-
insertLeaf
-
insertNode
-
remove
public void remove(int index) Remove the key and value (or child) at the given index.- Parameters:
index- the index
-
readPayLoad
Read the page payload from the buffer.- Parameters:
buff- the buffer
-
isSaved
public final boolean isSaved() -
isRemoved
public final boolean isRemoved() -
write
Store the page and update the position.- Parameters:
chunk- the chunkbuff- the target buffertoc- prospective table of content- Returns:
- the position of the buffer just after the type
-
writeValues
Write values that the buffer contains to the buff.- Parameters:
buff- the target buffer
-
writeChildren
Write page children to the buff.- Parameters:
buff- the target bufferwithCounts- true if the descendant counts should be written
-
getRawChildPageCount
public abstract int getRawChildPageCount() -
isPersistent
protected final boolean isPersistent() -
getMemory
public final int getMemory() -
getDiskSpaceUsed
public long getDiskSpaceUsed()Amount of used disk space in persistent case including child pages.- Returns:
- amount of used disk space in persistent case
-
calculateMemory
protected int calculateMemory()Calculate estimated memory used in persistent case.- Returns:
- memory in bytes
-
isComplete
public boolean isComplete() -
setComplete
public void setComplete()Called when done with copying page. -
removePage
public final int removePage(long version) Make accounting changes (chunk occupancy or "unsaved" RAM), related to this page removal.- Parameters:
version- at which page was removed- Returns:
- amount (negative), by which "unsaved memory" should be adjusted, if page is unsaved one, and 0 for page that was already saved, or in case of non-persistent map
-
getPrependCursorPos
Extend path from a given CursorPos chain to "prepend point" in a B-tree, rooted at this Page.- Parameters:
cursorPos- presumably pointing to this Page (null if real root), to build upon- Returns:
- new head of the CursorPos chain
-
getAppendCursorPos
Extend path from a given CursorPos chain to "append point" in a B-tree, rooted at this Page.- Parameters:
cursorPos- presumably pointing to this Page (null if real root), to build upon- Returns:
- new head of the CursorPos chain
-
removeAllRecursive
public abstract int removeAllRecursive(long version) Remove all page data recursively.- Parameters:
version- at which page got removed- Returns:
- adjustment for "unsaved memory" amount
-
createKeyStorage
Create array for keys storage.- Parameters:
size- number of entries- Returns:
- values array
-
createRefStorage
Create an array of page references.- Type Parameters:
K- the key classV- the value class- Parameters:
size- the number of entries- Returns:
- the array
-