1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ui/compositor/test/test_compositor_host.h"
7 #import <AppKit/NSApplication.h>
8 #import <AppKit/NSOpenGL.h>
9 #import <AppKit/NSView.h>
10 #import <AppKit/NSWindow.h>
11 #import <Foundation/NSAutoreleasePool.h>
13 #include "base/compiler_specific.h"
14 #include "base/mac/scoped_nsobject.h"
15 #include "base/memory/scoped_ptr.h"
16 #include "base/thread_task_runner_handle.h"
17 #include "ui/compositor/compositor.h"
18 #include "ui/gfx/geometry/rect.h"
20 // AcceleratedTestView provides an NSView class that delegates drawing to a
21 // ui::Compositor delegate, setting up the NSOpenGLContext as required.
22 @interface AcceleratedTestView : NSView {
23 ui::Compositor* compositor_;
25 // Designated initializer.
27 -(void)setCompositor:(ui::Compositor*)compositor;
30 @implementation AcceleratedTestView
32 // The frame will be resized when reparented into the window's view hierarchy.
33 self = [super initWithFrame:NSZeroRect];
37 -(void)setCompositor:(ui::Compositor*)compositor {
38 compositor_ = compositor;
41 - (void)drawRect:(NSRect)rect {
42 DCHECK(compositor_) << "Drawing with no compositor set.";
49 // Tests that use Objective-C memory semantics need to have a top-level
50 // NSAutoreleasePool set up and initialized prior to execution and drained upon
51 // exit. The tests will leak otherwise.
52 class FoundationHost {
55 pool_ = [[NSAutoreleasePool alloc] init];
57 virtual ~FoundationHost() {
62 NSAutoreleasePool* pool_;
63 DISALLOW_COPY_AND_ASSIGN(FoundationHost);
66 // Tests that use the AppKit framework need to have the NSApplication
67 // initialized prior to doing anything with display objects such as windows,
68 // views, or controls.
69 class AppKitHost : public FoundationHost {
72 [NSApplication sharedApplication];
74 ~AppKitHost() override {}
76 DISALLOW_COPY_AND_ASSIGN(AppKitHost);
79 // TestCompositorHostMac provides a window surface and a coordinated compositor
80 // for use in the compositor unit tests.
81 class TestCompositorHostMac : public TestCompositorHost,
84 TestCompositorHostMac(const gfx::Rect& bounds,
85 ui::ContextFactory* context_factory);
86 ~TestCompositorHostMac() override;
89 // TestCompositorHost:
91 ui::Compositor* GetCompositor() override;
95 ui::ContextFactory* context_factory_;
97 scoped_ptr<ui::Compositor> compositor_;
99 // Owned. Released when window is closed.
102 DISALLOW_COPY_AND_ASSIGN(TestCompositorHostMac);
105 TestCompositorHostMac::TestCompositorHostMac(
106 const gfx::Rect& bounds,
107 ui::ContextFactory* context_factory)
108 : bounds_(bounds), context_factory_(context_factory), window_(nil) {
111 TestCompositorHostMac::~TestCompositorHostMac() {
112 // Release reference to |compositor_|. Important because the |compositor_|
113 // holds |this| as its delegate, so that reference must be removed here.
114 [[window_ contentView] setCompositor:NULL];
115 [window_ setContentView:nil];
117 [window_ orderOut:nil];
121 void TestCompositorHostMac::Show() {
123 window_ = [[NSWindow alloc]
124 initWithContentRect:NSMakeRect(bounds_.x(),
128 styleMask:NSBorderlessWindowMask
129 backing:NSBackingStoreBuffered
131 base::scoped_nsobject<AcceleratedTestView> view(
132 [[AcceleratedTestView alloc] init]);
133 compositor_.reset(new ui::Compositor(view,
135 base::ThreadTaskRunnerHandle::Get()));
136 compositor_->SetScaleAndSize(1.0f, bounds_.size());
137 [view setCompositor:compositor_.get()];
138 [window_ setContentView:view];
139 [window_ orderFront:nil];
142 ui::Compositor* TestCompositorHostMac::GetCompositor() {
143 return compositor_.get();
147 TestCompositorHost* TestCompositorHost::Create(
148 const gfx::Rect& bounds,
149 ui::ContextFactory* context_factory) {
150 return new TestCompositorHostMac(bounds, context_factory);