mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-10 15:20:56 +00:00
65aaa607ab
Change made by: - running "gvt fetch" on each of the packages mentioned in Godeps/Godeps.json - `rm -rf Godeps` - tweaking the build scripts to not mention Godeps - tweaking the build scripts to test `./lib/...`, `./cmd/...` explicitly (to avoid testing vendor) - tweaking the build scripts to not juggle GOPATH for Godeps and instead set GO15VENDOREXPERIMENT. This also results in some updated packages at the same time I bet. Building with Go 1.3 and 1.4 still *works* but won't use our vendored dependencies - the user needs to have the actual packages in their GOPATH then, which they'll get with a normal "go get". Building with Go 1.6+ will get our vendored dependencies by default even when not using our build script, which is nice. By doing this we gain some freedom in that we can pick and choose manually what to include in vendor, as it's not based on just dependency analysis of our own code. This is also a risk as we might pick up dependencies we are unaware of, as the build may work locally with those packages present in GOPATH. On the other hand the build server will detect this as it has no packages in it's GOPATH beyond what is included in the repo. Recommended tool to manage dependencies is github.com/FiloSottile/gvt.
103 lines
2.4 KiB
Go
103 lines
2.4 KiB
Go
// Copyright (c) 2012, Suryandaru Triandana <syndtr@gmail.com>
|
|
// All rights reserved.
|
|
//
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
package leveldb
|
|
|
|
import (
|
|
"github.com/syndtr/goleveldb/leveldb/errors"
|
|
"github.com/syndtr/goleveldb/leveldb/iterator"
|
|
"github.com/syndtr/goleveldb/leveldb/opt"
|
|
"github.com/syndtr/goleveldb/leveldb/storage"
|
|
"github.com/syndtr/goleveldb/leveldb/util"
|
|
)
|
|
|
|
// Reader is the interface that wraps basic Get and NewIterator methods.
|
|
// This interface implemented by both DB and Snapshot.
|
|
type Reader interface {
|
|
Get(key []byte, ro *opt.ReadOptions) (value []byte, err error)
|
|
NewIterator(slice *util.Range, ro *opt.ReadOptions) iterator.Iterator
|
|
}
|
|
|
|
// Sizes is list of size.
|
|
type Sizes []int64
|
|
|
|
// Sum returns sum of the sizes.
|
|
func (sizes Sizes) Sum() int64 {
|
|
var sum int64
|
|
for _, size := range sizes {
|
|
sum += size
|
|
}
|
|
return sum
|
|
}
|
|
|
|
// Logging.
|
|
func (db *DB) log(v ...interface{}) { db.s.log(v...) }
|
|
func (db *DB) logf(format string, v ...interface{}) { db.s.logf(format, v...) }
|
|
|
|
// Check and clean files.
|
|
func (db *DB) checkAndCleanFiles() error {
|
|
v := db.s.version()
|
|
defer v.release()
|
|
|
|
tmap := make(map[int64]bool)
|
|
for _, tables := range v.levels {
|
|
for _, t := range tables {
|
|
tmap[t.fd.Num] = false
|
|
}
|
|
}
|
|
|
|
fds, err := db.s.stor.List(storage.TypeAll)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var nt int
|
|
var rem []storage.FileDesc
|
|
for _, fd := range fds {
|
|
keep := true
|
|
switch fd.Type {
|
|
case storage.TypeManifest:
|
|
keep = fd.Num >= db.s.manifestFd.Num
|
|
case storage.TypeJournal:
|
|
if !db.frozenJournalFd.Nil() {
|
|
keep = fd.Num >= db.frozenJournalFd.Num
|
|
} else {
|
|
keep = fd.Num >= db.journalFd.Num
|
|
}
|
|
case storage.TypeTable:
|
|
_, keep = tmap[fd.Num]
|
|
if keep {
|
|
tmap[fd.Num] = true
|
|
nt++
|
|
}
|
|
}
|
|
|
|
if !keep {
|
|
rem = append(rem, fd)
|
|
}
|
|
}
|
|
|
|
if nt != len(tmap) {
|
|
var mfds []storage.FileDesc
|
|
for num, present := range tmap {
|
|
if !present {
|
|
mfds = append(mfds, storage.FileDesc{storage.TypeTable, num})
|
|
db.logf("db@janitor table missing @%d", num)
|
|
}
|
|
}
|
|
return errors.NewErrCorrupted(storage.FileDesc{}, &errors.ErrMissingFiles{Fds: mfds})
|
|
}
|
|
|
|
db.logf("db@janitor F·%d G·%d", len(fds), len(rem))
|
|
for _, fd := range rem {
|
|
db.logf("db@janitor removing %s-%d", fd.Type, fd.Num)
|
|
if err := db.s.stor.Remove(fd); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|