1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef NET_SPDY_HPACK_HEADER_TABLE_H_
6 #define NET_SPDY_HPACK_HEADER_TABLE_H_
12 #include "base/basictypes.h"
13 #include "base/macros.h"
14 #include "net/base/net_export.h"
15 #include "net/spdy/hpack_entry.h"
17 // All section references below are to
18 // http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-08
22 using base::StringPiece
;
25 class HpackHeaderTablePeer
;
28 // A data structure for the static table (3.3.1) and the header table (3.3.2).
29 class NET_EXPORT_PRIVATE HpackHeaderTable
{
31 friend class test::HpackHeaderTablePeer
;
33 // HpackHeaderTable takes advantage of the deque property that references
34 // remain valid, so long as insertions & deletions are at the head & tail.
35 // If this changes (eg we start to drop entries from the middle of the table),
36 // this needs to be a std::list, in which case |*_index_| can be trivially
37 // extended to map to list iterators.
38 typedef std::deque
<HpackEntry
> EntryTable
;
40 // Implements a total ordering of HpackEntry on name(), value(), then index
41 // ascending. Note that index may change over the lifetime of an HpackEntry,
42 // but the relative index order of two entries will not. This comparator is
43 // composed with the 'lookup' HpackEntry constructor to allow for efficient
44 // lower-bounding of matching entries.
45 struct NET_EXPORT_PRIVATE EntryComparator
{
46 bool operator() (const HpackEntry
* lhs
, const HpackEntry
* rhs
) const;
48 typedef std::set
<HpackEntry
*, EntryComparator
> OrderedEntrySet
;
54 // Last-aknowledged value of SETTINGS_HEADER_TABLE_SIZE.
55 size_t settings_size_bound() { return settings_size_bound_
; }
57 // Current and maximum estimated byte size of the table, as described in
58 // 5.1. Notably, this is /not/ the number of entries in the table.
59 size_t size() const { return size_
; }
60 size_t max_size() const { return max_size_
; }
62 // Returns the entry matching the index, or NULL.
63 const HpackEntry
* GetByIndex(size_t index
);
65 // Returns the lowest-value entry having |name|, or NULL.
66 const HpackEntry
* GetByName(StringPiece name
);
68 // Returns the lowest-index matching entry, or NULL.
69 const HpackEntry
* GetByNameAndValue(StringPiece name
, StringPiece value
);
71 // Returns the index of an entry within this header table.
72 size_t IndexOf(const HpackEntry
* entry
) const;
74 // Sets the maximum size of the header table, evicting entries if
75 // necessary as described in 5.2.
76 void SetMaxSize(size_t max_size
);
78 // Sets the SETTINGS_HEADER_TABLE_SIZE bound of the table. Will call
79 // SetMaxSize() as needed to preserve max_size() <= settings_size_bound().
80 void SetSettingsHeaderTableSize(size_t settings_size
);
82 // Determine the set of entries which would be evicted by the insertion
83 // of |name| & |value| into the table, as per section 3.3.3. No eviction
84 // actually occurs. The set is returned via range [begin_out, end_out).
85 void EvictionSet(StringPiece name
,
87 EntryTable::iterator
* begin_out
,
88 EntryTable::iterator
* end_out
);
90 // Adds an entry for the representation, evicting entries as needed. |name|
91 // and |value| must not be owned by an entry which could be evicted. The
92 // added HpackEntry is returned, or NULL is returned if all entries were
93 // evicted and the empty table is of insufficent size for the representation.
94 const HpackEntry
* TryAddEntry(StringPiece name
, StringPiece value
);
96 void DebugLogTableState() const;
99 // Returns number of evictions required to enter |name| & |value|.
100 size_t EvictionCountForEntry(StringPiece name
, StringPiece value
) const;
102 // Returns number of evictions required to reclaim |reclaim_size| table size.
103 size_t EvictionCountToReclaim(size_t reclaim_size
) const;
105 // Evicts |count| oldest entries from the table.
106 void Evict(size_t count
);
108 // |static_entries_| and |static_index_| are owned by HpackStaticTable
110 const EntryTable
& static_entries_
;
111 EntryTable dynamic_entries_
;
113 const OrderedEntrySet
& static_index_
;
114 OrderedEntrySet dynamic_index_
;
116 // Last acknowledged value for SETTINGS_HEADER_TABLE_SIZE.
117 size_t settings_size_bound_
;
119 // Estimated current and maximum byte size of the table.
120 // |max_size_| <= |settings_header_table_size_|
124 // Total number of table insertions which have occurred. Referenced by
125 // IndexOf() for determination of an HpackEntry's table index.
126 size_t total_insertions_
;
128 DISALLOW_COPY_AND_ASSIGN(HpackHeaderTable
);
133 #endif // NET_SPDY_HPACK_HEADER_TABLE_H_