DIRECTORY BTree, BTreeInternal, Inline USING [LongCOPY], Utilities USING [LongMove]; BTreeWrite: PROGRAM IMPORTS BTree, BTreeInternal, Inline, Utilities EXPORTS BTree, BTreeInternal = BEGIN OPEN BTree, BTreeInternal; Tree: TYPE = REF TreeObject; TreeObject: PUBLIC TYPE = BTreeInternal.TreeObject; PathStk: TYPE = REF PathStkObject; PathStkObject: PUBLIC TYPE = BTreeInternal.PathStkObject; UpdateRecord: PUBLIC SAFE PROCEDURE [tree: Tree, key: Key, pathStk: PathStk _ NIL, useExistingPath: BOOLEAN _ FALSE, record: Record, updateType: UpdateType _ insertOrReplace] = TRUSTED BEGIN ProduceEntry: PROCEDURE [entry: Entry] = { Inline.LongCOPY[to: entry, from: tree.EntryFromRecord[record], nwords: words] }; words: EntSize = tree.EntrySize[tree.EntryFromRecord[record]]; UpdateEntry[tree: tree, key: key, pathStk: pathStk, useExistingPath: useExistingPath, words: words, Proc: ProduceEntry, updateType: updateType]; END; UpdateEntry: PUBLIC PROCEDURE [tree: Tree, key: Key, pathStk: PathStk _ NIL, useExistingPath: BOOLEAN _ FALSE, words: EntSize, Proc: UNSAFE PROCEDURE [entry: Entry], updateType: UpdateType _ insertOrReplace] = BEGIN CallEntryProc: PROCEDURE [entry: Entry] = BEGIN Proc[entry]; IF tree.EntrySize[entry]#words OR tree.Compare[key, entry]#equal THEN ERROR Error[wrongEntryProduced]; END; pathStkWasNil: BOOLEAN _ pathStk=NIL; tree.Lock[update]; IF pathStkWasNil THEN BEGIN IF useExistingPath THEN ERROR Error[nilPathStk]; pathStk _ tree.GetDefaultPathStk[]; END; BEGIN ENABLE UNWIND => { IF pathStkWasNil THEN tree.ReturnDefaultPathStk[pathStk]; tree.Unlock[] }; leafStkTop: PathStkIndex; pse: LONG POINTER TO PathStkEntry; pagePtr: BTreePagePtr _ NIL; foundEntSize: CARDINAL _ 0; -- zero means there is not an existing entry with this key IF CARDINAL[words+entryOverhead] NOT IN [1+entryOverhead..tree.maxFreeWords] THEN ERROR Error[entrySizesWrong]; leafStkTop _ tree.PathEntryLE[key: key, pathStk: pathStk, useExistingPath: useExistingPath]; IF pathStk.top>0 THEN BEGIN [ptr: pagePtr, pse: pse] _ tree.ReferenceStack[pathStk]; IF tree.Compare[key, @pagePtr[pse.lastOffset].entry]=equal THEN foundEntSize _ tree.EntrySize[@pagePtr[pse.lastOffset].entry]; tree.ReleasePage[pse.pageNumber]; END; IF (foundEntSize=0 AND updateType=replace) OR (foundEntSize#0 AND updateType=insert) THEN ERROR Error[wrongUpdateType]; tree.version _ tree.version+1; -- invalidate existing PathStks that refer to this tree pse _ @pathStk.path[pathStk.top]; IF words=foundEntSize THEN BEGIN -- new record same length as old; just copy it over tree.AdjustTreeState[update: unchanged, deltaEntryCount: 0]; pagePtr _ tree.ReferencePage[pse.pageNumber, write]; CallEntryProc[@pagePtr[pse.lastOffset].entry]; tree.ReleasePage[pse.pageNumber, endOfUpdate]; END ELSE BEGIN removedEntGrPage: PageNumber _ nilPage; newEntryFits: BOOLEAN _ FALSE; IF foundEntSize=0 THEN BEGIN -- no old entry to remove, and we will insert at the leaf level pathStk.top _ leafStkTop; pse _ @pathStk.path[pathStk.top]; END; IF pathStk.top>0 THEN BEGIN pagePtr _ tree.ReferencePage[pse.pageNumber]; newEntryFits _ CARDINAL[words+entryOverhead] <= CARDINAL[pagePtr.freeWords + (IF foundEntSize=0 THEN 0 ELSE foundEntSize+entryOverhead)]; tree.ReleasePage[pse.pageNumber]; END; tree.AdjustTreeState[update: IF newEntryFits THEN unchanged ELSE startOfUpdate, deltaEntryCount: IF foundEntSize=0 THEN 1 ELSE 0]; IF pathStk.top>0 THEN pagePtr _ tree.ReferencePage[pse.pageNumber, write]; IF foundEntSize#0 THEN [grPage: removedEntGrPage] _ tree.BackUpAndRemoveEntry[pse]; IF newEntryFits THEN BEGIN -- new entry fits on the page; slide the greater entries out of the way and drop the new entry in entPtr: LONG POINTER TO BTreeEntry _ @pagePtr[pse.offset]; Utilities.LongMove[pSink: entPtr+words+entryOverhead, pSource: entPtr, size: nilOffset+(tree.state.pageSize-pagePtr.freeWords)-pse.offset]; CallEntryProc[@entPtr.entry]; entPtr.grPage _ removedEntGrPage; pagePtr.freeWords _ pagePtr.freeWords - (words+entryOverhead); tree.ReleasePage[pse.pageNumber, endOfUpdate]; END ELSE BEGIN -- new entry does not fit (or there isn't yet a page to fit it into) esr: REF EntSeqRecord _ tempZone.NEW[EntSeqRecord[words+entryOverhead]]; esr.entSeqP _ LOOPHOLE[BASE[DESCRIPTOR[esr.entSeq]]]; esr.entSeqLen _ words+entryOverhead; CallEntryProc[@esr.entSeqP.entry]; esr.entSeqP.grPage _ removedEntGrPage; AppendEntSeqRecord[pse: pse, esr: esr]; IF pathStk.top>0 THEN tree.ReleasePage[pse.pageNumber]; tree.GetHeapAndTable[pathStk]; WHILE pathStk.path[pathStk.top].eslFront#NIL DO tree.InsertRecords[pathStk ! UNWIND => tree.ReturnHeapAndTable[pathStk]]; IF pathStk.top=0 THEN EXIT ELSE pathStk.top _ pathStk.top-1; ENDLOOP; tree.ReturnHeapAndTable[pathStk]; tree.AdjustTreeState[update: endOfUpdate, deltaEntryCount: 0]; END; END; END; IF pathStkWasNil THEN tree.ReturnDefaultPathStk[pathStk]; tree.Unlock[]; END; SetUpdateInProgress: PUBLIC SAFE PROCEDURE [tree: Tree, updateInProgress: BOOLEAN] = TRUSTED BEGIN tree.Lock[update]; tree.AdjustTreeState[update: IF updateInProgress THEN startOfUpdate ELSE endOfUpdate, deltaEntryCount: 0]; tree.Unlock[]; END; AdjustTreeState: PUBLIC PROCEDURE [tree: Tree, update: UpdateState, deltaEntryCount: INTEGER] = BEGIN IF tree.maintainRecomputableState THEN BEGIN -- normal update IF tree.state.entryCount#LAST[LONG CARDINAL] THEN tree.state.entryCount _ tree.state.entryCount+deltaEntryCount; IF update#unchanged THEN BEGIN tree.state.updateInProgress _ update=startOfUpdate; tree.WriteStatePage[update: update]; END; END ELSE IF deltaEntryCount#0 AND tree.state.entryCount#LAST[LONG CARDINAL] THEN BEGIN -- remember that the entryCount is no longer being maintained tree.state.entryCount _ LAST[LONG CARDINAL]; tree.WriteStatePage[]; END; END; InsertRecords: PUBLIC PROCEDURE [tree: Tree, pathStk: PathStk] = BEGIN pse: LONG POINTER TO PathStkEntry = @pathStk.path[pathStk.top]; IF pse.eslFront#NIL THEN BEGIN pathStk.entryTable.length _ 0; pathStk.entryTable.map[0].cumEntSize _ 0; FOR esr: REF EntSeqRecord _ pse.eslFront, esr.fwdP UNTIL esr=NIL DO AppendEntSeqLengths[tree: tree, pathStk: pathStk, esr: esr]; ENDLOOP; IF pathStk.top=0 THEN MakeNewRoot[tree: tree, pathStk: pathStk] ELSE BEGIN pagePtr: BTreePagePtr = tree.ReferencePage[pse.pageNumber, write]; tailBlkPtr: LONG POINTER TO BTreeEntry = @pagePtr[pse.offset]; tailBlkLen: CARDINAL = (nilOffset+tree.state.pageSize-pagePtr.freeWords)-pse.offset; wordsToInsert: CARDINAL = EntryIntervalSize[pathStk: pathStk]; IF wordsToInsert<=pagePtr.freeWords THEN BEGIN -- all entries fit the current page. Hurrah! Utilities.LongMove[pSink: tailBlkPtr+wordsToInsert, pSource: tailBlkPtr, size: nilOffset+(tree.state.pageSize-pagePtr.freeWords)-pse.offset]; DepositESL[tree: tree, pse: pse, block: tailBlkPtr, length: wordsToInsert]; pagePtr.freeWords _ pagePtr.freeWords-wordsToInsert; tree.ReleasePage[pse.pageNumber]; END ELSE BEGIN -- not all the entries will fit on the current page. This is getting complex. rtBroPg1: PageNumber; esr: REF EntSeqRecord _ MakeEntSeqRecord[@pagePtr[entry1Offset], pse.offset-entry1Offset]; PushEntSeqRecord[pse: pse, esr: esr]; PushEntSeqLengths[tree: tree, pathStk: pathStk, esr: esr]; esr _ MakeEntSeqRecord[tailBlkPtr, tailBlkLen]; AppendEntSeqRecord[pse: pse, esr: esr]; AppendEntSeqLengths[tree: tree, pathStk: pathStk, esr: esr]; tree.ReleasePage[pse.pageNumber]; rtBroPg1 _ ComplexInsertRecords[tree: tree, pathStk: pathStk]; IF rtBroPg1#nilPage THEN HairyInsertRecords[tree: tree, pathStk: pathStk, rtBroPg1: rtBroPg1]; END; END; IF pse.eslFront#NIL THEN ERROR Bug[entriesLeftOver]; END; END; MakeEntSeqRecord: PUBLIC PROCEDURE [entSeq: LONG POINTER TO BTreeEntry, length: CARDINAL] RETURNS [esr: REF EntSeqRecord] = BEGIN IF length=0 THEN RETURN [NIL]; esr _ tempZone.NEW[EntSeqRecord[length]]; esr.entSeqP _ LOOPHOLE[BASE[DESCRIPTOR[esr.entSeq]]]; esr.entSeqLen _ length; Inline.LongCOPY[to: esr.entSeqP, from: entSeq, nwords: length]; END; AppendEntSeqRecord: PUBLIC PROCEDURE [pse: LONG POINTER TO PathStkEntry, esr: REF EntSeqRecord] = BEGIN IF esr#NIL THEN BEGIN esr.fwdP _ NIL; IF pse.eslRear=NIL THEN AssignRefESR[@pse.eslFront, esr] ELSE pse.eslRear.fwdP _ esr; AssignRefESR[@pse.eslRear, esr]; END; END; PushEntSeqRecord: PUBLIC PROCEDURE [pse: LONG POINTER TO PathStkEntry, esr: REF EntSeqRecord] = BEGIN IF esr#NIL THEN BEGIN esr.fwdP _ pse.eslFront; AssignRefESR[@pse.eslFront, esr]; IF pse.eslRear=NIL THEN AssignRefESR[@pse.eslRear, esr]; END; END; RemoveEntry: PUBLIC PROCEDURE [tree: Tree, pse: LONG POINTER TO PathStkEntry, ignoreESL: BOOLEAN _ FALSE] RETURNS [esr: REF EntSeqRecord, grPage: PageNumber] = BEGIN BasicRemoveEntry: PROCEDURE RETURNS [esr: REF EntSeqRecord] = BEGIN pagePtr: BTreePagePtr = tree.ReferencePage[pse.pageNumber, write]; entSize: CARDINAL = tree.BTreeEntrySize[@pagePtr[pse.offset]]; esr _ MakeEntSeqRecord[entSeq: @pagePtr[pse.offset], length: entSize]; pagePtr.freeWords _ pagePtr.freeWords+entSize; Inline.LongCOPY[to: @pagePtr[pse.offset], from: @pagePtr[pse.offset]+entSize, nwords: nilOffset+(tree.state.pageSize-pagePtr.freeWords)-pse.offset]; tree.ReleasePage[pse.pageNumber]; END; RemoveFromEntSeqRecord: PROCEDURE RETURNS [esr: REF EntSeqRecord] = BEGIN entSize: CARDINAL = tree.BTreeEntrySize[pse.eslFront.entSeqP]; esr _ tempZone.NEW[EntSeqRecord[entSize]]; esr.entSeqP _ LOOPHOLE[BASE[DESCRIPTOR[esr.entSeq]]]; esr.entSeqLen _ entSize; DepositESL[tree: tree, pse: pse, block: esr.entSeqP, length: entSize]; END; esr _ IF ignoreESL OR pse.eslFront=NIL THEN BasicRemoveEntry[] ELSE RemoveFromEntSeqRecord[]; grPage _ esr.entSeqP.grPage; esr.entSeqP.grPage _ nilPage; IF grPage#nilPage THEN BEGIN pagePtr: BTreePagePtr = tree.ReferencePage[grPage]; esr.entSeqP.grPage _ pagePtr.minPage; tree.ReleasePage[grPage]; END; END; BackUpAndRemoveEntry: PUBLIC PROCEDURE [tree: Tree, pse: LONG POINTER TO PathStkEntry] RETURNS [esr: REF EntSeqRecord, grPage: PageNumber] = BEGIN tree.BackUpOneEntry[pse]; [esr: esr, grPage: grPage] _ tree.RemoveEntry[pse: pse, ignoreESL: TRUE]; END; AllocatePage: PUBLIC SAFE PROCEDURE [tree: Tree] RETURNS [number: PageNumber] = TRUSTED BEGIN pagePtr: BTreePagePtr; IF tree.state.firstFreePage=nilPage THEN BEGIN number _ (tree.state.greatestPage _ tree.state.greatestPage+1); pagePtr _ tree.ReferencePage[number, new]; END ELSE BEGIN number _ tree.state.firstFreePage; pagePtr _ tree.ReferencePage[number, write]; IF pagePtr.freeWords#freePageMarker THEN ERROR Bug[pageNotFree]; tree.state.firstFreePage _ pagePtr.minPage; END; pagePtr.freeWords _ tree.maxFreeWords; tree.ReleasePage[number]; END; FreePage: PUBLIC SAFE PROCEDURE [tree: Tree, number: PageNumber] = TRUSTED BEGIN pagePtr: BTreePagePtr = tree.ReferencePage[number, write]; IF pagePtr.freeWords=freePageMarker THEN ERROR Bug[pageAlreadyFree]; pagePtr.freeWords _ freePageMarker; pagePtr.minPage _ tree.state.firstFreePage; tree.state.firstFreePage _ number; tree.ReleasePage[number]; END; AppendEntSeqLengths: PROCEDURE [tree: Tree, pathStk: PathStk, esr: REF EntSeqRecord] = BEGIN IF esr#NIL THEN BEGIN entryTable: REF EntryTable _ pathStk.entryTable; index: EntryOrdinal _ entryTable.length; wordsLeft: CARDINAL _ esr.entSeqLen; entry: LONG POINTER TO BTreeEntry _ esr.entSeqP; WHILE wordsLeft>0 DO entrySize: CARDINAL = tree.BTreeEntrySize[entry]; index _ index+1; IF index >= entryTable.maxLength THEN ERROR Bug[tooManyEntriesInPage]; entryTable.map[index].cumEntSize _ entryTable.map[index-1].cumEntSize+entrySize; entry _ entry+entrySize; wordsLeft _ wordsLeft-entrySize; ENDLOOP; entryTable.length _ index; END; END; PushEntSeqLengths: PROCEDURE [tree: Tree, pathStk: PathStk, esr: REF EntSeqRecord] = BEGIN IF esr#NIL THEN BEGIN entryTable: REF EntryTable = pathStk.entryTable; oldLen: EntryOrdinal = entryTable.length; tempFirstOldIndex: EntryOrdinal = entryTable.maxLength-oldLen; newLen: EntryOrdinal; delta: CARDINAL; Utilities.LongMove[pSink: @entryTable.map[tempFirstOldIndex], pSource: @entryTable.map[1], size: oldLen*SIZE[EntryTableRec]]; entryTable.length _ 0; AppendEntSeqLengths[tree: tree, pathStk: pathStk, esr: esr]; newLen _ entryTable.length; IF newLen >= tempFirstOldIndex THEN ERROR Bug[tooManyEntriesInPage]; entryTable.length _ newLen+oldLen; delta _ entryTable.map[newLen].cumEntSize; FOR i: EntryOrdinal IN [0..oldLen) DO entryTable.map[newLen+1+i].cumEntSize _ entryTable.map[tempFirstOldIndex+i].cumEntSize+delta; ENDLOOP; END; END; DepositESL: PROCEDURE [tree: Tree, pse: LONG POINTER TO PathStkEntry, block: LONG POINTER TO BTreeEntry, length: CARDINAL] = BEGIN WHILE length#0 AND pse.eslFront#NIL DO esr: REF EntSeqRecord _ pse.eslFront; entSeqP: LONG POINTER TO BTreeEntry = esr.entSeqP; IF esr.entSeqLen <= length THEN BEGIN Inline.LongCOPY[to: block, from: entSeqP, nwords: esr.entSeqLen]; block _ block+esr.entSeqLen; length _ length-esr.entSeqLen; AssignRefESR[@pse.eslFront, esr.fwdP]; esr.fwdP _ NIL; END ELSE BEGIN firstEntSize: CARDINAL = tree.BTreeEntrySize[entSeqP]; IF firstEntSize <= length THEN BEGIN Inline.LongCOPY[to: block, from: entSeqP, nwords: firstEntSize]; block _ block+firstEntSize; length _ length-firstEntSize; esr.entSeqP _ entSeqP+firstEntSize; esr.entSeqLen _ esr.entSeqLen-firstEntSize; END ELSE ERROR Bug[depositESL]; -- block would end in middle of entry END; ENDLOOP; IF length#0 THEN ERROR Bug[depositESL]; -- ESL exhausted IF pse.eslFront=NIL THEN AssignRefESR[@pse.eslRear, NIL]; END; EntryIntervalSize: PROCEDURE [pathStk: PathStk, leftFather, rightFather: EntryOrdinal _ 0] RETURNS [words: CARDINAL] = BEGIN IF rightFather=0 THEN rightFather _ pathStk.entryTable.length+1; RETURN [pathStk.entryTable.map[rightFather-1].cumEntSize - pathStk.entryTable.map[leftFather].cumEntSize]; END; MakeNewRoot: PROCEDURE [tree: Tree, pathStk: PathStk] = BEGIN wordsToInsert: CARDINAL = EntryIntervalSize[pathStk: pathStk, leftFather: 0]; newRootPage: PageNumber = tree.AllocatePage[]; pagePtr: BTreePagePtr = tree.ReferencePage[newRootPage, write]; IF tree.state.depth >= maxLevelsInTree THEN ERROR Error[depthExceeded]; pagePtr.minPage _ pathStk.path[0].leastSon; tree.ReleasePage[newRootPage]; IF wordsToInsert > tree.maxFreeWords THEN ERROR Bug[newRootOverflow]; WritePage[tree: tree, pse: @pathStk.path[0], number: newRootPage, words: wordsToInsert]; tree.state.rootPage _ newRootPage; tree.state.depth _ tree.state.depth+1; END; ComplexInsertRecords: PROCEDURE [tree: Tree, pathStk: PathStk] RETURNS [rtBroPg1: PageNumber] = BEGIN pse: LONG POINTER TO PathStkEntry = @pathStk.path[pathStk.top]; fatherPSE: LONG POINTER TO PathStkEntry = @pathStk.path[pathStk.top-1]; entryTable: REF EntryTable = pathStk.entryTable; oneBrotherEnough: BOOLEAN _ FALSE; fatherIndex, bestFatherIndex: EntryOrdinal; bestFatherSize: CARDINAL _ tree.maxFreeWords+1; fatherPSE.leastSon _ pse.pageNumber; -- in case this is the root page splitting rtBroPg1 _ nilPage; IF pathStk.top>1 THEN BEGIN rtBroPg1 _ FindRightBrother[tree: tree, pathStk: pathStk, spaceNeeded: -tree.maxFreeWords]; IF rtBroPg1=nilPage THEN rtBroPg1 _ FindLeftBrother[tree: tree, pathStk: pathStk, spaceNeeded: -tree.maxFreeWords]; END; IF rtBroPg1=nilPage THEN rtBroPg1 _ tree.AllocatePage[]; IF entryTable.length<3 THEN ERROR Bug[tooFewEntries]; -- there must be at least one entry each from this page, the brother page, and the father page fatherIndex _ FillLeftPage[tree: tree, pathStk: pathStk]; DO pl0, pl1, fatherSize: CARDINAL; pl1 _ EntryIntervalSize[pathStk: pathStk, leftFather: fatherIndex]; IF pl1 > tree.maxFreeWords THEN EXIT; pl0 _ EntryIntervalSize[pathStk: pathStk, rightFather: fatherIndex]; IF pl0=0 OR pl0+pl1 > tree.maxFreeWords+tree.awfullyFull THEN EXIT; fatherSize _ IndexedEntrySize[pathStk: pathStk, index: fatherIndex]; IF fatherSize heap.length THEN EXIT; sonEntry _ heap.entries[son]; IF son < heap.length AND IndexedEntrySize[pathStk: pathStk, index: heap.entries[son+1]] < IndexedEntrySize[pathStk: pathStk, index: sonEntry] THEN { son _ son+1; sonEntry _ heap.entries[son] }; IF IndexedEntrySize[pathStk: pathStk, index: sonEntry] >= entrySize THEN EXIT; heap.entries[emptyIndex] _ sonEntry; entryTable.map[sonEntry].heapPos _ emptyIndex; emptyIndex _ son; ENDLOOP; heap.entries[emptyIndex] _ entry; entryTable.map[entry].heapPos _ emptyIndex; END; -- SiftUp entryTable: REF EntryTable = pathStk.entryTable; heap: REF Heap = pathStk.heap; pse: LONG POINTER TO PathStkEntry = @pathStk.path[pathStk.top]; fatherPSE: LONG POINTER TO PathStkEntry = @pathStk.path[pathStk.top-1]; -- father's pse rtBroPg2: PageNumber; fatherIndex, fatherIndex2, bestFatherIndex, bestFatherIndex2: EntryOrdinal; minFeasIndex, maxFeasIndex: EntryOrdinal; bestFatherSizeSum: CARDINAL _ 2*tree.maxFreeWords + 1; twoBrothersEnough: BOOLEAN _ FALSE; breakSize1, breakSize2, totalSize: CARDINAL; fatherESR: REF EntSeqRecord; fatherIndex _ FillLeftPage[tree: tree, pathStk: pathStk]; fatherIndex2 _ FillLeftPage[tree: tree, pathStk: pathStk, leftFather: fatherIndex]; rtBroPg2 _ FindRightBrother[tree: tree, pathStk: pathStk, spaceNeeded: EntryIntervalSize[pathStk: pathStk, leftFather: fatherIndex2] + 2*tree.breathingSpace]; IF rtBroPg2=nilPage THEN BEGIN -- no luck, try the left brother fe2: EntryOrdinal = FillRightPage[tree: tree, pathStk: pathStk]; fe: EntryOrdinal = FillRightPage[tree: tree, pathStk: pathStk, rightFather: fe2]; rtBroPg2 _ FindLeftBrother[tree: tree, pathStk: pathStk, spaceNeeded: EntryIntervalSize[pathStk: pathStk, leftFather: 0, rightFather: fe] + 2*tree.breathingSpace]; IF rtBroPg2=nilPage THEN rtBroPg2 _ tree.AllocatePage[] -- still no luck, allocate new page ELSE BEGIN -- left brother had space, but fatherIndexes are now invalid fatherIndex _ FillLeftPage[tree: tree, pathStk: pathStk]; fatherIndex2 _ FillLeftPage[tree: tree, pathStk: pathStk, leftFather: fatherIndex]; END; END; IF entryTable.length<5 THEN ERROR Bug[tooFewEntries]; -- there must be two entries from the father page and at least one entry each from this page and the two brother pages heap.length _ 0; maxFeasIndex _ fatherIndex2; WHILE EntryIntervalSize[pathStk: pathStk, leftFather: maxFeasIndex] <= tree.fairlyFull DO maxFeasIndex _ maxFeasIndex-1; ENDLOOP; minFeasIndex _ maxFeasIndex+1; WHILE EntryIntervalSize[pathStk: pathStk, rightFather: fatherIndex] > (IF twoBrothersEnough THEN tree.prettyFull ELSE 0) DO WHILE EntryIntervalSize[pathStk: pathStk, leftFather: fatherIndex, rightFather: minFeasIndex-1] > 0 AND EntryIntervalSize[pathStk: pathStk, leftFather: minFeasIndex-1] <= tree.maxFreeWords DO minFeasIndex _ minFeasIndex-1; IF minFeasIndex <= maxFeasIndex THEN AddToHeap[minFeasIndex]; ENDLOOP; WHILE EntryIntervalSize[pathStk: pathStk, leftFather: fatherIndex, rightFather: maxFeasIndex] > tree.maxFreeWords DO IF maxFeasIndex >= minFeasIndex THEN RemoveFromHeap[maxFeasIndex]; maxFeasIndex _ maxFeasIndex-1; ENDLOOP; IF heap.length>0 THEN BEGIN fatherSizeSum: CARDINAL; fatherIndex2 _ heap.entries[1]; fatherSizeSum _ IndexedEntrySize[pathStk: pathStk, index: fatherIndex] + IndexedEntrySize[pathStk: pathStk, index: fatherIndex2]; IF fatherSizeSumleftFather+2 AND EntryIntervalSize[pathStk: pathStk, leftFather: midFather-1, rightFather: rightFather] <= tree.maxFreeWords DO midFather _ midFather-1; ENDLOOP; END; END. ΖBTreeWrite.mesa Operations for inserting new BTree entries and replacing existing ones. Last Edited by: Taft, June 3, 1983 5:17 pm BTree. Extra nesting required so that pathStkWasNil is visible in the catch phrase (yecch)! To minimize average insertion time, perform the update in one of three ways (in increasing order of difficulty, as measured by amount of temporary storage allocated and amount of data copied): 1. If replacing an existing entry of the same size, just overwrite it. 2. If the new entry fits on the page (after removing the old entry if any), just slide up the entries beyond the insertion point and insert the new entry. 3. Otherwise, leave the new entry as an EntSeqRecord at the appropriate stack level, and let InsertRecords cope with the problem. This code also takes care not to perform the startOfUpdate and endOfUpdate write references to the state page when the update consists of only a single page write. pathStk.top and pse now designate the page into which to insert the new entry. first remove and discard old entry, but save its descendant pointer BTreeInternal. Removes the entry from the BTree page at pse.offset and returns an EntSeqRecord containing it. Removes the first entry from the ESL at pse.offset (there had better be one) and returns an EntSeqRecord containing it. Private procedures Appends the cumulative lengths of the entries in the EntSeqRecord to the EntryTable held by the pathStk. It is ok for esr to be NIL. Inserts the cumulative lengths of the EntSeqRecord's entries at the front of the EntryTable held by the pathStk, and appropriately adjusts the cumulative lengths of the ones already there. This must never be done while we have an active heap, or disaster will ensue. It is ok for esr to be NIL. Move existing stuff out of the way Now compute the new lengths as if the old entries weren't there Now make the old lengths contiguous with the new ones and adjust the cumulative lengths of the old entries Removes entries from pse's ESL and deposits as many as will fit into the storage described by block and length. Raises Bug[depositESL] if the ESL is exhausted before the block is used up or if the end of the block would fall in the middle of an entry. Computes the number of words occupied by the ESL entries bounded by the leftFather and rightFather ordinals, not inclusive. Note that it is ok for leftFather and rightFather to designate nonexistent entries, i.e., leftFather = 0 and rightFather = pathStk.entryTable.length+1. If rightFather = 0 then it is defaulted to pathStk.entryTable.length+1. Private "cool" procedures The following procedures are logically local to InsertRecords and are not called anywhere else. They are separated out because they are infrequently called and might be packaged separately, should we ever decide to package this code at all. Makes a new root page given a pathStk now at level 0 and with a non-empty ESL. Called when not all the entries will fit on the current page. All of this page's entries have been extracted into the ESL for this level. Tries to spill over onto the right brother page, or onto the left brother page if there isn't a right brother, or onto a new page if neither brother exists. Returns rtBroPg1=nilPage if this is successful. Otherwise, repositions the current level of the pathStk (if necessary) so that a right brother exists, and returns the right brother's page number. This procedure is responsible for redistributing the entries among the two pages so as to minimize size of the entry promoted to the father page. Note that this considers only brothers and not cousins or more distant relatives. This may look strange, but see the comment below At this point, we have two pages in hand, pse.pageNumber and rtBroPg1. All of their entries have been extracted into the ESL, so they may be considered blank pages. We will use rtBroPg1 as the right brother of the current page regardless of whether it was formerly the right brother, the left brother, or newly allocated. The idea next is to send the shortest entry into the father page such that the current page is at least "pretty" full (if we have such a choice). Still enough room in right brother page. See if this is the shortest father entry, and try moving one more entry into right brother page. Called when not all the entries will fit on the current page and the right brother page. Pours all the entries into the current and right brother pages and either the second right brother page or the left brother page, creating a new second right brother page if neither exists or there is still not enough space. This procedure is responsible for redistributing the entries among the three pages so as to minimize the sum of sizes of the entries promoted to the father page. Note that this considers only brothers and not cousins or more distant relatives. See how much free space our second brother page would have to contain in order to handle the overflow. This is done by pretending to fill up this page and the first right brother page and seeing what is left over. The current page can't be the root, because one brother would surely have been enough in that case; so we don't have to pussyfoot when calling FindRightBrother. Now figure out how to divide the entries among the three pages in a way that minimizes the sum of the sizes of the two entries sent to the father page while attempting to keep the pages at least "fairly full". The way this is done is as follows. The left cut point (fatherIndex) is swept leftward from its initial maximum possible value, and all possible right cut points for the initial left cut point are thrown into a heap ordered by entry size. As the left cut point moves left, some possible right cut points are added and some are removed. At each step, the minimum-size entry for the right cut point is on the top of the heap. The sum of that and the entry for the left cut point is computed and the minimum remembered. Write the three pages and promote the two father entries to the next level. Finds the right brother of the current page, and determines whether it has room for at least spaceNeeded additional words. If so, removes the father entry and all right brother entries and appends them to the ESL for this level. Returns nilPage if there is no right brother or it is too full. Passing a spaceNeeded argument of -tree.maxFreeWords will find the right brother if it exists, regardless of how full it is. Finds the left brother of the current page, and determines whether it has room for at least spaceNeeded additional words. If so, backs up one entry at the father's level, removes the father entry and all left brother entries, and inserts them at the front of the ESL for this level. Returns nilPage if there is no left brother or it is too full. Passing a spaceNeeded argument of -tree.maxFreeWords will find the left brother if it exists, regardless of how full it is. Removes words' worth of entries from the front of the ESL for this level, and writes all but the first entry into rtBroPg. Designates the first entry as the (left) father of rtBroPg, and returns a new ESR containing it. Also sets the page's freeWords and minPage fields appropriately. Removes words' worth of entries from the front of the ESL for this level, and writes them into the page designated by number. Sets the page's freeWords appropriately, but does not touch minPage. Finds the largest entry ordinal in (leftFather .. rightFather) such that all the entries in (leftFather .. midFather) will fit in one BTree page. If rightFather = 0 then it is defaulted to pathStk.entryTable.length+1. Finds the smallest entry ordinal in (leftFather .. rightFather) such that all the entries in (midFather .. rightFather) will fit in one BTree page. If rightFather = 0 then it is defaulted to pathStk.entryTable.length+1. Κ™– "Cedar" style˜Jšœ™J™GJ™*unitšΟk ˜ Icodešœ˜Lšœ˜Lšœœ ˜Lšœ œ ˜—šœ ˜Lšœ(˜/Lšœ˜Lšœœœ˜"—J™šœ™Kšœœœ ˜Lšœ œœ˜3Kšœ œœ˜"Lšœœœ˜9šΟn œœœ œ+œœœ>˜ΈLš˜šž œ œ˜(LšœR˜R—Lšœ>˜>Lšœ˜Lšœ˜—šž œœ œ+œœœœ œ<˜ΡLš˜šž œ œ˜)Lš˜L˜ šœœ ˜ELšœ˜ —Lšœ˜—Lšœœ œ˜%L˜šœ˜Lš˜Lšœœœ˜0L˜#Lšœ˜—JšœT™Tšœœœ˜Lšœœœ5˜LL˜Lšœœœœ˜"Lšœœ˜LšœœΟc:˜Vš œœœœ&˜QLšœ˜—Lšœ\˜\šœ˜Lš˜Lšœ8˜8šœ9˜?Lšœ>˜>—L˜!Lšœ˜—Lš œœœœœœ˜wJšœΐ™ΐJšœF™FJšœš™šJšœ™Jšœ£™£LšœŸ7˜VL˜!šœ˜LšœŸ3˜9Lšœ<˜L˜.Lš˜—šœœŸD˜OLšœœœ$˜HLšœœœ œ˜5Lšœ$˜$Lšœ"˜"Lšœ&˜&L˜'Lšœœ"˜7L˜šœ$œ˜/˜Lšœ&˜,—Lšœœœœ˜˜>Lšœ˜—Lšœ˜—Lšœ˜—Lšœœ$˜9L˜Lšœ˜—š žœœœ œ œ˜\Lš˜L˜Lšœœœœ"˜jL˜Lšœ˜——J™J™šœ™šžœœ œ4œ˜_Lš˜šœ ˜&LšœŸ˜š œœœœ˜1Lšœ>˜>—šœ˜Lš˜Lšœ3˜3Lšœ$˜$Lšœ˜—Lš˜—š œœœœœœ˜LLšœŸ=˜CLšœœœœ˜,L˜Lšœ˜—Lšœ˜—šž œœ œ!˜@Lš˜Lšœœœœ+˜?šœœ˜Lš˜Lšœ˜Lšœ)˜)š œœ'œœ˜CLšœ<˜Lšœ œ@˜TLšœœ'˜>šœ"˜(LšœŸ-˜3Lšœ˜LšœK˜KLšœ4˜4Lšœ!˜!Lš˜—šœœŸN˜YL˜LšœœR˜ZLšœ%˜%Lšœ:˜:Lšœ/˜/Lšœ'˜'Lšœ<˜LšœœF˜^Lšœ˜—Lšœ˜—Lšœœœœ˜4Lšœ˜—Lšœ˜—šžœœ œ œœœœœœ˜{Lš˜Lšœ œœœ˜Lšœœ˜)Lšœœœ œ˜5Lšœ˜Lšœ?˜?Lšœ˜—šžœœ œœœœœ˜aLš˜šœœ˜Lš˜Lšœ œ˜Lšœ œœ"œ˜ULšœ ˜ Lšœ˜—Lšœ˜—šžœœ œœœœœ˜_Lš˜šœœ˜Lš˜L˜Lšœ!˜!Lšœ œœ!˜8Lšœ˜—Lšœ˜—šž œœ œœœœœœœœ$˜ŸLš˜šžœ œœœ˜=Jšœ^™^Lš˜L˜BLšœ œ-˜>LšœF˜FL˜.Lšœ”˜”L˜!Lšœ˜—šžœ œœœ˜CJšœw™wLš˜Lšœ œ-˜>Lšœœ˜*Lšœœœ œ˜5Lšœ˜LšœF˜FLšœ˜—Lš œœ œœœœ˜]Lšœ˜Lšœ˜šœ˜Lš˜Lšœ3˜3L˜%Lšœ˜Lšœ˜—Lšœ˜—šžœœ œœœœœœ$˜ŒLš˜L˜LšœCœ˜ILšœ˜—š ž œœœ œœ˜WLš˜L˜šœ"˜(Lš˜Lšœ?˜?L˜*Lš˜—šœ˜ L˜"L˜,Lšœ"œœ˜@L˜+Lšœ˜—Lšœ&˜&L˜Lšœ˜—š žœœœ œ$˜JLš˜L˜:Lšœ"œœ˜DLšœ#˜#L˜+L˜"L˜Lšœ˜——J™J™šœ™šžœ œ%œ˜VJšœœ™…Lš˜šœœ˜Lš˜Lšœ œ!˜0L˜(Lšœ œ˜$Lšœœœœ˜0šœ ˜Lšœ œ˜1L˜Lšœœœ˜FLšœP˜PLšœ˜Lšœ ˜ Lšœ˜—L˜Lšœ˜—Lšœ˜—šžœ œ%œ˜TJšœ€œ™¨Lš˜šœœ˜Lš˜Lšœ œ!˜0Lšœ)˜)Lšœ>˜>Lšœ˜Lšœœ˜Jšœ"™"Lšœhœ˜}Jšœ?™?Jšœ˜Jšœ<˜Lšœ6˜:Lšœ˜—LšœŸ˜—šž œ œ/˜ELš˜Lšœ œ4˜ELšœ˜š˜Lšœ˜Lšœ˜Lšœ œœ˜Lšœ!˜!LšœAœœ˜ML˜Lšœ(˜(L˜ Lšœ˜—L˜Lšœ$˜$LšœŸ˜—šžœ œ/˜@Lš˜Lšœ œ4˜Gš˜Lšœ˜Lšœ˜Lšœœœ˜L˜šœœv˜’L˜.—LšœBœœ˜NL˜$Lšœ.˜.L˜Lšœ˜—L˜!Lšœ+˜+LšœŸ ˜—Lšœ œ!˜0Lšœœ˜Lšœœœœ+˜?Lšœ œœœ.Ÿ˜WL˜L˜KL˜)Lšœœ˜6Lšœœœ˜#Lšœ#œ˜,Lšœ œ˜JšœΦ™ΦLšœ9˜9LšœS˜SJšœ ™ Lšœž˜žšœ˜LšœŸ ˜&Lšœ@˜@LšœQ˜QLšœ£˜£Lšœœ Ÿ#˜[šœœŸ<˜GLšœ9˜9LšœS˜SLšœ˜—Lšœ˜—LšœœœŸv˜¬JšœΫ™ΫL˜L˜šœR˜YL˜Lšœ˜—L˜š œBœœœ˜{šœ_œV˜ΏL˜Lšœœ˜=Lšœ˜—šœm˜tLšœœ˜BLšœ˜Lšœ˜—šœ˜Lš˜Lšœœ˜L˜Lšœ˜šœ!˜'Lš˜Lšœœ˜Lšœ"˜"Lšœ˜Lšœ ˜ Lšœ˜—Lšœ˜—L˜Lšœ˜—Lšœœœ˜;JšœK™KLšœO˜OLšœP˜PLšœ0˜0LšœK˜KLšœe˜eLšœ˜Lšœ1˜1Lšœ˜—šžœ œ-œœ˜pJšœ€™€Lš˜Lšœœœœ+˜?Lšœ œœœ-˜GLšœœ˜Lšœ˜Lšœœ˜&šœœ˜Lš˜Lšœ3˜3šœF˜LLšœ*œŸ˜Q—Lšœ@˜@Lšœ+˜+Lšœ'˜'Lš˜—šœ˜ Lšœ@˜@Lšœ,˜,Lšœ˜—Lšœ&˜&šœœ"œ˜HLšœœŸ˜J—Lšœc˜cLšœ˜Lšœ4˜4LšœB˜BL˜-LšœA˜ALšœ,˜,Lšœ˜—šžœ œ-œœ˜oJšœΨ™ΨLš˜Lšœœœœ+˜?Lšœ œœœ-˜GLšœ8˜8Lšœœ˜&Lšœœ˜L˜Lšœ"œœ ˜:L˜9Lšœ;˜;Lšœ<˜