2018-11-07 21:50:43 +00:00
|
|
|
// VulcanizeDB
|
2019-03-12 15:46:42 +00:00
|
|
|
// Copyright © 2019 Vulcanize
|
2018-11-07 21:50:43 +00:00
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2019-01-25 08:59:23 +00:00
|
|
|
package watcher
|
2018-02-13 16:31:57 +00:00
|
|
|
|
|
|
|
import (
|
2019-01-15 10:09:13 +00:00
|
|
|
"fmt"
|
2019-03-27 04:05:30 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/libraries/shared/transactions"
|
2019-01-25 08:59:23 +00:00
|
|
|
|
2018-11-30 16:28:52 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2019-03-27 04:05:30 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
|
|
"github.com/sirupsen/logrus"
|
2019-01-25 08:59:23 +00:00
|
|
|
|
2019-03-27 04:05:30 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/libraries/shared/chunker"
|
2019-01-31 23:14:42 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/libraries/shared/constants"
|
2019-03-27 04:05:30 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/libraries/shared/fetcher"
|
|
|
|
"github.com/vulcanize/vulcanizedb/libraries/shared/repository"
|
2019-01-25 08:59:23 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/libraries/shared/transformer"
|
2018-12-11 10:35:13 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/core"
|
2018-02-13 16:31:57 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/datastore/postgres"
|
|
|
|
)
|
|
|
|
|
2019-01-28 22:52:47 +00:00
|
|
|
type EventWatcher struct {
|
2019-01-31 23:14:42 +00:00
|
|
|
Transformers []transformer.EventTransformer
|
2019-03-27 04:05:30 +00:00
|
|
|
BlockChain core.BlockChain
|
2019-01-15 10:09:13 +00:00
|
|
|
DB *postgres.DB
|
2019-04-24 20:05:57 +00:00
|
|
|
Fetcher fetcher.ILogFetcher
|
2019-03-27 04:05:30 +00:00
|
|
|
Chunker chunker.Chunker
|
2019-01-15 10:09:13 +00:00
|
|
|
Addresses []common.Address
|
|
|
|
Topics []common.Hash
|
|
|
|
StartingBlock *int64
|
2019-03-27 04:05:30 +00:00
|
|
|
Syncer transactions.ITransactionsSyncer
|
2018-11-30 16:28:52 +00:00
|
|
|
}
|
|
|
|
|
2019-01-28 22:52:47 +00:00
|
|
|
func NewEventWatcher(db *postgres.DB, bc core.BlockChain) EventWatcher {
|
2019-03-27 04:05:30 +00:00
|
|
|
logChunker := chunker.NewLogChunker()
|
2019-04-24 20:05:57 +00:00
|
|
|
logFetcher := fetcher.NewLogFetcher(bc)
|
2019-03-27 04:05:30 +00:00
|
|
|
transactionSyncer := transactions.NewTransactionsSyncer(db, bc)
|
2019-01-28 22:52:47 +00:00
|
|
|
return EventWatcher{
|
2019-03-27 04:05:30 +00:00
|
|
|
BlockChain: bc,
|
|
|
|
DB: db,
|
|
|
|
Fetcher: logFetcher,
|
|
|
|
Chunker: logChunker,
|
|
|
|
Syncer: transactionSyncer,
|
2018-11-30 16:28:52 +00:00
|
|
|
}
|
2018-02-13 16:31:57 +00:00
|
|
|
}
|
|
|
|
|
2018-12-13 11:39:57 +00:00
|
|
|
// Adds transformers to the watcher and updates the chunker, so that it will consider the new transformers.
|
2019-03-14 16:59:39 +00:00
|
|
|
func (watcher *EventWatcher) AddTransformers(initializers []transformer.EventTransformerInitializer) {
|
2018-12-13 11:39:57 +00:00
|
|
|
var contractAddresses []common.Address
|
|
|
|
var topic0s []common.Hash
|
2019-03-14 16:59:39 +00:00
|
|
|
var configs []transformer.EventTransformerConfig
|
2018-12-12 14:41:29 +00:00
|
|
|
|
|
|
|
for _, initializer := range initializers {
|
2019-01-25 08:59:23 +00:00
|
|
|
t := initializer(watcher.DB)
|
|
|
|
watcher.Transformers = append(watcher.Transformers, t)
|
2018-12-12 14:41:29 +00:00
|
|
|
|
2019-01-25 08:59:23 +00:00
|
|
|
config := t.GetConfig()
|
2018-12-13 11:39:57 +00:00
|
|
|
configs = append(configs, config)
|
2018-12-12 14:41:29 +00:00
|
|
|
|
2019-01-15 10:09:13 +00:00
|
|
|
if watcher.StartingBlock == nil {
|
|
|
|
watcher.StartingBlock = &config.StartingBlockNumber
|
|
|
|
} else if earlierStartingBlockNumber(config.StartingBlockNumber, *watcher.StartingBlock) {
|
|
|
|
watcher.StartingBlock = &config.StartingBlockNumber
|
|
|
|
}
|
|
|
|
|
2019-01-25 08:59:23 +00:00
|
|
|
addresses := transformer.HexStringsToAddresses(config.ContractAddresses)
|
2018-12-13 11:39:57 +00:00
|
|
|
contractAddresses = append(contractAddresses, addresses...)
|
2018-12-12 14:41:29 +00:00
|
|
|
topic0s = append(topic0s, common.HexToHash(config.Topic))
|
|
|
|
}
|
|
|
|
|
|
|
|
watcher.Addresses = append(watcher.Addresses, contractAddresses...)
|
|
|
|
watcher.Topics = append(watcher.Topics, topic0s...)
|
|
|
|
watcher.Chunker.AddConfigs(configs)
|
2018-02-13 16:31:57 +00:00
|
|
|
}
|
|
|
|
|
2019-02-08 16:35:46 +00:00
|
|
|
func (watcher *EventWatcher) Execute(recheckHeaders constants.TransformerExecution) error {
|
2019-01-15 10:09:13 +00:00
|
|
|
if watcher.Transformers == nil {
|
|
|
|
return fmt.Errorf("No transformers added to watcher")
|
|
|
|
}
|
|
|
|
|
2019-03-27 04:05:30 +00:00
|
|
|
checkedColumnNames, err := repository.GetCheckedColumnNames(watcher.DB)
|
2018-12-04 15:04:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-06-13 16:53:48 +00:00
|
|
|
notCheckedSQL := repository.CreateHeaderCheckedPredicateSQL(checkedColumnNames, recheckHeaders)
|
2018-12-04 15:04:13 +00:00
|
|
|
|
2019-03-27 04:05:30 +00:00
|
|
|
missingHeaders, err := repository.MissingHeaders(*watcher.StartingBlock, -1, watcher.DB, notCheckedSQL)
|
2018-12-10 20:12:19 +00:00
|
|
|
if err != nil {
|
2019-07-18 07:21:40 +00:00
|
|
|
logrus.Error("Couldn't fetch missing headers in watcher: ", err)
|
2018-12-10 20:12:19 +00:00
|
|
|
return err
|
|
|
|
}
|
2018-11-30 16:28:52 +00:00
|
|
|
|
|
|
|
for _, header := range missingHeaders {
|
|
|
|
// TODO Extend FetchLogs for doing several blocks at a time
|
|
|
|
logs, err := watcher.Fetcher.FetchLogs(watcher.Addresses, watcher.Topics, header)
|
|
|
|
if err != nil {
|
2019-07-18 07:21:40 +00:00
|
|
|
logrus.WithFields(logrus.Fields{
|
|
|
|
"headerId": header.Id,
|
|
|
|
"headerHash": header.Hash,
|
|
|
|
"blockNumber": header.BlockNumber,
|
|
|
|
}).Errorf("Couldn't fetch logs for header: %v", err)
|
2018-11-30 16:28:52 +00:00
|
|
|
return err
|
|
|
|
}
|
2018-11-28 16:00:04 +00:00
|
|
|
|
2019-03-27 04:05:30 +00:00
|
|
|
transactionsSyncErr := watcher.Syncer.SyncTransactions(header.Id, logs)
|
|
|
|
if transactionsSyncErr != nil {
|
|
|
|
logrus.Errorf("error syncing transactions: %s", transactionsSyncErr.Error())
|
|
|
|
return transactionsSyncErr
|
|
|
|
}
|
|
|
|
|
|
|
|
transformErr := watcher.transformLogs(logs, header)
|
|
|
|
if transformErr != nil {
|
2019-07-18 07:21:40 +00:00
|
|
|
logrus.Error("Could not transform logs: ", transformErr)
|
2019-03-27 04:05:30 +00:00
|
|
|
return transformErr
|
2018-11-30 16:28:52 +00:00
|
|
|
}
|
2018-02-13 16:31:57 +00:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
2019-01-15 10:09:13 +00:00
|
|
|
|
2019-03-27 04:05:30 +00:00
|
|
|
func (watcher *EventWatcher) transformLogs(logs []types.Log, header core.Header) error {
|
|
|
|
chunkedLogs := watcher.Chunker.ChunkLogs(logs)
|
|
|
|
|
|
|
|
// Can't quit early and mark as checked if there are no logs. If we are running continuousLogSync,
|
|
|
|
// not all logs we're interested in might have been fetched.
|
|
|
|
for _, t := range watcher.Transformers {
|
|
|
|
transformerName := t.GetConfig().TransformerName
|
|
|
|
logChunk := chunkedLogs[transformerName]
|
2019-06-12 18:30:09 +00:00
|
|
|
err := t.Execute(logChunk, header)
|
2019-03-27 04:05:30 +00:00
|
|
|
if err != nil {
|
|
|
|
logrus.Errorf("%v transformer failed to execute in watcher: %v", transformerName, err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-01-15 10:09:13 +00:00
|
|
|
func earlierStartingBlockNumber(transformerBlock, watcherBlock int64) bool {
|
|
|
|
return transformerBlock < watcherBlock
|
|
|
|
}
|