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

Issue 2259743002: Add MemoryStateListenerAndroid (Closed)

Created:
4 years, 4 months ago by bashi
Modified:
4 years, 2 months ago
CC:
chromium-reviews, darin-cc_chromium.org, jam
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Add MemoryStateListenerAndroid This class registers a callback which is invoked when the OS dispatches OnTrimMemory(). ChildMemoryCoordinatorImplAndroid sends calls |delegate()->OnTrimMemoryImmediately()| when the level of memory pressure is critical. BUG=617492

Patch Set 1 #

Patch Set 2 : Remove dep #

Patch Set 3 : Fix dependency and update test #

Total comments: 2

Patch Set 4 : Comments & export #

Total comments: 16

Patch Set 5 : Remove check #

Patch Set 6 : native #

Unified diffs Side-by-side diffs Delta from patch set Stats (+283 lines, -10 lines) Patch
M chrome/android/BUILD.gn View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download
M components/BUILD.gn View 1 2 1 chunk +1 line, -0 lines 0 comments Download
A components/memory_coordinator/android/BUILD.gn View 1 2 3 1 chunk +37 lines, -0 lines 0 comments Download
A + components/memory_coordinator/android/DEPS View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A components/memory_coordinator/android/component_jni_registrar.h View 1 2 3 1 chunk +23 lines, -0 lines 0 comments Download
A components/memory_coordinator/android/component_jni_registrar.cc View 1 1 chunk +27 lines, -0 lines 0 comments Download
A components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java View 1 2 3 4 5 1 chunk +56 lines, -0 lines 0 comments Download
A components/memory_coordinator/android/memory_state_listener_android.h View 1 2 3 1 chunk +33 lines, -0 lines 0 comments Download
A components/memory_coordinator/android/memory_state_listener_android.cc View 1 2 3 4 5 1 chunk +71 lines, -0 lines 0 comments Download
M components/memory_coordinator/child/BUILD.gn View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
M components/memory_coordinator/child/child_memory_coordinator_impl_android.h View 1 2 3 1 chunk +5 lines, -5 lines 0 comments Download
M components/memory_coordinator/child/child_memory_coordinator_impl_android.cc View 1 1 chunk +13 lines, -5 lines 0 comments Download
M components/memory_coordinator/child/child_memory_coordinator_impl_unittest.cc View 1 2 3 chunks +7 lines, -1 line 0 comments Download
M content/app/BUILD.gn View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M content/app/DEPS View 1 1 chunk +1 line, -0 lines 0 comments Download
M content/app/android/library_loader_hooks.cc View 2 chunks +4 lines, -0 lines 0 comments Download

Messages

Total messages: 37 (13 generated)
bashi
PTAL The CL lacks tests (maybe it's difficult to have tests) but I'd like to ...
4 years, 4 months ago (2016-08-25 02:21:30 UTC) #4
haraken
This looks good to me but I'm not familiar with JNI enough to review this ...
4 years, 4 months ago (2016-08-25 03:56:18 UTC) #5
chrisha
Unfortunately, neither am I. lgtm in principle, however. Maybe Andrew Grieve can pipe in here?
4 years, 3 months ago (2016-08-26 19:25:29 UTC) #6
haraken
+agrieve
4 years, 3 months ago (2016-08-27 00:29:40 UTC) #8
bashi
Adding OWNERs review michaelbai@: Could you review content/app/android ? nyquist@: Could you review chrome/android/BUILD.gn ? ...
4 years, 3 months ago (2016-08-29 05:00:54 UTC) #12
jochen (gone - plz use gerrit)
will this component be shared with ios? otherwise, it should be part of content/ (see ...
4 years, 3 months ago (2016-08-29 09:26:29 UTC) #15
bashi
On 2016/08/29 09:26:29, jochen wrote: > will this component be shared with ios? otherwise, it ...
4 years, 3 months ago (2016-08-29 09:35:47 UTC) #16
michaelbai
https://codereview.chromium.org/2259743002/diff/60001/components/memory_coordinator/common/BUILD.gn File components/memory_coordinator/common/BUILD.gn (right): https://codereview.chromium.org/2259743002/diff/60001/components/memory_coordinator/common/BUILD.gn#newcode35 components/memory_coordinator/common/BUILD.gn:35: } Since all those files is Android specific, It ...
4 years, 3 months ago (2016-08-29 16:43:23 UTC) #17
bashi
> will this component be shared with ios? otherwise, it should be part of content/ ...
4 years, 3 months ago (2016-08-30 00:47:31 UTC) #19
jochen (gone - plz use gerrit)
so typically, a layered component looks like this: https://sites.google.com/a/chromium.org/dev/developers/design-documents/structure-of-layered-components-within-the-chromium-codebase I have a hard time matching ...
4 years, 3 months ago (2016-08-30 12:16:44 UTC) #23
agrieve
looks fine overall, but will defer to others about content vs components https://codereview.chromium.org/2259743002/diff/80001/components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java File components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java ...
4 years, 3 months ago (2016-08-30 18:23:44 UTC) #24
chrisha
https://codereview.chromium.org/2259743002/diff/80001/components/memory_coordinator/child/child_memory_coordinator_impl_android.cc File components/memory_coordinator/child/child_memory_coordinator_impl_android.cc (right): https://codereview.chromium.org/2259743002/diff/80001/components/memory_coordinator/child/child_memory_coordinator_impl_android.cc#newcode17 components/memory_coordinator/child/child_memory_coordinator_impl_android.cc:17: MemoryStateListenerAndroid::Start(this); On 2016/08/30 18:23:44, agrieve wrote: > No action ...
4 years, 3 months ago (2016-08-30 18:38:38 UTC) #25
bashi
On 2016/08/30 12:16:44, jochen wrote: > so typically, a layered component looks like this: > ...
4 years, 3 months ago (2016-09-01 00:52:54 UTC) #26
bashi
https://codereview.chromium.org/2259743002/diff/80001/components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java File components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java (right): https://codereview.chromium.org/2259743002/diff/80001/components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java#newcode21 components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java:21: @MainDex On 2016/08/30 18:23:44, agrieve wrote: > Are you ...
4 years, 3 months ago (2016-09-01 00:54:41 UTC) #27
haraken
On 2016/09/01 00:52:54, bashi1 wrote: > On 2016/08/30 12:16:44, jochen wrote: > > so typically, ...
4 years, 3 months ago (2016-09-01 00:57:08 UTC) #28
agrieve
https://codereview.chromium.org/2259743002/diff/80001/components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java File components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java (right): https://codereview.chromium.org/2259743002/diff/80001/components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java#newcode21 components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java:21: @MainDex On 2016/09/01 00:54:41, bashi1 wrote: > On 2016/08/30 ...
4 years, 3 months ago (2016-09-01 02:23:09 UTC) #29
bashi
https://codereview.chromium.org/2259743002/diff/80001/components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java File components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java (right): https://codereview.chromium.org/2259743002/diff/80001/components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java#newcode21 components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java:21: @MainDex On 2016/09/01 02:23:08, agrieve wrote: > On 2016/09/01 ...
4 years, 3 months ago (2016-09-01 03:28:20 UTC) #30
jochen (gone - plz use gerrit)
offline discussion revealed that net/ is supposed to depend on this, so we can't move ...
4 years, 3 months ago (2016-09-01 12:07:47 UTC) #31
agrieve
On 2016/09/01 12:07:47, jochen wrote: > offline discussion revealed that net/ is supposed to depend ...
4 years, 3 months ago (2016-09-01 14:10:35 UTC) #32
agrieve
https://codereview.chromium.org/2259743002/diff/80001/components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java File components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java (right): https://codereview.chromium.org/2259743002/diff/80001/components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java#newcode21 components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java:21: @MainDex On 2016/09/01 03:28:20, bashi1 wrote: > On 2016/09/01 ...
4 years, 3 months ago (2016-09-01 14:26:47 UTC) #33
chrisha
On 2016/09/01 14:10:35, agrieve wrote: > On 2016/09/01 12:07:47, jochen wrote: > > offline discussion ...
4 years, 3 months ago (2016-09-01 18:26:55 UTC) #34
chrisha
On 2016/09/01 14:26:47, agrieve wrote: > https://codereview.chromium.org/2259743002/diff/80001/components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java > File > components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java > (right): > > ...
4 years, 3 months ago (2016-09-01 18:28:19 UTC) #35
bashi
On 2016/09/01 18:28:19, chrisha (slow) wrote: > On 2016/09/01 14:26:47, agrieve wrote: > > > ...
4 years, 3 months ago (2016-09-02 00:49:25 UTC) #36
agrieve
4 years, 3 months ago (2016-09-02 01:33:10 UTC) #37
On 2016/09/02 00:49:25, bashi1 wrote:
> On 2016/09/01 18:28:19, chrisha (slow) wrote:
> > On 2016/09/01 14:26:47, agrieve wrote:
> > >
> >
>
https://codereview.chromium.org/2259743002/diff/80001/components/memory_coord...
> > > File
> > >
> >
>
components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java
> > > (right):
> > > 
> > >
> >
>
https://codereview.chromium.org/2259743002/diff/80001/components/memory_coord...
> > >
> >
>
components/memory_coordinator/android/java/src/org/chromium/components/memory_coordinator/MemoryStateListener.java:21:
> > > @MainDex
> > > On 2016/09/01 03:28:20, bashi1 wrote:
> > > > On 2016/09/01 02:23:08, agrieve wrote:
> > > > > On 2016/09/01 00:54:41, bashi1 wrote:
> > > > > > On 2016/08/30 18:23:44, agrieve wrote:
> > > > > > > Are you sure this is required to be in the main dex? It's not
> obvious
> > to
> > > > me
> > > > > > why
> > > > > > > it would be.
> > > > > > 
> > > > > > The comment in MainDex.java says that this annotation means it's
used
> by
> > > > > > renderer process, and
> > > > > > this will be used in renderer.
> > > > > 
> > > > > Ah okay. Why have this live in the renderer process rather than the
> > browser
> > > > > process? I'd figure subscribing in the browser process would make for
> > easier
> > > > > coordination.
> > > > 
> > > > Here is a doc which describes the motivation of this class.
> > > >
> > >
> >
>
https://docs.google.com/document/d/1X-RA2y5NP8P1uZ9-q9cxKxzcjqWBz0mS2M4rIsexk...
> > > > 
> > > > My understanding is followings (but it's probably wrong):
> > > > - browser and renderers are separate processes
> > > > - The OS dispatches memory state notifications per process. Browser
cannot
> > > > receive memory state for renderers
> > > > 
> > > > If browser can register ComponentCallbacks2 for renderers, we don't need
> to
> > > use
> > > > this in renderers.
> > > 
> > > The testing I've done around memory is written up here:
> > > https://github.com/agrieve/AndroidMultiProcessPlayground
> > > and in internal doc: https://goto.google.com/tdiresearch
> > > 
> > > I believe we shouldn't need to have renderers forward memory pressure
> signals
> > to
> > > the browser. When Chrome is in the foreground, it will receive the same
> > > onTrimMemory() as all other foreground processes. onTrimMemory() signals
> sent
> > to
> > > background processes are not as useful since they don't correspond to the
> > number
> > > of background processes running, but instead show how close to the bottom
of
> > the
> > > LRU it is (and may never be called). Background processes are always
> killable,
> > > so should already be doing everything they can to free up memory.
> > 
> > Okay, interesting. Then having the listener be in the browser is probably
> > sufficient. We also likely want to poll (at a very low frequency, say
5-10s?)
> in
> > order to see the state transitions in the other direction.
> 
> Now I understand that forwarding singals wouldn't make sense (that makes mc
> implement simpler :). I think we still need a listener in renderer to take
> immediate action (e.g. v8 GC) when onTrimMemory() is called. This is how the
> current MemoryPressureListener::OnSyncMemoryPressure() is working in renderers
> (more context can be found [1] and [2]). So what do you think about listening
> onTrimMemory() just for RenderThreadImpl::onTrimMemoryImmediately() ?
> 
> [1] https://bugs.chromium.org/p/chromium/issues/detail?id=590975
> [2]
>
https://docs.google.com/document/d/1X2HglPS9zIOWAzmIdp7ghh0AGQsVa__sJbE_wim3R...

If it simplifies the code, then that sgtm. But afaik, there's no logic in
Android that takes action after onTrimMemory() is dispatched (e.g. if you slept
for 1 second then cleared some memory, it would have the same effect), so
there's no Android-wise need to free memory synchronously.

Powered by Google App Engine
This is Rietveld 408576698