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

Side by Side Diff: net/base/capturing_net_log.h

Issue 4118004: Update NetLog to be thread safe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Final sync with trunk Created 10 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
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | net/base/capturing_net_log.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_BASE_CAPTURING_NET_LOG_H_ 5 #ifndef NET_BASE_CAPTURING_NET_LOG_H_
6 #define NET_BASE_CAPTURING_NET_LOG_H_ 6 #define NET_BASE_CAPTURING_NET_LOG_H_
7 #pragma once 7 #pragma once
8 8
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/atomicops.h"
11 #include "base/basictypes.h" 12 #include "base/basictypes.h"
13 #include "base/lock.h"
12 #include "base/ref_counted.h" 14 #include "base/ref_counted.h"
13 #include "base/scoped_ptr.h" 15 #include "base/scoped_ptr.h"
14 #include "base/time.h" 16 #include "base/time.h"
15 #include "net/base/net_log.h" 17 #include "net/base/net_log.h"
16 18
17 namespace net { 19 namespace net {
18 20
19 // CapturingNetLog is an implementation of NetLog that saves messages to a 21 // CapturingNetLog is an implementation of NetLog that saves messages to a
20 // bounded buffer. 22 // bounded buffer.
21 class CapturingNetLog : public NetLog { 23 class CapturingNetLog : public NetLog {
(...skipping 26 matching lines...) Expand all
48 // NetLog implementation: 50 // NetLog implementation:
49 virtual void AddEntry(EventType type, 51 virtual void AddEntry(EventType type,
50 const base::TimeTicks& time, 52 const base::TimeTicks& time,
51 const Source& source, 53 const Source& source,
52 EventPhase phase, 54 EventPhase phase,
53 EventParameters* extra_parameters); 55 EventParameters* extra_parameters);
54 virtual uint32 NextID(); 56 virtual uint32 NextID();
55 virtual LogLevel GetLogLevel() const { return LOG_ALL_BUT_BYTES; } 57 virtual LogLevel GetLogLevel() const { return LOG_ALL_BUT_BYTES; }
56 58
57 // Returns the list of all entries in the log. 59 // Returns the list of all entries in the log.
58 const EntryList& entries() const { return entries_; } 60 void GetEntries(EntryList* entry_list) const;
59 61
60 void Clear(); 62 void Clear();
61 63
62 private: 64 private:
63 uint32 next_id_; 65 // Needs to be "mutable" so can use it in GetEntries().
66 mutable Lock lock_;
67
68 // Last assigned source ID. Incremented to get the next one.
69 base::subtle::Atomic32 last_id_;
70
64 size_t max_num_entries_; 71 size_t max_num_entries_;
65 EntryList entries_; 72 EntryList entries_;
66 73
67 DISALLOW_COPY_AND_ASSIGN(CapturingNetLog); 74 DISALLOW_COPY_AND_ASSIGN(CapturingNetLog);
68 }; 75 };
69 76
70 // Helper class that exposes a similar API as BoundNetLog, but uses a 77 // Helper class that exposes a similar API as BoundNetLog, but uses a
71 // CapturingNetLog rather than the more generic NetLog. 78 // CapturingNetLog rather than the more generic NetLog.
72 // 79 //
73 // CapturingBoundNetLog can easily be converted to a BoundNetLog using the 80 // CapturingBoundNetLog can easily be converted to a BoundNetLog using the
74 // bound() method. 81 // bound() method.
75 class CapturingBoundNetLog { 82 class CapturingBoundNetLog {
76 public: 83 public:
77 CapturingBoundNetLog(const NetLog::Source& source, CapturingNetLog* net_log); 84 CapturingBoundNetLog(const NetLog::Source& source, CapturingNetLog* net_log);
78 85
79 explicit CapturingBoundNetLog(size_t max_num_entries); 86 explicit CapturingBoundNetLog(size_t max_num_entries);
80 87
81 ~CapturingBoundNetLog(); 88 ~CapturingBoundNetLog();
82 89
83 // The returned BoundNetLog is only valid while |this| is alive. 90 // The returned BoundNetLog is only valid while |this| is alive.
84 BoundNetLog bound() const { 91 BoundNetLog bound() const {
85 return BoundNetLog(source_, capturing_net_log_.get()); 92 return BoundNetLog(source_, capturing_net_log_.get());
86 } 93 }
87 94
88 // Returns the list of all entries in the log. 95 // Fills |entry_list| with all entries in the log.
89 const CapturingNetLog::EntryList& entries() const { 96 void GetEntries(CapturingNetLog::EntryList* entry_list) const;
90 return capturing_net_log_->entries();
91 }
92 97
93 void Clear(); 98 void Clear();
94 99
95 // Sends all of captured messages to |net_log|, using the same source ID
96 // as |net_log|.
97 void AppendTo(const BoundNetLog& net_log) const;
98
99 private: 100 private:
100 NetLog::Source source_; 101 NetLog::Source source_;
101 scoped_ptr<CapturingNetLog> capturing_net_log_; 102 scoped_ptr<CapturingNetLog> capturing_net_log_;
102 103
103 DISALLOW_COPY_AND_ASSIGN(CapturingBoundNetLog); 104 DISALLOW_COPY_AND_ASSIGN(CapturingBoundNetLog);
104 }; 105 };
105 106
106 } // namespace net 107 } // namespace net
107 108
108 #endif // NET_BASE_CAPTURING_NET_LOG_H_ 109 #endif // NET_BASE_CAPTURING_NET_LOG_H_
109 110
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | net/base/capturing_net_log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698