[email protected] | 8291681 | 2012-02-21 04:14:17 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
license.bot | bf09a50 | 2008-08-24 00:55:55 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 4 | |
[email protected] | a5d1e1e | 2010-09-23 19:34:12 | [diff] [blame] | 5 | #ifndef CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_H_ |
| 6 | #define CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_H_ |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 7 | |
[email protected] | b7937d5b | 2008-09-10 22:12:19 | [diff] [blame] | 8 | #include <map> |
[email protected] | b7937d5b | 2008-09-10 22:12:19 | [diff] [blame] | 9 | #include <vector> |
| 10 | |
[email protected] | 5d438dbad | 2009-04-30 08:59:39 | [diff] [blame] | 11 | #include "base/basictypes.h" |
[email protected] | 20f5f8a3 | 2013-08-20 01:50:58 | [diff] [blame] | 12 | #include "base/callback_forward.h" |
[email protected] | a918f87 | 2010-06-01 14:30:51 | [diff] [blame] | 13 | #include "base/gtest_prod_util.h" |
[email protected] | 3b63f8f4 | 2011-03-28 01:54:15 | [diff] [blame] | 14 | #include "base/memory/ref_counted.h" |
| 15 | #include "base/memory/singleton.h" |
[email protected] | a754453c | 2009-07-15 20:32:51 | [diff] [blame] | 16 | #include "base/observer_list.h" |
[email protected] | 9f0abdb | 2013-06-10 21:49:34 | [diff] [blame] | 17 | #include "base/strings/string16.h" |
[email protected] | cc86ccfe | 2013-06-28 00:10:50 | [diff] [blame] | 18 | #include "base/timer/timer.h" |
[email protected] | b18943a | 2013-05-23 15:59:15 | [diff] [blame] | 19 | #include "chrome/browser/task_manager/resource_provider.h" |
[email protected] | ddeb0e843 | 2012-12-21 07:27:54 | [diff] [blame] | 20 | #include "chrome/browser/ui/host_desktop.h" |
[email protected] | fb246af | 2012-08-18 03:11:41 | [diff] [blame] | 21 | #include "content/public/common/gpu_memory_stats.h" |
[email protected] | 2255a933 | 2013-06-17 05:12:31 | [diff] [blame] | 22 | #include "third_party/WebKit/public/web/WebCache.h" |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 23 | |
[email protected] | b1de2c7 | 2013-02-06 02:45:47 | [diff] [blame] | 24 | class PrefRegistrySimple; |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 25 | class TaskManagerModel; |
[email protected] | 2344ca5 | 2012-08-22 22:46:05 | [diff] [blame] | 26 | class TaskManagerModelGpuDataManagerObserver; |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 27 | |
[email protected] | 176aa48 | 2008-11-14 03:25:15 | [diff] [blame] | 28 | namespace base { |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 29 | class ProcessMetrics; |
| 30 | } |
[email protected] | 1c321ee | 2012-05-21 03:02:34 | [diff] [blame] | 31 | |
[email protected] | 7ed0e8c | 2012-07-19 23:17:06 | [diff] [blame] | 32 | namespace content { |
| 33 | class WebContents; |
| 34 | } |
| 35 | |
[email protected] | 1c321ee | 2012-05-21 03:02:34 | [diff] [blame] | 36 | namespace extensions { |
| 37 | class Extension; |
| 38 | } |
| 39 | |
[email protected] | 6280b588 | 2012-06-05 21:56:41 | [diff] [blame] | 40 | namespace gfx { |
| 41 | class ImageSkia; |
| 42 | } |
| 43 | |
[email protected] | 8523ba5 | 2011-05-22 19:00:58 | [diff] [blame] | 44 | namespace net { |
| 45 | class URLRequest; |
| 46 | } |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 47 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 48 | // This class is a singleton. |
[email protected] | f9fdb07 | 2009-05-06 07:27:40 | [diff] [blame] | 49 | class TaskManager { |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 50 | public: |
[email protected] | b1de2c7 | 2013-02-06 02:45:47 | [diff] [blame] | 51 | static void RegisterPrefs(PrefRegistrySimple* registry); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 52 | |
[email protected] | 8f90afd7 | 2009-06-22 22:44:38 | [diff] [blame] | 53 | // Returns true if the process at the specified index is the browser process. |
| 54 | bool IsBrowserProcess(int index) const; |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 55 | |
[email protected] | 8f90afd7 | 2009-06-22 22:44:38 | [diff] [blame] | 56 | // Terminates the process at the specified index. |
| 57 | void KillProcess(int index); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 58 | |
[email protected] | 8f90afd7 | 2009-06-22 22:44:38 | [diff] [blame] | 59 | // Activates the browser tab associated with the process in the specified |
| 60 | // index. |
| 61 | void ActivateProcess(int index); |
[email protected] | b7937d5b | 2008-09-10 22:12:19 | [diff] [blame] | 62 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 63 | // These methods are invoked by the resource providers to add/remove resources |
| 64 | // to the Task Manager. Note that the resources are owned by the |
| 65 | // ResourceProviders and are not valid after StopUpdating() has been called |
| 66 | // on the ResourceProviders. |
[email protected] | b18943a | 2013-05-23 15:59:15 | [diff] [blame] | 67 | void AddResource(task_manager::Resource* resource); |
| 68 | void RemoveResource(task_manager::Resource* resource); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 69 | |
[email protected] | 9c5e417 | 2009-05-27 08:46:28 | [diff] [blame] | 70 | void OnWindowClosed(); |
| 71 | |
[email protected] | c43207e | 2010-11-15 18:09:52 | [diff] [blame] | 72 | // Invoked when a change to a resource has occurred that should cause any |
| 73 | // observers to completely refresh themselves (for example, the creation of |
| 74 | // a background resource in a process). Results in all observers receiving |
| 75 | // OnModelChanged() events. |
| 76 | void ModelChanged(); |
| 77 | |
[email protected] | 8f90afd7 | 2009-06-22 22:44:38 | [diff] [blame] | 78 | // Returns the singleton instance (and initializes it if necessary). |
| 79 | static TaskManager* GetInstance(); |
| 80 | |
| 81 | TaskManagerModel* model() const { return model_.get(); } |
| 82 | |
[email protected] | ddeb0e843 | 2012-12-21 07:27:54 | [diff] [blame] | 83 | void OpenAboutMemory(chrome::HostDesktopType desktop_type); |
[email protected] | 8f0d1a2 | 2009-10-08 19:55:14 | [diff] [blame] | 84 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 85 | private: |
[email protected] | a918f87 | 2010-06-01 14:30:51 | [diff] [blame] | 86 | FRIEND_TEST_ALL_PREFIXES(TaskManagerTest, Basic); |
| 87 | FRIEND_TEST_ALL_PREFIXES(TaskManagerTest, Resources); |
| 88 | FRIEND_TEST_ALL_PREFIXES(TaskManagerTest, RefreshCalled); |
[email protected] | 5ec892c | 2010-07-29 20:19:49 | [diff] [blame] | 89 | FRIEND_TEST_ALL_PREFIXES(TaskManagerWindowControllerTest, Init); |
| 90 | FRIEND_TEST_ALL_PREFIXES(TaskManagerWindowControllerTest, Sort); |
[email protected] | c1b7d8cca | 2010-08-07 23:07:58 | [diff] [blame] | 91 | FRIEND_TEST_ALL_PREFIXES(TaskManagerWindowControllerTest, |
| 92 | SelectionAdaptsToSorting); |
[email protected] | 1222cce | 2009-04-27 06:58:27 | [diff] [blame] | 93 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 94 | // Obtain an instance via GetInstance(). |
| 95 | TaskManager(); |
[email protected] | 5d438dbad | 2009-04-30 08:59:39 | [diff] [blame] | 96 | friend struct DefaultSingletonTraits<TaskManager>; |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 97 | |
| 98 | ~TaskManager(); |
| 99 | |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 100 | // The model used for gathering and processing task data. It is ref counted |
| 101 | // because it is passed as a parameter to MessageLoop::InvokeLater(). |
| 102 | scoped_refptr<TaskManagerModel> model_; |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 103 | |
[email protected] | bfac5ac | 2008-10-09 17:55:38 | [diff] [blame] | 104 | DISALLOW_COPY_AND_ASSIGN(TaskManager); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 105 | }; |
| 106 | |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 107 | class TaskManagerModelObserver { |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 108 | public: |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 109 | virtual ~TaskManagerModelObserver() {} |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 110 | |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 111 | // Invoked when the model has been completely changed. |
| 112 | virtual void OnModelChanged() = 0; |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 113 | |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 114 | // Invoked when a range of items has changed. |
| 115 | virtual void OnItemsChanged(int start, int length) = 0; |
| 116 | |
| 117 | // Invoked when new items are added. |
| 118 | virtual void OnItemsAdded(int start, int length) = 0; |
| 119 | |
| 120 | // Invoked when a range of items has been removed. |
| 121 | virtual void OnItemsRemoved(int start, int length) = 0; |
[email protected] | 8291681 | 2012-02-21 04:14:17 | [diff] [blame] | 122 | |
[email protected] | 350584cd | 2012-05-17 18:18:26 | [diff] [blame] | 123 | // Invoked when a range of items is to be immediately removed. It differs |
| 124 | // from OnItemsRemoved by the fact that the item is still in the task manager, |
| 125 | // so it can be queried for and found. |
| 126 | virtual void OnItemsToBeRemoved(int start, int length) {} |
| 127 | |
[email protected] | 8291681 | 2012-02-21 04:14:17 | [diff] [blame] | 128 | // Invoked when the initialization of the model has been finished and |
| 129 | // periodical updates is started. The first periodical update will be done |
| 130 | // in a few seconds. (depending on platform) |
| 131 | virtual void OnReadyPeriodicalUpdate() {} |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 132 | }; |
| 133 | |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 134 | // The model used by TaskManager. |
| 135 | // |
[email protected] | b18943a | 2013-05-23 15:59:15 | [diff] [blame] | 136 | // TaskManagerModel caches the values from all task_manager::Resources. This is |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 137 | // done so the UI sees a consistant view of the resources until it is told a |
| 138 | // value has been updated. |
[email protected] | 8523ba5 | 2011-05-22 19:00:58 | [diff] [blame] | 139 | class TaskManagerModel : public base::RefCountedThreadSafe<TaskManagerModel> { |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 140 | public: |
[email protected] | abd81a52 | 2012-03-02 16:12:45 | [diff] [blame] | 141 | // (start, length) |
| 142 | typedef std::pair<int, int> GroupRange; |
| 143 | |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 144 | explicit TaskManagerModel(TaskManager* task_manager); |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 145 | |
[email protected] | a754453c | 2009-07-15 20:32:51 | [diff] [blame] | 146 | void AddObserver(TaskManagerModelObserver* observer); |
| 147 | void RemoveObserver(TaskManagerModelObserver* observer); |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 148 | |
| 149 | // Returns number of registered resources. |
| 150 | int ResourceCount() const; |
[email protected] | 9f5d3e18 | 2011-07-11 06:22:29 | [diff] [blame] | 151 | // Returns number of registered groups. |
| 152 | int GroupCount() const; |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 153 | |
[email protected] | 8a661f8 | 2010-10-19 21:47:11 | [diff] [blame] | 154 | // Methods to return raw resource information. |
[email protected] | bb4ee2d | 2014-01-10 02:12:59 | [diff] [blame] | 155 | int GetNaClDebugStubPort(int index) const; |
[email protected] | 8a661f8 | 2010-10-19 21:47:11 | [diff] [blame] | 156 | int64 GetNetworkUsage(int index) const; |
| 157 | double GetCPUUsage(int index) const; |
[email protected] | ac6d065 | 2014-01-14 00:06:37 | [diff] [blame] | 158 | int GetIdleWakeupsPerSecond(int index) const; |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 159 | base::ProcessId GetProcessId(int index) const; |
[email protected] | 350584cd | 2012-05-17 18:18:26 | [diff] [blame] | 160 | base::ProcessHandle GetProcess(int index) const; |
[email protected] | 8a661f8 | 2010-10-19 21:47:11 | [diff] [blame] | 161 | |
[email protected] | 36cdba0 | 2013-01-12 20:16:40 | [diff] [blame] | 162 | // Catchall method that calls off to the appropriate GetResourceXXX method |
| 163 | // based on |col_id|. |col_id| is an IDS_ value used to identify the column. |
[email protected] | 0085863a | 2013-12-06 21:19:03 | [diff] [blame] | 164 | base::string16 GetResourceById(int index, int col_id) const; |
[email protected] | 36cdba0 | 2013-01-12 20:16:40 | [diff] [blame] | 165 | |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 166 | // Methods to return formatted resource information. |
[email protected] | 0085863a | 2013-12-06 21:19:03 | [diff] [blame] | 167 | const base::string16& GetResourceTitle(int index) const; |
| 168 | const base::string16& GetResourceProfileName(int index) const; |
[email protected] | bb4ee2d | 2014-01-10 02:12:59 | [diff] [blame] | 169 | base::string16 GetResourceNaClDebugStubPort(int index) const; |
[email protected] | 0085863a | 2013-12-06 21:19:03 | [diff] [blame] | 170 | base::string16 GetResourceNetworkUsage(int index) const; |
| 171 | base::string16 GetResourceCPUUsage(int index) const; |
| 172 | base::string16 GetResourcePrivateMemory(int index) const; |
| 173 | base::string16 GetResourceSharedMemory(int index) const; |
| 174 | base::string16 GetResourcePhysicalMemory(int index) const; |
| 175 | base::string16 GetResourceProcessId(int index) const; |
| 176 | base::string16 GetResourceGDIHandles(int index) const; |
| 177 | base::string16 GetResourceUSERHandles(int index) const; |
| 178 | base::string16 GetResourceWebCoreImageCacheSize(int index) const; |
| 179 | base::string16 GetResourceWebCoreScriptsCacheSize(int index) const; |
| 180 | base::string16 GetResourceWebCoreCSSCacheSize(int index) const; |
| 181 | base::string16 GetResourceVideoMemory(int index) const; |
[email protected] | 0085863a | 2013-12-06 21:19:03 | [diff] [blame] | 182 | base::string16 GetResourceSqliteMemoryUsed(int index) const; |
[email protected] | ac6d065 | 2014-01-14 00:06:37 | [diff] [blame] | 183 | base::string16 GetResourceIdleWakeupsPerSecond(int index) const; |
[email protected] | 0085863a | 2013-12-06 21:19:03 | [diff] [blame] | 184 | base::string16 GetResourceV8MemoryAllocatedSize(int index) const; |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 185 | |
[email protected] | 8a661f8 | 2010-10-19 21:47:11 | [diff] [blame] | 186 | // Gets the private memory (in bytes) that should be displayed for the passed |
| 187 | // resource index. Caches the result since this calculation can take time on |
| 188 | // some platforms. |
| 189 | bool GetPrivateMemory(int index, size_t* result) const; |
| 190 | |
| 191 | // Gets the shared memory (in bytes) that should be displayed for the passed |
| 192 | // resource index. Caches the result since this calculation can take time on |
| 193 | // some platforms. |
| 194 | bool GetSharedMemory(int index, size_t* result) const; |
| 195 | |
| 196 | // Gets the physical memory (in bytes) that should be displayed for the passed |
| 197 | // resource index. |
| 198 | bool GetPhysicalMemory(int index, size_t* result) const; |
| 199 | |
[email protected] | f293747 | 2013-03-18 21:48:34 | [diff] [blame] | 200 | // On Windows, get the current and peak number of GDI handles in use. |
| 201 | void GetGDIHandles(int index, size_t* current, size_t* peak) const; |
| 202 | |
| 203 | // On Windows, get the current and peak number of USER handles in use. |
| 204 | void GetUSERHandles(int index, size_t* current, size_t* peak) const; |
| 205 | |
[email protected] | 5d8c0b9 | 2011-07-21 07:53:32 | [diff] [blame] | 206 | // Gets the statuses of webkit. Return false if the resource for the given row |
| 207 | // isn't a renderer. |
| 208 | bool GetWebCoreCacheStats(int index, |
[email protected] | a1221aea | 2013-11-07 01:31:30 | [diff] [blame] | 209 | blink::WebCache::ResourceTypeStats* result) const; |
[email protected] | 5d8c0b9 | 2011-07-21 07:53:32 | [diff] [blame] | 210 | |
[email protected] | fb246af | 2012-08-18 03:11:41 | [diff] [blame] | 211 | // Gets the GPU memory allocated of the given page. |
| 212 | bool GetVideoMemory(int index, |
| 213 | size_t* video_memory, |
| 214 | bool* has_duplicates) const; |
| 215 | |
[email protected] | 5d8c0b9 | 2011-07-21 07:53:32 | [diff] [blame] | 216 | // Gets the sqlite memory (in byte). Return false if the resource for the |
| 217 | // given row doesn't report information. |
| 218 | bool GetSqliteMemoryUsedBytes(int index, size_t* result) const; |
| 219 | |
[email protected] | 8a661f8 | 2010-10-19 21:47:11 | [diff] [blame] | 220 | // Gets the amount of memory allocated for javascript. Returns false if the |
| 221 | // resource for the given row isn't a renderer. |
| 222 | bool GetV8Memory(int index, size_t* result) const; |
| 223 | |
[email protected] | 350584cd | 2012-05-17 18:18:26 | [diff] [blame] | 224 | // Gets the amount of memory used for javascript. Returns false if the |
| 225 | // resource for the given row isn't a renderer. |
| 226 | bool GetV8MemoryUsed(int index, size_t* result) const; |
| 227 | |
[email protected] | 374bf59 | 2011-11-10 15:42:18 | [diff] [blame] | 228 | // Returns true if resource for the given row can be activated. |
| 229 | bool CanActivate(int index) const; |
| 230 | |
[email protected] | 9f5d3e18 | 2011-07-11 06:22:29 | [diff] [blame] | 231 | // Returns true if the resource is first/last in its group (resources |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 232 | // rendered by the same process are groupped together). |
| 233 | bool IsResourceFirstInGroup(int index) const; |
[email protected] | 9f5d3e18 | 2011-07-11 06:22:29 | [diff] [blame] | 234 | bool IsResourceLastInGroup(int index) const; |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 235 | |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 236 | // Returns icon to be used for resource (for example a favicon). |
[email protected] | 6280b588 | 2012-06-05 21:56:41 | [diff] [blame] | 237 | gfx::ImageSkia GetResourceIcon(int index) const; |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 238 | |
[email protected] | abd81a52 | 2012-03-02 16:12:45 | [diff] [blame] | 239 | // Returns the group range of resource. |
| 240 | GroupRange GetGroupRangeForResource(int index) const; |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 241 | |
[email protected] | 9f5d3e18 | 2011-07-11 06:22:29 | [diff] [blame] | 242 | // Returns an index of groups to which the resource belongs. |
| 243 | int GetGroupIndexForResource(int index) const; |
| 244 | |
| 245 | // Returns an index of resource which belongs to the |group_index|th group |
| 246 | // and which is the |index_in_group|th resource in group. |
| 247 | int GetResourceIndexForGroup(int group_index, int index_in_group) const; |
| 248 | |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 249 | // Compares values in column |col_id| and rows |row1|, |row2|. |
| 250 | // Returns -1 if value in |row1| is less than value in |row2|, |
| 251 | // 0 if they are equal, and 1 otherwise. |
| 252 | int CompareValues(int row1, int row2, int col_id) const; |
| 253 | |
[email protected] | 6bfb6e70 | 2012-04-05 17:18:22 | [diff] [blame] | 254 | // Returns the unique child process ID generated by Chromium, not the OS |
| 255 | // process id. This is used to identify processes internally and for |
| 256 | // extensions. It is not meant to be displayed to the user. |
| 257 | int GetUniqueChildProcessId(int index) const; |
| 258 | |
[email protected] | 8a661f8 | 2010-10-19 21:47:11 | [diff] [blame] | 259 | // Returns the type of the given resource. |
[email protected] | b18943a | 2013-05-23 15:59:15 | [diff] [blame] | 260 | task_manager::Resource::Type GetResourceType(int index) const; |
[email protected] | 8a661f8 | 2010-10-19 21:47:11 | [diff] [blame] | 261 | |
[email protected] | 7ed0e8c | 2012-07-19 23:17:06 | [diff] [blame] | 262 | // Returns WebContents of given resource or NULL if not applicable. |
| 263 | content::WebContents* GetResourceWebContents(int index) const; |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 264 | |
[email protected] | b18943a | 2013-05-23 15:59:15 | [diff] [blame] | 265 | void AddResource(task_manager::Resource* resource); |
| 266 | void RemoveResource(task_manager::Resource* resource); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 267 | |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 268 | void StartUpdating(); |
| 269 | void StopUpdating(); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 270 | |
[email protected] | 350584cd | 2012-05-17 18:18:26 | [diff] [blame] | 271 | // Listening involves calling StartUpdating on all resource providers. This |
| 272 | // causes all of them to subscribe to notifications and enumerate current |
| 273 | // resources. It differs from StartUpdating that it doesn't start the |
| 274 | // Refresh timer. The end result is that we have a full view of resources, but |
| 275 | // don't spend unneeded time updating, unless we have a real need to. |
| 276 | void StartListening(); |
| 277 | void StopListening(); |
| 278 | |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 279 | void Clear(); // Removes all items. |
| 280 | |
[email protected] | c43207e | 2010-11-15 18:09:52 | [diff] [blame] | 281 | // Sends OnModelChanged() to all observers to inform them of significant |
| 282 | // changes to the model. |
| 283 | void ModelChanged(); |
| 284 | |
[email protected] | 156402ab | 2013-09-04 21:12:31 | [diff] [blame] | 285 | // Updates the values for all rows. |
| 286 | void Refresh(); |
| 287 | |
[email protected] | ec977368 | 2009-09-25 17:59:03 | [diff] [blame] | 288 | void NotifyResourceTypeStats( |
[email protected] | 38b48a8 | 2009-11-11 01:51:32 | [diff] [blame] | 289 | base::ProcessId renderer_id, |
[email protected] | a1221aea | 2013-11-07 01:31:30 | [diff] [blame] | 290 | const blink::WebCache::ResourceTypeStats& stats); |
[email protected] | ec977368 | 2009-09-25 17:59:03 | [diff] [blame] | 291 | |
[email protected] | fb246af | 2012-08-18 03:11:41 | [diff] [blame] | 292 | void NotifyVideoMemoryUsageStats( |
| 293 | const content::GPUVideoMemoryUsageStats& video_memory_usage_stats); |
| 294 | |
[email protected] | 38b48a8 | 2009-11-11 01:51:32 | [diff] [blame] | 295 | void NotifyV8HeapStats(base::ProcessId renderer_id, |
| 296 | size_t v8_memory_allocated, |
| 297 | size_t v8_memory_used); |
| 298 | |
[email protected] | 8523ba5 | 2011-05-22 19:00:58 | [diff] [blame] | 299 | void NotifyBytesRead(const net::URLRequest& request, int bytes_read); |
| 300 | |
[email protected] | 20f5f8a3 | 2013-08-20 01:50:58 | [diff] [blame] | 301 | void RegisterOnDataReadyCallback(const base::Closure& callback); |
| 302 | |
| 303 | void NotifyDataReady(); |
| 304 | |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 305 | private: |
[email protected] | e6e6ba4 | 2009-11-07 01:56:19 | [diff] [blame] | 306 | friend class base::RefCountedThreadSafe<TaskManagerModel>; |
[email protected] | 5b931c8 | 2014-03-05 19:44:38 | [diff] [blame] | 307 | friend class TaskManagerBrowserTest; |
[email protected] | 8a661f8 | 2010-10-19 21:47:11 | [diff] [blame] | 308 | FRIEND_TEST_ALL_PREFIXES(ExtensionApiTest, ProcessesVsTaskManager); |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 309 | FRIEND_TEST_ALL_PREFIXES(TaskManagerTest, RefreshCalled); |
| 310 | FRIEND_TEST_ALL_PREFIXES(TaskManagerWindowControllerTest, |
| 311 | SelectionAdaptsToSorting); |
[email protected] | e6e6ba4 | 2009-11-07 01:56:19 | [diff] [blame] | 312 | |
[email protected] | bfac5ac | 2008-10-09 17:55:38 | [diff] [blame] | 313 | enum UpdateState { |
| 314 | IDLE = 0, // Currently not updating. |
| 315 | TASK_PENDING, // An update task is pending. |
| 316 | STOPPING // A update task is pending and it should stop the update. |
| 317 | }; |
| 318 | |
[email protected] | a9bd323d | 2013-06-17 20:27:56 | [diff] [blame] | 319 | // The delay between updates of the information (in ms). |
| 320 | #if defined(OS_MACOSX) |
| 321 | // Match Activity Monitor's default refresh rate. |
| 322 | static const int kUpdateTimeMs = 2000; |
| 323 | #else |
| 324 | static const int kUpdateTimeMs = 1000; |
| 325 | #endif |
| 326 | |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 327 | // Values cached per resource. Values are validated on demand. The is_XXX |
| 328 | // members indicate if a value is valid. |
| 329 | struct PerResourceValues { |
| 330 | PerResourceValues(); |
| 331 | ~PerResourceValues(); |
| 332 | |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 333 | bool is_title_valid; |
[email protected] | 0085863a | 2013-12-06 21:19:03 | [diff] [blame] | 334 | base::string16 title; |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 335 | |
| 336 | bool is_profile_name_valid; |
[email protected] | 0085863a | 2013-12-06 21:19:03 | [diff] [blame] | 337 | base::string16 profile_name; |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 338 | |
| 339 | // No is_network_usage since default (0) is fine. |
| 340 | int64 network_usage; |
| 341 | |
| 342 | bool is_process_id_valid; |
| 343 | base::ProcessId process_id; |
| 344 | |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 345 | bool is_webcore_stats_valid; |
[email protected] | a1221aea | 2013-11-07 01:31:30 | [diff] [blame] | 346 | blink::WebCache::ResourceTypeStats webcore_stats; |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 347 | |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 348 | bool is_sqlite_memory_bytes_valid; |
| 349 | size_t sqlite_memory_bytes; |
| 350 | |
| 351 | bool is_v8_memory_valid; |
| 352 | size_t v8_memory_allocated; |
| 353 | size_t v8_memory_used; |
| 354 | }; |
| 355 | |
| 356 | // Values cached per process. Values are validated on demand. The is_XXX |
| 357 | // members indicate if a value is valid. |
| 358 | struct PerProcessValues { |
| 359 | PerProcessValues(); |
| 360 | ~PerProcessValues(); |
| 361 | |
| 362 | bool is_cpu_usage_valid; |
| 363 | double cpu_usage; |
| 364 | |
[email protected] | ac6d065 | 2014-01-14 00:06:37 | [diff] [blame] | 365 | bool is_idle_wakeups_valid; |
| 366 | int idle_wakeups; |
| 367 | |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 368 | bool is_private_and_shared_valid; |
| 369 | size_t private_bytes; |
| 370 | size_t shared_bytes; |
| 371 | |
| 372 | bool is_physical_memory_valid; |
| 373 | size_t physical_memory; |
| 374 | |
| 375 | bool is_video_memory_valid; |
| 376 | size_t video_memory; |
| 377 | bool video_memory_has_duplicates; |
[email protected] | f293747 | 2013-03-18 21:48:34 | [diff] [blame] | 378 | |
| 379 | bool is_gdi_handles_valid; |
| 380 | size_t gdi_handles; |
| 381 | size_t gdi_handles_peak; |
| 382 | |
| 383 | bool is_user_handles_valid; |
| 384 | size_t user_handles; |
| 385 | size_t user_handles_peak; |
[email protected] | 0c94bdf | 2014-05-17 01:03:21 | [diff] [blame] | 386 | |
| 387 | bool is_nacl_debug_stub_port_valid; |
| 388 | int nacl_debug_stub_port; |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 389 | }; |
| 390 | |
[email protected] | b18943a | 2013-05-23 15:59:15 | [diff] [blame] | 391 | typedef std::vector<task_manager::Resource*> ResourceList; |
| 392 | typedef std::vector<scoped_refptr<task_manager::ResourceProvider> > |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 393 | ResourceProviderList; |
[email protected] | 7ceb3dc | 2014-05-19 14:12:22 | [diff] [blame] | 394 | typedef std::map<base::ProcessHandle, ResourceList> GroupMap; |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 395 | typedef std::map<base::ProcessHandle, base::ProcessMetrics*> MetricsMap; |
[email protected] | b18943a | 2013-05-23 15:59:15 | [diff] [blame] | 396 | typedef std::map<task_manager::Resource*, int64> ResourceValueMap; |
| 397 | typedef std::map<task_manager::Resource*, |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 398 | PerResourceValues> PerResourceCache; |
| 399 | typedef std::map<base::ProcessHandle, PerProcessValues> PerProcessCache; |
| 400 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 401 | // This struct is used to exchange information between the io and ui threads. |
| 402 | struct BytesReadParam { |
[email protected] | cdf682e | 2011-02-05 05:11:28 | [diff] [blame] | 403 | BytesReadParam(int origin_pid, |
[email protected] | 3b490c8 | 2014-01-03 00:17:47 | [diff] [blame] | 404 | int child_id, |
| 405 | int route_id, |
[email protected] | 76543b9 | 2009-08-31 17:27:45 | [diff] [blame] | 406 | int byte_count) |
[email protected] | cdf682e | 2011-02-05 05:11:28 | [diff] [blame] | 407 | : origin_pid(origin_pid), |
[email protected] | 3b490c8 | 2014-01-03 00:17:47 | [diff] [blame] | 408 | child_id(child_id), |
| 409 | route_id(route_id), |
[email protected] | 76543b9 | 2009-08-31 17:27:45 | [diff] [blame] | 410 | byte_count(byte_count) {} |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 411 | |
[email protected] | cdf682e | 2011-02-05 05:11:28 | [diff] [blame] | 412 | // The process ID that triggered the request. For plugin requests this |
| 413 | // will differ from the renderer process ID. |
| 414 | int origin_pid; |
[email protected] | 76543b9 | 2009-08-31 17:27:45 | [diff] [blame] | 415 | |
[email protected] | 3b490c8 | 2014-01-03 00:17:47 | [diff] [blame] | 416 | // The child ID of the process this request was routed through. |
| 417 | int child_id; |
[email protected] | 76543b9 | 2009-08-31 17:27:45 | [diff] [blame] | 418 | |
[email protected] | 3b490c8 | 2014-01-03 00:17:47 | [diff] [blame] | 419 | int route_id; |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 420 | int byte_count; |
| 421 | }; |
| 422 | |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 423 | ~TaskManagerModel(); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 424 | |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 425 | // Callback from the timer to refresh. Invokes Refresh() as appropriate. |
| 426 | void RefreshCallback(); |
| 427 | |
[email protected] | fb246af | 2012-08-18 03:11:41 | [diff] [blame] | 428 | void RefreshVideoMemoryUsageStats(); |
| 429 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 430 | // Returns the network usage (in bytes per seconds) for the specified |
| 431 | // resource. That's the value retrieved at the last timer's tick. |
[email protected] | b18943a | 2013-05-23 15:59:15 | [diff] [blame] | 432 | int64 GetNetworkUsageForResource(task_manager::Resource* resource) const; |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 433 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 434 | // Called on the UI thread when some bytes are read. |
| 435 | void BytesRead(BytesReadParam param); |
| 436 | |
[email protected] | f173d15 | 2012-10-17 21:02:41 | [diff] [blame] | 437 | void MultipleBytesRead(const std::vector<BytesReadParam>* params); |
| 438 | |
| 439 | // Notifies the UI thread about all the bytes read. Allows for coalescing |
| 440 | // multiple bytes read into a single task for the UI thread. This is important |
| 441 | // for when downloading a lot of data on the IO thread, since posting a Task |
| 442 | // for each one is expensive. |
| 443 | void NotifyMultipleBytesRead(); |
| 444 | |
tonyg | d2ba7bc | 2014-09-08 23:37:10 | [diff] [blame] | 445 | // Called on the IO thread to start/stop updating byte counts. |
| 446 | void SetUpdatingByteCount(bool is_updating); |
| 447 | |
[email protected] | bfac5ac | 2008-10-09 17:55:38 | [diff] [blame] | 448 | // Returns the network usage (in byte per second) that should be displayed for |
| 449 | // the passed |resource|. -1 means the information is not available for that |
| 450 | // resource. |
[email protected] | b18943a | 2013-05-23 15:59:15 | [diff] [blame] | 451 | int64 GetNetworkUsage(task_manager::Resource* resource) const; |
[email protected] | bfac5ac | 2008-10-09 17:55:38 | [diff] [blame] | 452 | |
| 453 | // Returns the CPU usage (in %) that should be displayed for the passed |
| 454 | // |resource|. |
[email protected] | b18943a | 2013-05-23 15:59:15 | [diff] [blame] | 455 | double GetCPUUsage(task_manager::Resource* resource) const; |
[email protected] | bfac5ac | 2008-10-09 17:55:38 | [diff] [blame] | 456 | |
[email protected] | ac6d065 | 2014-01-14 00:06:37 | [diff] [blame] | 457 | // Returns the idle wakeups that should be displayed for the passed |
| 458 | // |resource|. |
| 459 | int GetIdleWakeupsPerSecond(task_manager::Resource* resource) const; |
| 460 | |
[email protected] | d0767cb54 | 2009-10-08 17:38:30 | [diff] [blame] | 461 | // Given a number, this function returns the formatted string that should be |
| 462 | // displayed in the task manager's memory cell. |
[email protected] | 0085863a | 2013-12-06 21:19:03 | [diff] [blame] | 463 | base::string16 GetMemCellText(int64 number) const; |
[email protected] | 2a5af8a | 2009-01-23 23:13:05 | [diff] [blame] | 464 | |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 465 | // Verifies the private and shared memory for |handle| is valid in |
| 466 | // |per_process_cache_|. Returns true if the data in |per_process_cache_| is |
| 467 | // valid. |
| 468 | bool CachePrivateAndSharedMemory(base::ProcessHandle handle) const; |
| 469 | |
| 470 | // Verifies |webcore_stats| in |per_resource_cache_|, returning true on |
| 471 | // success. |
| 472 | bool CacheWebCoreStats(int index) const; |
| 473 | |
| 474 | // Verifies |v8_memory_allocated| and |v8_memory_used| in |
| 475 | // |per_resource_cache_|. Returns true if valid, false if not valid. |
| 476 | bool CacheV8Memory(int index) const; |
[email protected] | 98947a0 | 2010-05-11 17:46:08 | [diff] [blame] | 477 | |
[email protected] | 0f4ffe84 | 2011-03-30 18:59:46 | [diff] [blame] | 478 | // Adds a resource provider to be managed. |
[email protected] | b18943a | 2013-05-23 15:59:15 | [diff] [blame] | 479 | void AddResourceProvider(task_manager::ResourceProvider* provider); |
[email protected] | 0f4ffe84 | 2011-03-30 18:59:46 | [diff] [blame] | 480 | |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 481 | // Returns the PerResourceValues for the specified index. |
| 482 | PerResourceValues& GetPerResourceValues(int index) const; |
| 483 | |
| 484 | // Returns the Resource for the specified index. |
[email protected] | b18943a | 2013-05-23 15:59:15 | [diff] [blame] | 485 | task_manager::Resource* GetResource(int index) const; |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 486 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 487 | // The list of providers to the task manager. They are ref counted. |
| 488 | ResourceProviderList providers_; |
| 489 | |
| 490 | // The list of all the resources displayed in the task manager. They are owned |
| 491 | // by the ResourceProviders. |
| 492 | ResourceList resources_; |
| 493 | |
| 494 | // A map to keep tracks of the grouped resources (they are grouped if they |
| 495 | // share the same process). The groups (the Resources vectors) are owned by |
| 496 | // the model (but the actual Resources are owned by the ResourceProviders). |
| 497 | GroupMap group_map_; |
| 498 | |
| 499 | // A map to retrieve the process metrics for a process. The ProcessMetrics are |
| 500 | // owned by the model. |
| 501 | MetricsMap metrics_map_; |
| 502 | |
| 503 | // A map that keeps track of the number of bytes read per process since last |
| 504 | // tick. The Resources are owned by the ResourceProviders. |
| 505 | ResourceValueMap current_byte_count_map_; |
| 506 | |
[email protected] | fb246af | 2012-08-18 03:11:41 | [diff] [blame] | 507 | // A map that contains the video memory usage for a process |
| 508 | content::GPUVideoMemoryUsageStats video_memory_usage_stats_; |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 509 | |
| 510 | // Set to true when we've requested video stats and false once we get them. |
[email protected] | fb246af | 2012-08-18 03:11:41 | [diff] [blame] | 511 | bool pending_video_memory_usage_stats_update_; |
| 512 | |
[email protected] | 2344ca5 | 2012-08-22 22:46:05 | [diff] [blame] | 513 | // An observer waiting for video memory usage stats updates from the GPU |
| 514 | // process |
| 515 | scoped_ptr<TaskManagerModelGpuDataManagerObserver> |
| 516 | video_memory_usage_stats_observer_; |
| 517 | |
[email protected] | a754453c | 2009-07-15 20:32:51 | [diff] [blame] | 518 | ObserverList<TaskManagerModelObserver> observer_list_; |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 519 | |
[email protected] | 8a661f8 | 2010-10-19 21:47:11 | [diff] [blame] | 520 | // How many calls to StartUpdating have been made without matching calls to |
| 521 | // StopUpdating. |
| 522 | int update_requests_; |
| 523 | |
[email protected] | 350584cd | 2012-05-17 18:18:26 | [diff] [blame] | 524 | // How many calls to StartListening have been made without matching calls to |
| 525 | // StopListening. |
| 526 | int listen_requests_; |
| 527 | |
[email protected] | bfac5ac | 2008-10-09 17:55:38 | [diff] [blame] | 528 | // Whether we are currently in the process of updating. |
| 529 | UpdateState update_state_; |
| 530 | |
tonyg | d2ba7bc | 2014-09-08 23:37:10 | [diff] [blame] | 531 | // Whether the IO thread is currently in the process of updating; accessed |
| 532 | // only on the IO thread. |
| 533 | bool is_updating_byte_count_; |
| 534 | |
[email protected] | f173d15 | 2012-10-17 21:02:41 | [diff] [blame] | 535 | // Buffer for coalescing BytesReadParam so we don't have to post a task on |
| 536 | // each NotifyBytesRead() call. |
| 537 | std::vector<BytesReadParam> bytes_read_buffer_; |
| 538 | |
[email protected] | 20f5f8a3 | 2013-08-20 01:50:58 | [diff] [blame] | 539 | std::vector<base::Closure> on_data_ready_callbacks_; |
| 540 | |
[email protected] | b6eaebd7 | 2013-01-15 23:04:09 | [diff] [blame] | 541 | // All per-Resource values are stored here. |
| 542 | mutable PerResourceCache per_resource_cache_; |
| 543 | |
| 544 | // All per-Process values are stored here. |
| 545 | mutable PerProcessCache per_process_cache_; |
| 546 | |
[email protected] | 0860b9b9 | 2009-05-11 18:49:18 | [diff] [blame] | 547 | DISALLOW_COPY_AND_ASSIGN(TaskManagerModel); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 548 | }; |
| 549 | |
[email protected] | a5d1e1e | 2010-09-23 19:34:12 | [diff] [blame] | 550 | #endif // CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_H_ |