1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51

ash / auth / active_session_auth_metrics_recorder.h [blame]

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef ASH_AUTH_ACTIVE_SESSION_AUTH_METRICS_RECORDER_H_
#define ASH_AUTH_ACTIVE_SESSION_AUTH_METRICS_RECORDER_H_

#include <optional>

#include "ash/ash_export.h"
#include "ash/auth/views/auth_common.h"
#include "ash/public/cpp/auth/active_session_auth_controller.h"
#include "base/timer/elapsed_timer.h"
#include "chromeos/ash/components/osauth/public/request/auth_request.h"

namespace ash {

// A metrics recorder that records pointer related metrics.
class ASH_EXPORT ActiveSessionAuthMetricsRecorder {
 public:
  ActiveSessionAuthMetricsRecorder();

  ActiveSessionAuthMetricsRecorder(const ActiveSessionAuthMetricsRecorder&) =
      delete;
  ActiveSessionAuthMetricsRecorder& operator=(
      const ActiveSessionAuthMetricsRecorder&) = delete;

  ~ActiveSessionAuthMetricsRecorder();

  void RecordShow(AuthRequest::Reason reason, AuthFactorSet available_factors);
  void RecordClose();

  void RecordAuthStarted(AuthInputType input_type);
  void RecordAuthFailed(AuthInputType input_type);
  void RecordAuthSucceeded(AuthInputType input_type);

 private:
  std::optional<AuthRequest::Reason> open_reason_;
  std::optional<AuthInputType> started_auth_type_;
  std::optional<base::ElapsedTimer> open_timer_;

  int pin_attempt_counter_ = 0;
  int password_attempt_counter_ = 0;
  int fingerprint_attempt_counter_ = 0;
  bool auth_succeeded_ = false;
  AuthFactorSet available_factors_;
};

}  // namespace ash

#endif  // ASH_AUTH_ACTIVE_SESSION_AUTH_METRICS_RECORDER_H_