// VulcanizeDB // Copyright © 2020 Vulcanize // 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 . package auto import ( "fmt" "github.com/sirupsen/logrus" "github.com/vulcanize/tx_spammer/pkg/shared" ) // Spammer underlying struct type for spamming service type Spammer struct { Deployer *ContractDeployer Sender *EthSender TxGenerator *TxGenerator config *Config } // NewTxSpammer creates a new tx spamming service func NewTxSpammer(config *Config) shared.Service { gen := NewTxGenerator(config) return &Spammer{ Deployer: NewContractDeployer(config, gen), Sender: NewEthSender(config), TxGenerator: gen, config: config, } } func (s *Spammer) Loop(quitChan <-chan bool) (<-chan bool, error) { contractAddrs, err := s.Deployer.Deploy() if err != nil { return nil, fmt.Errorf("contract deployment error: %v", err) } genQuit := make(chan bool) senderQuit := make(chan bool) doneChan := make(chan bool) genDoneChan, txRlpChan, genErrChan := s.TxGenerator.GenerateTxs(genQuit, contractAddrs) sendDoneChan, sendErrChan := s.Sender.Send(senderQuit, txRlpChan) go func() { defer close(doneChan) for { select { case err := <-genErrChan: logrus.Errorf("tx generation error: %v", err) close(genQuit) <-genDoneChan close(senderQuit) case err := <-sendErrChan: logrus.Errorf("tx sending error: %v", err) close(genQuit) <-genDoneChan close(senderQuit) case <-quitChan: logrus.Error("shutting down tx spammer") close(genQuit) <-genDoneChan close(senderQuit) case <-sendDoneChan: return } } }() return doneChan, nil }