File: telemetry_management_service_ash.cc

package info (click to toggle)
chromium 138.0.7204.183-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,908 kB
  • sloc: cpp: 34,937,088; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; 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,806; 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 (99 lines) | stat: -rw-r--r-- 3,047 bytes parent folder | download | duplicates (6)
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
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chromeos/ash/components/telemetry_extension/management/telemetry_management_service_ash.h"

#include <algorithm>
#include <memory>
#include <utility>

#include "base/functional/bind.h"
#include "chromeos/ash/components/audio/cras_audio_handler.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/receiver_set.h"
#include "mojo/public/cpp/bindings/remote.h"

namespace ash {

namespace {

namespace crosapi = crosapi::mojom;

constexpr int32_t kMaxAudioGain = 100;
constexpr int32_t kMinAudioGain = 0;
constexpr int32_t kMaxAudioVolume = 100;
constexpr int32_t kMinAudioVolume = 0;

}  // namespace

// static
TelemetryManagementServiceAsh::Factory*
    TelemetryManagementServiceAsh::Factory::test_factory_ = nullptr;

// static
std::unique_ptr<crosapi::TelemetryManagementService>
TelemetryManagementServiceAsh::Factory::Create(
    mojo::PendingReceiver<crosapi::TelemetryManagementService> receiver) {
  if (test_factory_) {
    return test_factory_->CreateInstance(std::move(receiver));
  }

  auto telemetry_management_service =
      std::make_unique<TelemetryManagementServiceAsh>();
  telemetry_management_service->BindReceiver(std::move(receiver));
  return telemetry_management_service;
}

// static
void TelemetryManagementServiceAsh::Factory::SetForTesting(
    Factory* test_factory) {
  test_factory_ = test_factory;
}

TelemetryManagementServiceAsh::Factory::~Factory() = default;

TelemetryManagementServiceAsh::TelemetryManagementServiceAsh() = default;

TelemetryManagementServiceAsh::~TelemetryManagementServiceAsh() = default;

void TelemetryManagementServiceAsh::BindReceiver(
    mojo::PendingReceiver<crosapi::TelemetryManagementService> receiver) {
  receivers_.Add(this, std::move(receiver));
}

void TelemetryManagementServiceAsh::SetAudioGain(
    uint64_t node_id,
    int32_t gain,
    SetAudioGainCallback callback) {
  // Only input audio node is supported.
  const AudioDevice* device = CrasAudioHandler::Get()->GetDeviceFromId(node_id);
  if (!device || !device->is_input) {
    std::move(callback).Run(false);
    return;
  }

  gain = std::clamp(gain, kMinAudioGain, kMaxAudioGain);
  CrasAudioHandler::Get()->SetVolumeGainPercentForDevice(node_id, gain);
  std::move(callback).Run(true);
}

void TelemetryManagementServiceAsh::SetAudioVolume(
    uint64_t node_id,
    int32_t volume,
    bool is_muted,
    SetAudioVolumeCallback callback) {
  // Only output audio node is supported.
  const AudioDevice* device = CrasAudioHandler::Get()->GetDeviceFromId(node_id);
  if (!device || device->is_input) {
    std::move(callback).Run(false);
    return;
  }

  volume = std::clamp(volume, kMinAudioVolume, kMaxAudioVolume);
  CrasAudioHandler::Get()->SetVolumeGainPercentForDevice(node_id, volume);
  CrasAudioHandler::Get()->SetMuteForDevice(node_id, is_muted);
  std::move(callback).Run(true);
}

}  // namespace ash