blob: 93848c57bb070f647b0a27ffbfea69df7d7d0986 [file] [log] [blame]
Zachary Iqbal1f700742018-04-24 23:42:21 -07001/*
2 * Copyright (C) 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.hardware.biometrics.face@1.0;
18
19/**
20 * This callback interface is used by clients to recieve updates from the face
21 * HAL.
22 */
23interface IBiometricsFaceClientCallback {
24
25 /**
26 * A callback invoked when one enrollment step has been completed.
27 *
28 * @param deviceId A unique id associated with the HAL implementation
29 * service that processed this enrollment step.
30 * @param faceId The id of the face template being enrolled.
31 * @param userId The active user id for the template being enrolled.
32 * @param remaining The number of remaining steps before enrolllment is
33 * complete or 0 if enrollment has completed successfully.
34 */
35 oneway onEnrollResult(uint64_t deviceId, uint32_t faceId, int32_t userId,
36 uint32_t remaining);
37
38 /**
39 * A callback invoked when a face has been successfully authenticated.
40 *
41 * @param deviceId A unique id associated with the HAL implementation
42 * service that processed this autentication attempt.
43 * @param faceId The id of the face template that passed the authentication
44 * challenge.
45 * @param userId The active user id for the authenticated face.
46 * @param token The hardware authentication token associated with this
47 * authenticate operation.
48 */
49 oneway onAuthenticated(uint64_t deviceId, uint32_t faceId, int32_t userId,
50 vec<uint8_t> token);
51
52 /**
53 * A callback invoked when a face is acquired.
54 *
55 * If a non-critical, recoverable error occurs during an enrollment or
56 * authentication attempt, the HAL implementation must invoke this callback
57 * to allow clients to inform the user that some actionable change must be
58 * made.
59 *
60 * @param deviceId A unique id associated with the HAL implementation
61 * service that acquired a face.
62 * @param userId The id of the active user associated with the attempted
63 * face acquisition.
64 * @param acquiredInfo A message about the quality of the acquired image.
65 * @param vendorCode An optional vendor-specific message. This is only valid
66 * when acquiredInfo == FaceAcquiredInfo.VENDOR. This message is opaque
67 * to the framework, and vendors must provide code to handle it. For
68 * example this can be used to guide enrollment in Settings or provide
69 * a message during authentication that is vendor-specific. The vendor
70 * is expected to provide help strings to cover all known values.
71 */
72 oneway onAcquired(uint64_t deviceId, int32_t userId,
73 FaceAcquiredInfo acquiredInfo, int32_t vendorCode);
74
75 /**
76 * A callback invoked when an error has occured.
77 *
78 * @param deviceId A unique id associated with the HAL implementation
79 * service where this error occured.
80 * @param userId The id of the active user when the error occured, or
81 * UserHandle::NONE if an active user had not been set yet.
82 * @param error A message about the error that occurred.
83 * @param vendorCode An optional, vendor-speicifc error message. Only valid
84 * when error == FaceError.VENDOR. This message is opaque to the
85 * framework, and vendors must provide code to handle it. For example,
86 * this scan be used to show the user an error message specific to the
87 * device. The vendor is expected to provide error strings to cover
88 * all known values.
89 */
90 oneway onError(uint64_t deviceId, int32_t userId, FaceError error,
91 int32_t vendorCode);
92
93 /**
94 * A callback invoked when a face template has been removed.
95 *
96 * @param deviceId A unique id associated with the HAL implementation
97 * service that processed this removal.
98 * @param faceId The id of the face template that was removed.
99 * @param userId The active user id for the removed face template.
100 * @param remaining The number of face templates remaining after this
101 * removal, or 0 if there are no more.
102 */
103 oneway onRemoved(uint64_t deviceId, uint32_t faceId, int32_t userId,
104 uint32_t remaining);
105
106 /**
107 * A callback invoked to enumerate all current face templates.
108 *
109 * @param deviceId A unique id associated with the HAL implementation
110 * service that processed this enumeration.
111 * @param faceIds A list of ids of all currently enrolled face templates.
112 * @param userId The active user id for the enumerated face template.
113 */
114 oneway onEnumerate(uint64_t deviceId, vec<uint32_t> faceIds,
115 int32_t userId);
116};