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/memory/scoped_nsobject.h"
15 #include "base/memory/scoped_ptr.h"
16 #include "ui/compositor/compositor.h"
17 #include "ui/gfx/rect.h"
19 // AcceleratedTestView provides an NSView class that delegates drawing to a
20 // ui::Compositor delegate, setting up the NSOpenGLContext as required.
21 @interface AcceleratedTestView : NSView {
22 ui::Compositor* compositor_;
24 // Designated initializer.
26 -(void)setCompositor:(ui::Compositor*)compositor;
29 @implementation AcceleratedTestView
31 // The frame will be resized when reparented into the window's view hierarchy.
32 self = [super initWithFrame:NSZeroRect];
36 -(void)setCompositor:(ui::Compositor*)compositor {
37 compositor_ = compositor;
40 - (void)drawRect:(NSRect)rect {
41 DCHECK(compositor_) << "Drawing with no compositor set.";
48 // Tests that use Objective-C memory semantics need to have a top-level
49 // NSAutoreleasePool set up and initialized prior to execution and drained upon
50 // exit. The tests will leak otherwise.
51 class FoundationHost {
54 pool_ = [[NSAutoreleasePool alloc] init];
56 virtual ~FoundationHost() {
61 NSAutoreleasePool* pool_;
62 DISALLOW_COPY_AND_ASSIGN(FoundationHost);
65 // Tests that use the AppKit framework need to have the NSApplication
66 // initialized prior to doing anything with display objects such as windows,
67 // views, or controls.
68 class AppKitHost : public FoundationHost {
71 [NSApplication sharedApplication];
73 virtual ~AppKitHost() {
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,
82 public CompositorDelegate,
85 TestCompositorHostMac(const gfx::Rect& bounds);
86 virtual ~TestCompositorHostMac();
89 // TestCompositorHost:
90 virtual void Show() OVERRIDE;
91 virtual ui::Compositor* GetCompositor() OVERRIDE;
93 // CompositorDelegate:
94 virtual void ScheduleDraw() OVERRIDE;
97 scoped_ptr<ui::Compositor> compositor_;
99 // Owned. Released when window is closed.
102 DISALLOW_COPY_AND_ASSIGN(TestCompositorHostMac);
105 TestCompositorHostMac::TestCompositorHostMac(const gfx::Rect& bounds)
106 : bounds_(bounds), window_(nil) {
109 TestCompositorHostMac::~TestCompositorHostMac() {
110 // Release reference to |compositor_|. Important because the |compositor_|
111 // holds |this| as its delegate, so that reference must be removed here.
112 [[window_ contentView] setCompositor:NULL];
113 [window_ setContentView:nil];
115 [window_ orderOut:nil];
119 void TestCompositorHostMac::Show() {
121 window_ = [[NSWindow alloc]
122 initWithContentRect:NSMakeRect(bounds_.x(),
126 styleMask:NSBorderlessWindowMask
127 backing:NSBackingStoreBuffered
129 scoped_nsobject<AcceleratedTestView> view([[AcceleratedTestView alloc] init]);
130 compositor_.reset(new ui::Compositor(this, view, bounds_.size()));
131 [view setCompositor:compositor_.get()];
132 [window_ setContentView:view];
133 [window_ orderFront:nil];
136 ui::Compositor* TestCompositorHostMac::GetCompositor() {
137 return compositor_.get();
140 void TestCompositorHostMac::ScheduleDraw() {
141 DCHECK(!ui::Compositor::WasInitializedWithThread());
142 if (!compositor_.get())
145 // Force display now.
150 TestCompositorHost* TestCompositorHost::Create(const gfx::Rect& bounds) {
151 return new TestCompositorHostMac(bounds);