mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-11 16:15:46 +00:00
78da928727
# Reload input list with different sources seq 10 | fzf --bind 'ctrl-a:reload(seq 100),ctrl-b:reload(seq 1000)' # Reload as you type seq 10 | fzf --bind 'change:reload:seq {q}' --phony # Integration with ripgrep RG_PREFIX="rg --column --line-number --no-heading --color=always --smart-case " INITIAL_QUERY="" FZF_DEFAULT_COMMAND="$RG_PREFIX '$INITIAL_QUERY'" \ fzf --bind "change:reload:$RG_PREFIX {q} || true" \ --ansi --phony --query "$INITIAL_QUERY" Close #751 Close #965 Close #974 Close #1736 Related #1723
90 lines
1.8 KiB
Go
90 lines
1.8 KiB
Go
package fzf
|
|
|
|
import "sync"
|
|
|
|
// Chunk is a list of Items whose size has the upper limit of chunkSize
|
|
type Chunk struct {
|
|
items [chunkSize]Item
|
|
count int
|
|
}
|
|
|
|
// ItemBuilder is a closure type that builds Item object from byte array
|
|
type ItemBuilder func(*Item, []byte) bool
|
|
|
|
// ChunkList is a list of Chunks
|
|
type ChunkList struct {
|
|
chunks []*Chunk
|
|
mutex sync.Mutex
|
|
trans ItemBuilder
|
|
}
|
|
|
|
// NewChunkList returns a new ChunkList
|
|
func NewChunkList(trans ItemBuilder) *ChunkList {
|
|
return &ChunkList{
|
|
chunks: []*Chunk{},
|
|
mutex: sync.Mutex{},
|
|
trans: trans}
|
|
}
|
|
|
|
func (c *Chunk) push(trans ItemBuilder, data []byte) bool {
|
|
if trans(&c.items[c.count], data) {
|
|
c.count++
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
// IsFull returns true if the Chunk is full
|
|
func (c *Chunk) IsFull() bool {
|
|
return c.count == chunkSize
|
|
}
|
|
|
|
func (cl *ChunkList) lastChunk() *Chunk {
|
|
return cl.chunks[len(cl.chunks)-1]
|
|
}
|
|
|
|
// CountItems returns the total number of Items
|
|
func CountItems(cs []*Chunk) int {
|
|
if len(cs) == 0 {
|
|
return 0
|
|
}
|
|
return chunkSize*(len(cs)-1) + cs[len(cs)-1].count
|
|
}
|
|
|
|
// Push adds the item to the list
|
|
func (cl *ChunkList) Push(data []byte) bool {
|
|
cl.mutex.Lock()
|
|
|
|
if len(cl.chunks) == 0 || cl.lastChunk().IsFull() {
|
|
cl.chunks = append(cl.chunks, &Chunk{})
|
|
}
|
|
|
|
ret := cl.lastChunk().push(cl.trans, data)
|
|
cl.mutex.Unlock()
|
|
return ret
|
|
}
|
|
|
|
// Clear clears the data
|
|
func (cl *ChunkList) Clear() {
|
|
cl.mutex.Lock()
|
|
cl.chunks = nil
|
|
cl.mutex.Unlock()
|
|
}
|
|
|
|
// Snapshot returns immutable snapshot of the ChunkList
|
|
func (cl *ChunkList) Snapshot() ([]*Chunk, int) {
|
|
cl.mutex.Lock()
|
|
|
|
ret := make([]*Chunk, len(cl.chunks))
|
|
copy(ret, cl.chunks)
|
|
|
|
// Duplicate the last chunk
|
|
if cnt := len(ret); cnt > 0 {
|
|
newChunk := *ret[cnt-1]
|
|
ret[cnt-1] = &newChunk
|
|
}
|
|
|
|
cl.mutex.Unlock()
|
|
return ret, CountItems(ret)
|
|
}
|