mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-24 03:09:22 -06:00
184 lines
3.4 KiB
Go
184 lines
3.4 KiB
Go
// Copyright 2021 Dolthub, Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package tree
|
|
|
|
import (
|
|
"fmt"
|
|
"sync"
|
|
|
|
"github.com/dolthub/dolt/go/store/hash"
|
|
)
|
|
|
|
const (
|
|
numStripes = 32
|
|
stripeMask byte = 0b00011111
|
|
)
|
|
|
|
func newChunkCache(maxSize int) (c nodeCache) {
|
|
sz := maxSize / numStripes
|
|
for i := range c.stripes {
|
|
c.stripes[i] = newStripe(sz)
|
|
}
|
|
return
|
|
}
|
|
|
|
type nodeCache struct {
|
|
stripes [numStripes]*stripe
|
|
}
|
|
|
|
func (c nodeCache) get(addr hash.Hash) (Node, bool) {
|
|
s := c.stripes[addr[0]&stripeMask]
|
|
return s.get(addr)
|
|
}
|
|
|
|
func (c nodeCache) insert(addr hash.Hash, node Node) {
|
|
s := c.stripes[addr[0]&stripeMask]
|
|
s.insert(addr, node)
|
|
}
|
|
|
|
type centry struct {
|
|
a hash.Hash
|
|
n Node
|
|
i int
|
|
prev *centry
|
|
next *centry
|
|
}
|
|
|
|
type stripe struct {
|
|
mu *sync.Mutex
|
|
chunks map[hash.Hash]*centry
|
|
head *centry
|
|
sz int
|
|
maxSz int
|
|
rev int
|
|
}
|
|
|
|
func newStripe(maxSize int) *stripe {
|
|
return &stripe{
|
|
&sync.Mutex{},
|
|
make(map[hash.Hash]*centry),
|
|
nil,
|
|
0,
|
|
maxSize,
|
|
0,
|
|
}
|
|
}
|
|
|
|
func removeFromList(e *centry) {
|
|
e.prev.next = e.next
|
|
e.next.prev = e.prev
|
|
e.prev = e
|
|
e.next = e
|
|
}
|
|
|
|
func (s *stripe) moveToFront(e *centry) {
|
|
e.i = s.rev
|
|
s.rev++
|
|
if s.head == e {
|
|
return
|
|
}
|
|
if s.head != nil {
|
|
removeFromList(e)
|
|
e.next = s.head
|
|
e.prev = s.head.prev
|
|
s.head.prev = e
|
|
e.prev.next = e
|
|
}
|
|
s.head = e
|
|
}
|
|
|
|
func (s *stripe) get(h hash.Hash) (Node, bool) {
|
|
s.mu.Lock()
|
|
defer s.mu.Unlock()
|
|
if e, ok := s.chunks[h]; ok {
|
|
s.moveToFront(e)
|
|
return e.n, true
|
|
} else {
|
|
return Node{}, false
|
|
}
|
|
}
|
|
|
|
func (s *stripe) insert(addr hash.Hash, node Node) {
|
|
s.mu.Lock()
|
|
defer s.mu.Unlock()
|
|
|
|
if e, ok := s.chunks[addr]; !ok {
|
|
e = ¢ry{addr, node, 0, nil, nil}
|
|
e.next = e
|
|
e.prev = e
|
|
s.moveToFront(e)
|
|
s.chunks[addr] = e
|
|
s.sz += node.Size()
|
|
s.shrinkToMaxSz()
|
|
} else {
|
|
s.moveToFront(e)
|
|
}
|
|
}
|
|
|
|
func (s *stripe) shrinkToMaxSz() {
|
|
for s.sz > s.maxSz {
|
|
if s.head != nil {
|
|
t := s.head.prev
|
|
removeFromList(t)
|
|
if t == s.head {
|
|
s.head = nil
|
|
}
|
|
delete(s.chunks, t.a)
|
|
s.sz -= t.n.Size()
|
|
} else {
|
|
panic("cache is empty but cache Size is > than max Size")
|
|
}
|
|
}
|
|
}
|
|
|
|
func (s *stripe) sanityCheck() {
|
|
if s.head != nil {
|
|
p := s.head.next
|
|
i := 1
|
|
sz := s.head.n.Size()
|
|
lasti := s.head.i
|
|
for p != s.head {
|
|
i++
|
|
sz += p.n.Size()
|
|
if p.i >= lasti {
|
|
panic("encountered lru list entry with higher rev later in the list.")
|
|
}
|
|
p = p.next
|
|
}
|
|
if i != len(s.chunks) {
|
|
panic(fmt.Sprintf("cache lru list has different Size than cache.chunks. %d vs %d", i, len(s.chunks)))
|
|
}
|
|
if sz != s.sz {
|
|
panic("entries reachable from lru list have different Size than cache.sz.")
|
|
}
|
|
j := 1
|
|
p = s.head.prev
|
|
for p != s.head {
|
|
j++
|
|
p = p.prev
|
|
}
|
|
if j != i {
|
|
panic("length of list backwards is not equal to length of list forward")
|
|
}
|
|
} else {
|
|
if len(s.chunks) != 0 {
|
|
panic("lru list is empty but s.chunks is not")
|
|
}
|
|
if s.sz != 0 {
|
|
panic("lru list is empty but s.sz is not 0")
|
|
}
|
|
}
|
|
}
|