summaryrefslogtreecommitdiff
path: root/chromium/net/third_party/quiche/src/quic/test_tools/quic_interval_deque_peer.h
blob: de336e9f04b5d6a827195ff88f0107fbda80e8f0 (plain)
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
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef QUICHE_QUIC_TEST_TOOLS_QUIC_INTERVAL_DEQUE_PEER_H_
#define QUICHE_QUIC_TEST_TOOLS_QUIC_INTERVAL_DEQUE_PEER_H_

#include "quic/core/quic_interval_deque.h"

namespace quic {

namespace test {

class QuicIntervalDequePeer {
 public:
  template <class T, class C>
  static int32_t GetCachedIndex(QuicIntervalDeque<T, C>* interval_deque) {
    if (!interval_deque->cached_index_.has_value()) {
      return -1;
    }
    return interval_deque->cached_index_.value();
  }

  template <class T, class C>
  static T* GetItem(QuicIntervalDeque<T, C>* interval_deque,
                    const std::size_t index) {
    return &interval_deque->container_[index];
  }
};

}  // namespace test

}  // namespace quic

#endif  // QUICHE_QUIC_TEST_TOOLS_QUIC_INTERVAL_DEQUE_PEER_H_