0
0
bleve/utils/bleve_dump/main.go

95 lines
2.5 KiB
Go
Raw Normal View History

2014-04-17 22:55:53 +02:00
// Copyright (c) 2014 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.
2014-04-17 22:55:53 +02:00
package main
import (
2014-09-01 20:17:05 +02:00
"encoding/json"
2014-04-17 22:55:53 +02:00
"flag"
"fmt"
2014-04-17 22:55:53 +02:00
"log"
"os"
"strings"
2014-04-17 22:55:53 +02:00
"github.com/blevesearch/bleve"
2015-09-16 23:18:46 +02:00
_ "github.com/blevesearch/bleve/config"
_ "github.com/blevesearch/bleve/index/store/metrics"
"github.com/blevesearch/bleve/index/upside_down"
2014-04-17 22:55:53 +02:00
)
var indexPath = flag.String("index", "", "index path")
2014-04-17 22:55:53 +02:00
var fieldsOnly = flag.Bool("fields", false, "print only field definitions")
var docID = flag.String("docID", "", "print only rows related to specified document")
var mappingOnly = flag.Bool("mapping", false, "print only index mappings")
2014-04-17 22:55:53 +02:00
func main() {
flag.Usage = func() {
fmt.Fprintf(os.Stderr, strings.TrimSpace(`
bleve_dump prints the properties and binary representations of all rows in the
index specified by -index.
`)+"\n\n")
flag.PrintDefaults()
}
2014-04-17 22:55:53 +02:00
flag.Parse()
if len(flag.Args()) > 0 {
log.Fatalf("unexpected argument '%s', use -help to see possible options",
flag.Args()[0])
}
if *indexPath == "" {
log.Fatal("specify index to dump")
}
2014-04-17 22:55:53 +02:00
index, err := bleve.Open(*indexPath)
2014-04-17 22:55:53 +02:00
if err != nil {
log.Fatal(err)
}
defer func() {
cerr := index.Close()
if cerr != nil {
log.Fatalf("error closing index: %v", err)
}
}()
2014-04-17 22:55:53 +02:00
2014-09-01 20:17:05 +02:00
if *mappingOnly {
if *docID != "" || *fieldsOnly {
log.Fatal("-mapping cannot be used with -docID or -fields")
}
2014-09-01 20:17:05 +02:00
mapping := index.Mapping()
jsonBytes, err := json.MarshalIndent(mapping, "", " ")
if err != nil {
log.Fatal(err)
}
fmt.Printf("%s\n", jsonBytes)
return
}
var dumpChan chan interface{}
2014-09-04 01:32:27 +02:00
if *docID != "" {
if *fieldsOnly {
log.Fatal("-docID cannot be used with -fields")
}
2014-09-04 01:32:27 +02:00
dumpChan = index.DumpDoc(*docID)
} else if *fieldsOnly {
dumpChan = index.DumpFields()
} else {
dumpChan = index.DumpAll()
}
for rowOrErr := range dumpChan {
switch rowOrErr := rowOrErr.(type) {
case error:
log.Printf("error dumping: %v", rowOrErr)
case upside_down.UpsideDownCouchRow:
fmt.Printf("%v\n", rowOrErr)
fmt.Printf("Key: % -100x\nValue: % -100x\n\n", rowOrErr.Key(), rowOrErr.Value())
}
}
2014-04-17 22:55:53 +02:00
}