Add logging.store and logging.uploadStored to thunk.js for Hangouts.
[chromium-blink-merge.git] / net / quic / quic_utils.h
blob46652f201030c5c33e44892c96fe5e18d79d10ca
1 // Copyright (c) 2012 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.
4 //
5 // Some helpers for quic.
7 #ifndef NET_QUIC_QUIC_UTILS_H_
8 #define NET_QUIC_QUIC_UTILS_H_
10 #include <string>
12 #include "net/base/int128.h"
13 #include "net/base/net_export.h"
14 #include "net/quic/quic_protocol.h"
16 namespace net {
18 class NET_EXPORT_PRIVATE QuicUtils {
19 public:
20 enum Priority {
21 LOCAL_PRIORITY,
22 PEER_PRIORITY,
25 // Returns the 64 bit FNV1a hash of the data. See
26 // http://www.isthe.com/chongo/tech/comp/fnv/index.html#FNV-param
27 static uint64 FNV1a_64_Hash(const char* data, int len);
29 // returns the 128 bit FNV1a hash of the data. See
30 // http://www.isthe.com/chongo/tech/comp/fnv/index.html#FNV-param
31 static uint128 FNV1a_128_Hash(const char* data1, int len1);
33 // returns the 128 bit FNV1a hash of the two sequences of data. See
34 // http://www.isthe.com/chongo/tech/comp/fnv/index.html#FNV-param
35 static uint128 FNV1a_128_Hash_Two(const char* data1,
36 int len1,
37 const char* data2,
38 int len2);
40 // returns the 128 bit FNV1a hash of the |data|, starting with the
41 // previous hash.
42 static uint128 IncrementalHash(uint128 hash, const char* data, size_t len);
44 // FindMutualTag sets |out_result| to the first tag in the priority list that
45 // is also in the other list and returns true. If there is no intersection it
46 // returns false.
48 // Which list has priority is determined by |priority|.
50 // If |out_index| is non-nullptr and a match is found then the index of that
51 // match in |their_tags| is written to |out_index|.
52 static bool FindMutualTag(const QuicTagVector& our_tags,
53 const QuicTag* their_tags,
54 size_t num_their_tags,
55 Priority priority,
56 QuicTag* out_result,
57 size_t* out_index);
59 // SerializeUint128 writes the first 96 bits of |v| in little-endian form
60 // to |out|.
61 static void SerializeUint128Short(uint128 v, uint8* out);
63 // Returns the name of the QuicRstStreamErrorCode as a char*
64 static const char* StreamErrorToString(QuicRstStreamErrorCode error);
66 // Returns the name of the QuicErrorCode as a char*
67 static const char* ErrorToString(QuicErrorCode error);
69 // Returns the level of encryption as a char*
70 static const char* EncryptionLevelToString(EncryptionLevel level);
72 // Returns TransmissionType as a char*
73 static const char* TransmissionTypeToString(TransmissionType type);
75 // TagToString is a utility function for pretty-printing handshake messages
76 // that converts a tag to a string. It will try to maintain the human friendly
77 // name if possible (i.e. kABCD -> "ABCD"), or will just treat it as a number
78 // if not.
79 static std::string TagToString(QuicTag tag);
81 // Returns the list of QUIC tags represented by the comma separated
82 // string in |connection_options|.
83 static QuicTagVector ParseQuicConnectionOptions(
84 const std::string& connection_options);
86 // Given a binary buffer, return a hex+ASCII dump in the style of
87 // tcpdump's -X and -XX options:
88 // "0x0000: 0090 69bd 5400 000d 610f 0189 0800 4500 ..i.T...a.....E.\n"
89 // "0x0010: 001c fb98 4000 4001 7e18 d8ef 2301 455d ....@.@.~...#.E]\n"
90 // "0x0020: 7fe2 0800 6bcb 0bc6 806e ....k....n\n"
91 static std::string StringToHexASCIIDump(base::StringPiece in_buffer);
93 static char* AsChars(unsigned char* data) {
94 return reinterpret_cast<char*>(data);
97 static QuicPriority HighestPriority();
99 private:
100 DISALLOW_COPY_AND_ASSIGN(QuicUtils);
103 // Utility function that returns an IOVector object wrapped around |str|.
104 inline IOVector MakeIOVector(base::StringPiece str) {
105 IOVector iov;
106 iov.Append(const_cast<char*>(str.data()), str.size());
107 return iov;
110 } // namespace net
112 #endif // NET_QUIC_QUIC_UTILS_H_