| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_RECORD_PARSED_H_ | 5 #ifndef NET_DNS_RECORD_PARSED_H_ |
| 6 #define NET_DNS_RECORD_PARSED_H_ | 6 #define NET_DNS_RECORD_PARSED_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/time.h" |
| 11 #include "net/base/net_export.h" | 12 #include "net/base/net_export.h" |
| 12 | 13 |
| 13 namespace net { | 14 namespace net { |
| 14 | 15 |
| 15 class DnsRecordParser; | 16 class DnsRecordParser; |
| 16 class RecordRdata; | 17 class RecordRdata; |
| 17 | 18 |
| 18 // Parsed record. This is a form of DnsResourceRecord where the rdata section | 19 // Parsed record. This is a form of DnsResourceRecord where the rdata section |
| 19 // has been parsed into a data structure. | 20 // has been parsed into a data structure. |
| 20 class NET_EXPORT_PRIVATE RecordParsed { | 21 class NET_EXPORT_PRIVATE RecordParsed { |
| 21 public: | 22 public: |
| 22 virtual ~RecordParsed(); | 23 virtual ~RecordParsed(); |
| 23 | 24 |
| 24 // All records are inherently immutable. Return a const pointer. | 25 // All records are inherently immutable. Return a const pointer. |
| 25 static scoped_ptr<const RecordParsed> CreateFrom(DnsRecordParser* parser); | 26 static scoped_ptr<const RecordParsed> CreateFrom(DnsRecordParser* parser, |
| 27 base::Time time_created); |
| 26 | 28 |
| 27 const std::string& name() const { return name_; } | 29 const std::string& name() const { return name_; } |
| 28 uint16 type() const { return type_; } | 30 uint16 type() const { return type_; } |
| 29 uint16 klass() const { return klass_; } | 31 uint16 klass() const { return klass_; } |
| 30 uint32 ttl() const { return ttl_; } | 32 uint32 ttl() const { return ttl_; } |
| 31 | 33 |
| 34 base::Time time_created() const { return time_created_; } |
| 35 |
| 32 template <class T> const T* rdata() const { | 36 template <class T> const T* rdata() const { |
| 33 if (T::kType != type_) | 37 if (T::kType != type_) |
| 34 return NULL; | 38 return NULL; |
| 35 return static_cast<const T*>(rdata_.get()); | 39 return static_cast<const T*>(rdata_.get()); |
| 36 } | 40 } |
| 37 | 41 |
| 42 // Check if two records have the same data. Ignores time_created and ttl. |
| 43 // If |is_mdns| is true, ignore the top bit of the class |
| 44 // (the cache flush bit). |
| 45 bool IsEqual(const RecordParsed* other, bool is_mdns) const; |
| 46 |
| 38 private: | 47 private: |
| 39 RecordParsed(const std::string& name, uint16 type, uint16 klass, uint32 ttl, | 48 RecordParsed(const std::string& name, uint16 type, uint16 klass, |
| 40 scoped_ptr<const RecordRdata> rdata); | 49 uint32 ttl, scoped_ptr<const RecordRdata> rdata, |
| 50 base::Time time_created); |
| 41 | 51 |
| 42 std::string name_; // in dotted form | 52 std::string name_; // in dotted form |
| 43 const uint16 type_; | 53 const uint16 type_; |
| 44 const uint16 klass_; | 54 const uint16 klass_; |
| 45 const uint32 ttl_; | 55 const uint32 ttl_; |
| 46 | 56 |
| 47 const scoped_ptr<const RecordRdata> rdata_; | 57 const scoped_ptr<const RecordRdata> rdata_; |
| 48 | 58 |
| 49 DISALLOW_COPY_AND_ASSIGN(RecordParsed); | 59 const base::Time time_created_; |
| 50 }; | 60 }; |
| 51 | 61 |
| 52 } // namespace net | 62 } // namespace net |
| 53 | 63 |
| 54 #endif // NET_DNS_RECORD_PARSED_H_ | 64 #endif // NET_DNS_RECORD_PARSED_H_ |
| OLD | NEW |