forked from TrueCloudLab/frostfs-node
30 lines
564 B
Go
30 lines
564 B
Go
|
package common
|
||
|
|
||
|
import (
|
||
|
"github.com/davecgh/go-spew/spew"
|
||
|
"github.com/gdamore/tcell/v2"
|
||
|
"github.com/mr-tron/base58"
|
||
|
)
|
||
|
|
||
|
type RawEntry struct {
|
||
|
key, value []byte
|
||
|
}
|
||
|
|
||
|
var RawParser Parser = rawParser
|
||
|
|
||
|
func rawParser(key, value []byte) (SchemaEntry, Parser, error) {
|
||
|
return &RawEntry{key: key, value: value}, rawParser, nil
|
||
|
}
|
||
|
|
||
|
func (r *RawEntry) String() string {
|
||
|
return FormatSimple(base58.Encode(r.key), tcell.ColorRed)
|
||
|
}
|
||
|
|
||
|
func (r *RawEntry) DetailedString() string {
|
||
|
return spew.Sdump(r)
|
||
|
}
|
||
|
|
||
|
func (r *RawEntry) Filter(string, any) FilterResult {
|
||
|
return No
|
||
|
}
|