Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 33d97893 authored by Jeff DeCew's avatar Jeff DeCew
Browse files

Add safety checks for MessagingPool and other view reuse conditions

Bug: 208508846
Test: manual
Change-Id: I951c0f60bbf354e7dd2aa2f2f028b6e1ca955976
parent f7213e70
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -871,6 +871,10 @@ public class ConversationLayout extends FrameLayout
            if (newGroup == null) {
                newGroup = MessagingGroup.createGroup(mMessagingLinearLayout);
                mAddedGroups.add(newGroup);
            } else if (newGroup.getParent() != mMessagingLinearLayout) {
                throw new IllegalStateException(
                        "group parent was " + newGroup.getParent() + " but expected "
                                + mMessagingLinearLayout);
            }
            newGroup.setImageDisplayLocation(mIsCollapsed
                    ? IMAGE_DISPLAY_LOCATION_EXTERNAL
+4 −0
Original line number Diff line number Diff line
@@ -419,6 +419,10 @@ public class MessagingLayout extends FrameLayout
            if (newGroup == null) {
                newGroup = MessagingGroup.createGroup(mMessagingLinearLayout);
                mAddedGroups.add(newGroup);
            } else if (newGroup.getParent() != mMessagingLinearLayout) {
                throw new IllegalStateException(
                        "group parent was " + newGroup.getParent() + " but expected "
                                + mMessagingLinearLayout);
            }
            newGroup.setImageDisplayLocation(mIsCollapsed
                    ? IMAGE_DISPLAY_LOCATION_EXTERNAL
+21 −3
Original line number Diff line number Diff line
@@ -16,15 +16,18 @@

package com.android.internal.widget;

import android.util.Log;
import android.util.Pools;
import android.view.View;

/**
 * A trivial wrapper around Pools.SynchronizedPool which allows clearing the pool, as well as
 * disabling the pool class altogether.
 * @param <T> the type of object in the pool
 */
public class MessagingPool<T> implements Pools.Pool<T> {
public class MessagingPool<T extends View> implements Pools.Pool<T> {
    private static final boolean ENABLED = false;  // disabled to test b/208508846
    private static final String TAG = "MessagingPool";
    private final int mMaxPoolSize;
    private Pools.SynchronizedPool<T> mCurrentPool;

@@ -37,12 +40,27 @@ public class MessagingPool<T> implements Pools.Pool<T> {

    @Override
    public T acquire() {
        return ENABLED ? mCurrentPool.acquire() : null;
        if (!ENABLED) {
            return null;
        }
        T instance = mCurrentPool.acquire();
        if (instance.getParent() != null) {
            Log.wtf(TAG, "acquired " + instance + " with parent " + instance.getParent());
            return null;
        }
        return instance;
    }

    @Override
    public boolean release(T instance) {
        return ENABLED && mCurrentPool.release(instance);
        if (instance.getParent() != null) {
            Log.wtf(TAG, "releasing " + instance + " with parent " + instance.getParent());
            return false;
        }
        if (!ENABLED) {
            return false;
        }
        return mCurrentPool.release(instance);
    }

    /** Clear the pool */