Roll tools/swarming_client/ to b61a1802f5ef4bb8c7b81060cc80add47e6cf302.
[chromium-blink-merge.git] / net / spdy / hpack_entry.cc
blob169298e1c52d76d661f07e9b5456690642802f97
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 #include "net/spdy/hpack_entry.h"
7 #include "base/logging.h"
8 #include "base/strings/string_number_conversions.h"
9 #include "net/spdy/hpack_string_util.h"
11 namespace net {
13 using base::StringPiece;
15 const size_t HpackEntry::kSizeOverhead = 32;
17 HpackEntry::HpackEntry(StringPiece name,
18 StringPiece value,
19 bool is_static,
20 size_t insertion_index)
21 : name_(name.data(), name.size()),
22 value_(value.data(), value.size()),
23 insertion_index_(insertion_index),
24 type_(is_static ? STATIC : DYNAMIC) {
27 HpackEntry::HpackEntry(StringPiece name, StringPiece value)
28 : name_(name.data(), name.size()),
29 value_(value.data(), value.size()),
30 insertion_index_(0),
31 type_(LOOKUP) {
34 HpackEntry::HpackEntry()
35 : insertion_index_(0),
36 type_(LOOKUP) {
39 HpackEntry::~HpackEntry() {}
41 // static
42 size_t HpackEntry::Size(StringPiece name, StringPiece value) {
43 return name.size() + value.size() + kSizeOverhead;
45 size_t HpackEntry::Size() const {
46 return Size(name(), value());
49 std::string HpackEntry::GetDebugString() const {
50 return "{ name: \"" + name_ +
51 "\", value: \"" + value_ +
52 "\", " + (IsStatic() ? "static" : "dynamic") + " }";
55 } // namespace net