File: video_conference_manager_ash.cc

package info (click to toggle)
chromium 139.0.7258.127-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 6,122,068 kB
  • sloc: cpp: 35,100,771; ansic: 7,163,530; javascript: 4,103,002; python: 1,436,920; asm: 946,517; xml: 746,709; pascal: 187,653; perl: 88,691; sh: 88,436; objc: 79,953; sql: 51,488; cs: 44,583; fortran: 24,137; makefile: 22,147; tcl: 15,277; php: 13,980; yacc: 8,984; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (214 lines) | stat: -rw-r--r-- 8,331 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
// Copyright 2022 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/ash/video_conference/video_conference_manager_ash.h"

#include <algorithm>
#include <string>
#include <utility>
#include <vector>

#include "ash/constants/ash_features.h"
#include "ash/system/video_conference/video_conference_common.h"
#include "ash/system/video_conference/video_conference_tray_controller.h"
#include "ash/webui/system_apps/public/system_web_app_type.h"
#include "ash/webui/vc_background_ui/url_constants.h"
#include "base/barrier_callback.h"
#include "base/check.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/functional/callback_helpers.h"
#include "base/logging.h"
#include "base/unguessable_token.h"
#include "chrome/browser/ash/video_conference/video_conference_client_wrapper.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/ui/ash/system_web_apps/system_web_app_ui_utils.h"
#include "chromeos/crosapi/mojom/video_conference.mojom-forward.h"
#include "chromeos/crosapi/mojom/video_conference.mojom.h"
#include "components/services/app_service/public/cpp/app_launch_util.h"

namespace ash {

VideoConferenceManagerAsh::VideoConferenceManagerAsh() {
  if (ash::features::IsVideoConferenceEnabled()) {
    GetTrayController()->Initialize(this);
  }
}

VideoConferenceManagerAsh::~VideoConferenceManagerAsh() = default;

void VideoConferenceManagerAsh::RegisterCppClient(
    crosapi::mojom::VideoConferenceManagerClient* client,
    const base::UnguessableToken& client_id) {
  client_id_to_wrapper_.try_emplace(client_id, client);
}

void VideoConferenceManagerAsh::GetMediaApps(
    base::OnceCallback<void(MediaApps)> ui_callback) {
  // Because the lacros client communicates over mojo, the GetMediaApps method
  // on all clients is asynchronous and passes results via callbacks. The
  // |done_callback| defined below gets the collected results from the
  // BarrierCallback, flattens them into a single vector, and passes them
  // to the |ui_callback| provided to VideoConferenceManagerAsh::GetMediaApps.
  base::OnceCallback<void(std::vector<MediaApps>)> done_callback =
      base::BindOnce(
          [](base::OnceCallback<void(MediaApps)> callback,
             std::vector<MediaApps> apps_from_all_clients) {
            MediaApps apps;

            for (MediaApps& apps_from_client : apps_from_all_clients) {
              for (auto& app : apps_from_client) {
                apps.push_back(std::move(app));
              }
            }

            // Sort all apps based on last activity time.
            std::sort(
                apps.begin(), apps.end(),
                [](const crosapi::mojom::VideoConferenceMediaAppInfoPtr& app1,
                   const crosapi::mojom::VideoConferenceMediaAppInfoPtr& app2) {
                  return app1->last_activity_time > app2->last_activity_time;
                });

            // Call bound |ui_callback| with aggregated app info structs.
            std::move(callback).Run(std::move(apps));
          },
          std::move(ui_callback));

  const auto barrier_callback = base::BarrierCallback<MediaApps>(
      client_id_to_wrapper_.size(), std::move(done_callback));

  for (auto& [_, client_wrapper] : client_id_to_wrapper_) {
    client_wrapper.GetMediaApps(barrier_callback);
  }
}

void VideoConferenceManagerAsh::ReturnToApp(const base::UnguessableToken& id) {
  for (auto& [_, client_wrapper] : client_id_to_wrapper_) {
    client_wrapper.ReturnToApp(id, base::DoNothing());
  }
}

void VideoConferenceManagerAsh::SetSystemMediaDeviceStatus(
    crosapi::mojom::VideoConferenceMediaDevice device,
    bool disabled) {
  for (auto& [_, client_wrapper] : client_id_to_wrapper_) {
    client_wrapper.SetSystemMediaDeviceStatus(
        device, disabled, base::BindOnce([](bool success) {
          if (!success) {
            LOG(ERROR)
                << "VideoConferenceClient::SetSystemMediaDeviceStatus was "
                   "unsuccessful.";
          }
        }));
  }
}

void VideoConferenceManagerAsh::StopAllScreenShare() {
  for (auto& [_, client_wrapper] : client_id_to_wrapper_) {
    client_wrapper.StopAllScreenShare();
  }
}

void VideoConferenceManagerAsh::CreateBackgroundImage() {
  Profile* profile = ProfileManager::GetActiveUserProfile();
  DCHECK(profile);
  ash::SystemAppLaunchParams params;
  params.launch_source = apps::LaunchSource::kFromShelf;
  ash::LaunchSystemWebAppAsync(profile, ash::SystemWebAppType::VC_BACKGROUND,
                               params);
}

void VideoConferenceManagerAsh::NotifyMediaUsageUpdate(
    crosapi::mojom::VideoConferenceMediaUsageStatusPtr status,
    base::OnceCallback<void(bool)> callback) {
  if (auto it = client_id_to_wrapper_.find(status->client_id);
      it != client_id_to_wrapper_.end()) {
    it->second.state() = {
        .has_media_app = status->has_media_app,
        .has_camera_permission = status->has_camera_permission,
        .has_microphone_permission = status->has_microphone_permission,
        .is_capturing_camera = status->is_capturing_camera,
        .is_capturing_microphone = status->is_capturing_microphone,
        .is_capturing_screen = status->is_capturing_screen};
  } else {
    LOG(ERROR) << "VideoConferenceManagerAsh::NotifyMediaUsageUpdate client_id "
                  "does not exist.";
    std::move(callback).Run(false);
    return;
  }

  SendUpdatedState();
  std::move(callback).Run(true);
}

void VideoConferenceManagerAsh::NotifyDeviceUsedWhileDisabled(
    crosapi::mojom::VideoConferenceMediaDevice device,
    const std::u16string& app_name,
    base::OnceCallback<void(bool)> callback) {
  // TODO(crbug.com/40240249): Remove this conditional check once it becomes
  // possible to enable ash features in lacros browsertests.
  if (ash::features::IsVideoConferenceEnabled()) {
    GetTrayController()->HandleDeviceUsedWhileDisabled(std::move(device),
                                                       app_name);
  }
  std::move(callback).Run(true);
}

void VideoConferenceManagerAsh::NotifyClientUpdate(
    crosapi::mojom::VideoConferenceClientUpdatePtr update) {
  // TODO(crbug.com/40240249): Remove this conditional check once it becomes
  // possible to enable ash features in lacros browsertests.
  if (ash::features::IsVideoConferenceEnabled()) {
    GetTrayController()->HandleClientUpdate(std::move(update));
  }
}

void VideoConferenceManagerAsh::UnregisterClient(
    const base::UnguessableToken& client_id) {
  client_id_to_wrapper_.erase(client_id);
  SendUpdatedState();
}

VideoConferenceMediaState VideoConferenceManagerAsh::GetAggregatedState() {
  VideoConferenceMediaState state;

  for (auto& [_, client_wrapper] : client_id_to_wrapper_) {
    auto& client_state = client_wrapper.state();

    state.has_media_app |= client_state.has_media_app;
    state.has_camera_permission |= client_state.has_camera_permission;
    state.has_microphone_permission |= client_state.has_microphone_permission;
    state.is_capturing_camera |= client_state.is_capturing_camera;
    state.is_capturing_microphone |= client_state.is_capturing_microphone;
    state.is_capturing_screen |= client_state.is_capturing_screen;
  }

  // Theoretically, capturing should imply permission, but we have seen bugs
  // in permission checker that returns inconsisitent result with capturing,
  // which leads to a bad ui to the user. This workaround is not ideal but will
  // prevent showing the bad ui.
  // TODO(b/291147970): consider removing this.
  state.has_camera_permission |= state.is_capturing_camera;
  state.has_microphone_permission |= state.is_capturing_microphone;

  return state;
}

void VideoConferenceManagerAsh::SendUpdatedState() {
  // TODO(crbug.com/40240249): Remove this conditional check once it becomes
  // possible to enable ash features in lacros browsertests.
  if (ash::features::IsVideoConferenceEnabled()) {
    GetTrayController()->UpdateWithMediaState(GetAggregatedState());
  }
}

VideoConferenceTrayController* VideoConferenceManagerAsh::GetTrayController() {
  VideoConferenceTrayController* tray_controller =
      VideoConferenceTrayController::Get();
  DCHECK(tray_controller);
  return tray_controller;
}

}  // namespace ash