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
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "ClientInfo.h"
#include "mozilla/dom/ClientIPCTypes.h"
#include "mozilla/ipc/BackgroundUtils.h"
namespace mozilla::dom {
using mozilla::ipc::PrincipalInfo;
using mozilla::ipc::PrincipalInfoToPrincipal;
ClientInfo::ClientInfo(const nsID& aId, const Maybe<nsID>& aAgentClusterId,
ClientType aType,
const mozilla::ipc::PrincipalInfo& aPrincipalInfo,
const TimeStamp& aCreationTime, const nsCString& aURL,
mozilla::dom::FrameType aFrameType)
: mData(MakeUnique<IPCClientInfo>(
aId, aAgentClusterId, aType, aPrincipalInfo, aCreationTime, aURL,
aFrameType, mozilla::Nothing(), mozilla::Nothing())) {}
ClientInfo::ClientInfo(const IPCClientInfo& aData)
: mData(MakeUnique<IPCClientInfo>(aData)) {}
ClientInfo::ClientInfo(const ClientInfo& aRight) { operator=(aRight); }
ClientInfo& ClientInfo::operator=(const ClientInfo& aRight) {
mData.reset();
mData = MakeUnique<IPCClientInfo>(*aRight.mData);
return *this;
}
ClientInfo::ClientInfo(ClientInfo&& aRight) noexcept
: mData(std::move(aRight.mData)) {}
ClientInfo& ClientInfo::operator=(ClientInfo&& aRight) noexcept {
mData.reset();
mData = std::move(aRight.mData);
return *this;
}
ClientInfo::~ClientInfo() = default;
bool ClientInfo::operator==(const ClientInfo& aRight) const {
return *mData == *aRight.mData;
}
bool ClientInfo::operator!=(const ClientInfo& aRight) const {
return *mData != *aRight.mData;
}
const nsID& ClientInfo::Id() const { return mData->id(); }
void ClientInfo::SetAgentClusterId(const nsID& aId) {
MOZ_ASSERT(mData->agentClusterId().isNothing() ||
mData->agentClusterId().ref().Equals(aId));
mData->agentClusterId() = Some(aId);
}
const Maybe<nsID>& ClientInfo::AgentClusterId() const {
return mData->agentClusterId();
}
ClientType ClientInfo::Type() const { return mData->type(); }
const mozilla::ipc::PrincipalInfo& ClientInfo::PrincipalInfo() const {
return mData->principalInfo();
}
const TimeStamp& ClientInfo::CreationTime() const {
return mData->creationTime();
}
const nsCString& ClientInfo::URL() const { return mData->url(); }
void ClientInfo::SetURL(const nsACString& aURL) { mData->url() = aURL; }
FrameType ClientInfo::FrameType() const { return mData->frameType(); }
void ClientInfo::SetFrameType(mozilla::dom::FrameType aFrameType) {
mData->frameType() = aFrameType;
}
const IPCClientInfo& ClientInfo::ToIPC() const { return *mData; }
bool ClientInfo::IsPrivateBrowsing() const {
switch (PrincipalInfo().type()) {
case PrincipalInfo::TContentPrincipalInfo: {
const auto& p = PrincipalInfo().get_ContentPrincipalInfo();
return p.attrs().IsPrivateBrowsing();
}
case PrincipalInfo::TSystemPrincipalInfo: {
return false;
}
case PrincipalInfo::TNullPrincipalInfo: {
const auto& p = PrincipalInfo().get_NullPrincipalInfo();
return p.attrs().IsPrivateBrowsing();
}
default: {
// clients should never be expanded principals
MOZ_CRASH("unexpected principal type!");
}
}
}
Result<nsCOMPtr<nsIPrincipal>, nsresult> ClientInfo::GetPrincipal() const {
return PrincipalInfoToPrincipal(PrincipalInfo());
}
const Maybe<mozilla::ipc::PolicyContainerArgs>&
ClientInfo::GetPolicyContainerArgs() const {
return mData->policyContainerArgs();
}
void ClientInfo::SetPolicyContainerArgs(
const mozilla::ipc::PolicyContainerArgs& aPolicyContainer) {
mData->policyContainerArgs() = Some(aPolicyContainer);
}
const Maybe<mozilla::ipc::CSPInfo>& ClientInfo::GetPreloadCspInfo() const {
return mData->preloadCspInfo();
}
void ClientInfo::SetPreloadCspInfo(
const mozilla::ipc::CSPInfo& aPreloadCSPInfo) {
mData->preloadCspInfo() = Some(aPreloadCSPInfo);
}
} // namespace mozilla::dom
|