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 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578
|
/* Copyright (C) 2001-2006 Artifex Software, Inc.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied, modified
or distributed except as expressly authorized under the terms of that
license. Refer to licensing information at http://www.artifex.com/
or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
*/
/* $Id: gdevmpla.c 8250 2007-09-25 13:31:24Z giles $ */
/* Any-depth planar "memory" (stored bitmap) device */
#include "memory_.h"
#include "gx.h"
#include "gserrors.h"
#include "gsbitops.h"
#include "gxdevice.h"
#include "gxdevmem.h" /* semi-public definitions */
#include "gxgetbit.h"
#include "gdevmem.h" /* private definitions */
#include "gdevmpla.h" /* interface */
/* procedures */
static dev_proc_open_device(mem_planar_open);
declare_mem_procs(mem_planar_copy_mono, mem_planar_copy_color, mem_planar_fill_rectangle);
static dev_proc_strip_tile_rectangle(mem_planar_strip_tile_rectangle);
static dev_proc_get_bits_rectangle(mem_planar_get_bits_rectangle);
/*
* Set up a planar memory device, after calling gs_make_mem_device but
* before opening the device. The pre-existing device provides the color
* mapping procedures, but not the drawing procedures. Requires: num_planes
* > 0, plane_depths[0 .. num_planes - 1] > 0, sum of plane depths =
* mdev->color_info.depth.
*
* Note that this is the only public procedure in this file, and the only
* sanctioned way to set up a planar memory device.
*/
int
gdev_mem_set_planar(gx_device_memory * mdev, int num_planes,
const gx_render_plane_t *planes /*[num_planes]*/)
{
int total_depth;
int same_depth = planes[0].depth;
gx_color_index covered = 0;
int pi;
if (num_planes < 1 || num_planes > GX_DEVICE_COLOR_MAX_COMPONENTS)
return_error(gs_error_rangecheck);
for (pi = 0, total_depth = 0; pi < num_planes; ++pi) {
int shift = planes[pi].shift;
int plane_depth = planes[pi].depth;
gx_color_index mask;
if (shift < 0 || plane_depth > 16 ||
!gdev_mem_device_for_bits(plane_depth))
return_error(gs_error_rangecheck);
mask = (((gx_color_index)1 << plane_depth) - 1) << shift;
if (covered & mask)
return_error(gs_error_rangecheck);
covered |= mask;
if (plane_depth != same_depth)
same_depth = 0;
total_depth += plane_depth;
}
if (total_depth > mdev->color_info.depth)
return_error(gs_error_rangecheck);
mdev->num_planes = num_planes;
memcpy(mdev->planes, planes, num_planes * sizeof(planes[0]));
mdev->plane_depth = same_depth;
/* Change the drawing procedures. */
set_dev_proc(mdev, open_device, mem_planar_open);
set_dev_proc(mdev, fill_rectangle, mem_planar_fill_rectangle);
set_dev_proc(mdev, copy_mono, mem_planar_copy_mono);
set_dev_proc(mdev, copy_color, mem_planar_copy_color);
set_dev_proc(mdev, copy_alpha, gx_default_copy_alpha);
set_dev_proc(mdev, strip_tile_rectangle, mem_planar_strip_tile_rectangle);
set_dev_proc(mdev, strip_copy_rop, gx_default_strip_copy_rop);
set_dev_proc(mdev, get_bits_rectangle, mem_planar_get_bits_rectangle);
return 0;
}
/* Open a planar memory device. */
static int
mem_planar_open(gx_device * dev)
{
gx_device_memory *const mdev = (gx_device_memory *)dev;
/* Check that we aren't trying to open a chunky device as planar. */
if (mdev->num_planes == 0)
return_error(gs_error_rangecheck);
return gdev_mem_open_scan_lines(mdev, dev->height);
}
/*
* We execute drawing operations by patching a few parameters in the
* device structure and then calling the procedure appropriate to the
* plane depth.
*/
typedef struct mem_save_params_s {
int depth; /* color_info.depth */
byte *base;
byte **line_ptrs;
} mem_save_params_t;
#define MEM_SAVE_PARAMS(mdev, msp)\
(msp.depth = mdev->color_info.depth,\
msp.base = mdev->base,\
msp.line_ptrs = mdev->line_ptrs)
#define MEM_SET_PARAMS(mdev, plane_depth)\
(mdev->color_info.depth = plane_depth, /* maybe not needed */\
mdev->base = mdev->line_ptrs[0],\
mdev->raster = bitmap_raster(mdev->width * plane_depth))
#define MEM_RESTORE_PARAMS(mdev, msp)\
(mdev->color_info.depth = msp.depth,\
mdev->base = msp.base,\
mdev->line_ptrs = msp.line_ptrs)
/* Fill a rectangle with a color. */
static int
mem_planar_fill_rectangle(gx_device * dev, int x, int y, int w, int h,
gx_color_index color)
{
gx_device_memory * const mdev = (gx_device_memory *)dev;
mem_save_params_t save;
int pi;
MEM_SAVE_PARAMS(mdev, save);
for (pi = 0; pi < mdev->num_planes; ++pi) {
int plane_depth = mdev->planes[pi].depth;
gx_color_index mask = ((gx_color_index)1 << plane_depth) - 1;
const gx_device_memory *mdproto =
gdev_mem_device_for_bits(plane_depth);
MEM_SET_PARAMS(mdev, plane_depth);
dev_proc(mdproto, fill_rectangle)(dev, x, y, w, h,
(color >> mdev->planes[pi].shift) &
mask);
mdev->line_ptrs += mdev->height;
}
MEM_RESTORE_PARAMS(mdev, save);
return 0;
}
/* Copy a bitmap. */
static int
mem_planar_copy_mono(gx_device * dev, const byte * base, int sourcex,
int sraster, gx_bitmap_id id, int x, int y, int w, int h,
gx_color_index color0, gx_color_index color1)
{
gx_device_memory * const mdev = (gx_device_memory *)dev;
mem_save_params_t save;
int pi;
MEM_SAVE_PARAMS(mdev, save);
for (pi = 0; pi < mdev->num_planes; ++pi) {
int plane_depth = mdev->planes[pi].depth;
int shift = mdev->planes[pi].shift;
gx_color_index mask = ((gx_color_index)1 << plane_depth) - 1;
const gx_device_memory *mdproto =
gdev_mem_device_for_bits(plane_depth);
gx_color_index c0 =
(color0 == gx_no_color_index ? gx_no_color_index :
(color0 >> shift) & mask);
gx_color_index c1 =
(color1 == gx_no_color_index ? gx_no_color_index :
(color1 >> shift) & mask);
MEM_SET_PARAMS(mdev, plane_depth);
if (c0 == c1)
dev_proc(mdproto, fill_rectangle)(dev, x, y, w, h, c0);
else
dev_proc(mdproto, copy_mono)
(dev, base, sourcex, sraster, id, x, y, w, h, c0, c1);
mdev->line_ptrs += mdev->height;
}
MEM_RESTORE_PARAMS(mdev, save);
return 0;
}
/* Copy a color bitmap. */
/* This is slow and messy. */
static int
mem_planar_copy_color(gx_device * dev, const byte * base, int sourcex,
int sraster, gx_bitmap_id id,
int x, int y, int w, int h)
{
gx_device_memory * const mdev = (gx_device_memory *)dev;
#define BUF_LONGS 100 /* arbitrary, >= 1 */
#define BUF_BYTES (BUF_LONGS * ARCH_SIZEOF_LONG)
union b_ {
ulong l[BUF_LONGS];
byte b[BUF_BYTES];
} buf;
int source_depth = dev->color_info.depth;
mem_save_params_t save;
int pi;
fit_copy(dev, base, sourcex, sraster, id, x, y, w, h);
MEM_SAVE_PARAMS(mdev, save);
for (pi = 0; pi < mdev->num_planes; ++pi) {
int plane_depth = mdev->planes[pi].depth;
int shift = mdev->planes[pi].shift;
gx_color_index mask = ((gx_color_index)1 << plane_depth) - 1;
const gx_device_memory *mdproto =
gdev_mem_device_for_bits(plane_depth);
/*
* Divide up the transfer into chunks that can be assembled
* within the fixed-size buffer. This code can be simplified
* a lot if all planes have the same depth, by simply using
* copy_color to transfer one column at a time, but it might
* be very inefficient.
*/
uint plane_raster = bitmap_raster(plane_depth * w);
int br, bw, bh, cx, cy, cw, ch, ix, iy;
MEM_SET_PARAMS(mdev, plane_depth);
if (plane_raster > BUF_BYTES) {
br = BUF_BYTES;
bw = BUF_BYTES * 8 / plane_depth;
bh = 1;
} else {
br = plane_raster;
bw = w;
bh = BUF_BYTES / plane_raster;
}
/*
* We could do the extraction with get_bits_rectangle
* selecting a single plane, but this is critical enough
* code that we more or less replicate it here.
*/
for (cy = y; cy < y + h; cy += ch) {
ch = min(bh, y + h - cy);
for (cx = x; cx < x + w; cx += cw) {
int sx = sourcex + cx - x;
const byte *source_base = base + sraster * (cy - y);
int source_bit = 0;
cw = min(bw, x + w - cx);
if (sx) {
int xbit = sx * source_depth;
source_base += xbit >> 3;
source_bit = xbit & 7;
}
for (iy = 0; iy < ch; ++iy) {
sample_load_declare_setup(sptr, sbit, source_base,
source_bit, source_depth);
sample_store_declare_setup(dptr, dbit, dbbyte,
buf.b + br * iy,
0, plane_depth);
for (ix = 0; ix < cw; ++ix) {
gx_color_index value;
sample_load_next_any(value, sptr, sbit, source_depth);
value = (value >> shift) & mask;
sample_store_next16(value, dptr, dbit, plane_depth,
dbbyte);
}
sample_store_flush(dptr, dbit, plane_depth, dbbyte);
source_base += sraster;
}
/*
* Detect and bypass the possibility that copy_color is
* defined in terms of copy_mono.
*/
if (plane_depth == 1)
dev_proc(mdproto, copy_mono)
(dev, buf.b, 0, br, gx_no_bitmap_id, cx, cy, cw, ch,
(gx_color_index)0, (gx_color_index)1);
else
dev_proc(mdproto, copy_color)
(dev, buf.b, 0, br, gx_no_bitmap_id, cx, cy, cw, ch);
}
}
mdev->line_ptrs += mdev->height;
}
MEM_RESTORE_PARAMS(mdev, save);
return 0;
#undef BUF_BYTES
#undef BUF_LONGS
}
static int
mem_planar_strip_tile_rectangle(gx_device * dev, const gx_strip_bitmap * tiles,
int x, int y, int w, int h,
gx_color_index color0, gx_color_index color1,
int px, int py)
{
gx_device_memory * const mdev = (gx_device_memory *)dev;
mem_save_params_t save;
int pi;
/* We can't split up the transfer if the tile is colored. */
if (color0 == gx_no_color_index && color1 == gx_no_color_index)
return gx_default_strip_tile_rectangle
(dev, tiles, x, y, w, h, color0, color1, px, py);
MEM_SAVE_PARAMS(mdev, save);
for (pi = 0; pi < mdev->num_planes; ++pi) {
int plane_depth = mdev->planes[pi].depth;
int shift = mdev->planes[pi].shift;
gx_color_index mask = ((gx_color_index)1 << plane_depth) - 1;
const gx_device_memory *mdproto =
gdev_mem_device_for_bits(plane_depth);
gx_color_index c0 =
(color0 == gx_no_color_index ? gx_no_color_index :
(color0 >> shift) & mask);
gx_color_index c1 =
(color1 == gx_no_color_index ? gx_no_color_index :
(color1 >> shift) & mask);
MEM_SET_PARAMS(mdev, plane_depth);
if (c0 == c1)
dev_proc(mdproto, fill_rectangle)(dev, x, y, w, h, c0);
else {
/*
* Temporarily replace copy_mono in case strip_tile_rectangle is
* defined in terms of it.
*/
set_dev_proc(dev, copy_mono, dev_proc(mdproto, copy_mono));
dev_proc(mdproto, strip_tile_rectangle)
(dev, tiles, x, y, w, h, c0, c1, px, py);
}
mdev->line_ptrs += mdev->height;
}
MEM_RESTORE_PARAMS(mdev, save);
set_dev_proc(dev, copy_mono, mem_planar_copy_mono);
return 0;
}
/*
* Repack planar into chunky format. This is an internal procedure that
* implements the straightforward chunky case of get_bits_rectangle, and
* is also used for the general cases.
*/
static int
planar_to_chunky(gx_device_memory *mdev, int x, int y, int w, int h,
int offset, uint draster, byte *dest)
{
int num_planes = mdev->num_planes;
sample_load_declare(sptr[GX_DEVICE_COLOR_MAX_COMPONENTS],
sbit[GX_DEVICE_COLOR_MAX_COMPONENTS]);
sample_store_declare(dptr, dbit, dbbyte);
int ddepth = mdev->color_info.depth;
int direct =
(mdev->color_info.depth != num_planes * mdev->plane_depth ? 0 :
mdev->planes[0].shift == 0 ? -mdev->plane_depth : mdev->plane_depth);
int pi, ix, iy;
/* Check whether the planes are of equal size and sequential. */
/* If direct != 0, we already know they exactly fill the depth. */
if (direct < 0) {
for (pi = 0; pi < num_planes; ++pi)
if (mdev->planes[pi].shift != pi * -direct) {
direct = 0; break;
}
} else if (direct > 0) {
for (pi = 0; pi < num_planes; ++pi)
if (mdev->planes[num_planes - 1 - pi].shift != pi * direct) {
direct = 0; break;
}
}
for (iy = y; iy < y + h; ++iy) {
byte **line_ptr = mdev->line_ptrs + iy;
for (pi = 0; pi < num_planes; ++pi, line_ptr += mdev->height) {
int plane_depth = mdev->planes[pi].depth;
int xbit = x * plane_depth;
sptr[pi] = *line_ptr + (xbit >> 3);
sample_load_setup(sbit[pi], xbit & 7, plane_depth);
}
{
int xbit = offset * ddepth;
dptr = dest + (iy - y) * draster + (xbit >> 3);
sample_store_setup(dbit, xbit & 7, ddepth);
}
if (direct == -8) {
/* 1 byte per component, lsb first. */
switch (num_planes) {
case 3: {
const byte *p0 = sptr[2];
const byte *p1 = sptr[1];
const byte *p2 = sptr[0];
for (ix = w; ix > 0; --ix, dptr += 3) {
dptr[0] = *p0++;
dptr[1] = *p1++;
dptr[2] = *p2++;
}
}
continue;
case 4:
for (ix = w; ix > 0; --ix, dptr += 4) {
dptr[0] = *sptr[3]++;
dptr[1] = *sptr[2]++;
dptr[2] = *sptr[1]++;
dptr[3] = *sptr[0]++;
}
continue;
default:
break;
}
}
sample_store_preload(dbbyte, dptr, dbit, ddepth);
for (ix = w; ix > 0; --ix) {
gx_color_index color = 0;
for (pi = 0; pi < num_planes; ++pi) {
int plane_depth = mdev->planes[pi].depth;
uint value;
sample_load_next16(value, sptr[pi], sbit[pi], plane_depth);
color |= (gx_color_index)value << mdev->planes[pi].shift;
}
sample_store_next_any(color, dptr, dbit, ddepth, dbbyte);
}
sample_store_flush(dptr, dbit, ddepth, dbbyte);
}
return 0;
}
/* Copy bits back from a planar memory device. */
static int
mem_planar_get_bits_rectangle(gx_device * dev, const gs_int_rect * prect,
gs_get_bits_params_t * params,
gs_int_rect ** unread)
{
/* This duplicates most of mem_get_bits_rectangle. Tant pis. */
gx_device_memory * const mdev = (gx_device_memory *)dev;
gs_get_bits_options_t options = params->options;
int x = prect->p.x, w = prect->q.x - x, y = prect->p.y, h = prect->q.y - y;
int num_planes = mdev->num_planes;
gs_get_bits_params_t copy_params;
int code;
if (options == 0) {
/*
* Unfortunately, as things stand, we have to support
* GB_PACKING_CHUNKY. In fact, we can't even claim to support
* GB_PACKING_PLANAR, because there is currently no way to
* describe the particular planar packing format that the device
* actually stores.
*/
params->options =
(GB_ALIGN_STANDARD | GB_ALIGN_ANY) |
(GB_RETURN_COPY | GB_RETURN_POINTER) |
(GB_OFFSET_0 | GB_OFFSET_SPECIFIED | GB_OFFSET_ANY) |
(GB_RASTER_STANDARD | GB_RASTER_SPECIFIED | GB_RASTER_ANY) |
/*
(mdev->num_planes == mdev->color_info.depth ?
GB_PACKING_CHUNKY | GB_PACKING_PLANAR | GB_PACKING_BIT_PLANAR :
GB_PACKING_CHUNKY | GB_PACKING_PLANAR)
*/
GB_PACKING_CHUNKY |
GB_COLORS_NATIVE | GB_ALPHA_NONE;
return_error(gs_error_rangecheck);
}
if ((w <= 0) | (h <= 0)) {
if ((w | h) < 0)
return_error(gs_error_rangecheck);
return 0;
}
if (x < 0 || w > dev->width - x ||
y < 0 || h > dev->height - y
)
return_error(gs_error_rangecheck);
/*
* If the request is for exactly one plane, hand it off to a device
* temporarily tweaked to return just that plane.
*/
if (!(~options & (GB_PACKING_PLANAR | GB_SELECT_PLANES))) {
/* Check that only a single plane is being requested. */
int pi;
for (pi = 0; pi < num_planes; ++pi)
if (params->data[pi] != 0)
break;
if (pi < num_planes) {
int plane = pi++;
for (; pi < num_planes; ++pi)
if (params->data[pi] != 0)
break;
if (pi == num_planes) {
mem_save_params_t save;
copy_params = *params;
copy_params.options =
(options & ~(GB_PACKING_ALL | GB_SELECT_PLANES)) |
GB_PACKING_CHUNKY;
copy_params.data[0] = copy_params.data[plane];
MEM_SAVE_PARAMS(mdev, save);
mdev->line_ptrs += mdev->height * plane;
MEM_SET_PARAMS(mdev, mdev->planes[plane].depth);
code = mem_get_bits_rectangle(dev, prect, ©_params,
unread);
MEM_RESTORE_PARAMS(mdev, save);
if (code >= 0) {
params->data[plane] = copy_params.data[0];
return code;
}
}
}
}
/*
* We can't return the requested plane by itself. Fall back to
* chunky format. This is somewhat painful.
*
* The code here knows how to produce just one chunky format:
* GB_COLORS_NATIVE, GB_ALPHA_NONE, GB_RETURN_COPY.
* For any other format, we generate this one in a buffer and
* hand it off to gx_get_bits_copy. This is *really* painful.
*/
if (!(~options & (GB_COLORS_NATIVE | GB_ALPHA_NONE |
GB_PACKING_CHUNKY | GB_RETURN_COPY))) {
int offset = (options & GB_OFFSET_SPECIFIED ? params->x_offset : 0);
uint draster =
(options & GB_RASTER_SPECIFIED ? params->raster :
bitmap_raster((offset + w) * mdev->color_info.depth));
planar_to_chunky(mdev, x, y, w, h, offset, draster, params->data[0]);
} else {
/*
* Do the transfer through an intermediate buffer.
* The buffer must be large enough to hold at least one pixel,
* i.e., GX_DEVICE_COLOR_MAX_COMPONENTS 16-bit values.
* The algorithms are very similar to those in copy_color.
*/
#define BUF_LONGS\
max(100, (GX_DEVICE_COLOR_MAX_COMPONENTS * 2 + sizeof(long) - 1) /\
sizeof(long))
#define BUF_BYTES (BUF_LONGS * ARCH_SIZEOF_LONG)
union b_ {
ulong l[BUF_LONGS];
byte b[BUF_BYTES];
} buf;
int br, bw, bh, cx, cy, cw, ch;
int ddepth = mdev->color_info.depth;
uint raster = bitmap_raster(ddepth * mdev->width);
gs_get_bits_params_t dest_params;
if (raster > BUF_BYTES) {
br = BUF_BYTES;
bw = BUF_BYTES * 8 / ddepth;
bh = 1;
} else {
br = raster;
bw = w;
bh = BUF_BYTES / raster;
}
copy_params.options =
GB_COLORS_NATIVE | GB_PACKING_CHUNKY | GB_ALPHA_NONE |
GB_RASTER_STANDARD;
copy_params.raster = raster;
dest_params = *params;
for (cy = y; cy < y + h; cy += ch) {
ch = min(bh, y + h - cy);
for (cx = x; cx < x + w; cx += cw) {
cw = min(bw, x + w - cx);
planar_to_chunky(mdev, cx, cy, cw, ch, 0, br, buf.b);
dest_params.x_offset = params->x_offset + cx - x;
code = gx_get_bits_copy(dev, 0, cw, ch, &dest_params,
©_params, buf.b, br);
if (code < 0)
return code;
}
dest_params.data[0] += ch * raster;
}
#undef BUF_BYTES
#undef BUF_LONGS
}
return 0;
}
|