1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_H_
6 #define CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_H_
11 #include "base/basictypes.h"
12 #include "base/callback_forward.h"
13 #include "base/gtest_prod_util.h"
14 #include "base/memory/ref_counted.h"
15 #include "base/memory/singleton.h"
16 #include "base/observer_list.h"
17 #include "base/strings/string16.h"
18 #include "chrome/browser/task_manager/resource_provider.h"
19 #include "chrome/browser/ui/host_desktop.h"
20 #include "content/public/common/gpu_memory_stats.h"
21 #include "third_party/WebKit/public/web/WebCache.h"
23 class PrefRegistrySimple
;
24 class PrivateWorkingSetSnapshot
;
25 class TaskManagerModel
;
26 class TaskManagerModelGpuDataManagerObserver
;
36 namespace extensions
{
48 // This class is a singleton.
51 static void RegisterPrefs(PrefRegistrySimple
* registry
);
53 // Returns true if the process at the specified index is the browser process.
54 bool IsBrowserProcess(int index
) const;
56 // Terminates the process at the specified index.
57 void KillProcess(int index
);
59 // Activates the browser tab associated with the process in the specified
61 void ActivateProcess(int index
);
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.
67 void AddResource(task_manager::Resource
* resource
);
68 void RemoveResource(task_manager::Resource
* resource
);
70 void OnWindowClosed();
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.
78 // Returns the singleton instance (and initializes it if necessary).
79 static TaskManager
* GetInstance();
81 TaskManagerModel
* model() const { return model_
.get(); }
83 void OpenAboutMemory(chrome::HostDesktopType desktop_type
);
86 FRIEND_TEST_ALL_PREFIXES(TaskManagerTest
, Basic
);
87 FRIEND_TEST_ALL_PREFIXES(TaskManagerTest
, Resources
);
88 FRIEND_TEST_ALL_PREFIXES(TaskManagerTest
, RefreshCalled
);
89 FRIEND_TEST_ALL_PREFIXES(TaskManagerWindowControllerTest
, Init
);
90 FRIEND_TEST_ALL_PREFIXES(TaskManagerWindowControllerTest
, Sort
);
91 FRIEND_TEST_ALL_PREFIXES(TaskManagerWindowControllerTest
,
92 SelectionAdaptsToSorting
);
93 FRIEND_TEST_ALL_PREFIXES(TaskManagerWindowControllerTest
,
94 EnsureNewPrimarySortColumn
);
96 // Obtain an instance via GetInstance().
98 friend struct DefaultSingletonTraits
<TaskManager
>;
102 // The model used for gathering and processing task data. It is ref counted
103 // because it is passed as a parameter to MessageLoop::InvokeLater().
104 scoped_refptr
<TaskManagerModel
> model_
;
106 DISALLOW_COPY_AND_ASSIGN(TaskManager
);
109 class TaskManagerModelObserver
{
111 virtual ~TaskManagerModelObserver() {}
113 // Invoked when the model has been completely changed.
114 virtual void OnModelChanged() = 0;
116 // Invoked when a range of items has changed.
117 virtual void OnItemsChanged(int start
, int length
) = 0;
119 // Invoked when new items are added.
120 virtual void OnItemsAdded(int start
, int length
) = 0;
122 // Invoked when a range of items has been removed.
123 virtual void OnItemsRemoved(int start
, int length
) = 0;
125 // Invoked when a range of items is to be immediately removed. It differs
126 // from OnItemsRemoved by the fact that the item is still in the task manager,
127 // so it can be queried for and found.
128 virtual void OnItemsToBeRemoved(int start
, int length
) {}
130 // Invoked when the initialization of the model has been finished and
131 // periodical updates is started. The first periodical update will be done
132 // in a few seconds. (depending on platform)
133 virtual void OnReadyPeriodicalUpdate() {}
136 // The model used by TaskManager.
138 // TaskManagerModel caches the values from all task_manager::Resources. This is
139 // done so the UI sees a consistant view of the resources until it is told a
140 // value has been updated.
141 class TaskManagerModel
: public base::RefCountedThreadSafe
<TaskManagerModel
> {
144 typedef std::pair
<int, int> GroupRange
;
146 explicit TaskManagerModel(TaskManager
* task_manager
);
148 void AddObserver(TaskManagerModelObserver
* observer
);
149 void RemoveObserver(TaskManagerModelObserver
* observer
);
151 // Returns number of registered resources.
152 int ResourceCount() const;
153 // Returns number of registered groups.
154 int GroupCount() const;
156 // Methods to return raw resource information.
157 int GetNaClDebugStubPort(int index
) const;
158 int64
GetNetworkUsage(int index
) const;
159 double GetCPUUsage(int index
) const;
160 int GetIdleWakeupsPerSecond(int index
) const;
161 base::ProcessId
GetProcessId(int index
) const;
162 base::ProcessHandle
GetProcess(int index
) const;
164 // Catchall method that calls off to the appropriate GetResourceXXX method
165 // based on |col_id|. |col_id| is an IDS_ value used to identify the column.
166 base::string16
GetResourceById(int index
, int col_id
) const;
168 // Methods to return formatted resource information.
169 const base::string16
& GetResourceTitle(int index
) const;
170 const base::string16
& GetResourceProfileName(int index
) const;
171 base::string16
GetResourceNaClDebugStubPort(int index
) const;
172 base::string16
GetResourceNetworkUsage(int index
) const;
173 base::string16
GetResourceCPUUsage(int index
) const;
174 base::string16
GetResourcePrivateMemory(int index
) const;
175 base::string16
GetResourceSharedMemory(int index
) const;
176 base::string16
GetResourcePhysicalMemory(int index
) const;
177 base::string16
GetResourceProcessId(int index
) const;
178 base::string16
GetResourceGDIHandles(int index
) const;
179 base::string16
GetResourceUSERHandles(int index
) const;
180 base::string16
GetResourceWebCoreImageCacheSize(int index
) const;
181 base::string16
GetResourceWebCoreScriptsCacheSize(int index
) const;
182 base::string16
GetResourceWebCoreCSSCacheSize(int index
) const;
183 base::string16
GetResourceVideoMemory(int index
) const;
184 base::string16
GetResourceSqliteMemoryUsed(int index
) const;
185 base::string16
GetResourceIdleWakeupsPerSecond(int index
) const;
186 base::string16
GetResourceV8MemoryAllocatedSize(int index
) const;
188 // Gets the private memory (in bytes) that should be displayed for the passed
189 // resource index. Caches the result since this calculation can take time on
191 bool GetPrivateMemory(int index
, size_t* result
) const;
193 // Gets the shared memory (in bytes) that should be displayed for the passed
194 // resource index. Caches the result since this calculation can take time on
196 bool GetSharedMemory(int index
, size_t* result
) const;
198 // Gets the physical memory (in bytes) that should be displayed for the passed
200 bool GetPhysicalMemory(int index
, size_t* result
) const;
202 // On Windows, get the current and peak number of GDI handles in use.
203 void GetGDIHandles(int index
, size_t* current
, size_t* peak
) const;
205 // On Windows, get the current and peak number of USER handles in use.
206 void GetUSERHandles(int index
, size_t* current
, size_t* peak
) const;
208 // Gets the statuses of webkit. Return false if the resource for the given row
210 bool GetWebCoreCacheStats(int index
,
211 blink::WebCache::ResourceTypeStats
* result
) const;
213 // Gets the GPU memory allocated of the given page.
214 bool GetVideoMemory(int index
,
215 size_t* video_memory
,
216 bool* has_duplicates
) const;
218 // Gets the sqlite memory (in byte). Return false if the resource for the
219 // given row doesn't report information.
220 bool GetSqliteMemoryUsedBytes(int index
, size_t* result
) const;
222 // Gets the amount of memory allocated for javascript. Returns false if the
223 // resource for the given row isn't a renderer.
224 bool GetV8Memory(int index
, size_t* result
) const;
226 // Gets the amount of memory used for javascript. Returns false if the
227 // resource for the given row isn't a renderer.
228 bool GetV8MemoryUsed(int index
, size_t* result
) const;
230 // Returns true if resource for the given row can be activated.
231 bool CanActivate(int index
) const;
233 // Returns true if the resource is first/last in its group (resources
234 // rendered by the same process are groupped together).
235 bool IsResourceFirstInGroup(int index
) const;
236 bool IsResourceLastInGroup(int index
) const;
238 // Returns icon to be used for resource (for example a favicon).
239 gfx::ImageSkia
GetResourceIcon(int index
) const;
241 // Returns the group range of resource.
242 GroupRange
GetGroupRangeForResource(int index
) const;
244 // Returns an index of groups to which the resource belongs.
245 int GetGroupIndexForResource(int index
) const;
247 // Returns an index of resource which belongs to the |group_index|th group
248 // and which is the |index_in_group|th resource in group.
249 int GetResourceIndexForGroup(int group_index
, int index_in_group
) const;
251 // Compares values in column |col_id| and rows |row1|, |row2|.
252 // Returns -1 if value in |row1| is less than value in |row2|,
253 // 0 if they are equal, and 1 otherwise.
254 int CompareValues(int row1
, int row2
, int col_id
) const;
256 // Returns the unique child process ID generated by Chromium, not the OS
257 // process id. This is used to identify processes internally and for
258 // extensions. It is not meant to be displayed to the user.
259 int GetUniqueChildProcessId(int index
) const;
261 // Returns the type of the given resource.
262 task_manager::Resource::Type
GetResourceType(int index
) const;
264 // Returns WebContents of given resource or NULL if not applicable.
265 content::WebContents
* GetResourceWebContents(int index
) const;
267 void AddResource(task_manager::Resource
* resource
);
268 void RemoveResource(task_manager::Resource
* resource
);
270 void StartUpdating();
273 // Listening involves calling StartUpdating on all resource providers. This
274 // causes all of them to subscribe to notifications and enumerate current
275 // resources. It differs from StartUpdating that it doesn't start the
276 // Refresh timer. The end result is that we have a full view of resources, but
277 // don't spend unneeded time updating, unless we have a real need to.
278 void StartListening();
279 void StopListening();
281 void Clear(); // Removes all items.
283 // Sends OnModelChanged() to all observers to inform them of significant
284 // changes to the model.
287 // Updates the values for all rows.
290 // Do a bulk repopulation of the physical_memory data on platforms where that
292 void RefreshPhysicalMemoryFromWorkingSetSnapshot();
294 void NotifyVideoMemoryUsageStats(
295 const content::GPUVideoMemoryUsageStats
& video_memory_usage_stats
);
297 void NotifyBytesRead(const net::URLRequest
& request
, int bytes_read
);
299 void RegisterOnDataReadyCallback(const base::Closure
& callback
);
301 void NotifyDataReady();
304 friend class base::RefCountedThreadSafe
<TaskManagerModel
>;
305 friend class TaskManagerBrowserTest
;
306 FRIEND_TEST_ALL_PREFIXES(ExtensionApiTest
, ProcessesVsTaskManager
);
307 FRIEND_TEST_ALL_PREFIXES(TaskManagerTest
, RefreshCalled
);
308 FRIEND_TEST_ALL_PREFIXES(TaskManagerWindowControllerTest
,
309 SelectionAdaptsToSorting
);
312 IDLE
= 0, // Currently not updating.
313 TASK_PENDING
, // An update task is pending.
314 STOPPING
// A update task is pending and it should stop the update.
317 // The delay between updates of the information (in ms).
318 #if defined(OS_MACOSX)
319 // Match Activity Monitor's default refresh rate.
320 static const int kUpdateTimeMs
= 2000;
322 static const int kUpdateTimeMs
= 1000;
325 // Values cached per resource. Values are validated on demand. The is_XXX
326 // members indicate if a value is valid.
327 struct PerResourceValues
{
329 ~PerResourceValues();
332 base::string16 title
;
334 bool is_profile_name_valid
;
335 base::string16 profile_name
;
337 // No is_network_usage since default (0) is fine.
340 bool is_process_id_valid
;
341 base::ProcessId process_id
;
343 bool is_webcore_stats_valid
;
344 blink::WebCache::ResourceTypeStats webcore_stats
;
346 bool is_sqlite_memory_bytes_valid
;
347 size_t sqlite_memory_bytes
;
349 bool is_v8_memory_valid
;
350 size_t v8_memory_allocated
;
351 size_t v8_memory_used
;
354 // Values cached per process. Values are validated on demand. The is_XXX
355 // members indicate if a value is valid.
356 struct PerProcessValues
{
360 bool is_cpu_usage_valid
;
363 bool is_idle_wakeups_valid
;
366 bool is_private_and_shared_valid
;
367 size_t private_bytes
;
370 bool is_physical_memory_valid
;
371 size_t physical_memory
;
373 bool is_video_memory_valid
;
375 bool video_memory_has_duplicates
;
377 bool is_gdi_handles_valid
;
379 size_t gdi_handles_peak
;
381 bool is_user_handles_valid
;
383 size_t user_handles_peak
;
385 bool is_nacl_debug_stub_port_valid
;
386 int nacl_debug_stub_port
;
389 typedef std::vector
<task_manager::Resource
*> ResourceList
;
390 typedef std::vector
<scoped_refptr
<task_manager::ResourceProvider
> >
391 ResourceProviderList
;
392 typedef std::map
<base::ProcessHandle
, ResourceList
> GroupMap
;
393 typedef std::map
<base::ProcessHandle
, base::ProcessMetrics
*> MetricsMap
;
394 typedef std::map
<task_manager::Resource
*, int64
> ResourceValueMap
;
395 typedef std::map
<task_manager::Resource
*,
396 PerResourceValues
> PerResourceCache
;
397 typedef std::map
<base::ProcessHandle
, PerProcessValues
> PerProcessCache
;
399 // This struct is used to exchange information between the io and ui threads.
400 struct BytesReadParam
{
401 BytesReadParam(int origin_pid
,
405 : origin_pid(origin_pid
),
408 byte_count(byte_count
) {}
410 // The process ID that triggered the request. For plugin requests this
411 // will differ from the renderer process ID.
414 // The child ID of the process this request was routed through.
423 // Callback from the timer to refresh. Invokes Refresh() as appropriate.
424 void RefreshCallback();
426 void RefreshVideoMemoryUsageStats();
428 // Returns the network usage (in bytes per seconds) for the specified
429 // resource. That's the value retrieved at the last timer's tick.
430 int64
GetNetworkUsageForResource(task_manager::Resource
* resource
) const;
432 // Called on the UI thread when some bytes are read.
433 void BytesRead(BytesReadParam param
);
435 void MultipleBytesRead(const std::vector
<BytesReadParam
>* params
);
437 // Notifies the UI thread about all the bytes read. Allows for coalescing
438 // multiple bytes read into a single task for the UI thread. This is important
439 // for when downloading a lot of data on the IO thread, since posting a Task
440 // for each one is expensive.
441 void NotifyMultipleBytesRead();
443 // Called on the IO thread to start/stop updating byte counts.
444 void SetUpdatingByteCount(bool is_updating
);
446 // Returns the network usage (in byte per second) that should be displayed for
447 // the passed |resource|. -1 means the information is not available for that
449 int64
GetNetworkUsage(task_manager::Resource
* resource
) const;
451 // Returns the CPU usage (in %) that should be displayed for the passed
453 double GetCPUUsage(task_manager::Resource
* resource
) const;
455 // Returns the idle wakeups that should be displayed for the passed
457 int GetIdleWakeupsPerSecond(task_manager::Resource
* resource
) const;
459 // Given a number, this function returns the formatted string that should be
460 // displayed in the task manager's memory cell.
461 base::string16
GetMemCellText(int64 number
) const;
463 // Verifies the private and shared memory for |handle| is valid in
464 // |per_process_cache_|. Returns true if the data in |per_process_cache_| is
466 bool CachePrivateAndSharedMemory(base::ProcessHandle handle
) const;
468 // Verifies |webcore_stats| in |per_resource_cache_|, returning true on
470 bool CacheWebCoreStats(int index
) const;
472 // Verifies |v8_memory_allocated| and |v8_memory_used| in
473 // |per_resource_cache_|. Returns true if valid, false if not valid.
474 bool CacheV8Memory(int index
) const;
476 // Adds a resource provider to be managed.
477 void AddResourceProvider(task_manager::ResourceProvider
* provider
);
479 // Returns the PerResourceValues for the specified index.
480 PerResourceValues
& GetPerResourceValues(int index
) const;
482 // Returns the Resource for the specified index.
483 task_manager::Resource
* GetResource(int index
) const;
485 // The list of providers to the task manager. They are ref counted.
486 ResourceProviderList providers_
;
488 // The list of all the resources displayed in the task manager. They are owned
489 // by the ResourceProviders.
490 ResourceList resources_
;
492 // A map to keep tracks of the grouped resources (they are grouped if they
493 // share the same process). The groups (the Resources vectors) are owned by
494 // the model (but the actual Resources are owned by the ResourceProviders).
497 // A map to retrieve the process metrics for a process. The ProcessMetrics are
498 // owned by the model.
499 MetricsMap metrics_map_
;
501 // A map that keeps track of the number of bytes read per process since last
502 // tick. The Resources are owned by the ResourceProviders.
503 ResourceValueMap current_byte_count_map_
;
505 // A map that contains the video memory usage for a process
506 content::GPUVideoMemoryUsageStats video_memory_usage_stats_
;
508 // Set to true when we've requested video stats and false once we get them.
509 bool pending_video_memory_usage_stats_update_
;
511 // An observer waiting for video memory usage stats updates from the GPU
513 scoped_ptr
<TaskManagerModelGpuDataManagerObserver
>
514 video_memory_usage_stats_observer_
;
516 base::ObserverList
<TaskManagerModelObserver
> observer_list_
;
518 // How many calls to StartUpdating have been made without matching calls to
520 int update_requests_
;
522 // How many calls to StartListening have been made without matching calls to
524 int listen_requests_
;
526 // Whether we are currently in the process of updating.
527 UpdateState update_state_
;
529 // Whether the IO thread is currently in the process of updating; accessed
530 // only on the IO thread.
531 bool is_updating_byte_count_
;
533 // Buffer for coalescing BytesReadParam so we don't have to post a task on
534 // each NotifyBytesRead() call.
535 std::vector
<BytesReadParam
> bytes_read_buffer_
;
537 std::vector
<base::Closure
> on_data_ready_callbacks_
;
540 scoped_ptr
<PrivateWorkingSetSnapshot
> working_set_snapshot_
;
543 // All per-Resource values are stored here.
544 mutable PerResourceCache per_resource_cache_
;
546 // All per-Process values are stored here.
547 mutable PerProcessCache per_process_cache_
;
549 DISALLOW_COPY_AND_ASSIGN(TaskManagerModel
);
552 #endif // CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_H_