1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
// This file is part of Frontier.
//
// Copyright (c) 2022 Parity Technologies (UK) Ltd.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

use std::{collections::HashSet, marker::PhantomData, sync::Arc, time};

use ethereum::BlockV2 as EthereumBlock;
use ethereum_types::{H256, U256};
use jsonrpsee::core::{async_trait, RpcResult};
// Substrate
use sc_client_api::backend::{Backend, StorageProvider};
use sc_transaction_pool::{ChainApi, Pool};
use sc_transaction_pool_api::InPoolTransaction;
use sp_api::ProvideRuntimeApi;
use sp_blockchain::HeaderBackend;
use sp_core::hashing::keccak_256;
use sp_runtime::{
    generic::BlockId,
    traits::{Block as BlockT, NumberFor, One, Saturating, UniqueSaturatedInto},
};
// Frontier
use fc_rpc_core::{types::*, EthFilterApiServer};
use fp_rpc::{EthereumRuntimeRPCApi, TransactionStatus};

use crate::{eth::cache::EthBlockDataCacheTask, frontier_backend_client, internal_err};

pub struct EthFilter<B: BlockT, C, BE, A: ChainApi> {
    client: Arc<C>,
    backend: Arc<dyn fc_db::BackendReader<B> + Send + Sync>,
    graph: Arc<Pool<A>>,
    filter_pool: FilterPool,
    max_stored_filters: usize,
    max_past_logs: u32,
    block_data_cache: Arc<EthBlockDataCacheTask<B>>,
    _marker: PhantomData<BE>,
}

impl<B: BlockT, C, BE, A: ChainApi> EthFilter<B, C, BE, A> {
    pub fn new(
        client: Arc<C>,
        backend: Arc<dyn fc_db::BackendReader<B> + Send + Sync>,
        graph: Arc<Pool<A>>,
        filter_pool: FilterPool,
        max_stored_filters: usize,
        max_past_logs: u32,
        block_data_cache: Arc<EthBlockDataCacheTask<B>>,
    ) -> Self {
        Self {
            client,
            backend,
            graph,
            filter_pool,
            max_stored_filters,
            max_past_logs,
            block_data_cache,
            _marker: PhantomData,
        }
    }
}

impl<B, C, BE, A> EthFilter<B, C, BE, A>
where
    B: BlockT,
    C: ProvideRuntimeApi<B>,
    C::Api: EthereumRuntimeRPCApi<B>,
    C: HeaderBackend<B> + 'static,
    A: ChainApi<Block = B> + 'static,
{
    fn create_filter(&self, filter_type: FilterType) -> RpcResult<U256> {
        let info = self.client.info();
        let best_hash = info.best_hash;
        let best_number = UniqueSaturatedInto::<u64>::unique_saturated_into(info.best_number);
        let pool = self.filter_pool.clone();
        let response = if let Ok(locked) = &mut pool.lock() {
            if locked.len() >= self.max_stored_filters {
                return Err(internal_err(format!(
                    "Filter pool is full (limit {:?}).",
                    self.max_stored_filters
                )))
            }
            let last_key = match {
                let mut iter = locked.iter();
                iter.next_back()
            } {
                Some((k, _)) => *k,
                None => U256::zero(),
            };

            let pending_transaction_hashes = if let FilterType::PendingTransaction = filter_type {
                let txs_ready = self
                    .graph
                    .validated_pool()
                    .ready()
                    .map(|in_pool_tx| in_pool_tx.data().clone())
                    .collect();
                // Use the runtime to match the (here) opaque extrinsics against ethereum transactions.
                let api = self.client.runtime_api();
                api.extrinsic_filter(best_hash, txs_ready)
                    .map_err(|err| {
                        internal_err(format!("fetch ready transactions failed: {err:?}"))
                    })?
                    .into_iter()
                    .map(|tx| tx.hash())
                    .collect::<HashSet<_>>()
            } else {
                HashSet::new()
            };

            // Assume `max_stored_filters` is always < U256::max.
            let key = last_key.checked_add(U256::one()).unwrap();
            locked.insert(
                key,
                FilterPoolItem {
                    last_poll: BlockNumber::Num(best_number),
                    filter_type,
                    at_block: best_number,
                    pending_transaction_hashes,
                },
            );
            Ok(key)
        } else {
            Err(internal_err("Filter pool is not available."))
        };
        response
    }
}

#[async_trait]
impl<B, C, BE, A> EthFilterApiServer for EthFilter<B, C, BE, A>
where
    B: BlockT,
    C: ProvideRuntimeApi<B>,
    C::Api: EthereumRuntimeRPCApi<B>,
    C: HeaderBackend<B> + StorageProvider<B, BE> + 'static,
    BE: Backend<B> + 'static,
    A: ChainApi<Block = B> + 'static,
{
    fn new_filter(&self, filter: Filter) -> RpcResult<U256> {
        self.create_filter(FilterType::Log(filter))
    }

    fn new_block_filter(&self) -> RpcResult<U256> {
        self.create_filter(FilterType::Block)
    }

    fn new_pending_transaction_filter(&self) -> RpcResult<U256> {
        self.create_filter(FilterType::PendingTransaction)
    }

    async fn filter_changes(&self, index: Index) -> RpcResult<FilterChanges> {
        // There are multiple branches that needs to return async blocks.
        // Also, each branch need to (synchronously) do stuff with the pool
        // (behind a lock), and the lock should be released before entering
        // an async block.
        //
        // To avoid issues with multiple async blocks (having different
        // anonymous types) we collect all necessary data in this enum then have
        // a single async block.
        enum FuturePath<B: BlockT> {
            Block {
                last: u64,
                next: u64,
            },
            PendingTransaction {
                new_hashes: Vec<H256>,
            },
            Log {
                filter: Filter,
                from_number: NumberFor<B>,
                current_number: NumberFor<B>,
            },
            Error(jsonrpsee::core::Error),
        }

        let key = U256::from(index.value());
        let info = self.client.info();
        let best_hash = info.best_hash;
        let best_number = UniqueSaturatedInto::<u64>::unique_saturated_into(info.best_number);
        let pool = self.filter_pool.clone();
        // Try to lock.
        let path = if let Ok(locked) = &mut pool.lock() {
            // Try to get key.
            if let Some(pool_item) = locked.get(&key).cloned() {
                match &pool_item.filter_type {
                    // For each block created since last poll, get a vector of ethereum hashes.
                    FilterType::Block => {
                        let last = pool_item.last_poll.to_min_block_num().unwrap();
                        let next = best_number + 1;
                        // Update filter `last_poll`.
                        locked.insert(
                            key,
                            FilterPoolItem {
                                last_poll: BlockNumber::Num(next),
                                filter_type: pool_item.filter_type.clone(),
                                at_block: pool_item.at_block,
                                pending_transaction_hashes: HashSet::new(),
                            },
                        );

                        FuturePath::<B>::Block { last, next }
                    },
                    FilterType::PendingTransaction => {
                        let previous_hashes = pool_item.pending_transaction_hashes;
                        let txs_ready = self
                            .graph
                            .validated_pool()
                            .ready()
                            .map(|in_pool_tx| in_pool_tx.data().clone())
                            .collect();
                        // Use the runtime to match the (here) opaque extrinsics against ethereum transactions.
                        let api = self.client.runtime_api();
                        let current_hashes = api
                            .extrinsic_filter(best_hash, txs_ready)
                            .map_err(|err| {
                                internal_err(format!("fetch ready transactions failed: {err:?}"))
                            })?
                            .into_iter()
                            .map(|tx| tx.hash())
                            .collect::<HashSet<_>>();

                        // Update filter `last_poll`.
                        locked.insert(
                            key,
                            FilterPoolItem {
                                last_poll: BlockNumber::Num(best_number + 1),
                                filter_type: pool_item.filter_type.clone(),
                                at_block: pool_item.at_block,
                                pending_transaction_hashes: current_hashes.clone(),
                            },
                        );

                        let mew_hashes = current_hashes
                            .difference(&previous_hashes)
                            .collect::<HashSet<&H256>>();
                        FuturePath::PendingTransaction {
                            new_hashes: mew_hashes.into_iter().copied().collect(),
                        }
                    },
                    // For each event since last poll, get a vector of ethereum logs.
                    FilterType::Log(filter) => {
                        // Update filter `last_poll`.
                        locked.insert(
                            key,
                            FilterPoolItem {
                                last_poll: BlockNumber::Num(best_number + 1),
                                filter_type: pool_item.filter_type.clone(),
                                at_block: pool_item.at_block,
                                pending_transaction_hashes: HashSet::new(),
                            },
                        );

                        // Either the filter-specific `to` block or best block.
                        let best_number = self.client.info().best_number;
                        let mut current_number = filter
                            .to_block
                            .and_then(|v| v.to_min_block_num())
                            .map(|s| s.unique_saturated_into())
                            .unwrap_or(best_number);

                        if current_number > best_number {
                            current_number = best_number;
                        }

                        // The from clause is the max(last_poll, filter_from).
                        let last_poll = pool_item
                            .last_poll
                            .to_min_block_num()
                            .unwrap()
                            .unique_saturated_into();

                        let filter_from = filter
                            .from_block
                            .and_then(|v| v.to_min_block_num())
                            .map(|s| s.unique_saturated_into())
                            .unwrap_or(last_poll);

                        let from_number = std::cmp::max(last_poll, filter_from);

                        // Build the response.
                        FuturePath::Log {
                            filter: filter.clone(),
                            from_number,
                            current_number,
                        }
                    },
                }
            } else {
                FuturePath::Error(internal_err(format!("Filter id {:?} does not exist.", key)))
            }
        } else {
            FuturePath::Error(internal_err("Filter pool is not available."))
        };

        let client = Arc::clone(&self.client);
        let backend = Arc::clone(&self.backend);
        let block_data_cache = Arc::clone(&self.block_data_cache);
        let max_past_logs = self.max_past_logs;

        match path {
            FuturePath::Error(err) => Err(err),
            FuturePath::Block { last, next } => {
                let mut ethereum_hashes: Vec<H256> = Vec::new();
                for n in last..next {
                    let id = BlockId::Number(n.unique_saturated_into());
                    let substrate_hash = client.expect_block_hash_from_id(&id).map_err(|_| {
                        internal_err(format!("Expect block number from id: {}", id))
                    })?;

                    let schema =
                        fc_storage::onchain_storage_schema(client.as_ref(), substrate_hash);

                    let block = block_data_cache.current_block(schema, substrate_hash).await;
                    if let Some(block) = block {
                        ethereum_hashes.push(block.header.hash())
                    }
                }
                Ok(FilterChanges::Hashes(ethereum_hashes))
            },
            FuturePath::PendingTransaction { new_hashes } => Ok(FilterChanges::Hashes(new_hashes)),
            FuturePath::Log {
                filter,
                from_number,
                current_number,
            } => {
                let mut ret: Vec<Log> = Vec::new();
                if backend.is_indexed() {
                    let _ = filter_range_logs_indexed(
                        client.as_ref(),
                        backend.as_ref(),
                        &block_data_cache,
                        &mut ret,
                        max_past_logs,
                        &filter,
                        from_number,
                        current_number,
                    )
                    .await?;
                } else {
                    let _ = filter_range_logs(
                        client.as_ref(),
                        &block_data_cache,
                        &mut ret,
                        max_past_logs,
                        &filter,
                        from_number,
                        current_number,
                    )
                    .await?;
                }

                Ok(FilterChanges::Logs(ret))
            },
        }
    }

    async fn filter_logs(&self, index: Index) -> RpcResult<Vec<Log>> {
        let key = U256::from(index.value());
        let pool = self.filter_pool.clone();

        // We want to get the filter, while releasing the pool lock outside
        // of the async block.
        let filter_result: RpcResult<Filter> = (|| {
            let pool = pool
                .lock()
                .map_err(|_| internal_err("Filter pool is not available."))?;

            let pool_item = pool
                .get(&key)
                .ok_or_else(|| internal_err(format!("Filter id {:?} does not exist.", key)))?;

            match &pool_item.filter_type {
                FilterType::Log(filter) => Ok(filter.clone()),
                _ => Err(internal_err(format!(
                    "Filter id {:?} is not a Log filter.",
                    key
                ))),
            }
        })();

        let client = Arc::clone(&self.client);
        let backend = Arc::clone(&self.backend);
        let block_data_cache = Arc::clone(&self.block_data_cache);
        let max_past_logs = self.max_past_logs;

        let filter = filter_result?;

        let best_number = client.info().best_number;
        let mut current_number = filter
            .to_block
            .and_then(|v| v.to_min_block_num())
            .map(|s| s.unique_saturated_into())
            .unwrap_or(best_number);

        if current_number > best_number {
            current_number = best_number;
        }

        let from_number = filter
            .from_block
            .and_then(|v| v.to_min_block_num())
            .map(|s| s.unique_saturated_into())
            .unwrap_or(best_number);

        let mut ret: Vec<Log> = Vec::new();
        if backend.is_indexed() {
            let _ = filter_range_logs_indexed(
                client.as_ref(),
                backend.as_ref(),
                &block_data_cache,
                &mut ret,
                max_past_logs,
                &filter,
                from_number,
                current_number,
            )
            .await?;
        } else {
            let _ = filter_range_logs(
                client.as_ref(),
                &block_data_cache,
                &mut ret,
                max_past_logs,
                &filter,
                from_number,
                current_number,
            )
            .await?;
        }
        Ok(ret)
    }

    fn uninstall_filter(&self, index: Index) -> RpcResult<bool> {
        let key = U256::from(index.value());
        let pool = self.filter_pool.clone();
        // Try to lock.
        let response = if let Ok(locked) = &mut pool.lock() {
            if locked.remove(&key).is_some() {
                Ok(true)
            } else {
                Err(internal_err(format!("Filter id {:?} does not exist.", key)))
            }
        } else {
            Err(internal_err("Filter pool is not available."))
        };
        response
    }

    async fn logs(&self, filter: Filter) -> RpcResult<Vec<Log>> {
        let client = Arc::clone(&self.client);
        let block_data_cache = Arc::clone(&self.block_data_cache);
        let backend = Arc::clone(&self.backend);
        let max_past_logs = self.max_past_logs;

        let mut ret: Vec<Log> = Vec::new();
        if let Some(hash) = filter.block_hash {
            let substrate_hash = match frontier_backend_client::load_hash::<B, C>(
                client.as_ref(),
                backend.as_ref(),
                hash,
            )
            .await
            .map_err(|err| internal_err(format!("{:?}", err)))?
            {
                Some(hash) => hash,
                _ => return Err(crate::err(-32000, "unknown block", None)),
            };
            let schema = fc_storage::onchain_storage_schema(client.as_ref(), substrate_hash);

            let block = block_data_cache.current_block(schema, substrate_hash).await;
            let statuses = block_data_cache
                .current_transaction_statuses(schema, substrate_hash)
                .await;
            if let (Some(block), Some(statuses)) = (block, statuses) {
                filter_block_logs(&mut ret, &filter, block, statuses);
            }
        } else {
            let best_number = client.info().best_number;
            let mut current_number = filter
                .to_block
                .and_then(|v| v.to_min_block_num())
                .map(|s| s.unique_saturated_into())
                .unwrap_or(best_number);

            if current_number > best_number {
                current_number = best_number;
            }

            let from_number = filter
                .from_block
                .and_then(|v| v.to_min_block_num())
                .map(|s| s.unique_saturated_into())
                .unwrap_or(best_number);

            if backend.is_indexed() {
                let _ = filter_range_logs_indexed(
                    client.as_ref(),
                    backend.as_ref(),
                    &block_data_cache,
                    &mut ret,
                    max_past_logs,
                    &filter,
                    from_number,
                    current_number,
                )
                .await?;
            } else {
                let _ = filter_range_logs(
                    client.as_ref(),
                    &block_data_cache,
                    &mut ret,
                    max_past_logs,
                    &filter,
                    from_number,
                    current_number,
                )
                .await?;
            }
        }
        Ok(ret)
    }
}

async fn filter_range_logs_indexed<B, C, BE>(
    _client: &C,
    backend: &(dyn fc_db::BackendReader<B> + Send + Sync),
    block_data_cache: &EthBlockDataCacheTask<B>,
    ret: &mut Vec<Log>,
    max_past_logs: u32,
    filter: &Filter,
    from: NumberFor<B>,
    to: NumberFor<B>,
) -> RpcResult<()>
where
    B: BlockT,
    C: ProvideRuntimeApi<B>,
    C::Api: EthereumRuntimeRPCApi<B>,
    C: HeaderBackend<B> + StorageProvider<B, BE> + 'static,
    BE: Backend<B> + 'static,
{
    use std::time::Instant;
    let timer_start = Instant::now();
    let timer_prepare = Instant::now();

    // Max request duration of 10 seconds.
    let max_duration = time::Duration::from_secs(10);
    let begin_request = time::Instant::now();

    let topics_input = if filter.topics.is_some() {
        let filtered_params = FilteredParams::new(Some(filter.clone()));
        Some(filtered_params.flat_topics)
    } else {
        None
    };

    // Normalize filter data
    let addresses = match &filter.address {
        Some(VariadicValue::Single(item)) => vec![*item],
        Some(VariadicValue::Multiple(items)) => items.clone(),
        _ => vec![],
    };
    let topics = topics_input
        .unwrap_or_default()
        .iter()
        .map(|flat| match flat {
            VariadicValue::Single(item) => vec![*item],
            VariadicValue::Multiple(items) => items.clone(),
            _ => vec![],
        })
        .collect::<Vec<Vec<Option<H256>>>>();

    let time_prepare = timer_prepare.elapsed().as_millis();
    let timer_fetch = Instant::now();
    if let Ok(logs) = backend
        .filter_logs(
            UniqueSaturatedInto::<u64>::unique_saturated_into(from),
            UniqueSaturatedInto::<u64>::unique_saturated_into(to),
            addresses,
            topics,
        )
        .await
    {
        let time_fetch = timer_fetch.elapsed().as_millis();
        let timer_post = Instant::now();
        use std::collections::BTreeMap;

        let mut statuses_cache: BTreeMap<B::Hash, Option<Vec<TransactionStatus>>> = BTreeMap::new();

        for log in logs.iter() {
            let substrate_hash = log.substrate_block_hash;

            let schema = log.ethereum_storage_schema;
            let ethereum_block_hash = log.ethereum_block_hash;
            let block_number = log.block_number;
            let db_transaction_index = log.transaction_index;
            let db_log_index = log.log_index;

            let statuses = if let Some(statuses) = statuses_cache.get(&log.substrate_block_hash) {
                statuses.clone()
            } else {
                let statuses = block_data_cache
                    .current_transaction_statuses(schema, substrate_hash)
                    .await;
                statuses_cache.insert(log.substrate_block_hash, statuses.clone());
                statuses
            };
            if let Some(statuses) = statuses {
                let mut block_log_index: u32 = 0;
                for status in statuses.iter() {
                    let mut transaction_log_index: u32 = 0;
                    let transaction_hash = status.transaction_hash;
                    let transaction_index = status.transaction_index;
                    for ethereum_log in &status.logs {
                        if transaction_index == db_transaction_index
                            && transaction_log_index == db_log_index
                        {
                            ret.push(Log {
                                address: ethereum_log.address,
                                topics: ethereum_log.topics.clone(),
                                data: Bytes(ethereum_log.data.clone()),
                                block_hash: Some(ethereum_block_hash),
                                block_number: Some(U256::from(block_number)),
                                transaction_hash: Some(transaction_hash),
                                transaction_index: Some(U256::from(transaction_index)),
                                log_index: Some(U256::from(block_log_index)),
                                transaction_log_index: Some(U256::from(transaction_log_index)),
                                removed: false,
                            });
                        }
                        transaction_log_index += 1;
                        block_log_index += 1;
                    }
                }
            }
            // Check for restrictions
            if ret.len() as u32 > max_past_logs {
                return Err(internal_err(format!(
                    "query returned more than {} results",
                    max_past_logs
                )))
            }
            if begin_request.elapsed() > max_duration {
                return Err(internal_err(format!(
                    "query timeout of {} seconds exceeded",
                    max_duration.as_secs()
                )))
            }
        }

        let time_post = timer_post.elapsed().as_millis();

        log::info!(
            target: "frontier-sql",
            "OUTER-TIMER fetch={}, post={}",
            time_fetch,
            time_post,
        );
    }

    log::info!(
        target: "frontier-sql",
        "OUTER-TIMER start={}, prepare={}, all_fetch = {}",
        timer_start.elapsed().as_millis(),
        time_prepare,
        timer_fetch.elapsed().as_millis(),
    );
    Ok(())
}

async fn filter_range_logs<B, C, BE>(
    client: &C,
    block_data_cache: &EthBlockDataCacheTask<B>,
    ret: &mut Vec<Log>,
    max_past_logs: u32,
    filter: &Filter,
    from: NumberFor<B>,
    to: NumberFor<B>,
) -> RpcResult<()>
where
    B: BlockT,
    C: ProvideRuntimeApi<B>,
    C::Api: EthereumRuntimeRPCApi<B>,
    C: HeaderBackend<B> + StorageProvider<B, BE> + 'static,
    BE: Backend<B> + 'static,
{
    // Max request duration of 10 seconds.
    let max_duration = time::Duration::from_secs(10);
    let begin_request = time::Instant::now();

    let mut current_number = from;

    // Pre-calculate BloomInput for reuse.
    let topics_input = if filter.topics.is_some() {
        let filtered_params = FilteredParams::new(Some(filter.clone()));
        Some(filtered_params.flat_topics)
    } else {
        None
    };
    let address_bloom_filter = FilteredParams::adresses_bloom_filter(&filter.address);
    let topics_bloom_filter = FilteredParams::topics_bloom_filter(&topics_input);

    while current_number <= to {
        let id = BlockId::Number(current_number);
        let substrate_hash = client
            .expect_block_hash_from_id(&id)
            .map_err(|_| internal_err(format!("Expect block number from id: {}", id)))?;

        let schema = fc_storage::onchain_storage_schema(client, substrate_hash);

        let block = block_data_cache.current_block(schema, substrate_hash).await;

        if let Some(block) = block {
            if FilteredParams::address_in_bloom(block.header.logs_bloom, &address_bloom_filter)
                && FilteredParams::topics_in_bloom(block.header.logs_bloom, &topics_bloom_filter)
            {
                let statuses = block_data_cache
                    .current_transaction_statuses(schema, substrate_hash)
                    .await;
                if let Some(statuses) = statuses {
                    filter_block_logs(ret, filter, block, statuses);
                }
            }
        }
        // Check for restrictions
        if ret.len() as u32 > max_past_logs {
            return Err(internal_err(format!(
                "query returned more than {} results",
                max_past_logs
            )))
        }
        if begin_request.elapsed() > max_duration {
            return Err(internal_err(format!(
                "query timeout of {} seconds exceeded",
                max_duration.as_secs()
            )))
        }
        if current_number == to {
            break
        } else {
            current_number = current_number.saturating_add(One::one());
        }
    }
    Ok(())
}

fn filter_block_logs<'a>(
    ret: &'a mut Vec<Log>,
    filter: &'a Filter,
    block: EthereumBlock,
    transaction_statuses: Vec<TransactionStatus>,
) -> &'a Vec<Log> {
    let params = FilteredParams::new(Some(filter.clone()));
    let mut block_log_index: u32 = 0;
    let block_hash = H256::from(keccak_256(&rlp::encode(&block.header)));
    for status in transaction_statuses.iter() {
        let mut transaction_log_index: u32 = 0;
        let transaction_hash = status.transaction_hash;
        for ethereum_log in &status.logs {
            let mut log = Log {
                address: ethereum_log.address,
                topics: ethereum_log.topics.clone(),
                data: Bytes(ethereum_log.data.clone()),
                block_hash: None,
                block_number: None,
                transaction_hash: None,
                transaction_index: None,
                log_index: None,
                transaction_log_index: None,
                removed: false,
            };
            let mut add: bool = true;
            match (filter.address.clone(), filter.topics.clone()) {
                (Some(_), Some(_)) => {
                    if !params.filter_address(&log) || !params.filter_topics(&log) {
                        add = false;
                    }
                },
                (Some(_), _) =>
                    if !params.filter_address(&log) {
                        add = false;
                    },
                (_, Some(_)) =>
                    if !params.filter_topics(&log) {
                        add = false;
                    },
                _ => {},
            }
            if add {
                log.block_hash = Some(block_hash);
                log.block_number = Some(block.header.number);
                log.transaction_hash = Some(transaction_hash);
                log.transaction_index = Some(U256::from(status.transaction_index));
                log.log_index = Some(U256::from(block_log_index));
                log.transaction_log_index = Some(U256::from(transaction_log_index));
                ret.push(log);
            }
            transaction_log_index += 1;
            block_log_index += 1;
        }
    }
    ret
}