Skip to content

Commit

Permalink
Merge tag 'android-12.0.0_r29' of https://android.googlesource.com/pl…
Browse files Browse the repository at this point in the history
…atform/frameworks/base into HEAD

Android 12.0.0 Release 29 (SQ1D.220205.003)
  • Loading branch information
Undying-yueyue committed Feb 14, 2022
2 parents 38599de + 187a94c commit 5deb721
Show file tree
Hide file tree
Showing 11 changed files with 182 additions and 35 deletions.
40 changes: 29 additions & 11 deletions core/java/android/app/WallpaperManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -1452,18 +1452,27 @@ public int setResource(@RawRes int resid, @SetWallpaperFlags int which)
mContext.getUserId());
if (fd != null) {
FileOutputStream fos = null;
boolean ok = false;
final Bitmap tmp = BitmapFactory.decodeStream(resources.openRawResource(resid));
try {
fos = new ParcelFileDescriptor.AutoCloseOutputStream(fd);
copyStreamToWallpaperFile(resources.openRawResource(resid), fos);
// The 'close()' is the trigger for any server-side image manipulation,
// so we must do that before waiting for completion.
fos.close();
completion.waitForCompletion();
// If the stream can't be decoded, treat it as an invalid input.
if (tmp != null) {
fos = new ParcelFileDescriptor.AutoCloseOutputStream(fd);
tmp.compress(Bitmap.CompressFormat.PNG, 100, fos);
// The 'close()' is the trigger for any server-side image manipulation,
// so we must do that before waiting for completion.
fos.close();
completion.waitForCompletion();
} else {
throw new IllegalArgumentException(
"Resource 0x" + Integer.toHexString(resid) + " is invalid");
}
} finally {
// Might be redundant but completion shouldn't wait unless the write
// succeeded; this is a fallback if it threw past the close+wait.
IoUtils.closeQuietly(fos);
if (tmp != null) {
tmp.recycle();
}
}
}
} catch (RemoteException e) {
Expand Down Expand Up @@ -1705,13 +1714,22 @@ public int setStream(InputStream bitmapData, Rect visibleCropHint,
result, which, completion, mContext.getUserId());
if (fd != null) {
FileOutputStream fos = null;
final Bitmap tmp = BitmapFactory.decodeStream(bitmapData);
try {
fos = new ParcelFileDescriptor.AutoCloseOutputStream(fd);
copyStreamToWallpaperFile(bitmapData, fos);
fos.close();
completion.waitForCompletion();
// If the stream can't be decoded, treat it as an invalid input.
if (tmp != null) {
fos = new ParcelFileDescriptor.AutoCloseOutputStream(fd);
tmp.compress(Bitmap.CompressFormat.PNG, 100, fos);
fos.close();
completion.waitForCompletion();
} else {
throw new IllegalArgumentException("InputStream is invalid");
}
} finally {
IoUtils.closeQuietly(fos);
if (tmp != null) {
tmp.recycle();
}
}
}
} catch (RemoteException e) {
Expand Down
6 changes: 6 additions & 0 deletions libs/androidfw/LoadedArsc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -686,6 +686,12 @@ std::unique_ptr<const LoadedPackage> LoadedPackage::Load(const Chunk& chunk,
std::unordered_set<uint32_t> finalized_ids;
const auto lib_alias = child_chunk.header<ResTable_staged_alias_header>();
if (!lib_alias) {
LOG(ERROR) << "RES_TABLE_STAGED_ALIAS_TYPE is too small.";
return {};
}
if ((child_chunk.data_size() / sizeof(ResTable_staged_alias_entry))
< dtohl(lib_alias->count)) {
LOG(ERROR) << "RES_TABLE_STAGED_ALIAS_TYPE is too small to hold entries.";
return {};
}
const auto entry_begin = child_chunk.data_ptr().convert<ResTable_staged_alias_entry>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ package com.android.systemui.controls.ui

import android.annotation.MainThread
import android.app.Dialog
import android.app.PendingIntent
import android.content.Context
import android.content.Intent
import android.content.pm.PackageManager
Expand Down Expand Up @@ -88,7 +89,7 @@ class ControlActionCoordinatorImpl @Inject constructor(
bouncerOrRun(createAction(cvh.cws.ci.controlId, {
cvh.layout.performHapticFeedback(HapticFeedbackConstants.CONTEXT_CLICK)
if (cvh.usePanel()) {
showDetail(cvh, control.getAppIntent().getIntent())
showDetail(cvh, control.getAppIntent())
} else {
cvh.action(CommandAction(templateId))
}
Expand Down Expand Up @@ -116,7 +117,7 @@ class ControlActionCoordinatorImpl @Inject constructor(
// Long press snould only be called when there is valid control state, otherwise ignore
cvh.cws.control?.let {
cvh.layout.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS)
showDetail(cvh, it.getAppIntent().getIntent())
showDetail(cvh, it.getAppIntent())
}
}, false /* blockable */))
}
Expand Down Expand Up @@ -167,18 +168,18 @@ class ControlActionCoordinatorImpl @Inject constructor(
bgExecutor.execute { vibrator.vibrate(effect) }
}

private fun showDetail(cvh: ControlViewHolder, intent: Intent) {
private fun showDetail(cvh: ControlViewHolder, pendingIntent: PendingIntent) {
bgExecutor.execute {
val activities: List<ResolveInfo> = context.packageManager.queryIntentActivities(
intent,
pendingIntent.getIntent(),
PackageManager.MATCH_DEFAULT_ONLY
)

uiExecutor.execute {
// make sure the intent is valid before attempting to open the dialog
if (activities.isNotEmpty() && taskViewFactory.isPresent) {
taskViewFactory.get().create(context, uiExecutor, {
dialog = DetailDialog(activityContext, it, intent, cvh).also {
dialog = DetailDialog(activityContext, it, pendingIntent, cvh).also {
it.setOnDismissListener { _ -> dialog = null }
it.show()
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import com.android.wm.shell.TaskView
class DetailDialog(
val activityContext: Context?,
val taskView: TaskView,
val intent: Intent,
val pendingIntent: PendingIntent,
val cvh: ControlViewHolder
) : Dialog(
activityContext ?: cvh.context,
Expand All @@ -59,6 +59,14 @@ class DetailDialog(

var detailTaskId = INVALID_TASK_ID

private val fillInIntent = Intent().apply {
putExtra(EXTRA_USE_PANEL, true)

// Apply flags to make behaviour match documentLaunchMode=always.
addFlags(Intent.FLAG_ACTIVITY_NEW_DOCUMENT)
addFlags(Intent.FLAG_ACTIVITY_MULTIPLE_TASK)
}

fun removeDetailTask() {
if (detailTaskId == INVALID_TASK_ID) return
ActivityTaskManager.getInstance().removeTask(detailTaskId)
Expand All @@ -67,13 +75,6 @@ class DetailDialog(

val stateCallback = object : TaskView.Listener {
override fun onInitialized() {
val launchIntent = Intent(intent)
launchIntent.putExtra(EXTRA_USE_PANEL, true)

// Apply flags to make behaviour match documentLaunchMode=always.
launchIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_DOCUMENT)
launchIntent.addFlags(Intent.FLAG_ACTIVITY_MULTIPLE_TASK)

val options = activityContext?.let {
ActivityOptions.makeCustomAnimation(
it,
Expand All @@ -82,9 +83,8 @@ class DetailDialog(
)
} ?: ActivityOptions.makeBasic()
taskView.startActivity(
PendingIntent.getActivity(context, 0, launchIntent,
PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE),
null /* fillInIntent */,
pendingIntent,
fillInIntent,
options,
getTaskViewBounds()
)
Expand All @@ -97,6 +97,9 @@ class DetailDialog(

override fun onTaskCreated(taskId: Int, name: ComponentName?) {
detailTaskId = taskId
requireViewById<ViewGroup>(R.id.controls_activity_view).apply {
setAlpha(1f)
}
}

override fun onReleased() {
Expand All @@ -121,6 +124,7 @@ class DetailDialog(

requireViewById<ViewGroup>(R.id.controls_activity_view).apply {
addView(taskView)
setAlpha(0f)
}

requireViewById<ImageView>(R.id.control_detail_close).apply {
Expand All @@ -134,7 +138,7 @@ class DetailDialog(
removeDetailTask()
dismiss()
context.sendBroadcast(Intent(Intent.ACTION_CLOSE_SYSTEM_DIALOGS))
v.context.startActivity(intent)
pendingIntent.send()
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ import com.android.systemui.statusbar.phone.SystemUIDialog
class SensorUseDialog(
context: Context,
val sensor: Int,
val clickListener: DialogInterface.OnClickListener
val clickListener: DialogInterface.OnClickListener,
val dismissListener: DialogInterface.OnDismissListener
) : SystemUIDialog(context) {

// TODO move to onCreate (b/200815309)
Expand Down Expand Up @@ -69,6 +70,8 @@ class SensorUseDialog(
context.getString(com.android.internal.R.string
.cancel), clickListener)

setOnDismissListener(dismissListener)

setCancelable(false)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class SensorUseStartedActivity @Inject constructor(
private val keyguardStateController: KeyguardStateController,
private val keyguardDismissUtil: KeyguardDismissUtil,
@Background private val bgHandler: Handler
) : Activity(), DialogInterface.OnClickListener {
) : Activity(), DialogInterface.OnClickListener, DialogInterface.OnDismissListener {

companion object {
private val LOG_TAG = SensorUseStartedActivity::class.java.simpleName
Expand Down Expand Up @@ -120,7 +120,7 @@ class SensorUseStartedActivity @Inject constructor(
}
}

mDialog = SensorUseDialog(this, sensor, this)
mDialog = SensorUseDialog(this, sensor, this, this)
mDialog!!.show()
}

Expand Down Expand Up @@ -212,4 +212,8 @@ class SensorUseStartedActivity @Inject constructor(
.suppressSensorPrivacyReminders(sensor, suppressed)
}
}

override fun onDismiss(dialog: DialogInterface?) {
finish()
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
/*
* Copyright (C) 2021 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.android.systemui.controls.ui

import android.app.PendingIntent
import android.testing.AndroidTestingRunner
import android.testing.TestableLooper
import androidx.test.filters.SmallTest
import com.android.systemui.SysuiTestCase
import com.android.wm.shell.TaskView
import org.junit.Before
import org.junit.Test
import org.junit.runner.RunWith
import org.mockito.ArgumentMatchers.eq
import org.mockito.Mock
import org.mockito.Mockito.any
import org.mockito.Mockito.verify
import org.mockito.MockitoAnnotations

@SmallTest
@RunWith(AndroidTestingRunner::class)
@TestableLooper.RunWithLooper
class DetailDialogTest : SysuiTestCase() {

@Mock
private lateinit var taskView: TaskView
@Mock
private lateinit var controlViewHolder: ControlViewHolder
@Mock
private lateinit var pendingIntent: PendingIntent

@Before
fun setUp() {
MockitoAnnotations.initMocks(this)
}

@Test
fun testPendingIntentIsUnModified() {
// GIVEN the dialog is created with a PendingIntent
val dialog = createDialog(pendingIntent)

// WHEN the TaskView is initialized
dialog.stateCallback.onInitialized()

// THEN the PendingIntent used to call startActivity is unmodified by systemui
verify(taskView).startActivity(eq(pendingIntent), any(), any(), any())
}

private fun createDialog(pendingIntent: PendingIntent): DetailDialog {
return DetailDialog(
mContext,
taskView,
pendingIntent,
controlViewHolder
)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2837,7 +2837,7 @@ private void reportStartInput(@NonNull IBinder token, IBinder startInputToken) {
return;
}
final IBinder targetWindow = mImeTargetWindowMap.get(startInputToken);
if (targetWindow != null && mLastImeTargetWindow != targetWindow) {
if (targetWindow != null) {
mWindowManagerInternal.updateInputMethodTargetWindow(token, targetWindow);
}
mLastImeTargetWindow = targetWindow;
Expand Down
2 changes: 2 additions & 0 deletions services/core/java/com/android/server/wm/ActivityRecord.java
Original file line number Diff line number Diff line change
Expand Up @@ -1037,6 +1037,8 @@ void dump(PrintWriter pw, String prefix, boolean dumpAll) {
pw.print(" forceNewConfig="); pw.println(forceNewConfig);
pw.print(prefix); pw.print("mActivityType=");
pw.println(activityTypeToString(getActivityType()));
pw.print(prefix); pw.print("mImeInsetsFrozenUntilStartInput=");
pw.println(mImeInsetsFrozenUntilStartInput);
if (requestedVrComponent != null) {
pw.print(prefix);
pw.print("requestedVrComponent=");
Expand Down
6 changes: 3 additions & 3 deletions services/core/java/com/android/server/wm/DisplayContent.java
Original file line number Diff line number Diff line change
Expand Up @@ -3969,11 +3969,11 @@ void removeImeSurfaceImmediately() {
* which controls the visibility and animation of the input method window.
*/
void updateImeInputAndControlTarget(WindowState target) {
if (target != null && target.mActivityRecord != null) {
target.mActivityRecord.mImeInsetsFrozenUntilStartInput = false;
}
if (mImeInputTarget != target) {
ProtoLog.i(WM_DEBUG_IME, "setInputMethodInputTarget %s", target);
if (target != null && target.mActivityRecord != null) {
target.mActivityRecord.mImeInsetsFrozenUntilStartInput = false;
}
setImeInputTarget(target);
updateImeControlTarget();
}
Expand Down
Loading

0 comments on commit 5deb721

Please sign in to comment.