Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1087)

Side by Side Diff: chromeos/dbus/biod/fake_biod_client.h

Issue 2644233002: cros: Added a fake fingerprint storage class. (Closed)
Patch Set: Fixed patch set 8 errors. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROMEOS_DBUS_BIOD_FAKE_BIOD_CLIENT_H_ 5 #ifndef CHROMEOS_DBUS_BIOD_FAKE_BIOD_CLIENT_H_
6 #define CHROMEOS_DBUS_BIOD_FAKE_BIOD_CLIENT_H_ 6 #define CHROMEOS_DBUS_BIOD_FAKE_BIOD_CLIENT_H_
7 7
8 #include <map>
9 #include <string>
10
8 #include "base/macros.h" 11 #include "base/macros.h"
9 #include "base/observer_list.h" 12 #include "base/observer_list.h"
10 #include "chromeos/chromeos_export.h" 13 #include "chromeos/chromeos_export.h"
11 #include "chromeos/dbus/biod/biod_client.h" 14 #include "chromeos/dbus/biod/biod_client.h"
15 #include "dbus/object_path.h"
12 16
13 namespace dbus { 17 namespace dbus {
14 class Bus; 18 class Bus;
15 class ObjectPath;
16 } // namespace dbus 19 } // namespace dbus
17 20
18 namespace chromeos { 21 namespace chromeos {
19 22
20 // A fake implementation of BiodClient. 23 // A fake implementation of BiodClient. It emulates the real Biod daemon by
24 // providing the same API and storing fingerprints locally. A fingerprint is
25 // represented by a vector of strings. During enrollment, fake enrollments are
26 // sent as strings. If they are successful they get push backed to the current
27 // fingerprint, until a completed enroll scan is sent. An attempt scan is also
28 // sent with a string. If that string matches any string in the stored
29 // fingerprint vector, it is considered a match.
21 class CHROMEOS_EXPORT FakeBiodClient : public BiodClient { 30 class CHROMEOS_EXPORT FakeBiodClient : public BiodClient {
22 public: 31 public:
23 FakeBiodClient(); 32 FakeBiodClient();
24 ~FakeBiodClient() override; 33 ~FakeBiodClient() override;
25 34
26 // Emulates the biod daemon by sending events which the daemon normally sends. 35 // Emulates the biod daemon by sending events which the daemon normally sends.
27 // Notifies |observers_| about various events. These will be used in tests. 36 // Notifies |observers_| about various events. These will be used in tests.
28 void SendEnrollScanDone(biod::ScanResult type_result, bool is_complete); 37
29 void SendAuthScanDone(biod::ScanResult type_result, 38 // Emulates a scan that occurs during enrolling a new fingerprint.
30 const AuthScanMatches& matches); 39 // |fingerprint| is the fake data of the finger as a string. If |is_complete|
40 // is true the enroll session is finished, and the record is stored.
41 void SendEnrollScanDone(const std::string& fingerprint,
42 biod::ScanResult type_result,
43 bool is_complete);
44 // Emulates a scan that occurs during a authentication session. |fingerprint|
45 // is a string which represents the finger, and will be compared with all the
46 // stored fingerprints.
47 void SendAuthScanDone(const std::string& fingerprint,
48 biod::ScanResult type_result);
31 void SendSessionFailed(); 49 void SendSessionFailed();
32 50
51 // Clears all stored and current records from the fake storage.
52 void Reset();
53
33 // BiodClient: 54 // BiodClient:
34 void Init(dbus::Bus* bus) override; 55 void Init(dbus::Bus* bus) override;
35 void AddObserver(Observer* observer) override; 56 void AddObserver(Observer* observer) override;
36 void RemoveObserver(Observer* observer) override; 57 void RemoveObserver(Observer* observer) override;
37 bool HasObserver(const Observer* observer) const override; 58 bool HasObserver(const Observer* observer) const override;
38 void StartEnrollSession(const std::string& user_id, 59 void StartEnrollSession(const std::string& user_id,
39 const std::string& label, 60 const std::string& label,
40 const ObjectPathCallback& callback) override; 61 const ObjectPathCallback& callback) override;
41 void GetRecordsForUser(const std::string& user_id, 62 void GetRecordsForUser(const std::string& user_id,
42 const UserRecordsCallback& callback) override; 63 const UserRecordsCallback& callback) override;
43 void DestroyAllRecords() override; 64 void DestroyAllRecords() override;
44 void StartAuthSession(const ObjectPathCallback& callback) override; 65 void StartAuthSession(const ObjectPathCallback& callback) override;
45 void RequestType(const BiometricTypeCallback& callback) override; 66 void RequestType(const BiometricTypeCallback& callback) override;
46 void CancelEnrollSession( 67 void CancelEnrollSession(
47 const dbus::ObjectPath& enroll_session_path) override; 68 const dbus::ObjectPath& enroll_session_path) override;
48 void EndAuthSession(const dbus::ObjectPath& auth_session_path) override; 69 void EndAuthSession(const dbus::ObjectPath& auth_session_path) override;
49 void SetRecordLabel(const dbus::ObjectPath& record_path, 70 void SetRecordLabel(const dbus::ObjectPath& record_path,
50 const std::string& label) override; 71 const std::string& label) override;
51 void RemoveRecord(const dbus::ObjectPath& record_path) override; 72 void RemoveRecord(const dbus::ObjectPath& record_path) override;
52 void RequestRecordLabel(const dbus::ObjectPath& record_path, 73 void RequestRecordLabel(const dbus::ObjectPath& record_path,
53 const LabelCallback& callback) override; 74 const LabelCallback& callback) override;
54 75
55 private: 76 private:
77 // The current session of fingerprint storage. The session determines which
78 // events will be sent from user finger touches.
79 enum class FingerprintSession {
80 NONE,
81 ENROLL,
82 AUTH,
83 };
84
85 // FakeRecord is the definition of a fake stored fingerprint template.
86 struct FakeRecord {
87 FakeRecord();
88 ~FakeRecord();
89
90 std::string user_id;
91 std::string label;
92 // A fake fingerprint is a vector which consists of all the strings which
93 // were "pressed" during the enroll session.
94 std::vector<std::string> fake_fingerprint;
95 };
96
97 // The stored fingerprints.
98 std::map<dbus::ObjectPath, std::unique_ptr<FakeRecord>> records_;
99
100 // Current record in process of getting enrolled and its path. These are
101 // assigned at the start of an enroll session and freed when the enroll
102 // session is finished or cancelled.
103 dbus::ObjectPath current_record_path_;
104 std::unique_ptr<FakeRecord> current_record_;
105
106 // Unique indentifier that gets updated each time an enroll session is started
107 // to ensure each record is stored at a different path.
108 int next_record_unique_id_ = 1;
109
110 // The current session of the fake storage.
111 FingerprintSession current_session_ = FingerprintSession::NONE;
112
56 base::ObserverList<Observer> observers_; 113 base::ObserverList<Observer> observers_;
57 114
58 DISALLOW_COPY_AND_ASSIGN(FakeBiodClient); 115 DISALLOW_COPY_AND_ASSIGN(FakeBiodClient);
59 }; 116 };
60 117
61 } // namespace chromeos 118 } // namespace chromeos
62 119
63 #endif // CHROMEOS_DBUS_BIOD_FAKE_BIOD_CLIENT_H_ 120 #endif // CHROMEOS_DBUS_BIOD_FAKE_BIOD_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698