mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-13 00:36:28 +00:00
b50d57b7fd
This adds a thin type that holds the state associated with the leveldb.DB, leaving the huge Instance type more or less stateless. Also moves some keying stuff into the DB package so that other packages need not know the keying specifics. (This does not, yet, fix the cmd/stindex program, in order to keep the diff size down. Hence the keying constants are still exported.)
84 lines
2.3 KiB
Go
84 lines
2.3 KiB
Go
// Copyright (C) 2015 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 https://mozilla.org/MPL/2.0/.
|
|
|
|
package main
|
|
|
|
import (
|
|
"encoding/binary"
|
|
"fmt"
|
|
"log"
|
|
"time"
|
|
|
|
"github.com/syncthing/syncthing/lib/db"
|
|
"github.com/syncthing/syncthing/lib/protocol"
|
|
)
|
|
|
|
func dump(ldb *db.Lowlevel) {
|
|
it := ldb.NewIterator(nil, nil)
|
|
for it.Next() {
|
|
key := it.Key()
|
|
switch key[0] {
|
|
case db.KeyTypeDevice:
|
|
folder := binary.BigEndian.Uint32(key[1:])
|
|
device := binary.BigEndian.Uint32(key[1+4:])
|
|
name := nulString(key[1+4+4:])
|
|
fmt.Printf("[device] F:%d D:%d N:%q", folder, device, name)
|
|
|
|
var f protocol.FileInfo
|
|
err := f.Unmarshal(it.Value())
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
fmt.Printf(" V:%v\n", f)
|
|
|
|
case db.KeyTypeGlobal:
|
|
folder := binary.BigEndian.Uint32(key[1:])
|
|
name := nulString(key[1+4:])
|
|
var flv db.VersionList
|
|
flv.Unmarshal(it.Value())
|
|
fmt.Printf("[global] F:%d N:%q V:%s\n", folder, name, flv)
|
|
|
|
case db.KeyTypeBlock:
|
|
folder := binary.BigEndian.Uint32(key[1:])
|
|
hash := key[1+4 : 1+4+32]
|
|
name := nulString(key[1+4+32:])
|
|
fmt.Printf("[block] F:%d H:%x N:%q I:%d\n", folder, hash, name, binary.BigEndian.Uint32(it.Value()))
|
|
|
|
case db.KeyTypeDeviceStatistic:
|
|
fmt.Printf("[dstat] K:%x V:%x\n", it.Key(), it.Value())
|
|
|
|
case db.KeyTypeFolderStatistic:
|
|
fmt.Printf("[fstat] K:%x V:%x\n", it.Key(), it.Value())
|
|
|
|
case db.KeyTypeVirtualMtime:
|
|
folder := binary.BigEndian.Uint32(key[1:])
|
|
name := nulString(key[1+4:])
|
|
val := it.Value()
|
|
var real, virt time.Time
|
|
real.UnmarshalBinary(val[:len(val)/2])
|
|
virt.UnmarshalBinary(val[len(val)/2:])
|
|
fmt.Printf("[mtime] F:%d N:%q R:%v V:%v\n", folder, name, real, virt)
|
|
|
|
case db.KeyTypeFolderIdx:
|
|
key := binary.BigEndian.Uint32(it.Key()[1:])
|
|
fmt.Printf("[folderidx] K:%d V:%q\n", key, it.Value())
|
|
|
|
case db.KeyTypeDeviceIdx:
|
|
key := binary.BigEndian.Uint32(it.Key()[1:])
|
|
val := it.Value()
|
|
if len(val) == 0 {
|
|
fmt.Printf("[deviceidx] K:%d V:<nil>\n", key)
|
|
} else {
|
|
dev := protocol.DeviceIDFromBytes(val)
|
|
fmt.Printf("[deviceidx] K:%d V:%s\n", key, dev)
|
|
}
|
|
|
|
default:
|
|
fmt.Printf("[???]\n %x\n %x\n", it.Key(), it.Value())
|
|
}
|
|
}
|
|
}
|