Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(421)

Side by Side Diff: third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp

Issue 2613853002: Phase III Step 2: Call imageNotifyFinished() and image load event after SVG loading completes (Closed)
Patch Set: Rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Eric Seidel <eric@webkit.org> 2 * Copyright (C) 2006 Eric Seidel <eric@webkit.org>
3 * Copyright (C) 2008, 2009 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009 Apple Inc. All rights reserved.
4 * Copyright (C) Research In Motion Limited 2011. All rights reserved. 4 * Copyright (C) Research In Motion Limited 2011. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 #include "platform/graphics/paint/PaintRecord.h" 61 #include "platform/graphics/paint/PaintRecord.h"
62 #include "platform/graphics/paint/PaintRecordBuilder.h" 62 #include "platform/graphics/paint/PaintRecordBuilder.h"
63 #include "platform/instrumentation/tracing/TraceEvent.h" 63 #include "platform/instrumentation/tracing/TraceEvent.h"
64 #include "platform/wtf/PassRefPtr.h" 64 #include "platform/wtf/PassRefPtr.h"
65 65
66 namespace blink { 66 namespace blink {
67 67
68 SVGImage::SVGImage(ImageObserver* observer) 68 SVGImage::SVGImage(ImageObserver* observer)
69 : Image(observer), 69 : Image(observer),
70 paint_controller_(PaintController::Create()), 70 paint_controller_(PaintController::Create()),
71 has_pending_timeline_rewind_(false) {} 71 has_pending_timeline_rewind_(false),
72 weak_ptr_factory_(this) {}
72 73
73 SVGImage::~SVGImage() { 74 SVGImage::~SVGImage() {
74 if (page_) { 75 if (page_) {
75 // Store m_page in a local variable, clearing m_page, so that 76 // Store m_page in a local variable, clearing m_page, so that
76 // SVGImageChromeClient knows we're destructed. 77 // SVGImageChromeClient knows we're destructed.
77 Page* current_page = page_.Release(); 78 Page* current_page = page_.Release();
78 // Break both the loader and view references to the frame 79 // Break both the loader and view references to the frame
79 current_page->WillBeDestroyed(); 80 current_page->WillBeDestroyed();
80 } 81 }
81 82
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 } 599 }
599 600
600 void SVGImage::UpdateUseCounters(const Document& document) const { 601 void SVGImage::UpdateUseCounters(const Document& document) const {
601 if (SVGSVGElement* root_element = SvgRootElement(page_.Get())) { 602 if (SVGSVGElement* root_element = SvgRootElement(page_.Get())) {
602 if (root_element->TimeContainer()->HasAnimations()) 603 if (root_element->TimeContainer()->HasAnimations())
603 UseCounter::Count(document, 604 UseCounter::Count(document,
604 UseCounter::kSVGSMILAnimationInImageRegardlessOfCache); 605 UseCounter::kSVGSMILAnimationInImageRegardlessOfCache);
605 } 606 }
606 } 607 }
607 608
609 // SVGImageLocalFrameClient is used to wait until SVG document's load event
610 // in the case where there are subresources asynchronously loaded.
611 class SVGImage::SVGImageLocalFrameClient : public EmptyLocalFrameClient {
612 public:
613 SVGImageLocalFrameClient(WeakPtr<SVGImage> image) : image_(image) {}
614
615 private:
616 void DispatchDidHandleOnloadEvents() override {
617 // The SVGImage is destructed before SVG load completion.
fs 2017/05/05 10:52:42 Nit: s/is/was/
hiroshige 2017/05/08 17:22:06 Done.
618 if (!image_)
619 return;
620
621 image_->LoadCompleted();
622 }
623 WeakPtr<SVGImage> image_;
624 };
625
626 void SVGImage::LoadCompleted() {
627 switch (load_state_) {
628 case kInDataChanged:
629 load_state_ = kLoadCompletedSynchronously;
630 break;
631
632 case kWaitingForAsyncLoadCompletion:
633 load_state_ = kLoadCompletedAsynchronously;
634 if (GetImageObserver())
635 GetImageObserver()->LoadCompleted(this);
636 break;
637
638 case kDataChangedNotStarted:
639 case kLoadCompletedSynchronously:
640 case kLoadCompletedAsynchronously:
641 CHECK(false);
642 break;
643 }
644 }
645
608 Image::SizeAvailability SVGImage::DataChanged(bool all_data_received) { 646 Image::SizeAvailability SVGImage::DataChanged(bool all_data_received) {
609 TRACE_EVENT0("blink", "SVGImage::dataChanged"); 647 TRACE_EVENT0("blink", "SVGImage::dataChanged");
610 648
611 // Don't do anything if is an empty image. 649 // Don't do anything if is an empty image.
612 if (!Data()->size()) 650 if (!Data()->size())
613 return kSizeAvailable; 651 return kSizeAvailable;
614 652
615 if (all_data_received) { 653 if (!all_data_received)
616 // SVGImage will fire events (and the default C++ handlers run) but doesn't 654 return page_ ? kSizeAvailable : kSizeUnavailable;
617 // actually allow script to run so it's fine to call into it. We allow this
618 // since it means an SVG data url can synchronously load like other image
619 // types.
620 EventDispatchForbiddenScope::AllowUserAgentEvents allow_user_agent_events;
621 655
622 DEFINE_STATIC_LOCAL(LocalFrameClient, dummy_local_frame_client, 656 CHECK(!page_);
623 (EmptyLocalFrameClient::Create()));
624 657
625 CHECK(!page_); 658 // SVGImage will fire events (and the default C++ handlers run) but doesn't
659 // actually allow script to run so it's fine to call into it. We allow this
660 // since it means an SVG data url can synchronously load like other image
661 // types.
662 EventDispatchForbiddenScope::AllowUserAgentEvents allow_user_agent_events;
626 663
627 Page::PageClients page_clients; 664 CHECK_EQ(load_state_, kDataChangedNotStarted);
628 FillWithEmptyClients(page_clients); 665 load_state_ = kInDataChanged;
629 chrome_client_ = SVGImageChromeClient::Create(this);
630 page_clients.chrome_client = chrome_client_.Get();
631 666
632 // FIXME: If this SVG ends up loading itself, we might leak the world. 667 Page::PageClients page_clients;
633 // The Cache code does not know about ImageResources holding Frames and 668 FillWithEmptyClients(page_clients);
634 // won't know to break the cycle. 669 chrome_client_ = SVGImageChromeClient::Create(this);
635 // This will become an issue when SVGImage will be able to load other 670 page_clients.chrome_client = chrome_client_.Get();
636 // SVGImage objects, but we're safe now, because SVGImage can only be
637 // loaded by a top-level document.
638 Page* page;
639 {
640 TRACE_EVENT0("blink", "SVGImage::dataChanged::createPage");
641 page = Page::Create(page_clients);
642 page->GetSettings().SetScriptEnabled(false);
643 page->GetSettings().SetPluginsEnabled(false);
644 page->GetSettings().SetAcceleratedCompositingEnabled(false);
645 671
646 // Because this page is detached, it can't get default font settings 672 // FIXME: If this SVG ends up loading itself, we might leak the world.
647 // from the embedder. Copy over font settings so we have sensible 673 // The Cache code does not know about ImageResources holding Frames and
648 // defaults. These settings are fixed and will not update if changed. 674 // won't know to break the cycle.
649 if (!Page::OrdinaryPages().IsEmpty()) { 675 // This will become an issue when SVGImage will be able to load other
650 Settings& default_settings = 676 // SVGImage objects, but we're safe now, because SVGImage can only be
651 (*Page::OrdinaryPages().begin())->GetSettings(); 677 // loaded by a top-level document.
652 page->GetSettings().GetGenericFontFamilySettings() = 678 Page* page;
653 default_settings.GetGenericFontFamilySettings(); 679 {
654 page->GetSettings().SetMinimumFontSize( 680 TRACE_EVENT0("blink", "SVGImage::dataChanged::createPage");
655 default_settings.GetMinimumFontSize()); 681 page = Page::Create(page_clients);
656 page->GetSettings().SetMinimumLogicalFontSize( 682 page->GetSettings().SetScriptEnabled(false);
657 default_settings.GetMinimumLogicalFontSize()); 683 page->GetSettings().SetPluginsEnabled(false);
658 page->GetSettings().SetDefaultFontSize( 684 page->GetSettings().SetAcceleratedCompositingEnabled(false);
659 default_settings.GetDefaultFontSize()); 685
660 page->GetSettings().SetDefaultFixedFontSize( 686 // Because this page is detached, it can't get default font settings
661 default_settings.GetDefaultFixedFontSize()); 687 // from the embedder. Copy over font settings so we have sensible
662 } 688 // defaults. These settings are fixed and will not update if changed.
689 if (!Page::OrdinaryPages().IsEmpty()) {
690 Settings& default_settings =
691 (*Page::OrdinaryPages().begin())->GetSettings();
692 page->GetSettings().GetGenericFontFamilySettings() =
693 default_settings.GetGenericFontFamilySettings();
694 page->GetSettings().SetMinimumFontSize(
695 default_settings.GetMinimumFontSize());
696 page->GetSettings().SetMinimumLogicalFontSize(
697 default_settings.GetMinimumLogicalFontSize());
698 page->GetSettings().SetDefaultFontSize(
699 default_settings.GetDefaultFontSize());
700 page->GetSettings().SetDefaultFixedFontSize(
701 default_settings.GetDefaultFixedFontSize());
702 }
663 } 703 }
664 704
665 LocalFrame* frame = nullptr; 705 LocalFrame* frame = nullptr;
666 { 706 {
667 TRACE_EVENT0("blink", "SVGImage::dataChanged::createFrame"); 707 TRACE_EVENT0("blink", "SVGImage::dataChanged::createFrame");
668 frame = LocalFrame::Create(&dummy_local_frame_client, *page, 0); 708 frame = LocalFrame::Create(
709 new SVGImageLocalFrameClient(this->AsWeakPtr()), *page, 0);
669 frame->SetView(FrameView::Create(*frame)); 710 frame->SetView(FrameView::Create(*frame));
670 frame->Init(); 711 frame->Init();
671 } 712 }
672 713
673 FrameLoader& loader = frame->Loader(); 714 FrameLoader& loader = frame->Loader();
674 loader.ForceSandboxFlags(kSandboxAll); 715 loader.ForceSandboxFlags(kSandboxAll);
675 716
676 frame->View()->SetScrollbarsSuppressed(true); 717 frame->View()->SetScrollbarsSuppressed(true);
677 // SVG Images will always synthesize a viewBox, if it's not available, and 718 // SVG Images will always synthesize a viewBox, if it's not available, and
678 // thus never see scrollbars. 719 // thus never see scrollbars.
679 frame->View()->SetCanHaveScrollbars(false); 720 frame->View()->SetCanHaveScrollbars(false);
680 // SVG Images are transparent. 721 // SVG Images are transparent.
681 frame->View()->SetBaseBackgroundColor(Color::kTransparent); 722 frame->View()->SetBaseBackgroundColor(Color::kTransparent);
682 723
683 page_ = page; 724 page_ = page;
684 725
685 TRACE_EVENT0("blink", "SVGImage::dataChanged::load"); 726 TRACE_EVENT0("blink", "SVGImage::dataChanged::load");
686 loader.Load(FrameLoadRequest( 727 loader.Load(FrameLoadRequest(
687 0, ResourceRequest(BlankURL()), 728 0, ResourceRequest(BlankURL()),
688 SubstituteData(Data(), AtomicString("image/svg+xml"), 729 SubstituteData(Data(), AtomicString("image/svg+xml"),
689 AtomicString("UTF-8"), KURL(), kForceSynchronousLoad))); 730 AtomicString("UTF-8"), KURL(), kForceSynchronousLoad)));
690 731
691 // Set the concrete object size before a container size is available. 732 // Set the concrete object size before a container size is available.
692 intrinsic_size_ = RoundedIntSize(ConcreteObjectSize(FloatSize( 733 intrinsic_size_ = RoundedIntSize(ConcreteObjectSize(FloatSize(
693 LayoutReplaced::kDefaultWidth, LayoutReplaced::kDefaultHeight))); 734 LayoutReplaced::kDefaultWidth, LayoutReplaced::kDefaultHeight)));
735
736 DCHECK(page_);
737 switch (load_state_) {
738 case kInDataChanged:
739 load_state_ = kWaitingForAsyncLoadCompletion;
740 return kSizeAvailableAndLoadingAsynchronously;
741
742 case kLoadCompletedSynchronously:
743 return kSizeAvailable;
744
745 case kDataChangedNotStarted:
746 case kWaitingForAsyncLoadCompletion:
747 case kLoadCompletedAsynchronously:
748 CHECK(false);
749 break;
694 } 750 }
695 751
696 return page_ ? kSizeAvailable : kSizeUnavailable; 752 NOTREACHED();
753 return kSizeAvailable;
697 } 754 }
698 755
699 String SVGImage::FilenameExtension() const { 756 String SVGImage::FilenameExtension() const {
700 return "svg"; 757 return "svg";
701 } 758 }
702 759
703 } // namespace blink 760 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698