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 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035
|
/* Copyright (C) 2001-2022 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 the license contained in the file LICENSE in this distribution.
Refer to licensing information at http://www.artifex.com or contact
Artifex Software, Inc., 1305 Grant Avenue - Suite 200, Novato,
CA 94945, U.S.A., +1(415)492-9861, for further information.
*/
/* Device for first/last page handling device */
/* This device is the first 'subclassing' device; the intention of subclassing
* is to allow us to develop a 'chain' or 'pipeline' of devices, each of which
* can process some aspect of the graphics methods before passing them on to the
* next device in the chain.
*
* This device's purpose is to implement the 'FirstPage' and 'LastPage' parameters
* in Ghostscript. Initially only implemented in the PDF interpreter this functionality
* has been shifted internally so that it can be implemented in all the interpreters.
* The approach is pretty simple, we modify gdevprn.c and gdevvec.c so that if -dFirstPage
* or -dLastPage is defined the device in question is subclassed and this device inserted.
* This device then 'black hole's any graphics operations until we reach 'FirstPage'. We then
* allow graphics to pass to the device until we reach the end of 'LastPage' at which time we
* discard operations again until we reach the end, and close the device.
*/
#include "math_.h"
#include "string_.h" /* for strlen */
#include "memory_.h"
#include "gx.h"
#include "gserrors.h"
#include "gsparam.h"
#include "gxdevice.h"
#include "gsdevice.h" /* requires gsmatrix.h */
#include "gxdcolor.h" /* for gx_device_black/white */
#include "gxiparam.h" /* for image source size */
#include "gxgstate.h"
#include "gxpaint.h"
#include "gxpath.h"
#include "gxcpath.h"
#include "gxcmap.h" /* color mapping procs */
#include "gsstype.h"
#include "gdevprn.h"
#include "gdevp14.h" /* Needed to patch up the procs after compositor creation */
#include "gximage.h" /* For gx_image_enum */
#include "gdevsclass.h"
#include "gdevflp.h"
#include "pagelist.h"
#include <stdlib.h>
/* GC descriptor */
public_st_device_flp();
/* we need text and image enumerators, because of the crazy way that text and images work */
private_st_flp_text_enum();
/* Device procedures, we need quite a lot of them */
static dev_proc_output_page(flp_output_page);
static dev_proc_close_device(flp_close_device);
static dev_proc_fill_rectangle(flp_fill_rectangle);
static dev_proc_copy_mono(flp_copy_mono);
static dev_proc_copy_color(flp_copy_color);
static dev_proc_get_bits_rectangle(flp_get_bits_rectangle);
static dev_proc_get_params(flp_put_params);
static dev_proc_get_alpha_bits(flp_get_alpha_bits);
static dev_proc_copy_alpha(flp_copy_alpha);
static dev_proc_fill_path(flp_fill_path);
static dev_proc_stroke_path(flp_stroke_path);
static dev_proc_fill_mask(flp_fill_mask);
static dev_proc_fill_trapezoid(flp_fill_trapezoid);
static dev_proc_fill_parallelogram(flp_fill_parallelogram);
static dev_proc_fill_triangle(flp_fill_triangle);
static dev_proc_draw_thin_line(flp_draw_thin_line);
static dev_proc_strip_tile_rectangle(flp_strip_tile_rectangle);
static dev_proc_begin_typed_image(flp_begin_typed_image);
static dev_proc_get_bits_rectangle(flp_get_bits_rectangle);
static dev_proc_composite(flp_composite);
static dev_proc_text_begin(flp_text_begin);
static dev_proc_begin_transparency_group(flp_begin_transparency_group);
static dev_proc_end_transparency_group(flp_end_transparency_group);
static dev_proc_begin_transparency_mask(flp_begin_transparency_mask);
static dev_proc_end_transparency_mask(flp_end_transparency_mask);
static dev_proc_discard_transparency_layer(flp_discard_transparency_layer);
static dev_proc_fill_rectangle_hl_color(flp_fill_rectangle_hl_color);
static dev_proc_fill_linear_color_scanline(flp_fill_linear_color_scanline);
static dev_proc_fill_linear_color_trapezoid(flp_fill_linear_color_trapezoid);
static dev_proc_fill_linear_color_triangle(flp_fill_linear_color_triangle);
static dev_proc_fillpage(flp_fillpage);
static dev_proc_push_transparency_state(flp_push_transparency_state);
static dev_proc_pop_transparency_state(flp_pop_transparency_state);
static dev_proc_put_image(flp_put_image);
static dev_proc_copy_planes(flp_copy_planes);
static dev_proc_strip_copy_rop2(flp_strip_copy_rop2);
static dev_proc_strip_tile_rect_devn(flp_strip_tile_rect_devn);
static dev_proc_copy_alpha_hl_color(flp_copy_alpha_hl_color);
static dev_proc_process_page(flp_process_page);
static dev_proc_transform_pixel_region(flp_transform_pixel_region);
static dev_proc_fill_stroke_path(flp_fill_stroke_path);
static dev_proc_initialize_device_procs(flp_initialize_device_procs);
/* The device prototype */
#define MAX_COORD (max_int_in_fixed - 1000)
#define MAX_RESOLUTION 4000
#define public_st_flp_device() /* in gsdevice.c */\
gs_public_st_complex_only(st_flp_device, gx_device, "first_lastpage",\
0, flp_enum_ptrs, flp_reloc_ptrs, default_subclass_finalize)
static
ENUM_PTRS_WITH(flp_enum_ptrs, gx_device *dev);
return 0; /* default case */
case 0:ENUM_RETURN(gx_device_enum_ptr(dev->parent));
case 1:ENUM_RETURN(gx_device_enum_ptr(dev->child));
ENUM_PTRS_END
static RELOC_PTRS_WITH(flp_reloc_ptrs, gx_device *dev)
{
dev->parent = gx_device_reloc_ptr(dev->parent, gcst);
dev->child = gx_device_reloc_ptr(dev->child, gcst);
}RELOC_PTRS_END
public_st_flp_device();
const
gx_device_flp gs_flp_device =
{
std_device_dci_type_body_sc(gx_device_flp, flp_initialize_device_procs,
"first_lastpage", &st_flp_device,
MAX_COORD, MAX_COORD,
MAX_RESOLUTION, MAX_RESOLUTION,
1, 8, 255, 0, 256, 1, NULL, NULL, NULL)
};
#undef MAX_COORD
#undef MAX_RESOLUTION
static int ParsePageList(gx_device *dev, first_last_subclass_data *psubclass_data, char *PageList)
{
return pagelist_parse_to_array(PageList, dev->memory->non_gc_memory, 0x7fffffff,
&(psubclass_data->page_range_array));
}
static int SkipPage(gx_device *dev)
{
first_last_subclass_data *psubclass_data = dev->subclass_data;
int code;
/* If we're disabled, don't skip any pages, and don't bother parsing the PageList */
if (dev->DisablePageHandler)
return 0;
/* If we haven't parsed any extant PageList, do it now */
if (dev->PageList && psubclass_data->page_range_array == NULL) {
code = ParsePageList(dev, psubclass_data, dev->PageList->Pages);
if (code < 0) {
emprintf1(dev->memory, "*** Invalid PageList=%s ***\n", dev->PageList->Pages);
return code;
}
}
/* SkipPage can only handle PageList that moves forward */
if (psubclass_data->page_range_array != NULL &&
pagelist_test_ordered(psubclass_data->page_range_array) == false) {
emprintf(dev->memory, "*** Bad PageList: Must be increasing order. ***\n");
return gs_error_rangecheck;
}
if (psubclass_data->page_range_array != NULL) {
/* PageCount is 0 based, page_range_array starts at page 1 */
return pagelist_test_printed(psubclass_data->page_range_array, psubclass_data->PageCount + 1) == false;
} else {
if (psubclass_data->PageCount >= dev->FirstPage - 1)
if (!dev->LastPage || psubclass_data->PageCount <= dev->LastPage - 1)
return 0;
}
return 1;
}
int flp_output_page(gx_device *dev, int num_copies, int flush)
{
int code = 0;
first_last_subclass_data *psubclass_data = dev->subclass_data;
if (!SkipPage(dev))
code = default_subclass_output_page(dev, num_copies, flush);
psubclass_data->PageCount++;
return code;
}
int flp_close_device(gx_device *dev)
{
first_last_subclass_data *psubclass_data = dev->subclass_data;
if (psubclass_data->page_range_array != NULL)
{
pagelist_free_range_array(dev->memory->non_gc_memory, psubclass_data->page_range_array);
psubclass_data->page_range_array = NULL;
}
return default_subclass_close_device(dev);
}
int flp_fill_rectangle(gx_device *dev, int x, int y, int width, int height, gx_color_index color)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_fill_rectangle(dev, x, y, width, height, color);
return 0;
}
int flp_copy_mono(gx_device *dev, const byte *data, int data_x, int raster, gx_bitmap_id id,
int x, int y, int width, int height,
gx_color_index color0, gx_color_index color1)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_copy_mono(dev, data, data_x, raster, id, x, y, width, height, color0, color1);
return 0;
}
int flp_copy_color(gx_device *dev, const byte *data, int data_x, int raster, gx_bitmap_id id,\
int x, int y, int width, int height)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_copy_color(dev, data, data_x, raster, id, x, y, width, height);
return 0;
}
static void
flp_rc_free_pages_list(gs_memory_t * mem, void *ptr_in, client_name_t cname)
{
gdev_pagelist *PageList = (gdev_pagelist *)ptr_in;
if (PageList->rc.ref_count <= 1) {
gs_free(mem->non_gc_memory, PageList->Pages, 1, strlen(PageList->Pages), "free page list");
gs_free(mem->non_gc_memory, PageList, 1, sizeof(gdev_pagelist), "free structure to hold page list");
}
}
int
flp_put_params(gx_device * dev, gs_param_list * plist)
{
bool temp_bool = false;
int code, ecode = 0;
gs_param_string pagelist;
code = param_read_bool(plist, "DisablePageHandler", &temp_bool);
if (code < 0)
ecode = code;
if (code == 0) {
dev->DisablePageHandler = temp_bool;
if (dev->DisablePageHandler == false) {
first_last_subclass_data *psubclass_data = dev->subclass_data;
psubclass_data->PageCount = 0;
psubclass_data->page_range_array = NULL;
}
}
if (dev->DisablePageHandler == false) {
code = param_read_int(plist, "FirstPage", &dev->FirstPage);
if (code < 0)
ecode = code;
if (code == 0) {
first_last_subclass_data *psubclass_data = dev->subclass_data;
dev->DisablePageHandler = false;
psubclass_data->PageCount = 0;
psubclass_data->page_range_array = NULL;
if (dev->PageList) {
rc_decrement(dev->PageList, "flp_put_params");
dev->PageList = NULL;
}
if (psubclass_data->page_range_array != NULL) {
pagelist_free_range_array(dev->memory->non_gc_memory, psubclass_data->page_range_array);
psubclass_data->page_range_array = NULL;
}
}
code = param_read_int(plist, "LastPage", &dev->LastPage);
if (code < 0)
ecode = code;
if (code == 0) {
first_last_subclass_data *psubclass_data = dev->subclass_data;
dev->DisablePageHandler = false;
psubclass_data->PageCount = 0;
psubclass_data->page_range_array = NULL;
if (dev->PageList) {
rc_decrement(dev->PageList, "flp_put_params");
dev->PageList = NULL;
}
if (psubclass_data->page_range_array != NULL) {
pagelist_free_range_array(dev->memory->non_gc_memory, psubclass_data->page_range_array);
psubclass_data->page_range_array = NULL;
}
}
code = param_read_string(plist, "PageList", &pagelist);
if (code < 0)
ecode = code;
if (code == 0 && pagelist.size > 0) {
first_last_subclass_data *psubclass_data = dev->subclass_data;
if (dev->PageList)
rc_decrement(dev->PageList, "flp_put_params");
if (psubclass_data->page_range_array != NULL) {
pagelist_free_range_array(dev->memory->non_gc_memory, psubclass_data->page_range_array);
psubclass_data->page_range_array = NULL;
}
dev->PageList = (gdev_pagelist *)gs_alloc_bytes(dev->memory->non_gc_memory, sizeof(gdev_pagelist), "structure to hold page list");
if (!dev->PageList)
return gs_note_error(gs_error_VMerror);
dev->PageList->Pages = (void *)gs_alloc_bytes(dev->memory->non_gc_memory, pagelist.size + 1, "String to hold page list");
if (!dev->PageList->Pages){
gs_free(dev->memory->non_gc_memory, dev->PageList, 1, sizeof(gdev_pagelist), "free structure to hold page list");
dev->PageList = 0;
return gs_note_error(gs_error_VMerror);
}
memset(dev->PageList->Pages, 0x00, pagelist.size + 1);
memcpy(dev->PageList->Pages, pagelist.data, pagelist.size);
rc_init_free(dev->PageList, dev->memory->non_gc_memory, 1, flp_rc_free_pages_list);
psubclass_data->page_range_array = NULL;
dev->DisablePageHandler = false;
psubclass_data->PageCount = 0;
psubclass_data->page_range_array = NULL;
}
}
code = default_subclass_put_params(dev, plist);
if (code < 0)
return code;
if (ecode < 0)
code = ecode;
return code;
}
int flp_get_alpha_bits(gx_device *dev, graphics_object_type type)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_get_alpha_bits(dev, type);
return 0;
}
int flp_copy_alpha(gx_device *dev, const byte *data, int data_x,
int raster, gx_bitmap_id id, int x, int y, int width, int height,
gx_color_index color, int depth)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_copy_alpha(dev, data, data_x, raster, id, x, y, width, height, color, depth);
return 0;
}
int flp_fill_path(gx_device *dev, const gs_gstate *pgs, gx_path *ppath,
const gx_fill_params *params,
const gx_drawing_color *pdcolor, const gx_clip_path *pcpath)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_fill_path(dev, pgs, ppath, params, pdcolor, pcpath);
return 0;
}
int flp_stroke_path(gx_device *dev, const gs_gstate *pgs, gx_path *ppath,
const gx_stroke_params *params,
const gx_drawing_color *pdcolor, const gx_clip_path *pcpath)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_stroke_path(dev, pgs, ppath, params, pdcolor, pcpath);
return 0;
}
int flp_fill_mask(gx_device *dev, const byte *data, int data_x, int raster, gx_bitmap_id id,
int x, int y, int width, int height,
const gx_drawing_color *pdcolor, int depth,
gs_logical_operation_t lop, const gx_clip_path *pcpath)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_fill_mask(dev, data, data_x, raster, id, x, y, width, height, pdcolor, depth, lop, pcpath);
return 0;
}
int flp_fill_trapezoid(gx_device *dev, const gs_fixed_edge *left, const gs_fixed_edge *right,
fixed ybot, fixed ytop, bool swap_axes,
const gx_drawing_color *pdcolor, gs_logical_operation_t lop)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_fill_trapezoid(dev, left, right, ybot, ytop, swap_axes, pdcolor, lop);
return 0;
}
int flp_fill_parallelogram(gx_device *dev, fixed px, fixed py, fixed ax, fixed ay, fixed bx, fixed by,
const gx_drawing_color *pdcolor, gs_logical_operation_t lop)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_fill_parallelogram(dev, px, py, ax, ay, bx, by, pdcolor, lop);
return 0;
}
int flp_fill_triangle(gx_device *dev, fixed px, fixed py, fixed ax, fixed ay, fixed bx, fixed by,
const gx_drawing_color *pdcolor, gs_logical_operation_t lop)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_fill_triangle(dev, px, py, ax, ay, bx, by, pdcolor, lop);
return 0;
}
int flp_draw_thin_line(gx_device *dev, fixed fx0, fixed fy0, fixed fx1, fixed fy1,
const gx_drawing_color *pdcolor, gs_logical_operation_t lop,
fixed adjustx, fixed adjusty)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_draw_thin_line(dev, fx0, fy0, fx1, fy1, pdcolor, lop, adjustx, adjusty);
return 0;
}
int flp_strip_tile_rectangle(gx_device *dev, const gx_strip_bitmap *tiles, int x, int y, int width, int height,
gx_color_index color0, gx_color_index color1,
int phase_x, int phase_y)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_strip_tile_rectangle(dev, tiles, x, y, width, height, color0, color1, phase_x, phase_y);
return 0;
}
typedef struct flp_image_enum_s {
gx_image_enum_common;
int y;
int height;
} flp_image_enum;
gs_private_st_composite(st_flp_image_enum, flp_image_enum, "flp_image_enum",
flp_image_enum_enum_ptrs, flp_image_enum_reloc_ptrs);
static ENUM_PTRS_WITH(flp_image_enum_enum_ptrs, flp_image_enum *pie)
(void)pie; /* Silence unused var warning */
return ENUM_USING_PREFIX(st_gx_image_enum_common, 0);
ENUM_PTRS_END
static RELOC_PTRS_WITH(flp_image_enum_reloc_ptrs, flp_image_enum *pie)
{
(void)pie; /* Silence unused var warning */
RELOC_USING(st_gx_image_enum_common, vptr, size);
}
RELOC_PTRS_END
static int
flp_image_plane_data(gx_image_enum_common_t * info,
const gx_image_plane_t * planes, int height,
int *rows_used)
{
flp_image_enum *pie = (flp_image_enum *)info;
pie->y += height;
*rows_used = height;
if (pie->y < pie->height)
return 0;
return 1;
}
static int
flp_image_end_image(gx_image_enum_common_t * info, bool draw_last)
{
gs_free_object(info->memory, info, "flp_end_image");
return 0;
}
static const gx_image_enum_procs_t flp_image_enum_procs = {
flp_image_plane_data,
flp_image_end_image
};
int flp_begin_typed_image(gx_device *dev, const gs_gstate *pgs, const gs_matrix *pmat,
const gs_image_common_t *pic, const gs_int_rect *prect,
const gx_drawing_color *pdcolor, const gx_clip_path *pcpath,
gs_memory_t *memory, gx_image_enum_common_t **pinfo)
{
flp_image_enum *pie;
const gs_pixel_image_t *pim = (const gs_pixel_image_t *)pic;
int num_components;
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_begin_typed_image(dev, pgs, pmat, pic, prect, pdcolor, pcpath, memory, pinfo);
if (pic->type->index == 1) {
const gs_image_t *pim1 = (const gs_image_t *)pic;
if (pim1->ImageMask)
num_components = 1;
else
num_components = gs_color_space_num_components(pim->ColorSpace);
} else {
num_components = gs_color_space_num_components(pim->ColorSpace);
}
pie = gs_alloc_struct(memory, flp_image_enum, &st_flp_image_enum,
"flp_begin_image");
if (pie == 0)
return_error(gs_error_VMerror);
memset(pie, 0, sizeof(*pie)); /* cleanup entirely for GC to work in all cases. */
*pinfo = (gx_image_enum_common_t *) pie;
gx_image_enum_common_init(*pinfo, (const gs_data_image_t *) pim, &flp_image_enum_procs,
(gx_device *)dev, num_components, pim->format);
pie->memory = memory;
pie->skipping = true;
pie->height = pim->Height;
pie->y = 0;
return 0;
}
int flp_get_bits_rectangle(gx_device *dev, const gs_int_rect *prect,
gs_get_bits_params_t *params)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_get_bits_rectangle(dev, prect, params);
return gx_default_get_bits_rectangle(dev->child, prect, params);
}
int flp_composite(gx_device *dev, gx_device **pcdev, const gs_composite_t *pcte,
gs_gstate *pgs, gs_memory_t *memory, gx_device *cdev)
{
int code = SkipPage(dev);
/* The returned pointer 'pcdev' is a signal to the caller, if its not the same as the current
* device in the graphics state, then it gets set as the current device (basically if its not the
* same its a signal that we want to push a new compositor device to the head). So here we start
* by making sure that its set to the one in the graphics state. If the child device wants a
* compositor it will overwrite this value.
*/
*pcdev = pgs->device;
if (code < 0)
return code;
if (!code)
return default_subclass_composite(dev, pcdev, pcte, pgs, memory, cdev);
return 0;
}
/* Text processing (like images) works differently to other device
* methods. Instead of the interpreter calling a device method, only
* the 'begin' method is called, this creates a text enumerator which
* it fills in (in part with the routines for processing text) and returns
* to the interpreter. The interpreter then calls the methods defined in
* the text enumerator to process the text.
* Mad as a fish.....
*/
/* For our purposes if we are handling the text its because we are not
* printing the page, so we cna afford to ignore all the text processing.
* A more complex device might need to define real handlers for these, and
* pass them on to the subclassed device.
*/
static text_enum_proc_process(flp_text_process);
static int
flp_text_resync(gs_text_enum_t *pte, const gs_text_enum_t *pfrom)
{
return 0;
}
int
flp_text_process(gs_text_enum_t *pte)
{
return 0;
}
static bool
flp_text_is_width_only(const gs_text_enum_t *pte)
{
return false;
}
static int
flp_text_current_width(const gs_text_enum_t *pte, gs_point *pwidth)
{
return 0;
}
static int
flp_text_set_cache(gs_text_enum_t *pte, const double *pw,
gs_text_cache_control_t control)
{
return 0;
}
static int
flp_text_retry(gs_text_enum_t *pte)
{
return 0;
}
static void
flp_text_release(gs_text_enum_t *pte, client_name_t cname)
{
gx_default_text_release(pte, cname);
}
static const gs_text_enum_procs_t flp_text_procs = {
flp_text_resync, flp_text_process,
flp_text_is_width_only, flp_text_current_width,
flp_text_set_cache, flp_text_retry,
flp_text_release
};
/* The device method which we do actually need to define. Either we are skipping the page,
* in which case we create a text enumerator with our dummy procedures, or we are leaving it
* up to the device, in which case we simply pass on the 'begin' method to the device.
*/
int flp_text_begin(gx_device *dev, gs_gstate *pgs, const gs_text_params_t *text,
gs_font *font, const gx_clip_path *pcpath,
gs_text_enum_t **ppte)
{
flp_text_enum_t *penum;
int code;
gs_memory_t *memory = pgs->memory;
/* We don't want to simply ignore stringwidth for 2 reasons;
* firstly because following elelments may be positioned based on the value returned
* secondly because op_show_restore executes an unconditional grestore, assuming
* that a gsave has been done simply *because* its a tringwidth operation !
*/
if (dev->DisablePageHandler || ((text->operation & TEXT_DO_NONE) && (text->operation & TEXT_RETURN_WIDTH) && pgs->text_rendering_mode != 3))
/* Note that the high level devices *must* be given the opportunity to 'see' the
* stringwidth operation, or they won;t be able to cache the glyphs properly.
* So always pass stringwidth operations to the child.
*/
return default_subclass_text_begin(dev, pgs, text, font, pcpath, ppte);
code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_text_begin(dev, pgs, text, font, pcpath, ppte);
rc_alloc_struct_1(penum, flp_text_enum_t, &st_flp_text_enum, memory,
return_error(gs_error_VMerror), "gdev_flp_text_begin");
penum->rc.free = rc_free_text_enum;
code = gs_text_enum_init((gs_text_enum_t *)penum, &flp_text_procs,
dev, pgs, text, font, pcpath, memory);
if (code < 0) {
gs_free_object(memory, penum, "gdev_flp_text_begin");
return code;
}
*ppte = (gs_text_enum_t *)penum;
return 0;
}
int flp_begin_transparency_group(gx_device *dev, const gs_transparency_group_params_t *ptgp,
const gs_rect *pbbox, gs_gstate *pgs, gs_memory_t *mem)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_begin_transparency_group(dev, ptgp, pbbox, pgs, mem);
return 0;
}
int flp_end_transparency_group(gx_device *dev, gs_gstate *pgs)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_end_transparency_group(dev, pgs);
return 0;
}
int flp_begin_transparency_mask(gx_device *dev, const gx_transparency_mask_params_t *ptmp,
const gs_rect *pbbox, gs_gstate *pgs, gs_memory_t *mem)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_begin_transparency_mask(dev, ptmp, pbbox, pgs, mem);
return 0;
}
int flp_end_transparency_mask(gx_device *dev, gs_gstate *pgs)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_end_transparency_mask(dev, pgs);
return 0;
}
int flp_discard_transparency_layer(gx_device *dev, gs_gstate *pgs)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_discard_transparency_layer(dev, pgs);
return 0;
}
int flp_fill_rectangle_hl_color(gx_device *dev, const gs_fixed_rect *rect,
const gs_gstate *pgs, const gx_drawing_color *pdcolor, const gx_clip_path *pcpath)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_fill_rectangle_hl_color(dev, rect, pgs, pdcolor, pcpath);
return 0;
}
int flp_fill_linear_color_scanline(gx_device *dev, const gs_fill_attributes *fa,
int i, int j, int w, const frac31 *c0, const int32_t *c0_f, const int32_t *cg_num,
int32_t cg_den)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_fill_linear_color_scanline(dev, fa, i, j, w, c0, c0_f, cg_num, cg_den);
return 0;
}
int flp_fill_linear_color_trapezoid(gx_device *dev, const gs_fill_attributes *fa,
const gs_fixed_point *p0, const gs_fixed_point *p1,
const gs_fixed_point *p2, const gs_fixed_point *p3,
const frac31 *c0, const frac31 *c1,
const frac31 *c2, const frac31 *c3)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_fill_linear_color_trapezoid(dev, fa, p0, p1, p2, p3, c0, c1, c2, c3);
return 0;
}
int flp_fill_linear_color_triangle(gx_device *dev, const gs_fill_attributes *fa,
const gs_fixed_point *p0, const gs_fixed_point *p1,
const gs_fixed_point *p2, const frac31 *c0, const frac31 *c1, const frac31 *c2)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_fill_linear_color_triangle(dev, fa, p0, p1, p2, c0, c1, c2);
return 0;
}
int flp_fillpage(gx_device *dev, gs_gstate * pgs, gx_device_color *pdevc)
{
first_last_subclass_data *psubclass_data = dev->subclass_data;
int code = SkipPage(dev);
if (code < 0)
return code;
/* allow fillpage to be processed at the first page */
/* This is needed to allow all parsers to start with non-ordered PageList */
if (!code || psubclass_data->PageCount == 0)
return default_subclass_fillpage(dev, pgs, pdevc);
return 0;
}
int flp_push_transparency_state(gx_device *dev, gs_gstate *pgs)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_push_transparency_state(dev, pgs);
return 0;
}
int flp_pop_transparency_state(gx_device *dev, gs_gstate *pgs)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_pop_transparency_state(dev, pgs);
return 0;
}
int flp_put_image(gx_device *dev, gx_device *mdev, const byte **buffers, int num_chan, int x, int y,
int width, int height, int row_stride,
int alpha_plane_index, int tag_plane_index)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_put_image(dev, mdev, buffers, num_chan, x, y, width, height, row_stride, alpha_plane_index, tag_plane_index);
return 0;
}
int flp_copy_planes(gx_device *dev, const byte *data, int data_x, int raster, gx_bitmap_id id,
int x, int y, int width, int height, int plane_height)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_copy_planes(dev, data, data_x, raster, id, x, y, width, height, plane_height);
return 0;
}
int flp_strip_copy_rop2(gx_device *dev, const byte *sdata, int sourcex, uint sraster, gx_bitmap_id id,
const gx_color_index *scolors, const gx_strip_bitmap *textures, const gx_color_index *tcolors,
int x, int y, int width, int height, int phase_x, int phase_y, gs_logical_operation_t lop, uint planar_height)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_strip_copy_rop2(dev, sdata, sourcex, sraster, id, scolors, textures, tcolors, x, y, width, height, phase_x, phase_y, lop, planar_height);
return 0;
}
int flp_strip_tile_rect_devn(gx_device *dev, const gx_strip_bitmap *tiles, int x, int y, int width, int height,
const gx_drawing_color *pdcolor0, const gx_drawing_color *pdcolor1, int phase_x, int phase_y)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_strip_tile_rect_devn(dev, tiles, x, y, width, height, pdcolor0, pdcolor1, phase_x, phase_y);
return 0;
}
int flp_copy_alpha_hl_color(gx_device *dev, const byte *data, int data_x,
int raster, gx_bitmap_id id, int x, int y, int width, int height,
const gx_drawing_color *pdcolor, int depth)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_copy_alpha_hl_color(dev, data, data_x, raster, id, x, y, width, height, pdcolor, depth);
return 0;
}
int flp_process_page(gx_device *dev, gx_process_page_options_t *options)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_process_page(dev, options);
return 0;
}
int flp_fill_stroke_path(gx_device *dev, const gs_gstate *pgs, gx_path *ppath,
const gx_fill_params *fill_params, const gx_drawing_color *pdcolor_fill,
const gx_stroke_params *stroke_params, const gx_drawing_color *pdcolor_stroke,
const gx_clip_path *pcpath)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_fill_stroke_path(dev, pgs, ppath, fill_params, pdcolor_fill,
stroke_params, pdcolor_stroke, pcpath);
return 0;
}
int flp_transform_pixel_region(gx_device *dev, transform_pixel_region_reason reason, transform_pixel_region_data *data)
{
int code = SkipPage(dev);
if (code < 0)
return code;
if (!code)
return default_subclass_transform_pixel_region(dev, reason, data);
return 0;
}
static void
flp_initialize_device_procs(gx_device *dev)
{
default_subclass_initialize_device_procs(dev);
set_dev_proc(dev, output_page, flp_output_page);
set_dev_proc(dev, close_device, flp_close_device);
set_dev_proc(dev, fill_rectangle, flp_fill_rectangle);
set_dev_proc(dev, copy_mono, flp_copy_mono);
set_dev_proc(dev, copy_color, flp_copy_color);
set_dev_proc(dev, put_params, flp_put_params);
set_dev_proc(dev, get_alpha_bits, flp_get_alpha_bits);
set_dev_proc(dev, copy_alpha, flp_copy_alpha);
set_dev_proc(dev, fill_path, flp_fill_path);
set_dev_proc(dev, stroke_path, flp_stroke_path);
set_dev_proc(dev, fill_mask, flp_fill_mask);
set_dev_proc(dev, fill_trapezoid, flp_fill_trapezoid);
set_dev_proc(dev, fill_parallelogram, flp_fill_parallelogram);
set_dev_proc(dev, fill_triangle, flp_fill_triangle);
set_dev_proc(dev, draw_thin_line, flp_draw_thin_line);
set_dev_proc(dev, strip_tile_rectangle, flp_strip_tile_rectangle);
set_dev_proc(dev, begin_typed_image, flp_begin_typed_image);
set_dev_proc(dev, get_bits_rectangle, flp_get_bits_rectangle);
set_dev_proc(dev, composite, flp_composite);
set_dev_proc(dev, text_begin, flp_text_begin);
set_dev_proc(dev, begin_transparency_group, flp_begin_transparency_group);
set_dev_proc(dev, end_transparency_group, flp_end_transparency_group);
set_dev_proc(dev, begin_transparency_mask, flp_begin_transparency_mask);
set_dev_proc(dev, end_transparency_mask, flp_end_transparency_mask);
set_dev_proc(dev, discard_transparency_layer, flp_discard_transparency_layer);
set_dev_proc(dev, fill_rectangle_hl_color, flp_fill_rectangle_hl_color);
set_dev_proc(dev, fill_linear_color_scanline, flp_fill_linear_color_scanline);
set_dev_proc(dev, fill_linear_color_trapezoid, flp_fill_linear_color_trapezoid);
set_dev_proc(dev, fill_linear_color_triangle, flp_fill_linear_color_triangle);
set_dev_proc(dev, fillpage, flp_fillpage);
set_dev_proc(dev, push_transparency_state, flp_push_transparency_state);
set_dev_proc(dev, pop_transparency_state, flp_pop_transparency_state);
set_dev_proc(dev, put_image, flp_put_image);
set_dev_proc(dev, copy_planes, flp_copy_planes);
set_dev_proc(dev, strip_copy_rop2, flp_strip_copy_rop2);
set_dev_proc(dev, strip_tile_rect_devn, flp_strip_tile_rect_devn);
set_dev_proc(dev, copy_alpha_hl_color, flp_copy_alpha_hl_color);
set_dev_proc(dev, process_page, flp_process_page);
set_dev_proc(dev, transform_pixel_region, flp_transform_pixel_region);
set_dev_proc(dev, fill_stroke_path, flp_fill_stroke_path);
}
|