mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-09 14:50:56 +00:00
fa0101bd60
This changes the BEP protocol to use protocol buffer serialization instead of XDR, and therefore also the database format. The local discovery protocol is also updated to be protocol buffer format. GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3276 LGTM: AudriusButkevicius
48 lines
856 B
Go
48 lines
856 B
Go
// Copyright (C) 2014 The Syncthing Authors.
|
|
//
|
|
// 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 http://mozilla.org/MPL/2.0/.
|
|
|
|
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/syncthing/syncthing/lib/db"
|
|
)
|
|
|
|
func main() {
|
|
var mode string
|
|
log.SetFlags(0)
|
|
log.SetOutput(os.Stdout)
|
|
|
|
flag.StringVar(&mode, "mode", "dump", "Mode of operation: dump, dumpsize")
|
|
|
|
flag.Parse()
|
|
|
|
path := flag.Arg(0)
|
|
if path == "" {
|
|
path = filepath.Join(defaultConfigDir(), "index-v0.14.0.db")
|
|
}
|
|
|
|
fmt.Println("Path:", path)
|
|
|
|
ldb, err := db.Open(path)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
if mode == "dump" {
|
|
dump(ldb)
|
|
} else if mode == "dumpsize" {
|
|
dumpsize(ldb)
|
|
} else {
|
|
fmt.Println("Unknown mode")
|
|
}
|
|
}
|