2016-04-12 18:32:04 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2012 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2016-03-04 11:02:40 -08:00
|
|
|
package com.android.launcher3.logging;
|
|
|
|
|
|
2016-05-10 16:59:55 -07:00
|
|
|
import android.content.ComponentName;
|
2016-04-12 18:32:04 -07:00
|
|
|
import android.content.Intent;
|
2016-06-20 14:56:28 -07:00
|
|
|
import android.util.Log;
|
2016-04-12 18:32:04 -07:00
|
|
|
import android.view.View;
|
|
|
|
|
import android.view.ViewParent;
|
2016-03-08 16:55:47 -08:00
|
|
|
|
2016-04-12 18:32:04 -07:00
|
|
|
import com.android.launcher3.ItemInfo;
|
2016-04-15 13:01:40 -07:00
|
|
|
import com.android.launcher3.userevent.nano.LauncherLogProto.Action;
|
2016-04-12 18:32:04 -07:00
|
|
|
import com.android.launcher3.userevent.nano.LauncherLogProto.LauncherEvent;
|
|
|
|
|
import com.android.launcher3.userevent.nano.LauncherLogProto.Target;
|
|
|
|
|
import com.android.launcher3.util.ComponentKey;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
2016-06-20 14:56:28 -07:00
|
|
|
import java.util.Locale;
|
2016-03-08 16:55:47 -08:00
|
|
|
|
2016-04-19 18:30:24 -07:00
|
|
|
/**
|
|
|
|
|
* Manages the creation of {@link LauncherEvent}.
|
|
|
|
|
*/
|
2016-06-20 14:56:28 -07:00
|
|
|
public class UserEventDispatcher {
|
|
|
|
|
|
|
|
|
|
private static final boolean DEBUG_LOGGING = false;
|
2016-03-08 16:55:47 -08:00
|
|
|
|
2016-04-12 18:32:04 -07:00
|
|
|
private final static int MAXIMUM_VIEW_HIERARCHY_LEVEL = 5;
|
|
|
|
|
/**
|
|
|
|
|
* Implemented by containers to provide a launch source for a given child.
|
|
|
|
|
*/
|
|
|
|
|
public interface LaunchSourceProvider {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Copies data from the source to the destination proto.
|
|
|
|
|
* @param v source of the data
|
|
|
|
|
* @param info source of the data
|
|
|
|
|
* @param target dest of the data
|
|
|
|
|
* @param targetParent dest of the data
|
|
|
|
|
*/
|
|
|
|
|
void fillInLaunchSourceData(View v, ItemInfo info, Target target, Target targetParent);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Recursively finds the parent of the given child which implements IconLogInfoProvider
|
|
|
|
|
*/
|
|
|
|
|
public static LaunchSourceProvider getLaunchProviderRecursive(View v) {
|
|
|
|
|
ViewParent parent = null;
|
|
|
|
|
if (v != null) {
|
|
|
|
|
parent = v.getParent();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Optimization to only check up to 5 parents.
|
|
|
|
|
int count = MAXIMUM_VIEW_HIERARCHY_LEVEL;
|
|
|
|
|
while (parent != null && count-- > 0) {
|
|
|
|
|
if (parent instanceof LaunchSourceProvider) {
|
|
|
|
|
return (LaunchSourceProvider) parent;
|
|
|
|
|
} else {
|
|
|
|
|
parent = parent.getParent();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-19 18:30:24 -07:00
|
|
|
private String TAG = "UserEvent";
|
2016-03-08 16:55:47 -08:00
|
|
|
|
|
|
|
|
private long mElapsedContainerMillis;
|
|
|
|
|
private long mElapsedSessionMillis;
|
|
|
|
|
private long mActionDurationMillis;
|
|
|
|
|
|
2016-04-12 18:32:04 -07:00
|
|
|
// Used for filling in predictedRank on {@link Target}s.
|
|
|
|
|
private List<ComponentKey> mPredictedApps;
|
|
|
|
|
|
|
|
|
|
// APP_ICON SHORTCUT WIDGET
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
|
// packageNameHash required optional required
|
|
|
|
|
// componentNameHash required required
|
|
|
|
|
// intentHash required
|
|
|
|
|
// --------------------------------------------------------------
|
2016-03-08 16:55:47 -08:00
|
|
|
|
2016-05-10 16:59:55 -07:00
|
|
|
protected LauncherEvent createLauncherEvent(View v, Intent intent) {
|
2016-04-12 18:32:04 -07:00
|
|
|
LauncherEvent event = LoggerUtils.initLauncherEvent(
|
|
|
|
|
Action.TOUCH, Target.ITEM, Target.CONTAINER);
|
|
|
|
|
event.action.touch = Action.TAP;
|
2016-03-08 16:55:47 -08:00
|
|
|
|
2016-04-12 18:32:04 -07:00
|
|
|
// Fill in grid(x,y), pageIndex of the child and container type of the parent
|
|
|
|
|
// TODO: make this percolate up the view hierarchy if needed.
|
|
|
|
|
int idx = 0;
|
|
|
|
|
LaunchSourceProvider provider = getLaunchProviderRecursive(v);
|
2016-05-10 16:59:55 -07:00
|
|
|
ItemInfo itemInfo = (ItemInfo) v.getTag();
|
|
|
|
|
provider.fillInLaunchSourceData(v, itemInfo, event.srcTarget[idx], event.srcTarget[idx + 1]);
|
|
|
|
|
|
|
|
|
|
event.srcTarget[idx].intentHash = intent.hashCode();
|
|
|
|
|
ComponentName cn = intent.getComponent();
|
|
|
|
|
if (cn != null) {
|
|
|
|
|
event.srcTarget[idx].packageNameHash = cn.getPackageName().hashCode();
|
|
|
|
|
event.srcTarget[idx].componentHash = cn.hashCode();
|
2016-05-11 11:26:01 -07:00
|
|
|
if (mPredictedApps != null) {
|
|
|
|
|
event.srcTarget[idx].predictedRank = mPredictedApps.indexOf(
|
|
|
|
|
new ComponentKey(cn, itemInfo.user));
|
|
|
|
|
}
|
2016-05-10 16:59:55 -07:00
|
|
|
}
|
2016-03-08 16:55:47 -08:00
|
|
|
|
2016-04-12 18:32:04 -07:00
|
|
|
// Fill in the duration of time spent navigating in Launcher and the container.
|
2016-03-08 16:55:47 -08:00
|
|
|
event.elapsedContainerMillis = System.currentTimeMillis() - mElapsedContainerMillis;
|
|
|
|
|
event.elapsedSessionMillis = System.currentTimeMillis() - mElapsedSessionMillis;
|
2016-04-15 13:01:40 -07:00
|
|
|
return event;
|
|
|
|
|
}
|
2016-04-12 18:32:04 -07:00
|
|
|
|
2016-04-19 18:30:24 -07:00
|
|
|
public void logAppLaunch(View v, Intent intent) {
|
2016-05-10 16:59:55 -07:00
|
|
|
dispatchUserEvent(createLauncherEvent(v, intent), intent);
|
2016-04-12 18:32:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void logTap(View v) {
|
|
|
|
|
// TODO
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void logLongPress() {
|
|
|
|
|
// TODO
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void logDragNDrop() {
|
|
|
|
|
// TODO
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setPredictedApps(List<ComponentKey> predictedApps) {
|
|
|
|
|
mPredictedApps = predictedApps;
|
2016-03-08 16:55:47 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Currently logs following containers: workspace, allapps, widget tray.
|
|
|
|
|
*/
|
|
|
|
|
public final void resetElapsedContainerMillis() {
|
|
|
|
|
mElapsedContainerMillis = System.currentTimeMillis();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public final void resetElapsedSessionMillis() {
|
|
|
|
|
mElapsedSessionMillis = System.currentTimeMillis();
|
|
|
|
|
mElapsedContainerMillis = System.currentTimeMillis();
|
2016-04-12 18:32:04 -07:00
|
|
|
|
2016-03-08 16:55:47 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public final void resetActionDurationMillis() {
|
|
|
|
|
mActionDurationMillis = System.currentTimeMillis();
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-20 14:56:28 -07:00
|
|
|
public void dispatchUserEvent(LauncherEvent ev, Intent intent) {
|
|
|
|
|
if (DEBUG_LOGGING) {
|
|
|
|
|
Log.d("UserEvent", String.format(Locale.US,
|
|
|
|
|
"action:%s\nchild:%s\nparent:%s\nelapsed container %d ms session %d ms",
|
|
|
|
|
LoggerUtils.getActionStr(ev.action),
|
|
|
|
|
LoggerUtils.getTargetStr(ev.srcTarget[0]),
|
|
|
|
|
LoggerUtils.getTargetStr(ev.srcTarget[1]),
|
|
|
|
|
ev.elapsedContainerMillis,
|
|
|
|
|
ev.elapsedSessionMillis));
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-04-12 18:32:04 -07:00
|
|
|
|
|
|
|
|
public int getPredictedRank(ComponentKey key) {
|
|
|
|
|
if (mPredictedApps == null) return -1;
|
|
|
|
|
return mPredictedApps.indexOf(key);
|
|
|
|
|
}
|
|
|
|
|
}
|