OLD | NEW |
---|---|
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 BASE_MEMORY_MEMORY_COORDINATOR_CLIENT_H_ | 5 #ifndef BASE_MEMORY_MEMORY_COORDINATOR_CLIENT_H_ |
6 #define BASE_MEMORY_MEMORY_COORDINATOR_CLIENT_H_ | 6 #define BASE_MEMORY_MEMORY_COORDINATOR_CLIENT_H_ |
7 | 7 |
8 #include "base/base_export.h" | 8 #include "base/base_export.h" |
9 | 9 |
10 namespace base { | 10 namespace base { |
11 | 11 |
12 // OVERVIEW: | |
13 // | |
14 // MemoryCoordinatorClient is an interface which a component can implement to | |
15 // respond memory state changes. Unlike MemoryPressureListener, this is a | |
dcheng
2016/09/26 04:55:07
Nit: to respond => to respond to
bashi
2016/09/26 05:57:22
Done.
| |
16 // stateful mechanism and clients receive notifications only when memory states | |
17 // are changed. In order to avoid thrashing, state transitions won't occur in a | |
dcheng
2016/09/26 04:55:07
Nit: State transitions are throttled to avoid thra
bashi
2016/09/26 05:57:22
Done. I choose "5-10 seconds" as the design doc wh
| |
18 // short period of time. The minimum time period of transtion depends on | |
19 // platforms/OSes but at least in seconds. | |
20 | |
12 // MemoryState is an indicator that processes can use to guide their memory | 21 // MemoryState is an indicator that processes can use to guide their memory |
13 // allocation policies. For example, a process that receives the suspended | 22 // allocation policies. For example, a process that receives the suspended |
14 // state can use that as as signal to drop memory caches. | 23 // state can use that as as signal to drop memory caches. |
15 enum class MemoryState { | 24 enum class MemoryState { |
16 // The state is unknown. | 25 // The state is unknown. |
17 UNKNOWN = -1, | 26 UNKNOWN = -1, |
18 // No memory constraints. | 27 // No memory constraints. |
19 NORMAL = 0, | 28 NORMAL = 0, |
20 // Running and interactive but allocation should be throttled. | 29 // Running and interactive but allocation should be throttled. |
21 THROTTLED = 1, | 30 THROTTLED = 1, |
22 // Still resident in memory but core processing logic has been suspended. | 31 // Still resident in memory but core processing logic has been suspended. |
23 SUSPENDED = 2, | 32 SUSPENDED = 2, |
24 }; | 33 }; |
25 | 34 |
26 // This is an interface for components which can respond to memory status | 35 // This is an interface for components which can respond to memory status |
27 // changes. | 36 // changes. See MemoryCoordinatorClientRegistry for threading guarantees and |
37 // ownership management. | |
28 class BASE_EXPORT MemoryCoordinatorClient { | 38 class BASE_EXPORT MemoryCoordinatorClient { |
29 public: | 39 public: |
30 virtual ~MemoryCoordinatorClient() {} | 40 virtual ~MemoryCoordinatorClient() {} |
31 | 41 |
32 // Called when memory state has changed. | 42 // Called when memory state has changed. Any transition could occur except for |
dcheng
2016/09/26 04:55:07
Is UNKNOWN an initial state?
bashi
2016/09/26 05:57:22
At this point, NORMAL is an initial state. But the
| |
43 // UNKNOWN. General guidelines are: | |
44 // * NORMAL: Restore the default settings for memory allocation/usage if | |
45 // it has changed. | |
46 // * THROTTLED: Use smaller limits for memory allocations and caches. | |
47 // * SUSPENDED: Purge memory. | |
33 virtual void OnMemoryStateChange(MemoryState state) = 0; | 48 virtual void OnMemoryStateChange(MemoryState state) = 0; |
34 }; | 49 }; |
35 | 50 |
36 } // namespace base | 51 } // namespace base |
37 | 52 |
38 #endif // BASE_MEMORY_MEMORY_COORDINATOR_CLIENT_H_ | 53 #endif // BASE_MEMORY_MEMORY_COORDINATOR_CLIENT_H_ |
OLD | NEW |