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
|
/* -*- 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 <stdio.h>
#include "gtest/gtest.h"
#include "gfxASurface.h"
#include "gfxImageSurface.h"
#include "nsISupportsUtils.h" // for NS_ADDREF
#include "cairo.h"
static int GetASurfaceRefCount(gfxASurface* s) {
NS_ADDREF(s);
return s->Release();
}
static int CheckInt(int value, int expected) {
if (value != expected) {
fprintf(stderr, "Expected %d got %d\n", expected, value);
return 1;
}
return 0;
}
static int CheckPointer(void* value, void* expected) {
if (value != expected) {
fprintf(stderr, "Expected %p got %p\n", expected, value);
return 1;
}
return 0;
}
static cairo_user_data_key_t destruction_key;
static void SurfaceDestroyNotifier(void* data) { *(int*)data = 1; }
static int TestNewSurface() {
int failures = 0;
int destroyed = 0;
RefPtr<gfxASurface> s =
new gfxImageSurface(mozilla::gfx::IntSize(10, 10),
mozilla::gfx::SurfaceFormat::A8R8G8B8_UINT32);
cairo_surface_t* cs = s->CairoSurface();
cairo_surface_set_user_data(cs, &destruction_key, &destroyed,
SurfaceDestroyNotifier);
failures += CheckInt(GetASurfaceRefCount(s.get()), 1);
failures += CheckInt(cairo_surface_get_reference_count(cs), 1);
failures += CheckInt(destroyed, 0);
cairo_surface_reference(cs);
failures += CheckInt(GetASurfaceRefCount(s.get()), 2);
failures += CheckInt(cairo_surface_get_reference_count(cs), 2);
failures += CheckInt(destroyed, 0);
gfxASurface* savedWrapper = s.get();
s = nullptr;
failures += CheckInt(cairo_surface_get_reference_count(cs), 1);
failures += CheckInt(destroyed, 0);
s = gfxASurface::Wrap(cs);
failures += CheckPointer(s.get(), savedWrapper);
failures += CheckInt(GetASurfaceRefCount(s.get()), 2);
failures += CheckInt(cairo_surface_get_reference_count(cs), 2);
failures += CheckInt(destroyed, 0);
cairo_surface_destroy(cs);
failures += CheckInt(GetASurfaceRefCount(s.get()), 1);
failures += CheckInt(cairo_surface_get_reference_count(cs), 1);
failures += CheckInt(destroyed, 0);
s = nullptr;
failures += CheckInt(destroyed, 1);
return failures;
}
static int TestExistingSurface() {
int failures = 0;
int destroyed = 0;
cairo_surface_t* cs = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, 10, 10);
cairo_surface_set_user_data(cs, &destruction_key, &destroyed,
SurfaceDestroyNotifier);
failures += CheckInt(cairo_surface_get_reference_count(cs), 1);
failures += CheckInt(destroyed, 0);
RefPtr<gfxASurface> s = gfxASurface::Wrap(cs);
failures += CheckInt(GetASurfaceRefCount(s.get()), 2);
cairo_surface_reference(cs);
failures += CheckInt(GetASurfaceRefCount(s.get()), 3);
failures += CheckInt(cairo_surface_get_reference_count(cs), 3);
failures += CheckInt(destroyed, 0);
gfxASurface* savedWrapper = s.get();
s = nullptr;
failures += CheckInt(cairo_surface_get_reference_count(cs), 2);
failures += CheckInt(destroyed, 0);
s = gfxASurface::Wrap(cs);
failures += CheckPointer(s.get(), savedWrapper);
failures += CheckInt(GetASurfaceRefCount(s.get()), 3);
failures += CheckInt(cairo_surface_get_reference_count(cs), 3);
failures += CheckInt(destroyed, 0);
cairo_surface_destroy(cs);
failures += CheckInt(GetASurfaceRefCount(s.get()), 2);
failures += CheckInt(cairo_surface_get_reference_count(cs), 2);
failures += CheckInt(destroyed, 0);
s = nullptr;
failures += CheckInt(cairo_surface_get_reference_count(cs), 1);
failures += CheckInt(destroyed, 0);
cairo_surface_destroy(cs);
failures += CheckInt(destroyed, 1);
return failures;
}
TEST(Gfx, SurfaceRefCount)
{
int fail;
fail = TestNewSurface();
EXPECT_TRUE(fail == 0) << "TestNewSurface: " << fail << " failures";
fail = TestExistingSurface();
EXPECT_TRUE(fail == 0) << "TestExistingSurface: " << fail << " failures";
}
|