File: check_updater_health_task.cc

package info (click to toggle)
chromium 138.0.7204.183-1~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-proposed-updates
  • size: 6,080,960 kB
  • sloc: cpp: 34,937,079; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,954; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,811; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (106 lines) | stat: -rw-r--r-- 3,725 bytes parent folder | download | duplicates (2)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/updater/check_updater_health_task.h"

#include <string>
#include <string_view>
#include <utility>

#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/memory/scoped_refptr.h"
#include "base/metrics/histogram_functions.h"
#include "base/sequence_checker.h"
#include "base/strings/strcat.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task/bind_post_task.h"
#include "base/task/thread_pool.h"
#include "base/version.h"
#include "build/build_config.h"
#include "chrome/browser/updater/browser_updater_client.h"
#include "chrome/browser/updater/browser_updater_client_util.h"
#include "chrome/updater/constants.h"
#include "chrome/updater/updater_branding.h"
#include "chrome/updater/updater_scope.h"
#include "chrome/updater/util/util.h"

#if BUILDFLAG(IS_WIN)
#include "chrome/updater/util/win_util.h"
#include "chrome/updater/win/task_scheduler.h"
#include "chrome/updater/win/win_constants.h"
#endif

namespace updater {

CheckUpdaterHealthTask::CheckUpdaterHealthTask(UpdaterScope scope)
    : scope_(scope) {}
CheckUpdaterHealthTask::~CheckUpdaterHealthTask() = default;

void CheckUpdaterHealthTask::CheckAndRecordUpdaterHealth(
    const base::Version& version) {
  base::UmaHistogramBoolean("GoogleUpdate.UpdaterHealth.UpdaterValid",
                            version.IsValid());
  if (!version.IsValid()) {
    return;
  }

#if BUILDFLAG(IS_WIN)
  // System service metrics.
  if (IsSystemInstall(scope_)) {
    for (const bool is_internal_service : {false, true}) {
      const std::wstring service_name =
          GetServiceName(is_internal_service, version);
      const std::string_view uma_suffix =
          is_internal_service ? "Internal" : "SxS";
      base::UmaHistogramBoolean(
          base::StrCat(
              {"GoogleUpdate.UpdaterHealth.ServicePresent.", uma_suffix}),
          IsServicePresent(service_name));
      base::UmaHistogramBoolean(
          base::StrCat(
              {"GoogleUpdate.UpdaterHealth.ServiceEnabled.", uma_suffix}),
          IsServiceEnabled(service_name));
    }
  }

  // Scheduled task metrics.
  scoped_refptr<TaskScheduler> task_scheduler =
      TaskScheduler::CreateInstance(scope_);
  if (!task_scheduler) {
    // Cannot get metrics without a TaskScheduler instance.
    return;
  }
  const std::wstring task_name =
      task_scheduler->FindFirstTaskName(GetTaskNamePrefix(scope_, version));

  // Count the number of tasks for the product.
  size_t number_of_tasks = 0;
  task_scheduler->ForEachTaskWithPrefix(
      base::UTF8ToWide(PRODUCT_FULLNAME_STRING),
      [&](const std::wstring& task_name) { ++number_of_tasks; });

  base::UmaHistogramBoolean("GoogleUpdate.UpdaterHealth.ScheduledTaskPresent",
                            !task_name.empty());
  if (!task_name.empty()) {
    base::UmaHistogramBoolean("GoogleUpdate.UpdaterHealth.ScheduledTaskEnabled",
                              task_scheduler->IsTaskEnabled(task_name));
  }
  base::UmaHistogramCounts100("GoogleUpdate.UpdaterHealth.ScheduledTaskCount",
                              number_of_tasks);
#endif
}

void CheckUpdaterHealthTask::Run(base::OnceClosure callback) {
  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);

  BrowserUpdaterClient::Create(scope_)->GetUpdaterVersion(
      base::BindPostTask(
          base::ThreadPool::CreateSequencedTaskRunner({base::MayBlock()}),
          base::BindOnce(&CheckUpdaterHealthTask::CheckAndRecordUpdaterHealth,
                         this))
          .Then(std::move(callback)));
}

}  // namespace updater