Use de-duped version on LoggingEvents now in android-common.
This CL now simply moves LatinIME to use the version of LoggingEvents in android-common, rather than duplicating the LoggingEvents class between VoiceSearch, Browser, and LatinIME. I also added in a TIMESTAMP to the START broadcast, so that we would be able to evaluate if various events happened after a user tried Voice Input. Change-Id: Ic88ff40fcedf707abc3c5eb2e68dfd0fcdef3701main
parent
b8f98ad014
commit
8600725789
|
@ -11,6 +11,8 @@ LOCAL_CERTIFICATE := shared
|
||||||
|
|
||||||
LOCAL_JNI_SHARED_LIBRARIES := libjni_latinime
|
LOCAL_JNI_SHARED_LIBRARIES := libjni_latinime
|
||||||
|
|
||||||
|
LOCAL_STATIC_JAVA_LIBRARIES := android-common
|
||||||
|
|
||||||
#LOCAL_AAPT_FLAGS := -0 .dict
|
#LOCAL_AAPT_FLAGS := -0 .dict
|
||||||
|
|
||||||
#LOCAL_SDK_VERSION := current
|
#LOCAL_SDK_VERSION := current
|
||||||
|
|
|
@ -1,119 +0,0 @@
|
||||||
/*
|
|
||||||
* Copyright (C) 2010 Google Inc.
|
|
||||||
*
|
|
||||||
* 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.inputmethod.voice;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Logging event constants used for Voice Search and VoiceIME. These are the keys and values of
|
|
||||||
* extras to be specified in logging broadcast intents to the {@link LoggingReceiver}.
|
|
||||||
*
|
|
||||||
* This class is duplicated between the VoiceSearch, LatinIME, and Browser packages. Please keep
|
|
||||||
* all versions in sync.
|
|
||||||
*/
|
|
||||||
public class LoggingEvents {
|
|
||||||
// The name of the broadcast intent for logging.
|
|
||||||
public static final String ACTION_LOG_EVENT = "com.google.android.voicesearch.LOG_EVENT";
|
|
||||||
|
|
||||||
// The extra key used for the name of the app being logged.
|
|
||||||
public static final String EXTRA_APP_NAME = "app_name";
|
|
||||||
|
|
||||||
// The extra key used for the event value. The possible event values depend on the
|
|
||||||
// app being logged for, and are defined in the subclasses below.
|
|
||||||
public static final String EXTRA_EVENT = "extra_event";
|
|
||||||
|
|
||||||
// The extra key used (with a boolean value of 'true') as a way to trigger a flush
|
|
||||||
// of the log events to the server.
|
|
||||||
public static final String EXTRA_FLUSH = "flush";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Logging event constants for voice search. Below are the extra values for
|
|
||||||
* {@link LoggingEvents#EXTRA_EVENT}, clustered with keys to additional extras
|
|
||||||
* for some events that need to be included as additional fields in the event.
|
|
||||||
*
|
|
||||||
* Note that this is not representative of *all* voice search events - only the ones
|
|
||||||
* that need to be reported from outside the voice search app, such as from Browser.
|
|
||||||
*/
|
|
||||||
public class VoiceSearch {
|
|
||||||
// The app name to be used for logging VoiceSearch events.
|
|
||||||
public static final String APP_NAME = "googlemobile";
|
|
||||||
|
|
||||||
public static final int RETRY = 0;
|
|
||||||
|
|
||||||
public static final int N_BEST_REVEAL = 1;
|
|
||||||
|
|
||||||
public static final int N_BEST_CHOOSE = 2;
|
|
||||||
public static final String EXTRA_N_BEST_CHOOSE_INDEX = "index"; // value should be int
|
|
||||||
|
|
||||||
public static final int QUERY_UPDATED = 3;
|
|
||||||
public static final String EXTRA_QUERY_UPDATED_VALUE = "value"; // value should be String
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Logging event constants for VoiceIME. Below are the extra values for
|
|
||||||
* {@link LoggingEvents#EXTRA_EVENT}, clustered with keys to additional extras
|
|
||||||
* for some events that need to be included as additional fields in the event.
|
|
||||||
*/
|
|
||||||
public class VoiceIme {
|
|
||||||
// The app name to be used for logging VoiceIME events.
|
|
||||||
public static final String APP_NAME = "voiceime";
|
|
||||||
|
|
||||||
public static final int KEYBOARD_WARNING_DIALOG_SHOWN = 0;
|
|
||||||
|
|
||||||
public static final int KEYBOARD_WARNING_DIALOG_DISMISSED = 1;
|
|
||||||
|
|
||||||
public static final int KEYBOARD_WARNING_DIALOG_OK = 2;
|
|
||||||
|
|
||||||
public static final int KEYBOARD_WARNING_DIALOG_CANCEL = 3;
|
|
||||||
|
|
||||||
public static final int SETTINGS_WARNING_DIALOG_SHOWN = 4;
|
|
||||||
|
|
||||||
public static final int SETTINGS_WARNING_DIALOG_DISMISSED = 5;
|
|
||||||
|
|
||||||
public static final int SETTINGS_WARNING_DIALOG_OK = 6;
|
|
||||||
|
|
||||||
public static final int SETTINGS_WARNING_DIALOG_CANCEL = 7;
|
|
||||||
|
|
||||||
public static final int SWIPE_HINT_DISPLAYED = 8;
|
|
||||||
|
|
||||||
public static final int PUNCTUATION_HINT_DISPLAYED = 9;
|
|
||||||
|
|
||||||
public static final int CANCEL_DURING_LISTENING = 10;
|
|
||||||
|
|
||||||
public static final int CANCEL_DURING_WORKING = 11;
|
|
||||||
|
|
||||||
public static final int CANCEL_DURING_ERROR = 12;
|
|
||||||
|
|
||||||
public static final int ERROR = 13;
|
|
||||||
public static final String EXTRA_ERROR_CODE = "code"; // value should be int
|
|
||||||
|
|
||||||
public static final int START = 14;
|
|
||||||
public static final String EXTRA_START_LOCALE = "locale"; // value should be String
|
|
||||||
public static final String EXTRA_START_SWIPE = "swipe"; // value should be boolean
|
|
||||||
|
|
||||||
public static final int VOICE_INPUT_DELIVERED = 15;
|
|
||||||
|
|
||||||
public static final int N_BEST_CHOOSE = 16;
|
|
||||||
public static final String EXTRA_N_BEST_CHOOSE_INDEX = "index"; // value should be int
|
|
||||||
|
|
||||||
public static final int TEXT_MODIFIED = 17;
|
|
||||||
|
|
||||||
public static final int INPUT_ENDED = 18;
|
|
||||||
|
|
||||||
public static final int VOICE_INPUT_SETTING_ENABLED = 19;
|
|
||||||
|
|
||||||
public static final int VOICE_INPUT_SETTING_DISABLED = 20;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -16,13 +16,15 @@
|
||||||
|
|
||||||
package com.android.inputmethod.voice;
|
package com.android.inputmethod.voice;
|
||||||
|
|
||||||
|
import com.android.common.speech.LoggingEvents;
|
||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Provides the logging facility for voice input events. This fires broadcasts back to
|
* Provides the logging facility for voice input events. This fires broadcasts back to
|
||||||
* the voice search app which then logs on our behalf.
|
* the voice search app which then logs on our behalf.
|
||||||
*
|
*
|
||||||
* Note that debug console logging does not occur in this class. If you want to
|
* Note that debug console logging does not occur in this class. If you want to
|
||||||
* see console output of these logging events, there is a boolean switch to turn
|
* see console output of these logging events, there is a boolean switch to turn
|
||||||
* on on the VoiceSearch side.
|
* on on the VoiceSearch side.
|
||||||
|
@ -141,6 +143,7 @@ public class VoiceInputLogger {
|
||||||
Intent i = newLoggingBroadcast(LoggingEvents.VoiceIme.START);
|
Intent i = newLoggingBroadcast(LoggingEvents.VoiceIme.START);
|
||||||
i.putExtra(LoggingEvents.VoiceIme.EXTRA_START_LOCALE, locale);
|
i.putExtra(LoggingEvents.VoiceIme.EXTRA_START_LOCALE, locale);
|
||||||
i.putExtra(LoggingEvents.VoiceIme.EXTRA_START_SWIPE, swipe);
|
i.putExtra(LoggingEvents.VoiceIme.EXTRA_START_SWIPE, swipe);
|
||||||
|
i.putExtra(LoggingEvents.EXTRA_TIMESTAMP, System.currentTimeMillis());
|
||||||
mContext.sendBroadcast(i);
|
mContext.sendBroadcast(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue