Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fc2b6f39 authored by Joshua McCloskey's avatar Joshua McCloskey
Browse files

Adding biometric FRR Notification atom.

Tested thoroughly with the shell commands & statsd_testdrive
adb shell cmd face notification
adb shell cmd fingerprint notification

Test: statsd_testdrive 793
Test: statsd_testdrive 184
Test: atest
Bug: 302171089

Change-Id: I31f9b06f568623c199975628603a752b88a2b164
parent ed98dc37
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
@@ -19,6 +19,8 @@ package android.hardware.biometrics;
import android.annotation.IntDef;
import android.app.KeyguardManager;
import android.hardware.biometrics.BiometricManager.Authenticators;
import android.hardware.face.FaceEnrollOptions;
import android.hardware.face.FaceEnrollOptions.EnrollReason;
import android.hardware.face.FaceManager;

import java.lang.annotation.Retention;
@@ -432,4 +434,22 @@ public interface BiometricFaceConstants {
     * vendor code.
     */
    int FACE_ACQUIRED_VENDOR_BASE = 1000;


    /**
     * Converts FaceEnrollOptions.reason into BiometricsProtoEnums.enrollReason
     */
    public static int reasonToMetric(@EnrollReason int reason) {
        switch (reason) {
            case FaceEnrollOptions.ENROLL_REASON_RE_ENROLL_NOTIFICATION:
                return BiometricsProtoEnums.ENROLLMENT_SOURCE_FRR_NOTIFICATION;
            case FaceEnrollOptions.ENROLL_REASON_SETTINGS:
                return BiometricsProtoEnums.ENROLLMENT_SOURCE_SETTINGS;
            case FaceEnrollOptions.ENROLL_REASON_SUW:
                return BiometricsProtoEnums.ENROLLMENT_SOURCE_SUW;
            default:
                return BiometricsProtoEnums.ENROLLMENT_SOURCE_UNKNOWN;
        }

    }
}
+20 −0
Original line number Diff line number Diff line
@@ -20,6 +20,8 @@ import android.annotation.IntDef;
import android.app.KeyguardManager;
import android.compat.annotation.UnsupportedAppUsage;
import android.hardware.biometrics.BiometricManager.Authenticators;
import android.hardware.fingerprint.FingerprintEnrollOptions;
import android.hardware.fingerprint.FingerprintEnrollOptions.EnrollReason;
import android.hardware.fingerprint.FingerprintManager;
import android.os.Build;

@@ -350,4 +352,22 @@ public interface BiometricFingerprintConstants {
                return false;
        }
    }


    /**
     * Converts FaceEnrollOptions.reason into BiometricsProtoEnums.enrollReason
     */
    static int reasonToMetric(@EnrollReason int reason) {
        switch(reason) {
            case FingerprintEnrollOptions.ENROLL_REASON_RE_ENROLL_NOTIFICATION:
                return BiometricsProtoEnums.ENROLLMENT_SOURCE_FRR_NOTIFICATION;
            case FingerprintEnrollOptions.ENROLL_REASON_SETTINGS:
                return BiometricsProtoEnums.ENROLLMENT_SOURCE_SETTINGS;
            case FingerprintEnrollOptions.ENROLL_REASON_SUW:
                return BiometricsProtoEnums.ENROLLMENT_SOURCE_SUW;
            default:
                return BiometricsProtoEnums.ENROLLMENT_SOURCE_UNKNOWN;
        }

    }
}
+7 −0
Original line number Diff line number Diff line
@@ -99,6 +99,13 @@ public class BiometricManager {
    private static final int GET_LAST_AUTH_TIME_ALLOWED_AUTHENTICATORS =
            Authenticators.DEVICE_CREDENTIAL | Authenticators.BIOMETRIC_STRONG;

    /**
     * Enroll reason extra that can be used by settings to understand where this request came
     * from.
     * @hide
     */
    public static final String EXTRA_ENROLL_REASON = "enroll_reason";

    /**
     * @hide
     */
+19 −0
Original line number Diff line number Diff line
/*
 * 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 android.hardware.face;

parcelable FaceEnrollOptions;
+259 −0
Original line number Diff line number Diff line
/*
 * 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 android.hardware.face;

import android.os.Parcelable;

import com.android.internal.util.DataClass;

/**
 * Additional options when requesting Face enrollment.
 *
 * @hide
 */
@DataClass(
        genParcelable = true,
        genAidl = true,
        genBuilder = true,
        genSetters = true,
        genEqualsHashCode = true
)
public class FaceEnrollOptions implements Parcelable {
    public static final int ENROLL_REASON_UNKNOWN = 0;
    public static final int ENROLL_REASON_RE_ENROLL_NOTIFICATION = 1;
    public static final int ENROLL_REASON_SETTINGS = 2;
    public static final int ENROLL_REASON_SUW = 3;

    /**
     * The reason for enrollment.
     */
    @EnrollReason
    private final int mEnrollReason;
    private static int defaultEnrollReason() {
        return ENROLL_REASON_UNKNOWN;
    }




    // Code below generated by codegen v1.0.23.
    //
    // DO NOT MODIFY!
    // CHECKSTYLE:OFF Generated code
    //
    // To regenerate run:
    // $ codegen $ANDROID_BUILD_TOP/frameworks/base/core/java/android/hardware/face/FaceEnrollOptions.java
    //
    // To exclude the generated code from IntelliJ auto-formatting enable (one-time):
    //   Settings > Editor > Code Style > Formatter Control
    //@formatter:off


    @android.annotation.IntDef(prefix = "ENROLL_REASON_", value = {
        ENROLL_REASON_UNKNOWN,
        ENROLL_REASON_RE_ENROLL_NOTIFICATION,
        ENROLL_REASON_SETTINGS,
        ENROLL_REASON_SUW
    })
    @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.SOURCE)
    @DataClass.Generated.Member
    public @interface EnrollReason {}

    @DataClass.Generated.Member
    public static String enrollReasonToString(@EnrollReason int value) {
        switch (value) {
            case ENROLL_REASON_UNKNOWN:
                    return "ENROLL_REASON_UNKNOWN";
            case ENROLL_REASON_RE_ENROLL_NOTIFICATION:
                    return "ENROLL_REASON_RE_ENROLL_NOTIFICATION";
            case ENROLL_REASON_SETTINGS:
                    return "ENROLL_REASON_SETTINGS";
            case ENROLL_REASON_SUW:
                    return "ENROLL_REASON_SUW";
            default: return Integer.toHexString(value);
        }
    }

    @DataClass.Generated.Member
    /* package-private */ FaceEnrollOptions(
            @EnrollReason int enrollReason) {
        this.mEnrollReason = enrollReason;

        if (!(mEnrollReason == ENROLL_REASON_UNKNOWN)
                && !(mEnrollReason == ENROLL_REASON_RE_ENROLL_NOTIFICATION)
                && !(mEnrollReason == ENROLL_REASON_SETTINGS)
                && !(mEnrollReason == ENROLL_REASON_SUW)) {
            throw new java.lang.IllegalArgumentException(
                    "enrollReason was " + mEnrollReason + " but must be one of: "
                            + "ENROLL_REASON_UNKNOWN(" + ENROLL_REASON_UNKNOWN + "), "
                            + "ENROLL_REASON_RE_ENROLL_NOTIFICATION(" + ENROLL_REASON_RE_ENROLL_NOTIFICATION + "), "
                            + "ENROLL_REASON_SETTINGS(" + ENROLL_REASON_SETTINGS + "), "
                            + "ENROLL_REASON_SUW(" + ENROLL_REASON_SUW + ")");
        }


        // onConstructed(); // You can define this method to get a callback
    }

    /**
     * The reason for enrollment.
     */
    @DataClass.Generated.Member
    public @EnrollReason int getEnrollReason() {
        return mEnrollReason;
    }

    @Override
    @DataClass.Generated.Member
    public boolean equals(@android.annotation.Nullable Object o) {
        // You can override field equality logic by defining either of the methods like:
        // boolean fieldNameEquals(FaceEnrollOptions other) { ... }
        // boolean fieldNameEquals(FieldType otherValue) { ... }

        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        @SuppressWarnings("unchecked")
        FaceEnrollOptions that = (FaceEnrollOptions) o;
        //noinspection PointlessBooleanExpression
        return true
                && mEnrollReason == that.mEnrollReason;
    }

    @Override
    @DataClass.Generated.Member
    public int hashCode() {
        // You can override field hashCode logic by defining methods like:
        // int fieldNameHashCode() { ... }

        int _hash = 1;
        _hash = 31 * _hash + mEnrollReason;
        return _hash;
    }

    @Override
    @DataClass.Generated.Member
    public void writeToParcel(@android.annotation.NonNull android.os.Parcel dest, int flags) {
        // You can override field parcelling by defining methods like:
        // void parcelFieldName(Parcel dest, int flags) { ... }

        dest.writeInt(mEnrollReason);
    }

    @Override
    @DataClass.Generated.Member
    public int describeContents() { return 0; }

    /** @hide */
    @SuppressWarnings({"unchecked", "RedundantCast"})
    @DataClass.Generated.Member
    protected FaceEnrollOptions(@android.annotation.NonNull android.os.Parcel in) {
        // You can override field unparcelling by defining methods like:
        // static FieldType unparcelFieldName(Parcel in) { ... }

        int enrollReason = in.readInt();

        this.mEnrollReason = enrollReason;

        if (!(mEnrollReason == ENROLL_REASON_UNKNOWN)
                && !(mEnrollReason == ENROLL_REASON_RE_ENROLL_NOTIFICATION)
                && !(mEnrollReason == ENROLL_REASON_SETTINGS)
                && !(mEnrollReason == ENROLL_REASON_SUW)) {
            throw new java.lang.IllegalArgumentException(
                    "enrollReason was " + mEnrollReason + " but must be one of: "
                            + "ENROLL_REASON_UNKNOWN(" + ENROLL_REASON_UNKNOWN + "), "
                            + "ENROLL_REASON_RE_ENROLL_NOTIFICATION(" + ENROLL_REASON_RE_ENROLL_NOTIFICATION + "), "
                            + "ENROLL_REASON_SETTINGS(" + ENROLL_REASON_SETTINGS + "), "
                            + "ENROLL_REASON_SUW(" + ENROLL_REASON_SUW + ")");
        }


        // onConstructed(); // You can define this method to get a callback
    }

    @DataClass.Generated.Member
    public static final @android.annotation.NonNull Parcelable.Creator<FaceEnrollOptions> CREATOR
            = new Parcelable.Creator<FaceEnrollOptions>() {
        @Override
        public FaceEnrollOptions[] newArray(int size) {
            return new FaceEnrollOptions[size];
        }

        @Override
        public FaceEnrollOptions createFromParcel(@android.annotation.NonNull android.os.Parcel in) {
            return new FaceEnrollOptions(in);
        }
    };

    /**
     * A builder for {@link FaceEnrollOptions}
     */
    @SuppressWarnings("WeakerAccess")
    @DataClass.Generated.Member
    public static class Builder {

        private @EnrollReason int mEnrollReason;

        private long mBuilderFieldsSet = 0L;

        public Builder() {
        }

        /**
         * The reason for enrollment.
         */
        @DataClass.Generated.Member
        public @android.annotation.NonNull Builder setEnrollReason(@EnrollReason int value) {
            checkNotUsed();
            mBuilderFieldsSet |= 0x1;
            mEnrollReason = value;
            return this;
        }

        /** Builds the instance. This builder should not be touched after calling this! */
        public @android.annotation.NonNull FaceEnrollOptions build() {
            checkNotUsed();
            mBuilderFieldsSet |= 0x2; // Mark builder used

            if ((mBuilderFieldsSet & 0x1) == 0) {
                mEnrollReason = defaultEnrollReason();
            }
            FaceEnrollOptions o = new FaceEnrollOptions(
                    mEnrollReason);
            return o;
        }

        private void checkNotUsed() {
            if ((mBuilderFieldsSet & 0x2) != 0) {
                throw new IllegalStateException(
                        "This Builder should not be reused. Use a new Builder instance instead");
            }
        }
    }

    @DataClass.Generated(
            time = 1707949032303L,
            codegenVersion = "1.0.23",
            sourceFile = "frameworks/base/core/java/android/hardware/face/FaceEnrollOptions.java",
            inputSignatures = "public static final  int ENROLL_REASON_UNKNOWN\npublic static final  int ENROLL_REASON_RE_ENROLL_NOTIFICATION\npublic static final  int ENROLL_REASON_SETTINGS\npublic static final  int ENROLL_REASON_SUW\nprivate final @android.hardware.face.FaceEnrollOptions.EnrollReason int mEnrollReason\nprivate static  int defaultEnrollReason()\nclass FaceEnrollOptions extends java.lang.Object implements [android.os.Parcelable]\n@com.android.internal.util.DataClass(genParcelable=true, genAidl=true, genBuilder=true, genSetters=true, genEqualsHashCode=true)")
    @Deprecated
    private void __metadata() {}


    //@formatter:on
    // End of generated code

}
Loading