2015-12-01 19:44:58 +01:00
|
|
|
// Copyright (c) 2014 The btcsuite developers
|
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
2014-08-08 22:43:50 +02:00
|
|
|
|
|
|
|
package waddrmgr
|
|
|
|
|
|
|
|
import (
|
2017-09-19 23:53:38 +02:00
|
|
|
"time"
|
|
|
|
|
2017-06-06 02:54:35 +02:00
|
|
|
"github.com/roasbeef/btcd/chaincfg/chainhash"
|
|
|
|
"github.com/roasbeef/btcwallet/walletdb"
|
2014-08-08 22:43:50 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// BlockStamp defines a block (by height and a unique hash) and is
|
|
|
|
// used to mark a point in the blockchain that an address manager element is
|
|
|
|
// synced to.
|
|
|
|
type BlockStamp struct {
|
|
|
|
Height int32
|
2016-08-08 21:49:09 +02:00
|
|
|
Hash chainhash.Hash
|
2014-08-08 22:43:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// syncState houses the sync state of the manager. It consists of the recently
|
|
|
|
// seen blocks as height, as well as the start and current sync block stamps.
|
|
|
|
type syncState struct {
|
|
|
|
// startBlock is the first block that can be safely used to start a
|
|
|
|
// rescan. It is either the block the manager was created with, or
|
|
|
|
// the earliest block provided with imported addresses or scripts.
|
|
|
|
startBlock BlockStamp
|
|
|
|
|
|
|
|
// syncedTo is the current block the addresses in the manager are known
|
|
|
|
// to be synced against.
|
|
|
|
syncedTo BlockStamp
|
|
|
|
}
|
|
|
|
|
|
|
|
// newSyncState returns a new sync state with the provided parameters.
|
2017-07-12 01:13:10 +02:00
|
|
|
func newSyncState(startBlock, syncedTo *BlockStamp) *syncState {
|
2014-08-08 22:43:50 +02:00
|
|
|
|
|
|
|
return &syncState{
|
2017-07-12 01:13:10 +02:00
|
|
|
startBlock: *startBlock,
|
|
|
|
syncedTo: *syncedTo,
|
2014-08-08 22:43:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetSyncedTo marks the address manager to be in sync with the recently-seen
|
|
|
|
// block described by the blockstamp. When the provided blockstamp is nil,
|
|
|
|
// the oldest blockstamp of the block the manager was created at and of all
|
|
|
|
// imported addresses will be used. This effectively allows the manager to be
|
|
|
|
// marked as unsynced back to the oldest known point any of the addresses have
|
|
|
|
// appeared in the block chain.
|
2017-01-17 01:19:02 +01:00
|
|
|
func (m *Manager) SetSyncedTo(ns walletdb.ReadWriteBucket, bs *BlockStamp) error {
|
2014-08-08 22:43:50 +02:00
|
|
|
m.mtx.Lock()
|
|
|
|
defer m.mtx.Unlock()
|
|
|
|
|
2017-07-12 01:13:10 +02:00
|
|
|
// Use the stored start blockstamp and reset recent hashes and height
|
|
|
|
// when the provided blockstamp is nil.
|
2014-08-08 22:43:50 +02:00
|
|
|
if bs == nil {
|
|
|
|
bs = &m.syncState.startBlock
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the database.
|
2017-01-17 01:19:02 +01:00
|
|
|
err := putSyncedTo(ns, bs)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2014-08-08 22:43:50 +02:00
|
|
|
|
|
|
|
// Update memory now that the database is updated.
|
|
|
|
m.syncState.syncedTo = *bs
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SyncedTo returns details about the block height and hash that the address
|
|
|
|
// manager is synced through at the very least. The intention is that callers
|
|
|
|
// can use this information for intelligently initiating rescans to sync back to
|
|
|
|
// the best chain from the last known good block.
|
|
|
|
func (m *Manager) SyncedTo() BlockStamp {
|
|
|
|
m.mtx.Lock()
|
|
|
|
defer m.mtx.Unlock()
|
|
|
|
|
|
|
|
return m.syncState.syncedTo
|
|
|
|
}
|
2017-07-12 01:13:10 +02:00
|
|
|
|
|
|
|
// BlockHash returns the block hash at a particular block height. This
|
|
|
|
// information is useful for comparing against the chain back-end to see if a
|
|
|
|
// reorg is taking place and how far back it goes.
|
|
|
|
func (m *Manager) BlockHash(ns walletdb.ReadBucket, height int32) (
|
|
|
|
*chainhash.Hash, error) {
|
|
|
|
m.mtx.Lock()
|
|
|
|
defer m.mtx.Unlock()
|
|
|
|
|
|
|
|
return fetchBlockHash(ns, height)
|
|
|
|
}
|
2017-09-19 23:53:38 +02:00
|
|
|
|
|
|
|
// Birthday returns the birthday, or earliest time a key could have been used,
|
|
|
|
// for the manager.
|
|
|
|
func (m *Manager) Birthday() time.Time {
|
|
|
|
m.mtx.Lock()
|
|
|
|
defer m.mtx.Unlock()
|
|
|
|
|
|
|
|
return m.birthday
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetBirthday sets the birthday, or earliest time a key could have been used,
|
|
|
|
// for the manager.
|
|
|
|
func (m *Manager) SetBirthday(ns walletdb.ReadWriteBucket,
|
|
|
|
birthday time.Time) error {
|
|
|
|
m.mtx.Lock()
|
|
|
|
defer m.mtx.Unlock()
|
|
|
|
|
|
|
|
m.birthday = birthday
|
|
|
|
return putBirthday(ns, birthday)
|
|
|
|
}
|