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
|
// 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/web_applications/locks/lock.h"
#include <memory>
#include <ostream>
#include "chrome/browser/web_applications/locks/partitioned_lock_manager.h"
#include "chrome/browser/web_applications/locks/web_app_lock_manager.h"
#include "chrome/browser/web_applications/visited_manifest_manager.h"
#include "chrome/browser/web_applications/web_app_origin_association_manager.h"
#include "chrome/browser/web_applications/web_app_provider.h"
#include "components/webapps/common/web_app_id.h"
namespace web_app {
std::string LockTypeToString(LockDescription::Type type) {
switch (type) {
case web_app::LockDescription::Type::kApp:
return "App";
case web_app::LockDescription::Type::kAppAndWebContents:
return "AppAndWebContents";
case web_app::LockDescription::Type::kBackgroundWebContents:
return "WebContents";
case web_app::LockDescription::Type::kAllAppsLock:
return "AllApps";
case web_app::LockDescription::Type::kNoOp:
return "NoOp";
}
}
LockDescription::LockDescription(base::flat_set<webapps::AppId> app_ids,
LockDescription::Type type)
: app_ids_(std::move(app_ids)), type_(type) {
for (const webapps::AppId& app_id : app_ids_) {
CHECK(!app_id.empty()) << "Cannot have an empty app_id";
}
}
LockDescription::LockDescription(LockDescription&&) = default;
LockDescription::~LockDescription() = default;
bool LockDescription::IncludesSharedWebContents() const {
switch (type_) {
case Type::kNoOp:
case Type::kApp:
case Type::kAllAppsLock:
return false;
case Type::kBackgroundWebContents:
case Type::kAppAndWebContents:
return true;
}
}
base::Value LockDescription::AsDebugValue() const {
base::Value::Dict result;
base::Value::List ids;
ids.reserve(app_ids_.size());
for (const auto& id : app_ids_) {
ids.Append(id);
}
result.Set("type", LockTypeToString(type()));
result.Set("app_ids", std::move(ids));
return base::Value(std::move(result));
}
std::ostream& operator<<(std::ostream& out,
const LockDescription& lock_description) {
return out << lock_description.AsDebugValue();
}
WebContentsManager& Lock::web_contents_manager() {
CHECK(lock_manager_);
return lock_manager_->provider().web_contents_manager();
}
VisitedManifestManager& Lock::visited_manifest_manager() {
CHECK(lock_manager_);
return lock_manager_->provider().visited_manifest_manager();
}
WebAppOriginAssociationManager& Lock::origin_association_manager() {
CHECK(lock_manager_);
return lock_manager_->provider().origin_association_manager();
}
Lock::Lock() : holder_(std::make_unique<PartitionedLockHolder>()) {}
Lock::~Lock() = default;
bool Lock::IsGranted() const {
return !!lock_manager_;
}
void Lock::GrantLockResources(WebAppLockManager& lock_manager) {
CHECK(!lock_manager_);
lock_manager_ = lock_manager.GetWeakPtr();
}
} // namespace web_app
|