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 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455
|
/* -*- 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 "Link.h"
#include "mozilla/Components.h"
#include "mozilla/IHistory.h"
#include "mozilla/dom/BindContext.h"
#include "mozilla/dom/Document.h"
#include "mozilla/dom/Element.h"
#include "mozilla/dom/HTMLDNSPrefetch.h"
#include "mozilla/dom/SVGAElement.h"
#include "nsAttrValueInlines.h"
#include "nsGkAtoms.h"
#include "nsISizeOf.h"
#include "nsIURIMutator.h"
#include "nsLayoutUtils.h"
#include "nsString.h"
namespace mozilla::dom {
Link::Link(Element* aElement)
: mElement(aElement),
mNeedsRegistration(false),
mRegistered(false),
mHasPendingLinkUpdate(false),
mHistory(true) {
MOZ_ASSERT(mElement, "Must have an element");
}
Link::Link()
: mElement(nullptr),
mNeedsRegistration(false),
mRegistered(false),
mHasPendingLinkUpdate(false),
mHistory(false) {}
Link::~Link() {
// !mElement is for mock_Link.
MOZ_ASSERT(!mElement || !mElement->IsInComposedDoc());
Unregister();
}
bool Link::ElementHasHref() const {
if (mElement->HasAttr(nsGkAtoms::href)) {
return true;
}
if (const auto* svg = SVGAElement::FromNode(*mElement)) {
// This can be a HasAttr(kNameSpaceID_XLink, nsGkAtoms::href) check once
// SMIL is fixed to actually mutate DOM attributes rather than faking it.
return svg->HasHref();
}
MOZ_ASSERT(!mElement->IsSVGElement(),
"What other SVG element inherits from Link?");
return false;
}
void Link::SetLinkState(State aState, bool aNotify) {
Element::AutoStateChangeNotifier notifier(*mElement, aNotify);
switch (aState) {
case State::Visited:
mElement->AddStatesSilently(ElementState::VISITED);
mElement->RemoveStatesSilently(ElementState::UNVISITED);
break;
case State::Unvisited:
mElement->AddStatesSilently(ElementState::UNVISITED);
mElement->RemoveStatesSilently(ElementState::VISITED);
break;
case State::NotLink:
mElement->RemoveStatesSilently(ElementState::VISITED_OR_UNVISITED);
break;
}
}
void Link::TriggerLinkUpdate(bool aNotify) {
if (mRegistered || !mNeedsRegistration || mHasPendingLinkUpdate ||
!mElement->IsInComposedDoc()) {
return;
}
// Only try and register once.
mNeedsRegistration = false;
nsCOMPtr<nsIURI> hrefURI = GetURI();
// Assume that we are not visited until we are told otherwise.
SetLinkState(State::Unvisited, aNotify);
// Make sure the href attribute has a valid link (bug 23209).
// If we have a good href, register with History if available.
if (mHistory && hrefURI) {
if (nsCOMPtr<IHistory> history = components::History::Service()) {
mRegistered = true;
history->RegisterVisitedCallback(hrefURI, this);
// And make sure we are in the document's link map.
mElement->GetComposedDoc()->AddStyleRelevantLink(this);
}
}
}
void Link::VisitedQueryFinished(bool aVisited) {
MOZ_ASSERT(mRegistered, "Setting the link state of an unregistered Link!");
SetLinkState(aVisited ? State::Visited : State::Unvisited,
/* aNotify = */ true);
// Even if the state didn't actually change, we need to repaint in order for
// the visited state not to be observable.
nsLayoutUtils::PostRestyleEvent(GetElement(), RestyleHint::RestyleSubtree(),
nsChangeHint_RepaintFrame);
}
nsIURI* Link::GetURI() const {
// If we have this URI cached, use it.
if (mCachedURI) {
return mCachedURI;
}
// Otherwise obtain it.
Link* self = const_cast<Link*>(this);
Element* element = self->mElement;
mCachedURI = element->GetHrefURI();
return mCachedURI;
}
void Link::SetProtocol(const nsACString& aProtocol) {
nsCOMPtr<nsIURI> uri(GetURI());
if (!uri) {
// Ignore failures to be compatible with NS4.
return;
}
uri = net::TryChangeProtocol(uri, aProtocol);
if (!uri) {
return;
}
SetHrefAttribute(uri);
}
void Link::SetPassword(const nsACString& aPassword) {
nsCOMPtr<nsIURI> uri(GetURI());
if (!uri) {
// Ignore failures to be compatible with NS4.
return;
}
nsresult rv = NS_MutateURI(uri).SetPassword(aPassword).Finalize(uri);
if (NS_SUCCEEDED(rv)) {
SetHrefAttribute(uri);
}
}
void Link::SetUsername(const nsACString& aUsername) {
nsCOMPtr<nsIURI> uri(GetURI());
if (!uri) {
// Ignore failures to be compatible with NS4.
return;
}
nsresult rv = NS_MutateURI(uri).SetUsername(aUsername).Finalize(uri);
if (NS_SUCCEEDED(rv)) {
SetHrefAttribute(uri);
}
}
void Link::SetHost(const nsACString& aHost) {
nsCOMPtr<nsIURI> uri(GetURI());
if (!uri) {
// Ignore failures to be compatible with NS4.
return;
}
nsresult rv = NS_MutateURI(uri).SetHostPort(aHost).Finalize(uri);
if (NS_FAILED(rv)) {
return;
}
SetHrefAttribute(uri);
}
void Link::SetHostname(const nsACString& aHostname) {
nsCOMPtr<nsIURI> uri(GetURI());
if (!uri) {
// Ignore failures to be compatible with NS4.
return;
}
nsresult rv = NS_MutateURI(uri).SetHost(aHostname).Finalize(uri);
if (NS_FAILED(rv)) {
return;
}
SetHrefAttribute(uri);
}
void Link::SetPathname(const nsACString& aPathname) {
nsCOMPtr<nsIURI> uri(GetURI());
if (!uri) {
// Ignore failures to be compatible with NS4.
return;
}
nsresult rv = NS_MutateURI(uri).SetFilePath(aPathname).Finalize(uri);
if (NS_FAILED(rv)) {
return;
}
SetHrefAttribute(uri);
}
void Link::SetSearch(const nsACString& aSearch) {
nsCOMPtr<nsIURI> uri(GetURI());
if (!uri) {
// Ignore failures to be compatible with NS4.
return;
}
nsresult rv = NS_MutateURI(uri).SetQuery(aSearch).Finalize(uri);
if (NS_FAILED(rv)) {
return;
}
SetHrefAttribute(uri);
}
void Link::SetPort(const nsACString& aPort) {
nsCOMPtr<nsIURI> uri(GetURI());
if (!uri) {
// Ignore failures to be compatible with NS4.
return;
}
// nsIURI uses -1 as default value.
nsresult rv;
int32_t port = -1;
if (!aPort.IsEmpty()) {
port = aPort.ToInteger(&rv);
if (NS_FAILED(rv)) {
return;
}
}
rv = NS_MutateURI(uri).SetPort(port).Finalize(uri);
if (NS_FAILED(rv)) {
return;
}
SetHrefAttribute(uri);
}
void Link::SetHash(const nsACString& aHash) {
nsCOMPtr<nsIURI> uri(GetURI());
if (!uri) {
// Ignore failures to be compatible with NS4.
return;
}
nsresult rv = NS_MutateURI(uri).SetRef(aHash).Finalize(uri);
if (NS_FAILED(rv)) {
return;
}
SetHrefAttribute(uri);
}
void Link::GetOrigin(nsACString& aOrigin) {
aOrigin.Truncate();
nsIURI* uri = GetURI();
if (!uri) {
return;
}
nsContentUtils::GetWebExposedOriginSerialization(uri, aOrigin);
}
void Link::GetProtocol(nsACString& aProtocol) {
if (nsIURI* uri = GetURI()) {
(void)uri->GetScheme(aProtocol);
}
aProtocol.Append(':');
}
void Link::GetUsername(nsACString& aUsername) {
aUsername.Truncate();
nsIURI* uri = GetURI();
if (!uri) {
return;
}
uri->GetUsername(aUsername);
}
void Link::GetPassword(nsACString& aPassword) {
aPassword.Truncate();
nsIURI* uri = GetURI();
if (!uri) {
return;
}
uri->GetPassword(aPassword);
}
void Link::GetHost(nsACString& aHost) {
aHost.Truncate();
nsIURI* uri = GetURI();
if (!uri) {
// Do not throw! Not having a valid URI should result in an empty string.
return;
}
uri->GetHostPort(aHost);
}
void Link::GetHostname(nsACString& aHostname) {
aHostname.Truncate();
nsIURI* uri = GetURI();
if (!uri) {
// Do not throw! Not having a valid URI should result in an empty string.
return;
}
nsContentUtils::GetHostOrIPv6WithBrackets(uri, aHostname);
}
void Link::GetPathname(nsACString& aPathname) {
aPathname.Truncate();
nsIURI* uri = GetURI();
if (!uri) {
// Do not throw! Not having a valid URI should result in an empty string.
return;
}
uri->GetFilePath(aPathname);
}
void Link::GetSearch(nsACString& aSearch) {
aSearch.Truncate();
nsIURI* uri = GetURI();
if (!uri) {
// Do not throw! Not having a valid URI or URL should result in an empty
// string.
return;
}
nsresult rv = uri->GetQuery(aSearch);
if (NS_SUCCEEDED(rv) && !aSearch.IsEmpty()) {
aSearch.Insert('?', 0);
}
}
void Link::GetPort(nsACString& aPort) {
aPort.Truncate();
nsIURI* uri = GetURI();
if (!uri) {
// Do not throw! Not having a valid URI should result in an empty string.
return;
}
int32_t port;
nsresult rv = uri->GetPort(&port);
// Note that failure to get the port from the URI is not necessarily a bad
// thing. Some URIs do not have a port.
if (NS_SUCCEEDED(rv) && port != -1) {
aPort.AppendInt(port, 10);
}
}
void Link::GetHash(nsACString& aHash) {
aHash.Truncate();
nsIURI* uri = GetURI();
if (!uri) {
// Do not throw! Not having a valid URI should result in an empty
// string.
return;
}
nsresult rv = uri->GetRef(aHash);
if (NS_SUCCEEDED(rv) && !aHash.IsEmpty()) {
aHash.Insert('#', 0);
}
}
void Link::BindToTree(const BindContext& aContext) {
if (aContext.InComposedDoc()) {
aContext.OwnerDoc().RegisterPendingLinkUpdate(this);
}
ResetLinkState(false);
}
void Link::ResetLinkState(bool aNotify, bool aHasHref) {
// If we have an href, we should register with the history.
//
// FIXME(emilio): Do we really want to allow all MathML elements to be
// :visited? That seems not great.
mNeedsRegistration = aHasHref;
// If we've cached the URI, reset always invalidates it.
Unregister();
mCachedURI = nullptr;
// Update our state back to the default; the default state for links with an
// href is unvisited.
SetLinkState(aHasHref ? State::Unvisited : State::NotLink, aNotify);
TriggerLinkUpdate(aNotify);
}
void Link::Unregister() {
// If we are not registered, we have nothing to do.
if (!mRegistered) {
return;
}
MOZ_ASSERT(mHistory);
MOZ_ASSERT(mCachedURI, "Should unregister before invalidating the URI");
// And tell History to stop tracking us.
if (nsCOMPtr<IHistory> history = components::History::Service()) {
history->UnregisterVisitedCallback(mCachedURI, this);
}
mElement->OwnerDoc()->ForgetLink(this);
mRegistered = false;
}
void Link::SetHrefAttribute(nsIURI* aURI) {
NS_ASSERTION(aURI, "Null URI is illegal!");
// if we change this code to not reserialize we need to do something smarter
// in SetProtocol because changing the protocol of an URI can change the
// "nature" of the nsIURL/nsIURI implementation.
nsAutoCString href;
(void)aURI->GetSpec(href);
(void)mElement->SetAttr(kNameSpaceID_None, nsGkAtoms::href,
NS_ConvertUTF8toUTF16(href), true);
}
size_t Link::SizeOfExcludingThis(mozilla::SizeOfState& aState) const {
size_t n = 0;
if (nsCOMPtr<nsISizeOf> iface = do_QueryInterface(mCachedURI)) {
n += iface->SizeOfIncludingThis(aState.mMallocSizeOf);
}
// The following members don't need to be measured:
// - mElement, because it is a pointer-to-self used to avoid QIs
return n;
}
} // namespace mozilla::dom
|