| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- // Copyright (C) 2014 Jakob Borg and Contributors (see the CONTRIBUTORS file).
- // All rights reserved. Use of this source code is governed by an MIT-style
- // license that can be found in the LICENSE file.
- package main
- import (
- "flag"
- "fmt"
- "log"
- "os"
- "github.com/calmh/syncthing/files"
- "github.com/calmh/syncthing/protocol"
- "github.com/syndtr/goleveldb/leveldb"
- )
- func main() {
- log.SetFlags(0)
- log.SetOutput(os.Stdout)
- repo := flag.String("repo", "default", "Repository ID")
- node := flag.String("node", "", "Node ID (blank for global)")
- flag.Parse()
- db, err := leveldb.OpenFile(flag.Arg(0), nil)
- if err != nil {
- log.Fatal(err)
- }
- fs := files.NewSet(*repo, db)
- if *node == "" {
- log.Printf("*** Global index for repo %q", *repo)
- fs.WithGlobal(func(f protocol.FileInfo) bool {
- fmt.Println(f)
- fmt.Println("\t", fs.Availability(f.Name))
- return true
- })
- } else {
- n, err := protocol.NodeIDFromString(*node)
- if err != nil {
- log.Fatal(err)
- }
- log.Printf("*** Have index for repo %q node %q", *repo, n)
- fs.WithHave(n, func(f protocol.FileInfo) bool {
- fmt.Println(f)
- return true
- })
- }
- }
|