mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
56 lines
1.2 KiB
Go
56 lines
1.2 KiB
Go
// Copyright 2022 Molecula Corp. (DBA FeatureBase).
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
package ctl
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
|
|
pilosa "github.com/featurebasedb/featurebase/v3"
|
|
"github.com/featurebasedb/featurebase/v3/rbf"
|
|
)
|
|
|
|
// RBFCheckCommand represents a command for running a consistency check on RBF.
|
|
type RBFCheckCommand struct {
|
|
// Filepath to the RBF database.
|
|
Path string
|
|
|
|
// Standard input/output
|
|
*pilosa.CmdIO
|
|
}
|
|
|
|
// NewRBFCheckCommand returns a new instance of RBFCheckCommand.
|
|
func NewRBFCheckCommand(stdin io.Reader, stdout, stderr io.Writer) *RBFCheckCommand {
|
|
return &RBFCheckCommand{
|
|
CmdIO: pilosa.NewCmdIO(stdin, stdout, stderr),
|
|
}
|
|
}
|
|
|
|
// Run executes a consistency check of an RBF database.
|
|
func (cmd *RBFCheckCommand) Run(ctx context.Context) error {
|
|
// Open database.
|
|
db := rbf.NewDB(cmd.Path, nil)
|
|
if err := db.Open(); err != nil {
|
|
return err
|
|
}
|
|
defer db.Close()
|
|
|
|
// Run check on the database.
|
|
if err := db.Check(); err != nil {
|
|
switch err := err.(type) {
|
|
case rbf.ErrorList:
|
|
for i := range err {
|
|
fmt.Fprintln(cmd.Stdout, err[i])
|
|
}
|
|
default:
|
|
fmt.Fprintln(cmd.Stdout, err)
|
|
}
|
|
return fmt.Errorf("check failed")
|
|
}
|
|
|
|
// If successful, print a success message.
|
|
fmt.Fprintln(cmd.Stdout, "ok")
|
|
|
|
return nil
|
|
}
|