0
0
Fork 0
bleve/cmd/bleve/cmd/scorch/internal.go

62 lines
1.6 KiB
Go

// Copyright (c) 2017 Couchbase, 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 scorch
import (
"fmt"
"strconv"
"github.com/spf13/cobra"
)
var ascii bool
// internalCmd represents the internal command
var internalCmd = &cobra.Command{
Use: "internal",
Short: "internal prints the internal k/v pairs in a snapshot",
Long: `The internal command prints the internal k/v pairs in a snapshot.`,
RunE: func(cmd *cobra.Command, args []string) error {
if len(args) < 2 {
return fmt.Errorf("snapshot epoch required")
} else if len(args) < 3 {
snapshotEpoch, err := strconv.ParseUint(args[1], 10, 64)
if err != nil {
return err
}
snapshot, err := index.LoadSnapshot(snapshotEpoch)
if err != nil {
return err
}
internal := snapshot.Internal()
for k, v := range internal {
if ascii {
fmt.Printf("%s %s\n", k, string(v))
} else {
fmt.Printf("%x %x\n", k, v)
}
}
}
return nil
},
}
func init() {
RootCmd.AddCommand(internalCmd)
internalCmd.Flags().BoolVarP(&ascii, "ascii", "a", false, "print key/value in ascii")
}