Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(231)

Side by Side Diff: net/dns/dns_query.h

Issue 8762001: Isolates generic DnsClient from AsyncHostResolver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: applied review Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_DNS_DNS_QUERY_H_ 5 #ifndef NET_DNS_DNS_QUERY_H_
6 #define NET_DNS_DNS_QUERY_H_ 6 #define NET_DNS_DNS_QUERY_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include "base/basictypes.h"
10
11 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
11 #include "base/string_piece.h"
12 #include "net/base/io_buffer.h"
mmenke 2011/12/06 20:43:01 Looks like you forward declare IOBufferWithSize, s
szym 2011/12/06 21:06:43 Done.
12 #include "net/base/net_export.h" 13 #include "net/base/net_export.h"
13 #include "net/base/rand_callback.h"
14 14
15 namespace net { 15 namespace net {
16 16
17 class IOBufferWithSize; 17 class IOBufferWithSize;
18 18
19 // Represents on-the-wire DNS query message as an object. 19 // Represents on-the-wire DNS query message as an object.
20 // TODO(szym): add support for the OPT pseudo-RR (EDNS0/DNSSEC).
20 class NET_EXPORT_PRIVATE DnsQuery { 21 class NET_EXPORT_PRIVATE DnsQuery {
21 public: 22 public:
22 // Constructs a query message from |qname| which *MUST* be in a valid 23 // Constructs a query message from |qname| which *MUST* be in a valid
23 // DNS name format, and |qtype| which must be either kDNS_A or kDNS_AAAA. 24 // DNS name format, and |qtype|. The qclass is set to IN.
24 25 DnsQuery(uint16 id, const base::StringPiece& qname, uint16 qtype);
25 // Every generated object has a random ID, hence two objects generated
26 // with the same set of constructor arguments are generally not equal;
27 // there is a 1/2^16 chance of them being equal due to size of |id_|.
28 DnsQuery(const std::string& qname,
29 uint16 qtype,
30 const RandIntCallback& rand_int_cb);
31 ~DnsQuery(); 26 ~DnsQuery();
32 27
33 // Clones |this| verbatim, with ID field of the header regenerated. 28 // Clones |this| verbatim, with ID field of the header set to |id|.
34 DnsQuery* CloneWithNewId() const; 29 DnsQuery* CloneWithNewId(uint16 id) const;
35 30
36 // DnsQuery field accessors. 31 // DnsQuery field accessors.
37 uint16 id() const; 32 uint16 id() const;
33 base::StringPiece qname() const;
38 uint16 qtype() const; 34 uint16 qtype() const;
39 35
40 // Returns the size of the Question section of the query. Used when 36 // Returns the Question section of the query. Used when matching the
41 // matching the response. 37 // response.
42 size_t question_size() const; 38 base::StringPiece question() const;
43
44 // Returns pointer to the Question section of the query. Used when
45 // matching the response.
46 const char* question_data() const;
47 39
48 // IOBuffer accessor to be used for writing out the query. 40 // IOBuffer accessor to be used for writing out the query.
49 IOBufferWithSize* io_buffer() const { return io_buffer_; } 41 IOBufferWithSize* io_buffer() const { return io_buffer_; }
50 42
51 private: 43 private:
52 const std::string qname() const; 44 DnsQuery(const DnsQuery& orig, uint16 id);
53
54 // Randomizes ID field of the query message.
55 void RandomizeId();
56 45
57 // Size of the DNS name (*NOT* hostname) we are trying to resolve; used 46 // Size of the DNS name (*NOT* hostname) we are trying to resolve; used
58 // to calculate offsets. 47 // to calculate offsets.
59 size_t qname_size_; 48 size_t qname_size_;
60 49
61 // Contains query bytes to be consumed by higher level Write() call. 50 // Contains query bytes to be consumed by higher level Write() call.
62 scoped_refptr<IOBufferWithSize> io_buffer_; 51 scoped_refptr<IOBufferWithSize> io_buffer_;
63 52
64 // PRNG function for generating IDs.
65 RandIntCallback rand_int_cb_;
66
67 DISALLOW_COPY_AND_ASSIGN(DnsQuery); 53 DISALLOW_COPY_AND_ASSIGN(DnsQuery);
68 }; 54 };
69 55
70 } // namespace net 56 } // namespace net
71 57
72 #endif // NET_DNS_DNS_QUERY_H_ 58 #endif // NET_DNS_DNS_QUERY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698