Aleksey Savchuk
0c49bca19c
All checks were successful
DCO action / DCO (pull_request) Successful in 1m14s
Tests and linters / Run gofumpt (pull_request) Successful in 1m21s
Vulncheck / Vulncheck (pull_request) Successful in 2m6s
Pre-commit hooks / Pre-commit (pull_request) Successful in 2m22s
Build / Build Components (pull_request) Successful in 2m32s
Tests and linters / Staticcheck (pull_request) Successful in 2m50s
Tests and linters / gopls check (pull_request) Successful in 2m50s
Tests and linters / Lint (pull_request) Successful in 3m24s
Tests and linters / Tests (pull_request) Successful in 4m27s
Tests and linters / Tests with -race (pull_request) Successful in 6m2s
Signed-off-by: Aleksey Savchuk <a.savchuk@yadro.com>
68 lines
1.5 KiB
Go
68 lines
1.5 KiB
Go
package blobovnicza
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
common "git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-lens/internal"
|
|
schema "git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-lens/internal/schema/blobovnicza"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-lens/internal/tui"
|
|
"github.com/rivo/tview"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var tuiCMD = &cobra.Command{
|
|
Use: "explore",
|
|
Short: "Blobovnicza exploration with a terminal UI",
|
|
Long: `Launch a terminal UI to explore blobovnicza and search for data.
|
|
|
|
Available search filters:
|
|
- cid CID
|
|
- oid OID
|
|
- addr CID/OID
|
|
`,
|
|
Run: tuiFunc,
|
|
}
|
|
|
|
var initialPrompt string
|
|
|
|
func init() {
|
|
common.AddComponentPathFlag(tuiCMD, &vPath)
|
|
|
|
tuiCMD.Flags().StringVar(
|
|
&initialPrompt,
|
|
"filter",
|
|
"",
|
|
"Filter prompt to start with, format 'tag:value [+ tag:value]...'",
|
|
)
|
|
}
|
|
|
|
func tuiFunc(cmd *cobra.Command, _ []string) {
|
|
common.ExitOnErr(cmd, runTUI(cmd))
|
|
}
|
|
|
|
func runTUI(cmd *cobra.Command) error {
|
|
db, err := tui.OpenDB(vPath, false)
|
|
if err != nil {
|
|
return fmt.Errorf("couldn't open database: %w", err)
|
|
}
|
|
defer db.Close()
|
|
|
|
ctx, cancel := context.WithCancel(cmd.Context())
|
|
defer cancel()
|
|
|
|
app := tview.NewApplication()
|
|
ui := tui.NewUI(ctx, app, db, schema.BlobovniczaParser, nil)
|
|
|
|
_ = ui.AddFilter("cid", tui.CIDParser, "CID")
|
|
_ = ui.AddFilter("oid", tui.OIDParser, "OID")
|
|
_ = ui.AddCompositeFilter("addr", tui.AddressParser, "CID/OID")
|
|
|
|
err = ui.WithPrompt(initialPrompt)
|
|
if err != nil {
|
|
return fmt.Errorf("invalid filter prompt: %w", err)
|
|
}
|
|
|
|
app.SetRoot(ui, true).SetFocus(ui)
|
|
return app.Run()
|
|
}
|