syncthing/cmd/stindex/main.go

48 lines
857 B
Go
Raw Normal View History

2014-11-16 21:13:20 +01:00
// Copyright (C) 2014 The Syncthing Authors.
2014-09-29 21:43:32 +02:00
//
2015-03-07 21:36:35 +01:00
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// You can obtain one at https://mozilla.org/MPL/2.0/.
2014-07-06 14:46:48 +02:00
package main
import (
"flag"
"fmt"
"log"
"os"
2015-10-23 21:02:38 +02:00
"path/filepath"
2014-07-06 14:46:48 +02:00
"github.com/syncthing/syncthing/lib/db"
2014-07-06 14:46:48 +02:00
)
func main() {
2015-10-23 21:02:38 +02:00
var mode string
2014-07-06 14:46:48 +02:00
log.SetFlags(0)
log.SetOutput(os.Stdout)
2015-10-23 21:02:38 +02:00
flag.StringVar(&mode, "mode", "dump", "Mode of operation: dump, dumpsize")
2014-07-06 14:46:48 +02:00
flag.Parse()
2015-10-23 21:02:38 +02:00
path := flag.Arg(0)
if path == "" {
path = filepath.Join(defaultConfigDir(), "index-v0.14.0.db")
2015-10-23 21:02:38 +02:00
}
fmt.Println("Path:", path)
ldb, err := db.Open(path)
2014-07-06 14:46:48 +02:00
if err != nil {
log.Fatal(err)
}
2015-10-23 21:02:38 +02:00
if mode == "dump" {
dump(ldb)
} else if mode == "dumpsize" {
2015-10-23 21:21:21 +02:00
dumpsize(ldb)
2015-10-23 21:02:38 +02:00
} else {
fmt.Println("Unknown mode")
2014-07-06 14:46:48 +02:00
}
}