7fb1d6d53b
Flag: com.android.launcher3.enable_active_gesture_proto_log Flag: com.android.launcher3.enable_recents_window_proto_log Flag: com.android.launcher3.enable_state_manager_proto_log Fixes: 381846204 Test: ran launcher and checked logs Change-Id: I807326bd6c65b8e51f5302ba58eed841c23216f6
62 lines
2.5 KiB
Java
62 lines
2.5 KiB
Java
/*
|
|
* Copyright (C) 2024 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.quickstep.util;
|
|
|
|
import static com.android.launcher3.Flags.enableRecentsWindowProtoLog;
|
|
import static com.android.quickstep.util.QuickstepProtoLogGroup.RECENTS_WINDOW;
|
|
import static com.android.quickstep.util.QuickstepProtoLogGroup.isProtoLogInitialized;
|
|
|
|
import androidx.annotation.NonNull;
|
|
|
|
import com.android.internal.protolog.ProtoLog;
|
|
import com.android.internal.protolog.common.IProtoLogGroup;
|
|
|
|
/**
|
|
* Proxy class used for Recents Window ProtoLog support.
|
|
* <p>
|
|
* This file will have all of its static strings in the
|
|
* {@link ProtoLog#d(IProtoLogGroup, String, Object...)} calls replaced by dynamic code/strings.
|
|
* <p>
|
|
* When a new Recents Window log needs to be added to the codebase, add it here under a new unique
|
|
* method. Or, if an existing entry needs to be modified, simply update it here.
|
|
*/
|
|
public class RecentsWindowProtoLogProxy {
|
|
|
|
public static void logOnStateSetStart(@NonNull String stateName) {
|
|
if (!enableRecentsWindowProtoLog() || !isProtoLogInitialized()) return;
|
|
ProtoLog.d(RECENTS_WINDOW, "onStateSetStart: %s", stateName);
|
|
}
|
|
|
|
public static void logOnStateSetEnd(@NonNull String stateName) {
|
|
if (!enableRecentsWindowProtoLog() || !isProtoLogInitialized()) return;
|
|
ProtoLog.d(RECENTS_WINDOW, "onStateSetEnd: %s", stateName);
|
|
}
|
|
|
|
public static void logStartRecentsWindow(boolean isShown, boolean windowViewIsNull) {
|
|
if (!enableRecentsWindowProtoLog() || !isProtoLogInitialized()) return;
|
|
ProtoLog.d(RECENTS_WINDOW,
|
|
"Starting recents window: isShow= %b, windowViewIsNull=%b",
|
|
isShown,
|
|
windowViewIsNull);
|
|
}
|
|
|
|
public static void logCleanup(boolean isShown) {
|
|
if (!enableRecentsWindowProtoLog() || !isProtoLogInitialized()) return;
|
|
ProtoLog.d(RECENTS_WINDOW, "Cleaning up recents window: isShow= %b", isShown);
|
|
}
|
|
}
|