github.com/aidoskuneen/adk-node@v0.0.0-20220315131952-2e32567cb7f4/les/bloombits.go (about)

     1  // Copyright 2021 The adkgo Authors
     2  // This file is part of the adkgo library (adapted for adkgo from go--ethereum v1.10.8).
     3  //
     4  // the adkgo library is free software: you can redistribute it and/or modify
     5  // it under the terms of the GNU Lesser General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     9  // the adkgo library is distributed in the hope that it will be useful,
    10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    12  // GNU Lesser General Public License for more details.
    13  //
    14  // You should have received a copy of the GNU Lesser General Public License
    15  // along with the adkgo library. If not, see <http://www.gnu.org/licenses/>.
    16  
    17  package les
    18  
    19  import (
    20  	"time"
    21  
    22  	"github.com/aidoskuneen/adk-node/common/bitutil"
    23  	"github.com/aidoskuneen/adk-node/light"
    24  )
    25  
    26  const (
    27  	// bloomServiceThreads is the number of goroutines used globally by an Ethereum
    28  	// instance to service bloombits lookups for all running filters.
    29  	bloomServiceThreads = 16
    30  
    31  	// bloomFilterThreads is the number of goroutines used locally per filter to
    32  	// multiplex requests onto the global servicing goroutines.
    33  	bloomFilterThreads = 3
    34  
    35  	// bloomRetrievalBatch is the maximum number of bloom bit retrievals to service
    36  	// in a single batch.
    37  	bloomRetrievalBatch = 16
    38  
    39  	// bloomRetrievalWait is the maximum time to wait for enough bloom bit requests
    40  	// to accumulate request an entire batch (avoiding hysteresis).
    41  	bloomRetrievalWait = time.Microsecond * 100
    42  )
    43  
    44  // startBloomHandlers starts a batch of goroutines to accept bloom bit database
    45  // retrievals from possibly a range of filters and serving the data to satisfy.
    46  func (eth *LightEthereum) startBloomHandlers(sectionSize uint64) {
    47  	for i := 0; i < bloomServiceThreads; i++ {
    48  		go func() {
    49  			defer eth.wg.Done()
    50  			for {
    51  				select {
    52  				case <-eth.closeCh:
    53  					return
    54  
    55  				case request := <-eth.bloomRequests:
    56  					task := <-request
    57  					task.Bitsets = make([][]byte, len(task.Sections))
    58  					compVectors, err := light.GetBloomBits(task.Context, eth.odr, task.Bit, task.Sections)
    59  					if err == nil {
    60  						for i := range task.Sections {
    61  							if blob, err := bitutil.DecompressBytes(compVectors[i], int(sectionSize/8)); err == nil {
    62  								task.Bitsets[i] = blob
    63  							} else {
    64  								task.Error = err
    65  							}
    66  						}
    67  					} else {
    68  						task.Error = err
    69  					}
    70  					request <- task
    71  				}
    72  			}
    73  		}()
    74  	}
    75  }