|
|
|
|
@@ -20,11 +20,18 @@ import android.annotation.IntDef;
|
|
|
|
|
import android.annotation.NonNull;
|
|
|
|
|
import android.annotation.Nullable;
|
|
|
|
|
import android.annotation.SystemApi;
|
|
|
|
|
import android.content.res.Resources;
|
|
|
|
|
import android.media.AudioRecord;
|
|
|
|
|
import android.media.MediaSyncEvent;
|
|
|
|
|
import android.os.Parcel;
|
|
|
|
|
import android.os.Parcelable;
|
|
|
|
|
import android.os.PersistableBundle;
|
|
|
|
|
|
|
|
|
|
import com.android.internal.R;
|
|
|
|
|
import com.android.internal.util.DataClass;
|
|
|
|
|
import com.android.internal.util.Preconditions;
|
|
|
|
|
|
|
|
|
|
import java.util.Objects;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Represents a result supporting the hotword detection.
|
|
|
|
|
@@ -187,16 +194,20 @@ public final class HotwordDetectedResult implements Parcelable {
|
|
|
|
|
return new PersistableBundle();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static int sMaxBundleSize = -1;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns the maximum byte size of the information contained in the bundle.
|
|
|
|
|
*
|
|
|
|
|
* <p>The total size will be calculated as a sum of byte sizes over all bundle keys.
|
|
|
|
|
*
|
|
|
|
|
* <p>For example, for a bundle containing a single key: {@code "example_key" -> 42.0f}, the
|
|
|
|
|
* bundle size will be {@code 11 + Float.BYTES = 15} bytes.
|
|
|
|
|
* <p>The total size will be calculated by how much bundle data should be written into the
|
|
|
|
|
* Parcel.
|
|
|
|
|
*/
|
|
|
|
|
public static int getMaxBundleSize() {
|
|
|
|
|
return 50;
|
|
|
|
|
if (sMaxBundleSize < 0) {
|
|
|
|
|
sMaxBundleSize = Resources.getSystem().getInteger(
|
|
|
|
|
R.integer.config_hotwordDetectedResultMaxBundleSize);
|
|
|
|
|
}
|
|
|
|
|
return sMaxBundleSize;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@@ -212,6 +223,34 @@ public final class HotwordDetectedResult implements Parcelable {
|
|
|
|
|
return mMediaSyncEvent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns how many bytes should be written into the Parcel
|
|
|
|
|
*
|
|
|
|
|
* @hide
|
|
|
|
|
*/
|
|
|
|
|
public static int getParcelableSize(@NonNull Parcelable parcelable) {
|
|
|
|
|
final Parcel p = Parcel.obtain();
|
|
|
|
|
parcelable.writeToParcel(p, 0);
|
|
|
|
|
p.setDataPosition(0);
|
|
|
|
|
final int size = p.dataSize();
|
|
|
|
|
p.recycle();
|
|
|
|
|
return size;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void onConstructed() {
|
|
|
|
|
Preconditions.checkArgumentInRange(mScore, 0, getMaxScore(), "score");
|
|
|
|
|
Preconditions.checkArgumentInRange(mPersonalizedScore, 0, getMaxScore(),
|
|
|
|
|
"personalizedScore");
|
|
|
|
|
Preconditions.checkArgumentInRange(mHotwordPhraseId, 0, getMaxHotwordPhraseId(),
|
|
|
|
|
"hotwordPhraseId");
|
|
|
|
|
Preconditions.checkArgumentInRange((long) mHotwordDurationMillis, 0,
|
|
|
|
|
AudioRecord.getMaxSharedAudioHistoryMillis(), "hotwordDurationMillis");
|
|
|
|
|
if (!mExtras.isEmpty()) {
|
|
|
|
|
Preconditions.checkArgumentInRange(getParcelableSize(mExtras), 0, getMaxBundleSize(),
|
|
|
|
|
"extras");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Code below generated by codegen v1.0.23.
|
|
|
|
|
@@ -290,7 +329,7 @@ public final class HotwordDetectedResult implements Parcelable {
|
|
|
|
|
com.android.internal.util.AnnotationValidations.validate(
|
|
|
|
|
NonNull.class, null, mExtras);
|
|
|
|
|
|
|
|
|
|
// onConstructed(); // You can define this method to get a callback
|
|
|
|
|
onConstructed();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@@ -422,7 +461,7 @@ public final class HotwordDetectedResult implements Parcelable {
|
|
|
|
|
//noinspection PointlessBooleanExpression
|
|
|
|
|
return true
|
|
|
|
|
&& mConfidenceLevel == that.mConfidenceLevel
|
|
|
|
|
&& java.util.Objects.equals(mMediaSyncEvent, that.mMediaSyncEvent)
|
|
|
|
|
&& Objects.equals(mMediaSyncEvent, that.mMediaSyncEvent)
|
|
|
|
|
&& mHotwordOffsetMillis == that.mHotwordOffsetMillis
|
|
|
|
|
&& mHotwordDurationMillis == that.mHotwordDurationMillis
|
|
|
|
|
&& mAudioChannel == that.mAudioChannel
|
|
|
|
|
@@ -430,7 +469,7 @@ public final class HotwordDetectedResult implements Parcelable {
|
|
|
|
|
&& mScore == that.mScore
|
|
|
|
|
&& mPersonalizedScore == that.mPersonalizedScore
|
|
|
|
|
&& mHotwordPhraseId == that.mHotwordPhraseId
|
|
|
|
|
&& java.util.Objects.equals(mExtras, that.mExtras);
|
|
|
|
|
&& Objects.equals(mExtras, that.mExtras);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
@@ -441,7 +480,7 @@ public final class HotwordDetectedResult implements Parcelable {
|
|
|
|
|
|
|
|
|
|
int _hash = 1;
|
|
|
|
|
_hash = 31 * _hash + mConfidenceLevel;
|
|
|
|
|
_hash = 31 * _hash + java.util.Objects.hashCode(mMediaSyncEvent);
|
|
|
|
|
_hash = 31 * _hash + Objects.hashCode(mMediaSyncEvent);
|
|
|
|
|
_hash = 31 * _hash + mHotwordOffsetMillis;
|
|
|
|
|
_hash = 31 * _hash + mHotwordDurationMillis;
|
|
|
|
|
_hash = 31 * _hash + mAudioChannel;
|
|
|
|
|
@@ -449,13 +488,13 @@ public final class HotwordDetectedResult implements Parcelable {
|
|
|
|
|
_hash = 31 * _hash + mScore;
|
|
|
|
|
_hash = 31 * _hash + mPersonalizedScore;
|
|
|
|
|
_hash = 31 * _hash + mHotwordPhraseId;
|
|
|
|
|
_hash = 31 * _hash + java.util.Objects.hashCode(mExtras);
|
|
|
|
|
_hash = 31 * _hash + Objects.hashCode(mExtras);
|
|
|
|
|
return _hash;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
@DataClass.Generated.Member
|
|
|
|
|
public void writeToParcel(@NonNull android.os.Parcel dest, int flags) {
|
|
|
|
|
public void writeToParcel(@NonNull Parcel dest, int flags) {
|
|
|
|
|
// You can override field parcelling by defining methods like:
|
|
|
|
|
// void parcelFieldName(Parcel dest, int flags) { ... }
|
|
|
|
|
|
|
|
|
|
@@ -481,7 +520,7 @@ public final class HotwordDetectedResult implements Parcelable {
|
|
|
|
|
/** @hide */
|
|
|
|
|
@SuppressWarnings({"unchecked", "RedundantCast"})
|
|
|
|
|
@DataClass.Generated.Member
|
|
|
|
|
/* package-private */ HotwordDetectedResult(@NonNull android.os.Parcel in) {
|
|
|
|
|
/* package-private */ HotwordDetectedResult(@NonNull Parcel in) {
|
|
|
|
|
// You can override field unparcelling by defining methods like:
|
|
|
|
|
// static FieldType unparcelFieldName(Parcel in) { ... }
|
|
|
|
|
|
|
|
|
|
@@ -512,7 +551,7 @@ public final class HotwordDetectedResult implements Parcelable {
|
|
|
|
|
com.android.internal.util.AnnotationValidations.validate(
|
|
|
|
|
NonNull.class, null, mExtras);
|
|
|
|
|
|
|
|
|
|
// onConstructed(); // You can define this method to get a callback
|
|
|
|
|
onConstructed();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@DataClass.Generated.Member
|
|
|
|
|
@@ -524,7 +563,7 @@ public final class HotwordDetectedResult implements Parcelable {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public HotwordDetectedResult createFromParcel(@NonNull android.os.Parcel in) {
|
|
|
|
|
public HotwordDetectedResult createFromParcel(@NonNull Parcel in) {
|
|
|
|
|
return new HotwordDetectedResult(in);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
@@ -745,10 +784,10 @@ public final class HotwordDetectedResult implements Parcelable {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@DataClass.Generated(
|
|
|
|
|
time = 1621943150502L,
|
|
|
|
|
time = 1624361647985L,
|
|
|
|
|
codegenVersion = "1.0.23",
|
|
|
|
|
sourceFile = "frameworks/base/core/java/android/service/voice/HotwordDetectedResult.java",
|
|
|
|
|
inputSignatures = "public static final int CONFIDENCE_LEVEL_NONE\npublic static final int CONFIDENCE_LEVEL_LOW\npublic static final int CONFIDENCE_LEVEL_LOW_MEDIUM\npublic static final int CONFIDENCE_LEVEL_MEDIUM\npublic static final int CONFIDENCE_LEVEL_MEDIUM_HIGH\npublic static final int CONFIDENCE_LEVEL_HIGH\npublic static final int CONFIDENCE_LEVEL_VERY_HIGH\npublic static final int HOTWORD_OFFSET_UNSET\npublic static final int AUDIO_CHANNEL_UNSET\nprivate final @android.service.voice.HotwordDetectedResult.HotwordConfidenceLevelValue int mConfidenceLevel\nprivate @android.annotation.Nullable android.media.MediaSyncEvent mMediaSyncEvent\nprivate int mHotwordOffsetMillis\nprivate int mHotwordDurationMillis\nprivate int mAudioChannel\nprivate boolean mHotwordDetectionPersonalized\nprivate final int mScore\nprivate final int mPersonalizedScore\nprivate final int mHotwordPhraseId\nprivate final @android.annotation.NonNull android.os.PersistableBundle mExtras\nprivate static int defaultConfidenceLevel()\nprivate static int defaultScore()\nprivate static int defaultPersonalizedScore()\npublic static int getMaxScore()\nprivate static int defaultHotwordPhraseId()\npublic static int getMaxHotwordPhraseId()\nprivate static android.os.PersistableBundle defaultExtras()\npublic static int getMaxBundleSize()\npublic @android.annotation.Nullable android.media.MediaSyncEvent getMediaSyncEvent()\nclass HotwordDetectedResult extends java.lang.Object implements [android.os.Parcelable]\n@com.android.internal.util.DataClass(genConstructor=false, genBuilder=true, genEqualsHashCode=true, genHiddenConstDefs=true, genParcelable=true, genToString=true)")
|
|
|
|
|
inputSignatures = "public static final int CONFIDENCE_LEVEL_NONE\npublic static final int CONFIDENCE_LEVEL_LOW\npublic static final int CONFIDENCE_LEVEL_LOW_MEDIUM\npublic static final int CONFIDENCE_LEVEL_MEDIUM\npublic static final int CONFIDENCE_LEVEL_MEDIUM_HIGH\npublic static final int CONFIDENCE_LEVEL_HIGH\npublic static final int CONFIDENCE_LEVEL_VERY_HIGH\npublic static final int HOTWORD_OFFSET_UNSET\npublic static final int AUDIO_CHANNEL_UNSET\nprivate final @android.service.voice.HotwordDetectedResult.HotwordConfidenceLevelValue int mConfidenceLevel\nprivate @android.annotation.Nullable android.media.MediaSyncEvent mMediaSyncEvent\nprivate int mHotwordOffsetMillis\nprivate int mHotwordDurationMillis\nprivate int mAudioChannel\nprivate boolean mHotwordDetectionPersonalized\nprivate final int mScore\nprivate final int mPersonalizedScore\nprivate final int mHotwordPhraseId\nprivate final @android.annotation.NonNull android.os.PersistableBundle mExtras\nprivate static int sMaxBundleSize\nprivate static int defaultConfidenceLevel()\nprivate static int defaultScore()\nprivate static int defaultPersonalizedScore()\npublic static int getMaxScore()\nprivate static int defaultHotwordPhraseId()\npublic static int getMaxHotwordPhraseId()\nprivate static android.os.PersistableBundle defaultExtras()\npublic static int getMaxBundleSize()\npublic @android.annotation.Nullable android.media.MediaSyncEvent getMediaSyncEvent()\npublic static int getParcelableSize(android.os.Parcelable)\nprivate void onConstructed()\nclass HotwordDetectedResult extends java.lang.Object implements [android.os.Parcelable]\n@com.android.internal.util.DataClass(genConstructor=false, genBuilder=true, genEqualsHashCode=true, genHiddenConstDefs=true, genParcelable=true, genToString=true)")
|
|
|
|
|
@Deprecated
|
|
|
|
|
private void __metadata() {}
|
|
|
|
|
|
|
|
|
|
|