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
crate::ix!();

//-------------------------------------------[.cpp/bitcoin/src/test/fuzz/txrequest.cpp]

pub const MAX_TXHASHES: usize = 16;
pub const MAX_PEERS:    usize = 16;

/**
  | Randomly generated GenTxids used in
  | this test (length is MAX_TXHASHES).
  |
  */
lazy_static!{
    /*
    uint256 TXHASHES[MAX_TXHASHES];
    */
}

/**
  | Precomputed random durations (positive
  | and negative, each ~exponentially
  | distributed).
  |
  */
lazy_static!{
    /*
    microseconds DELAYS[256];
    */
}

pub struct Initializer { }

impl Default for Initializer {
    
    fn default() -> Self {
        todo!();
        /*


            for (uint8_t txhash = 0; txhash < MAX_TXHASHES; txhash += 1) {
                CSHA256().Write(&txhash, 1).Finalize(TXHASHES[txhash].begin());
            }
            int i = 0;
            // DELAYS[N] for N=0..15 is just N microseconds.
            for (; i < 16; ++i) {
                DELAYS[i] = microseconds{i};
            }
            // DELAYS[N] for N=16..127 has randomly-looking but roughly exponentially increasing values up to
            // 198.416453 seconds.
            for (; i < 128; ++i) {
                int diff_bits = ((i - 10) * 2) / 9;
                uint64_t diff = 1 + (CSipHasher(0, 0).Write(i).Finalize() >> (64 - diff_bits));
                DELAYS[i] = DELAYS[i - 1] + microseconds{diff};
            }
            // DELAYS[N] for N=128..255 are negative delays with the same magnitude as N=0..127.
            for (; i < 256; ++i) {
                DELAYS[i] = -DELAYS[255 - i];
            }
        */
    }
}

lazy_static!{
    /*
    g_initializer;
    */
}

/**
  | Tester class for TxRequestTracker
  | 
  | It includes a naive reimplementation
  | of its behavior, for a limited set of
  | MAX_TXHASHES distinct txids, and MAX_PEERS
  | peer identifiers.
  | 
  | All of the public member functions perform
  | the same operation on an actual TxRequestTracker
  | and on the state of the reimplementation.
  | 
  | The output of GetRequestable is compared
  | with the expected value as well.
  | 
  | Check() calls the TxRequestTracker's
  | sanity check, plus compares the output
  | of the constant accessors (Size(),
  | CountLoad(), CountTracked()) with
  | expected values.
  |
  */
pub struct Tester {

    /**
      | TxRequestTracker object being tested.
      |
      */
    tracker:          TxRequestTracker,

    /**
      | Sequence numbers, incremented whenever
      | a new CANDIDATE is added.
      |
      */
    current_sequence: u64, // default = { 0 }

    /**
      | List of future 'events' (all inserted
      | reqtimes/exptimes). This is used to
      | implement AdvanceToEvent.
      |
      */
    events:           PriorityQueue<Duration,Vec<Duration>>, //micros

    /**
      | Information about all txhash/peer
      | combination.
      |
      */
    announcements:    [[Announcement; MAX_TXHASHES]; MAX_PEERS],

    /**
      | The current time; can move forward and
      | backward.
      |
      */
    now:              Duration, // default = { 244466666 micros }
}

pub mod tester {

    use super::*;

    /**
      | States for txid/peer combinations
      | in the naive data structure.
      |
      */
    pub enum State {

        /**
          | Absence of this txid/peer combination
          |
          */
        NOTHING, 

        /**
          | @note
          | 
          | this implementation does not distinguish
          | between DELAYED/READY/BEST variants
          | of CANDIDATE.
          |
          */
        CANDIDATE,
        REQUESTED,
        COMPLETED,
    }

    /**
      | Information about a txhash/peer combination.
      |
      */
    pub struct Announcement
    {
        time:      Duration, //micros
        sequence:  u64,
        state:     State, //{State::NOTHING};
        preferred: bool,
        is_wtxid:  bool,

        /**
          | Precomputed priority.
          |
          */
        priority:  u64,
    }
}

impl Default for Tester {
    
    fn default() -> Self {
        todo!();
        /*
        : tracker(true),

        
        */
    }
}

impl Tester {

    /**
      | Delete txhashes whose only announcements
      | are COMPLETED.
      |
      */
    pub fn cleanup(&mut self, txhash: i32)  {
        
        todo!();
        /*
            bool all_nothing = true;
            for (int peer = 0; peer < MAX_PEERS; ++peer) {
                const Announcement& ann = m_announcements[txhash][peer];
                if (ann.m_state != State::NOTHING) {
                    if (ann.m_state != State::COMPLETED) return;
                    all_nothing = false;
                }
            }
            if (all_nothing) return;
            for (int peer = 0; peer < MAX_PEERS; ++peer) {
                m_announcements[txhash][peer].m_state = State::NOTHING;
            }
        */
    }

    /**
      | Find the current best peer to request
      | from for a txhash (or -1 if none).
      |
      */
    pub fn get_selected(&self, txhash: i32) -> i32 {
        
        todo!();
        /*
            int ret = -1;
            uint64_t ret_priority = 0;
            for (int peer = 0; peer < MAX_PEERS; ++peer) {
                const Announcement& ann = m_announcements[txhash][peer];
                // Return -1 if there already is a (non-expired) in-flight request.
                if (ann.m_state == State::REQUESTED) return -1;
                // If it's a viable candidate, see if it has lower priority than the best one so far.
                if (ann.m_state == State::CANDIDATE && ann.m_time <= m_now) {
                    if (ret == -1 || ann.m_priority > ret_priority) {
                        std::tie(ret, ret_priority) = std::tie(peer, ann.m_priority);
                    }
                }
            }
            return ret;
        */
    }
    
    pub fn now(&self) -> Duration /* micros */ {
        
        todo!();
        /*
            return m_now;
        */
    }
    
    pub fn advance_time(&mut self, offset: Duration /* micros */)  {
        
        todo!();
        /*
            m_now += offset;
            while (!m_events.empty() && m_events.top() <= m_now) m_events.pop();
        */
    }
    
    pub fn advance_to_event(&mut self)  {
        
        todo!();
        /*
            while (!m_events.empty() && m_events.top() <= m_now) m_events.pop();
            if (!m_events.empty()) {
                m_now = m_events.top();
                m_events.pop();
            }
        */
    }
    
    pub fn disconnected_peer(&mut self, peer: i32)  {
        
        todo!();
        /*
            // Apply to naive structure: all announcements for that peer are wiped.
            for (int txhash = 0; txhash < MAX_TXHASHES; ++txhash) {
                if (m_announcements[txhash][peer].m_state != State::NOTHING) {
                    m_announcements[txhash][peer].m_state = State::NOTHING;
                    Cleanup(txhash);
                }
            }

            // Call TxRequestTracker's implementation.
            m_tracker.DisconnectedPeer(peer);
        */
    }
    
    pub fn forget_tx_hash(&mut self, txhash: i32)  {
        
        todo!();
        /*
            // Apply to naive structure: all announcements for that txhash are wiped.
            for (int peer = 0; peer < MAX_PEERS; ++peer) {
                m_announcements[txhash][peer].m_state = State::NOTHING;
            }
            Cleanup(txhash);

            // Call TxRequestTracker's implementation.
            m_tracker.ForgetTxHash(TXHASHES[txhash]);
        */
    }
    
    pub fn received_inv(&mut self, 
        peer:      i32,
        txhash:    i32,
        is_wtxid:  bool,
        preferred: bool,
        reqtime:   Duration /*micros*/)  {
        
        todo!();
        /*
            // Apply to naive structure: if no announcement for txidnum/peer combination
            // already, create a new CANDIDATE; otherwise do nothing.
            Announcement& ann = m_announcements[txhash][peer];
            if (ann.m_state == State::NOTHING) {
                ann.m_preferred = preferred;
                ann.m_state = State::CANDIDATE;
                ann.m_time = reqtime;
                ann.m_is_wtxid = is_wtxid;
                ann.m_sequence = m_current_sequence++;
                ann.m_priority = m_tracker.ComputePriority(TXHASHES[txhash], peer, ann.m_preferred);

                // Add event so that AdvanceToEvent can quickly jump to the point where its reqtime passes.
                if (reqtime > m_now) m_events.push(reqtime);
            }

            // Call TxRequestTracker's implementation.
            m_tracker.ReceivedInv(peer, is_wtxid ? GenTxid::Wtxid(TXHASHES[txhash]) : GenTxid::Txid(TXHASHES[txhash]), preferred, reqtime);
        */
    }
    
    pub fn requested_tx(
        &mut self, 
        peer:    i32,
        txhash:  i32,
        exptime: Duration /* micros */)  {
        
        todo!();
        /*
            // Apply to naive structure: if a CANDIDATE announcement exists for peer/txhash,
            // convert it to REQUESTED, and change any existing REQUESTED announcement for the same txhash to COMPLETED.
            if (m_announcements[txhash][peer].m_state == State::CANDIDATE) {
                for (int peer2 = 0; peer2 < MAX_PEERS; ++peer2) {
                    if (m_announcements[txhash][peer2].m_state == State::REQUESTED) {
                        m_announcements[txhash][peer2].m_state = State::COMPLETED;
                    }
                }
                m_announcements[txhash][peer].m_state = State::REQUESTED;
                m_announcements[txhash][peer].m_time = exptime;
            }

            // Add event so that AdvanceToEvent can quickly jump to the point where its exptime passes.
            if (exptime > m_now) m_events.push(exptime);

            // Call TxRequestTracker's implementation.
            m_tracker.RequestedTx(peer, TXHASHES[txhash], exptime);
        */
    }
    
    pub fn received_response(&mut self, 
        peer:   i32,
        txhash: i32)  {
        
        todo!();
        /*
            // Apply to naive structure: convert anything to COMPLETED.
            if (m_announcements[txhash][peer].m_state != State::NOTHING) {
                m_announcements[txhash][peer].m_state = State::COMPLETED;
                Cleanup(txhash);
            }

            // Call TxRequestTracker's implementation.
            m_tracker.ReceivedResponse(peer, TXHASHES[txhash]);
        */
    }
    
    pub fn get_requestable(&mut self, peer: i32)  {
        
        todo!();
        /*
            // Implement using naive structure:

            /// list of (sequence number, txhash, is_wtxid) tuples.
            std::vector<std::tuple<uint64_t, int, bool>> result;
            std::vector<std::pair<NodeId, GenTxid>> expected_expired;
            for (int txhash = 0; txhash < MAX_TXHASHES; ++txhash) {
                // Mark any expired REQUESTED announcements as COMPLETED.
                for (int peer2 = 0; peer2 < MAX_PEERS; ++peer2) {
                    Announcement& ann2 = m_announcements[txhash][peer2];
                    if (ann2.m_state == State::REQUESTED && ann2.m_time <= m_now) {
                        expected_expired.emplace_back(peer2, ann2.m_is_wtxid ? GenTxid::Wtxid(TXHASHES[txhash]) : GenTxid::Txid(TXHASHES[txhash]));
                        ann2.m_state = State::COMPLETED;
                        break;
                    }
                }
                // And delete txids with only COMPLETED announcements left.
                Cleanup(txhash);
                // CANDIDATEs for which this announcement has the highest priority get returned.
                const Announcement& ann = m_announcements[txhash][peer];
                if (ann.m_state == State::CANDIDATE && GetSelected(txhash) == peer) {
                    result.emplace_back(ann.m_sequence, txhash, ann.m_is_wtxid);
                }
            }
            // Sort the results by sequence number.
            std::sort(result.begin(), result.end());
            std::sort(expected_expired.begin(), expected_expired.end());

            // Compare with TxRequestTracker's implementation.
            std::vector<std::pair<NodeId, GenTxid>> expired;
            const auto actual = m_tracker.GetRequestable(peer, m_now, &expired);
            std::sort(expired.begin(), expired.end());
            assert(expired == expected_expired);

            m_tracker.PostGetRequestableSanityCheck(m_now);
            assert(result.size() == actual.size());
            for (size_t pos = 0; pos < actual.size(); ++pos) {
                assert(TXHASHES[std::get<1>(result[pos])] == actual[pos].GetHash());
                assert(std::get<2>(result[pos]) == actual[pos].IsWtxid());
            }
        */
    }
    
    pub fn check(&mut self)  {
        
        todo!();
        /*
            // Compare CountTracked and CountLoad with naive structure.
            size_t total = 0;
            for (int peer = 0; peer < MAX_PEERS; ++peer) {
                size_t tracked = 0;
                size_t inflight = 0;
                size_t candidates = 0;
                for (int txhash = 0; txhash < MAX_TXHASHES; ++txhash) {
                    tracked += m_announcements[txhash][peer].m_state != State::NOTHING;
                    inflight += m_announcements[txhash][peer].m_state == State::REQUESTED;
                    candidates += m_announcements[txhash][peer].m_state == State::CANDIDATE;
                }
                assert(m_tracker.Count(peer) == tracked);
                assert(m_tracker.CountInFlight(peer) == inflight);
                assert(m_tracker.CountCandidates(peer) == candidates);
                total += tracked;
            }
            // Compare Size.
            assert(m_tracker.Size() == total);

            // Invoke internal consistency check of TxRequestTracker object.
            m_tracker.SanityCheck();
        */
    }
}

#[fuzz] fn txrequest() {
    todo!();
    /*
    
        // Tester object (which encapsulates a TxRequestTracker).
        Tester tester;

        // Decode the input as a sequence of instructions with parameters
        auto it = buffer.begin();
        while (it != buffer.end()) {
            int cmd = *(it++) % 11;
            int peer, txidnum, delaynum;
            switch (cmd) {
            case 0: // Make time jump to the next event (m_time of CANDIDATE or REQUESTED)
                tester.AdvanceToEvent();
                break;
            case 1: // Change time
                delaynum = it == buffer.end() ? 0 : *(it++);
                tester.AdvanceTime(DELAYS[delaynum]);
                break;
            case 2: // Query for requestable txs
                peer = it == buffer.end() ? 0 : *(it++) % MAX_PEERS;
                tester.GetRequestable(peer);
                break;
            case 3: // Peer went offline
                peer = it == buffer.end() ? 0 : *(it++) % MAX_PEERS;
                tester.DisconnectedPeer(peer);
                break;
            case 4: // No longer need tx
                txidnum = it == buffer.end() ? 0 : *(it++);
                tester.ForgetTxHash(txidnum % MAX_TXHASHES);
                break;
            case 5: // Received immediate preferred inv
            case 6: // Same, but non-preferred.
                peer = it == buffer.end() ? 0 : *(it++) % MAX_PEERS;
                txidnum = it == buffer.end() ? 0 : *(it++);
                tester.ReceivedInv(peer, txidnum % MAX_TXHASHES, (txidnum / MAX_TXHASHES) & 1, cmd & 1,
                    microseconds::min());
                break;
            case 7: // Received delayed preferred inv
            case 8: // Same, but non-preferred.
                peer = it == buffer.end() ? 0 : *(it++) % MAX_PEERS;
                txidnum = it == buffer.end() ? 0 : *(it++);
                delaynum = it == buffer.end() ? 0 : *(it++);
                tester.ReceivedInv(peer, txidnum % MAX_TXHASHES, (txidnum / MAX_TXHASHES) & 1, cmd & 1,
                    tester.Now() + DELAYS[delaynum]);
                break;
            case 9: // Requested tx from peer
                peer = it == buffer.end() ? 0 : *(it++) % MAX_PEERS;
                txidnum = it == buffer.end() ? 0 : *(it++);
                delaynum = it == buffer.end() ? 0 : *(it++);
                tester.RequestedTx(peer, txidnum % MAX_TXHASHES, tester.Now() + DELAYS[delaynum]);
                break;
            case 10: // Received response
                peer = it == buffer.end() ? 0 : *(it++) % MAX_PEERS;
                txidnum = it == buffer.end() ? 0 : *(it++);
                tester.ReceivedResponse(peer, txidnum % MAX_TXHASHES);
                break;
            default:
                assert(false);
            }
        }
        tester.Check();

    */
}