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 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
|
/* -*- Mode: C; c-basic-offset: 2; -*- */
/* GdkPixbuf library - test loaders
*
* Copyright (C) 2014 Red Hat, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include "gdk-pixbuf/gdk-pixbuf.h"
#include "test-common.h"
#include <string.h>
#ifdef G_OS_UNIX
#include <fcntl.h>
#include <sys/mman.h>
#include <unistd.h>
#endif
#ifdef G_OS_UNIX
typedef struct {
void *buf;
gsize len;
} MappedBuf;
static void
destroy_buf_unmap (gpointer data)
{
MappedBuf *buf = data;
int r;
r = munmap (buf->buf, buf->len);
g_assert_cmpint (r, ==, 0);
g_free (buf);
}
#endif
static GdkPixbuf *
get_readonly_pixbuf (void)
{
GdkPixbuf *reference;
GdkPixbuf *result;
GBytes *bytes;
GError *error = NULL;
reference = gdk_pixbuf_new_from_file (g_test_get_filename (G_TEST_DIST, "test-image.png", NULL), &error);
g_assert_no_error (error);
#ifdef G_OS_UNIX
{
MappedBuf *buf;
int pagesize;
int pages;
int r;
int zero_fd;
gsize pixlen;
pagesize = sysconf (_SC_PAGESIZE);
g_assert_cmpint (pagesize, >, 0);
pixlen = gdk_pixbuf_get_byte_length (reference);
pages = pixlen / pagesize + 1;
buf = g_new0 (MappedBuf, 1);
buf->len = pages * pagesize;
zero_fd = open("/dev/zero", O_RDWR);
g_assert(zero_fd != -1);
buf->buf = mmap (NULL, buf->len, PROT_READ | PROT_WRITE, MAP_PRIVATE, zero_fd, 0);
g_assert (buf->buf != NULL);
close(zero_fd);
memcpy (buf->buf, gdk_pixbuf_get_pixels (reference), pixlen);
r = mprotect (buf->buf, buf->len, PROT_READ);
g_assert_cmpint (r, ==, 0);
bytes = g_bytes_new_with_free_func (buf->buf, buf->len, destroy_buf_unmap, buf);
}
#else
bytes = g_bytes_new (gdk_pixbuf_get_pixels (reference), gdk_pixbuf_get_byte_length (reference));
#endif
result = gdk_pixbuf_new_from_bytes (bytes,
gdk_pixbuf_get_colorspace (reference),
gdk_pixbuf_get_has_alpha (reference),
gdk_pixbuf_get_bits_per_sample (reference),
gdk_pixbuf_get_width (reference),
gdk_pixbuf_get_height (reference),
gdk_pixbuf_get_rowstride (reference));
g_object_unref (reference);
g_bytes_unref (bytes);
return result;
}
static void
test_mutate_readonly (void)
{
GdkPixbuf *src;
GdkPixbuf *dest;
if (!format_supported ("png"))
{
g_test_skip ("format not supported");
return;
}
src = get_readonly_pixbuf ();
gdk_pixbuf_scale (src, src,
0, 0,
gdk_pixbuf_get_width (src) / 4,
gdk_pixbuf_get_height (src) / 4,
0, 0, 0.5, 0.5,
GDK_INTERP_NEAREST);
g_object_unref (src);
src = get_readonly_pixbuf ();
dest = gdk_pixbuf_scale_simple (src,
gdk_pixbuf_get_width (src) / 4,
gdk_pixbuf_get_height (src) / 4,
GDK_INTERP_NEAREST);
g_object_unref (dest);
dest = gdk_pixbuf_composite_color_simple (src,
gdk_pixbuf_get_width (src) / 4,
gdk_pixbuf_get_height (src) / 4,
GDK_INTERP_NEAREST,
128,
8,
G_MAXUINT32,
G_MAXUINT32/2);
g_object_unref (dest);
dest = gdk_pixbuf_rotate_simple (src, 180);
g_object_unref (dest);
dest = gdk_pixbuf_flip (src, TRUE);
g_object_unref (dest);
dest = gdk_pixbuf_flip (src, FALSE);
g_object_unref (dest);
g_object_unref (src);
}
static void
test_read_pixel_bytes (void)
{
GdkPixbuf *src;
GBytes *bytes;
if (!format_supported ("png"))
{
g_test_skip ("format not supported");
return;
}
src = get_readonly_pixbuf ();
bytes = gdk_pixbuf_read_pixel_bytes (src);
g_object_unref (src);
g_bytes_unref (bytes);
src = get_readonly_pixbuf ();
/* Force a mutable conversion */
(void) gdk_pixbuf_get_pixels (src);
bytes = gdk_pixbuf_read_pixel_bytes (src);
g_object_unref (src);
g_bytes_unref (bytes);
}
int
main (int argc, char **argv)
{
g_test_init (&argc, &argv, NULL);
g_test_add_func ("/pixbuf/readonly/mutate", test_mutate_readonly);
g_test_add_func ("/pixbuf/readonly/readpixelbytes", test_read_pixel_bytes);
return g_test_run ();
}
|