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

Side by Side Diff: chrome/browser/net/chrome_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/browser/io_thread.cc ('k') | chrome/browser/net/chrome_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 CHROME_BROWSER_NET_CHROME_NET_LOG_H_ 5 #ifndef CHROME_BROWSER_NET_CHROME_NET_LOG_H_
6 #define CHROME_BROWSER_NET_CHROME_NET_LOG_H_ 6 #define CHROME_BROWSER_NET_CHROME_NET_LOG_H_
7 #pragma once 7 #pragma once
8 8
9 #include <vector>
10
11 #include "base/atomicops.h"
12 #include "base/lock.h"
9 #include "base/observer_list.h" 13 #include "base/observer_list.h"
10 #include "base/scoped_ptr.h" 14 #include "base/scoped_ptr.h"
15 #include "chrome/browser/browser_thread.h"
11 #include "net/base/net_log.h" 16 #include "net/base/net_log.h"
12 17
13 class LoadTimingObserver; 18 class LoadTimingObserver;
14 class NetLogLogger; 19 class NetLogLogger;
15 class PassiveLogCollector; 20 class PassiveLogCollector;
16 21
17 // ChromeNetLog is an implementation of NetLog that dispatches network log 22 // ChromeNetLog is an implementation of NetLog that dispatches network log
18 // messages to a list of observers. 23 // messages to a list of observers.
19 // 24 //
25 // All methods are thread safe, with the exception that no ChromeNetLog or
26 // ChromeNetLog::ThreadSafeObserver functions may be called by an observer's
27 // OnAddEntry() method. Doing so will result in a deadlock.
28 //
20 // By default, ChromeNetLog will attach the observer PassiveLogCollector which 29 // By default, ChromeNetLog will attach the observer PassiveLogCollector which
21 // will keep track of recent request information (which used when displaying 30 // will keep track of recent request information (which used when displaying
22 // the about:net-internals page). 31 // the about:net-internals page).
23 // 32 //
24 // TODO(eroman): Move this default observer out of ChromeNetLog.
25 //
26 class ChromeNetLog : public net::NetLog { 33 class ChromeNetLog : public net::NetLog {
27 public: 34 public:
35 // This structure encapsulates all of the parameters of an event,
36 // including an "order" field that identifies when it was captured relative
37 // to other events.
38 struct Entry {
39 Entry(uint32 order,
40 net::NetLog::EventType type,
41 const base::TimeTicks& time,
42 net::NetLog::Source source,
43 net::NetLog::EventPhase phase,
44 net::NetLog::EventParameters* params);
45 ~Entry();
46
47 uint32 order;
48 net::NetLog::EventType type;
49 base::TimeTicks time;
50 net::NetLog::Source source;
51 net::NetLog::EventPhase phase;
52 scoped_refptr<net::NetLog::EventParameters> params;
53 };
54
55 typedef std::vector<Entry> EntryList;
56
28 // Interface for observing the events logged by the network stack. 57 // Interface for observing the events logged by the network stack.
29 class Observer { 58 class ThreadSafeObserver {
30 public: 59 public:
31 // Constructs an observer that wants to see network events, with 60 // Constructs an observer that wants to see network events, with
32 // the specified minimum event granularity. 61 // the specified minimum event granularity. A ThreadSafeObserver can only
62 // observe a single ChromeNetLog at a time.
33 // 63 //
34 // Typical observers should specify LOG_BASIC. 64 // Typical observers should specify LOG_BASIC.
35 // 65 //
36 // Observers that need to see the full granularity of events can 66 // Observers that need to see the full granularity of events can
37 // specify LOG_ALL. However doing so will have performance consequences, 67 // specify LOG_ALL. However doing so will have performance consequences,
38 // and may cause PassiveLogCollector to use more memory than anticiapted. 68 // and may cause PassiveLogCollector to use more memory than anticipated.
39 explicit Observer(LogLevel log_level); 69 //
70 // Observers will be called on the same thread an entry is added on,
71 // and are responsible for ensuring their own thread safety.
72 explicit ThreadSafeObserver(LogLevel log_level);
40 73
41 virtual ~Observer() {} 74 virtual ~ThreadSafeObserver();
75
76 // This method will be called on the thread that the event occurs on. It
77 // is the responsibility of the observer to handle it in a thread safe
78 // manner.
79 //
80 // It is illegal for an Observer to call any ChromeNetLog or
81 // ChromeNetLog::ThreadSafeObserver functions in response to a call to
82 // OnAddEntry.
42 virtual void OnAddEntry(EventType type, 83 virtual void OnAddEntry(EventType type,
43 const base::TimeTicks& time, 84 const base::TimeTicks& time,
44 const Source& source, 85 const Source& source,
45 EventPhase phase, 86 EventPhase phase,
46 EventParameters* params) = 0; 87 EventParameters* params) = 0;
47 LogLevel log_level() const; 88 LogLevel log_level() const;
89
48 protected: 90 protected:
49 void set_log_level(LogLevel log_level); 91 void AssertNetLogLockAcquired() const;
92
93 // Can only be called when actively observing a ChromeNetLog.
94 void SetLogLevel(LogLevel log_level);
95
96 // ChromeNetLog currently being observed, if any. Set by ChromeNetLog's
97 // AddObserver and RemoveObserver methods.
98 ChromeNetLog* net_log_;
99
50 private: 100 private:
101 friend class ChromeNetLog;
51 LogLevel log_level_; 102 LogLevel log_level_;
52 DISALLOW_COPY_AND_ASSIGN(Observer); 103 DISALLOW_COPY_AND_ASSIGN(ThreadSafeObserver);
53 }; 104 };
54 105
55 ChromeNetLog(); 106 ChromeNetLog();
56 ~ChromeNetLog(); 107 ~ChromeNetLog();
57 108
58 // NetLog implementation: 109 // NetLog implementation:
59 virtual void AddEntry(EventType type, 110 virtual void AddEntry(EventType type,
60 const base::TimeTicks& time, 111 const base::TimeTicks& time,
61 const Source& source, 112 const Source& source,
62 EventPhase phase, 113 EventPhase phase,
63 EventParameters* params); 114 EventParameters* params);
64 virtual uint32 NextID(); 115 virtual uint32 NextID();
65 virtual LogLevel GetLogLevel() const; 116 virtual LogLevel GetLogLevel() const;
66 117
67 void AddObserver(Observer* observer); 118 void AddObserver(ThreadSafeObserver* observer);
68 void RemoveObserver(Observer* observer); 119 void RemoveObserver(ThreadSafeObserver* observer);
69 120
70 PassiveLogCollector* passive_collector() { 121 // Adds |observer| and writes all passively captured events to
71 return passive_collector_.get(); 122 // |passive_entries|. Guarantees that no events in |passive_entries| will be
72 } 123 // sent to |observer| and all future events that have yet been sent to the
124 // PassiveLogCollector will be sent to |observer|.
125 void AddObserverAndGetAllPassivelyCapturedEvents(ThreadSafeObserver* observer,
126 EntryList* passive_entries);
127
128 void GetAllPassivelyCapturedEvents(EntryList* passive_entries);
129
130 void ClearAllPassivelyCapturedEvents();
73 131
74 LoadTimingObserver* load_timing_observer() { 132 LoadTimingObserver* load_timing_observer() {
75 return load_timing_observer_.get(); 133 return load_timing_observer_.get();
76 } 134 }
77 135
78 private: 136 private:
79 uint32 next_id_; 137 void AddObserverWhileLockHeld(ThreadSafeObserver* observer);
138
139 // Called whenever an observer is added or removed, or changes its log level.
140 // Must have acquired |lock_| prior to calling.
141 void UpdateLogLevel_();
142
143 // |lock_| protects access to |observers_| and, indirectly, to
144 // |passive_collector_|. Should not be acquired by observers.
145 Lock lock_;
146
147 // Last assigned source ID. Incremented to get the next one.
148 base::subtle::Atomic32 last_id_;
149
150 base::subtle::Atomic32 log_level_;
151
152 // Not thread safe. Must only be used when |lock_| is acquired.
80 scoped_ptr<PassiveLogCollector> passive_collector_; 153 scoped_ptr<PassiveLogCollector> passive_collector_;
154
81 scoped_ptr<LoadTimingObserver> load_timing_observer_; 155 scoped_ptr<LoadTimingObserver> load_timing_observer_;
82 scoped_ptr<NetLogLogger> net_log_logger_; 156 scoped_ptr<NetLogLogger> net_log_logger_;
83 157
84 // Note that this needs to be "mutable" so we can iterate over the observer 158 // |lock_| must be acquired whenever reading or writing to this.
85 // list in GetLogLevel(). 159 ObserverList<ThreadSafeObserver, true> observers_;
86 mutable ObserverList<Observer, true> observers_;
87 160
88 DISALLOW_COPY_AND_ASSIGN(ChromeNetLog); 161 DISALLOW_COPY_AND_ASSIGN(ChromeNetLog);
89 }; 162 };
90 163
91 #endif // CHROME_BROWSER_NET_CHROME_NET_LOG_H_ 164 #endif // CHROME_BROWSER_NET_CHROME_NET_LOG_H_
OLDNEW
« no previous file with comments | « chrome/browser/io_thread.cc ('k') | chrome/browser/net/chrome_net_log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698