2024-10-01 14:06:49 -04:00
|
|
|
/*
|
|
|
|
|
* 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.launcher3.util;
|
|
|
|
|
|
|
|
|
|
import static com.android.quickstep.util.QuickstepProtoLogGroup.LAUNCHER_STATE_MANAGER;
|
2024-12-12 11:03:56 -05:00
|
|
|
import static com.android.quickstep.util.QuickstepProtoLogGroup.isProtoLogInitialized;
|
2024-10-01 14:06:49 -04:00
|
|
|
|
2025-03-07 18:22:59 +00:00
|
|
|
import android.window.DesktopModeFlags.DesktopModeFlag;
|
|
|
|
|
|
2024-10-01 14:06:49 -04:00
|
|
|
import androidx.annotation.NonNull;
|
|
|
|
|
|
|
|
|
|
import com.android.internal.protolog.ProtoLog;
|
2025-03-07 18:22:59 +00:00
|
|
|
import com.android.launcher3.Flags;
|
2024-10-01 14:06:49 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Proxy class used for StateManager ProtoLog support.
|
|
|
|
|
*/
|
|
|
|
|
public class StateManagerProtoLogProxy {
|
2025-03-07 18:22:59 +00:00
|
|
|
private static final DesktopModeFlag ENABLE_STATE_MANAGER_PROTO_LOG =
|
|
|
|
|
new DesktopModeFlag(Flags::enableStateManagerProtoLog, true);
|
2024-10-01 14:06:49 -04:00
|
|
|
public static void logGoToState(
|
|
|
|
|
@NonNull Object fromState, @NonNull Object toState, @NonNull String trace) {
|
2025-03-07 18:22:59 +00:00
|
|
|
if (!ENABLE_STATE_MANAGER_PROTO_LOG.isTrue() || !isProtoLogInitialized()) return;
|
2024-10-01 14:06:49 -04:00
|
|
|
ProtoLog.d(LAUNCHER_STATE_MANAGER,
|
|
|
|
|
"StateManager.goToState: fromState: %s, toState: %s, partial trace:\n%s",
|
|
|
|
|
fromState,
|
|
|
|
|
toState,
|
|
|
|
|
trace);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void logCreateAtomicAnimation(
|
|
|
|
|
@NonNull Object fromState, @NonNull Object toState, @NonNull String trace) {
|
2025-03-07 18:22:59 +00:00
|
|
|
if (!ENABLE_STATE_MANAGER_PROTO_LOG.isTrue() || !isProtoLogInitialized()) return;
|
2024-10-01 14:06:49 -04:00
|
|
|
ProtoLog.d(LAUNCHER_STATE_MANAGER, "StateManager.createAtomicAnimation: "
|
|
|
|
|
+ "fromState: %s, toState: %s, partial trace:\n%s",
|
|
|
|
|
fromState,
|
|
|
|
|
toState,
|
|
|
|
|
trace);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void logOnStateTransitionStart(@NonNull Object state) {
|
2025-03-07 18:22:59 +00:00
|
|
|
if (!ENABLE_STATE_MANAGER_PROTO_LOG.isTrue() || !isProtoLogInitialized()) return;
|
2024-10-01 14:06:49 -04:00
|
|
|
ProtoLog.d(LAUNCHER_STATE_MANAGER, "StateManager.onStateTransitionStart: state: %s", state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void logOnStateTransitionEnd(@NonNull Object state) {
|
2025-03-07 18:22:59 +00:00
|
|
|
if (!ENABLE_STATE_MANAGER_PROTO_LOG.isTrue() || !isProtoLogInitialized()) return;
|
2024-10-01 14:06:49 -04:00
|
|
|
ProtoLog.d(LAUNCHER_STATE_MANAGER, "StateManager.onStateTransitionEnd: state: %s", state);
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-28 20:00:03 +07:00
|
|
|
public static void logOnRepeatStateSetAborted(@NonNull Object state) {
|
|
|
|
|
if (!ENABLE_STATE_MANAGER_PROTO_LOG.isTrue() || !isProtoLogInitialized()) return;
|
|
|
|
|
ProtoLog.d(LAUNCHER_STATE_MANAGER,
|
|
|
|
|
"StateManager.onRepeatStateSetAborted: state: %s", state);
|
|
|
|
|
}
|
|
|
|
|
|
2024-10-01 14:06:49 -04:00
|
|
|
public static void logCancelAnimation(boolean animationOngoing, @NonNull String trace) {
|
2025-03-07 18:22:59 +00:00
|
|
|
if (!ENABLE_STATE_MANAGER_PROTO_LOG.isTrue() || !isProtoLogInitialized()) return;
|
2024-10-01 14:06:49 -04:00
|
|
|
ProtoLog.d(LAUNCHER_STATE_MANAGER,
|
|
|
|
|
"StateManager.cancelAnimation: animation ongoing: %b, partial trace:\n%s",
|
|
|
|
|
animationOngoing,
|
|
|
|
|
trace);
|
|
|
|
|
}
|
|
|
|
|
}
|