/*
 * Copyright (C) 2010 Apple Inc. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include "third_party/blink/renderer/core/layout/layout_iframe.h"

#include "base/notreached.h"
#include "third_party/blink/renderer/core/page/scrolling/root_scroller_controller.h"
#include "third_party/blink/renderer/core/style/computed_style_base_constants.h"

namespace blink {

namespace {

EFrameSizing PhysicalFrameSizing(const ComputedStyle& style) {
  const EFrameSizing value = style.FrameSizing();
  switch (value) {
    case EFrameSizing::kAuto:
    case EFrameSizing::kContentWidth:
    case EFrameSizing::kContentHeight:
      return value;
    case EFrameSizing::kContentInlineSize:
      return style.IsHorizontalWritingMode() ? EFrameSizing::kContentWidth
                                             : EFrameSizing::kContentHeight;
    case EFrameSizing::kContentBlockSize:
      return style.IsHorizontalWritingMode() ? EFrameSizing::kContentHeight
                                             : EFrameSizing::kContentWidth;
  }
}

}  // namespace

LayoutIFrame::LayoutIFrame(HTMLFrameOwnerElement* element)
    : LayoutEmbeddedContent(element) {}

void LayoutIFrame::UpdateAfterLayout() {
  NOT_DESTROYED();
  LayoutEmbeddedContent::UpdateAfterLayout();

  const ComputedStyle& style = StyleRef();
  if (!style.IsResponsivelySized()) {
    return;
  }
  DCHECK(RuntimeEnabledFeatures::ResponsiveIframesEnabled());
  if (!GetEmbeddedContentView() && GetFrameView()) {
    GetFrameView()->AddPartToUpdate(*this);
  }
}

PhysicalNaturalSizingInfo LayoutIFrame::GetNaturalDimensions() const {
  NOT_DESTROYED();
  const ComputedStyle& style = StyleRef();
  if (style.IsResponsivelySized()) {
    DCHECK(RuntimeEnabledFeatures::ResponsiveIframesEnabled());
    std::optional<NaturalSizingInfo> sizing_info;
    if (const FrameView* frame_view = ChildFrameView()) {
      // Use the natural size received from the child frame if it exists.
      sizing_info = frame_view->GetNaturalDimensions();
    }

    if (!sizing_info) {
      // Check if this `<iframe>` element has received natural sizes from old
      // `ChildFrameView`s.
      if (const HTMLFrameOwnerElement* owner = GetFrameOwnerElement()) {
        sizing_info = owner->LastNaturalSizingInfo();
      }
    }

    if (sizing_info) {
      switch (PhysicalFrameSizing(style)) {
        case EFrameSizing::kContentWidth:
          sizing_info->has_height = false;
          break;
        case EFrameSizing::kContentHeight:
          sizing_info->has_width = false;
          break;
        case EFrameSizing::kAuto:
        case EFrameSizing::kContentInlineSize:
        case EFrameSizing::kContentBlockSize:
          NOTREACHED();
      }

      // Scale based on our zoom as the embedded document doesn't have that
      // info.
      sizing_info->size.Scale(style.EffectiveZoom());
      return PhysicalNaturalSizingInfo::FromSizingInfo(*sizing_info);
    }
  }

  return LayoutEmbeddedContent::GetNaturalDimensions();
}

}  // namespace blink
