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 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337
|
/* Copyright (C) 2001-2012 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., 7 Mt. Lassen Drive - Suite A-134, San Rafael,
CA 94903, U.S.A., +1(415)492-9861, for further information.
*/
/* Command list document- and page-level code. */
#include "memory_.h"
#include "string_.h"
#include "gx.h"
#include "gp.h"
#include "gpcheck.h"
#include "gserrors.h"
#include "gxdevice.h"
#include "gxdevmem.h" /* must precede gxcldev.h */
#include "gxcldev.h"
#include "gxclpath.h"
#include "gsparams.h"
#include "gxdcolor.h"
#include "gscms.h"
#include "gsicc_manage.h"
#include "gsicc_cache.h"
#include "gxdevsop.h"
extern dev_proc_open_device(pattern_clist_open_device);
/* GC information */
/* Where is the GC information for the common objects that are
shared between the reader and writer. I see pointers in
there, but they don't seem to be GC. This is why I have
put the icc_table and the link cache in the reader and the
writer rather than the common. fixme: Also, if icc_cache_cl is not
included in the writer, 64bit builds will seg fault */
extern_st(st_imager_state);
static
ENUM_PTRS_WITH(device_clist_enum_ptrs, gx_device_clist *cdev)
if (index < st_device_forward_max_ptrs) {
gs_ptr_type_t ret = ENUM_USING_PREFIX(st_device_forward, 0);
return (ret ? ret : ENUM_OBJ(0));
}
index -= st_device_forward_max_ptrs;
if (CLIST_IS_WRITER(cdev)) {
switch (index) {
case 0: return ENUM_OBJ((cdev->writer.image_enum_id != gs_no_id ?
cdev->writer.clip_path : 0));
case 1: return ENUM_OBJ((cdev->writer.image_enum_id != gs_no_id ?
cdev->writer.color_space.space : 0));
case 2: return ENUM_OBJ(cdev->writer.pinst);
case 3: return ENUM_OBJ(cdev->writer.cropping_stack);
case 4: return ENUM_OBJ(cdev->writer.icc_table);
case 5: return ENUM_OBJ(cdev->writer.icc_cache_cl);
default:
return ENUM_USING(st_imager_state, &cdev->writer.imager_state,
sizeof(gs_imager_state), index - 5);
}
}
else {
/* 041207
* clist is reader.
* We don't expect this code to be exercised at this time as the reader
* runs under gdev_prn_output_page which is an atomic function of the
* interpreter. We do this as this situation may change in the future.
*/
if (index == 0)
return ENUM_OBJ(cdev->reader.band_complexity_array);
else if (index == 1)
return ENUM_OBJ(cdev->reader.offset_map);
else if (index == 2)
return ENUM_OBJ(cdev->reader.icc_table);
else if (index == 3)
return ENUM_OBJ(cdev->reader.icc_cache_cl);
else
return 0;
}
ENUM_PTRS_END
static
RELOC_PTRS_WITH(device_clist_reloc_ptrs, gx_device_clist *cdev)
{
RELOC_PREFIX(st_device_forward);
if (CLIST_IS_WRITER(cdev)) {
if (cdev->writer.image_enum_id != gs_no_id) {
RELOC_VAR(cdev->writer.clip_path);
RELOC_VAR(cdev->writer.color_space.space);
}
RELOC_VAR(cdev->writer.pinst);
RELOC_VAR(cdev->writer.cropping_stack);
RELOC_VAR(cdev->writer.icc_table);
RELOC_VAR(cdev->writer.icc_cache_cl);
RELOC_USING(st_imager_state, &cdev->writer.imager_state,
sizeof(gs_imager_state));
} else {
/* 041207
* clist is reader.
* See note above in ENUM_PTRS_WITH section.
*/
RELOC_VAR(cdev->reader.band_complexity_array);
RELOC_VAR(cdev->reader.offset_map);
RELOC_VAR(cdev->reader.icc_table);
RELOC_VAR(cdev->reader.icc_cache_cl);
}
} RELOC_PTRS_END
public_st_device_clist();
private_st_clist_writer_cropping_buffer();
private_st_clist_icctable_entry();
private_st_clist_icctable();
/* Forward declarations of driver procedures */
dev_proc_open_device(clist_open);
static dev_proc_output_page(clist_output_page);
static dev_proc_close_device(clist_close);
static dev_proc_get_band(clist_get_band);
/* Driver procedures defined in other files are declared in gxcldev.h. */
/* Other forward declarations */
static int clist_put_current_params(gx_device_clist_writer *cldev);
/* The device procedures */
const gx_device_procs gs_clist_device_procs = {
clist_open,
gx_forward_get_initial_matrix,
gx_default_sync_output,
clist_output_page,
clist_close,
gx_forward_map_rgb_color,
gx_forward_map_color_rgb,
clist_fill_rectangle,
gx_default_tile_rectangle,
clist_copy_mono,
clist_copy_color,
gx_default_draw_line,
gx_default_get_bits,
gx_forward_get_params,
gx_forward_put_params,
gx_forward_map_cmyk_color,
gx_forward_get_xfont_procs,
gx_forward_get_xfont_device,
gx_forward_map_rgb_alpha_color,
gx_forward_get_page_device,
gx_forward_get_alpha_bits,
clist_copy_alpha,
clist_get_band,
gx_default_copy_rop,
clist_fill_path,
clist_stroke_path,
clist_fill_mask,
clist_fill_trapezoid,
clist_fill_parallelogram,
clist_fill_triangle,
gx_default_draw_thin_line,
gx_default_begin_image,
gx_default_image_data,
gx_default_end_image,
clist_strip_tile_rectangle,
clist_strip_copy_rop,
gx_forward_get_clipping_box,
clist_begin_typed_image,
clist_get_bits_rectangle,
gx_forward_map_color_rgb_alpha,
clist_create_compositor,
gx_forward_get_hardware_params,
gx_default_text_begin,
gx_default_finish_copydevice,
NULL, /* begin_transparency_group */
NULL, /* end_transparency_group */
NULL, /* begin_transparency_mask */
NULL, /* end_transparency_mask */
NULL, /* discard_transparency_layer */
gx_forward_get_color_mapping_procs,
gx_forward_get_color_comp_index,
gx_forward_encode_color,
gx_forward_decode_color,
NULL, /* pattern_manage */
clist_fill_rectangle_hl_color,
gx_default_include_color_space,
gx_default_fill_linear_color_scanline,
clist_fill_linear_color_trapezoid,
clist_fill_linear_color_triangle,
gx_forward_update_spot_equivalent_colors,
gx_forward_ret_devn_params,
clist_fillpage,
NULL, /* push_transparency_state */
NULL, /* pop_transparency_state */
NULL, /* put_image */
clist_dev_spec_op,
clist_copy_planes, /* copy planes */
gx_default_get_profile,
gx_default_set_graphics_type_tag,
clist_strip_copy_rop2,
clist_strip_tile_rect_devn,
clist_copy_alpha_hl_color,
};
/*------------------- Choose the implementation -----------------------
For chossing the clist i/o implementation by makefile options
we define global variables, which are initialized with
file/memory io procs when they are included into the build.
*/
const clist_io_procs_t *clist_io_procs_file_global = NULL;
const clist_io_procs_t *clist_io_procs_memory_global = NULL;
void
clist_init_io_procs(gx_device_clist *pclist_dev, bool in_memory)
{
/* if clist_io_procs_file_global is NULL, then BAND_LIST_STORAGE=memory */
/* was specified in the build, and "file" is not available */
if (in_memory || clist_io_procs_file_global == NULL)
pclist_dev->common.page_info.io_procs = clist_io_procs_memory_global;
else
pclist_dev->common.page_info.io_procs = clist_io_procs_file_global;
}
/* ------ Define the command set and syntax ------ */
/* Initialization for imager state. */
/* The initial scale is arbitrary. */
const gs_imager_state clist_imager_state_initial =
{gs_imager_state_initial(300.0 / 72.0, false)};
/*
* The buffer area (data, data_size) holds a bitmap cache when both writing
* and reading. The rest of the space is used for the command buffer and
* band state bookkeeping when writing, and for the rendering buffer (image
* device) when reading. For the moment, we divide the space up
* arbitrarily, except that we allocate less space for the bitmap cache if
* the device doesn't need halftoning.
*
* All the routines for allocating tables in the buffer are idempotent, so
* they can be used to check whether a given-size buffer is large enough.
*/
/*
* Calculate the desired size for the tile cache.
*/
static uint
clist_tile_cache_size(const gx_device * target, uint data_size)
{
uint bits_size =
(data_size / 5) & -align_cached_bits_mod; /* arbitrary */
if (!gx_device_must_halftone(target)) { /* No halftones -- cache holds only Patterns & characters. */
bits_size -= bits_size >> 2;
}
#define min_bits_size 1024
if (bits_size < min_bits_size)
bits_size = min_bits_size;
#undef min_bits_size
return bits_size;
}
/*
* Initialize the allocation for the tile cache. Sets: tile_hash_mask,
* tile_max_count, tile_table, chunk (structure), bits (structure).
*/
static int
clist_init_tile_cache(gx_device * dev, byte * init_data, ulong data_size)
{
gx_device_clist_writer * const cdev =
&((gx_device_clist *)dev)->writer;
byte *data = init_data;
uint bits_size = data_size;
/*
* Partition the bits area between the hash table and the actual
* bitmaps. The per-bitmap overhead is about 24 bytes; if the
* average character size is 10 points, its bitmap takes about 24 +
* 0.5 * 10/72 * xdpi * 10/72 * ydpi / 8 bytes (the 0.5 being a
* fudge factor to account for characters being narrower than they
* are tall), which gives us a guideline for the size of the hash
* table.
*/
uint avg_char_size =
(uint)(dev->HWResolution[0] * dev->HWResolution[1] *
(0.5 * 10 / 72 * 10 / 72 / 8)) + 24;
uint hc = bits_size / avg_char_size;
uint hsize;
while ((hc + 1) & hc)
hc |= hc >> 1; /* make mask (power of 2 - 1) */
if (hc < 0xff)
hc = 0xff; /* make allowance for halftone tiles */
else if (hc > 0xfff)
hc = 0xfff; /* cmd_op_set_tile_index has 12-bit operand */
/* Make sure the tables will fit. */
while (hc >= 3 && (hsize = (hc + 1) * sizeof(tile_hash)) >= bits_size)
hc >>= 1;
if (hc < 3)
return_error(gs_error_rangecheck);
cdev->tile_hash_mask = hc;
cdev->tile_max_count = hc - (hc >> 2);
cdev->tile_table = (tile_hash *) data;
data += hsize;
bits_size -= hsize;
gx_bits_cache_chunk_init(&cdev->chunk, data, bits_size);
gx_bits_cache_init(&cdev->bits, &cdev->chunk);
return 0;
}
/*
* Initialize the allocation for the bands. Requires: target. Sets:
* page_band_height (=page_info.band_params.BandHeight), nbands.
*/
static int
clist_init_bands(gx_device * dev, gx_device_memory *bdev, uint data_size,
int band_width, int band_height)
{
gx_device_clist_writer * const cdev =
&((gx_device_clist *)dev)->writer;
int nbands;
ulong space;
if (dev->procs.open_device == pattern_clist_open_device) {
/* We don't need bands really. */
cdev->page_band_height = dev->height;
cdev->nbands = 1;
return 0;
}
if (gdev_mem_data_size(bdev, band_width, band_height, &space) < 0 ||
space > data_size)
return_error(gs_error_rangecheck);
cdev->page_band_height = band_height;
nbands = (cdev->target->height + band_height - 1) / band_height;
cdev->nbands = nbands;
#ifdef DEBUG
if (gs_debug_c('l') | gs_debug_c(':'))
dlprintf4("[:]width=%d, band_width=%d, band_height=%d, nbands=%d\n",
bdev->width, band_width, band_height, nbands);
#endif
return 0;
}
/*
* Initialize the allocation for the band states, which are used only
* when writing. Requires: nbands. Sets: states, cbuf, cend.
*/
static int
clist_init_states(gx_device * dev, byte * init_data, uint data_size)
{
gx_device_clist_writer * const cdev =
&((gx_device_clist *)dev)->writer;
ulong state_size = cdev->nbands * (ulong) sizeof(gx_clist_state);
/* Align to the natural boundary for ARM processors, bug 689600 */
long alignment = (-(long)init_data) & (sizeof(init_data) - 1);
/*
* The +100 in the next line is bogus, but we don't know what the
* real check should be. We're effectively assuring that at least 100
* bytes will be available to buffer command operands.
*/
if (state_size + sizeof(cmd_prefix) + cmd_largest_size + 100 + alignment > data_size)
return_error(gs_error_rangecheck);
/* The end buffer position is not affected by alignment */
cdev->cend = init_data + data_size;
init_data += alignment;
cdev->states = (gx_clist_state *) init_data;
cdev->cbuf = init_data + state_size;
return 0;
}
/*
* Initialize all the data allocations. Requires: target. Sets:
* page_tile_cache_size, page_info.band_params.BandWidth,
* page_info.band_params.BandBufferSpace, + see above.
*/
static int
clist_init_data(gx_device * dev, byte * init_data, uint data_size)
{
gx_device_clist_writer * const cdev =
&((gx_device_clist *)dev)->writer;
gx_device *target = cdev->target;
/* BandWidth can't be smaller than target device width */
const int band_width =
cdev->page_info.band_params.BandWidth = max(target->width, cdev->band_params.BandWidth);
int band_height = cdev->band_params.BandHeight;
bool page_uses_transparency = cdev->page_uses_transparency;
const uint band_space =
cdev->page_info.band_params.BandBufferSpace =
(cdev->band_params.BandBufferSpace ?
cdev->band_params.BandBufferSpace : data_size);
byte *data = init_data;
uint size = band_space;
uint bits_size;
gx_device_memory bdev;
gx_device *pbdev = (gx_device *)&bdev;
int code;
/* the clist writer has its own color info that depends upon the
transparency group color space (if transparency exists). The data that is
used in the clist writing. Here it is initialized with
the target device color info. The values will be pushed and popped
in a stack if we have changing color spaces in the transparency groups. */
cdev->clist_color_info.depth = dev->color_info.depth;
cdev->clist_color_info.polarity = dev->color_info.polarity;
cdev->clist_color_info.num_components = dev->color_info.num_components;
cdev->graphics_type_tag = target->graphics_type_tag; /* initialize to same as target */
/* Call create_buf_device to get the memory planarity set up. */
code = cdev->buf_procs.create_buf_device(&pbdev, target, 0, NULL, NULL, clist_get_band_complexity(0, 0));
if (code < 0)
return code;
/* HACK - if the buffer device can't do copy_alpha, disallow */
/* copy_alpha in the commmand list device as well. */
if (dev_proc(pbdev, copy_alpha) == gx_no_copy_alpha)
cdev->disable_mask |= clist_disable_copy_alpha;
if (cdev->procs.open_device == pattern_clist_open_device) {
bits_size = data_size / 2;
} else if (band_height) {
/*
* The band height is fixed, so the band buffer requirement
* is completely determined.
*/
ulong band_data_size;
if (gdev_mem_data_size(&bdev, band_width, band_height, &band_data_size) < 0 ||
band_data_size >= band_space) {
if (pbdev->finalize)
pbdev->finalize(pbdev);
return_error(gs_error_rangecheck);
}
bits_size = min(band_space - band_data_size, data_size >> 1);
} else {
/*
* Choose the largest band height that will fit in the
* rendering-time buffer.
*/
bits_size = clist_tile_cache_size(target, band_space);
bits_size = min(bits_size, data_size >> 1);
band_height = gdev_mem_max_height(&bdev, band_width,
band_space - bits_size, page_uses_transparency);
if (band_height == 0) {
if (pbdev->finalize)
pbdev->finalize(pbdev);
return_error(gs_error_rangecheck);
}
}
cdev->ins_count = 0;
code = clist_init_tile_cache(dev, data, bits_size);
if (code < 0) {
if (pbdev->finalize)
pbdev->finalize(pbdev);
return code;
}
cdev->page_tile_cache_size = bits_size;
data += bits_size;
size -= bits_size;
code = clist_init_bands(dev, &bdev, size, band_width, band_height);
if (code < 0) {
if (pbdev->finalize)
pbdev->finalize(pbdev);
return code;
}
if (pbdev->finalize)
pbdev->finalize(pbdev);
return clist_init_states(dev, data, data_size - bits_size);
}
/*
* Reset the device state (for writing). This routine requires only
* data, data_size, and target to be set, and is idempotent.
*/
static int
clist_reset(gx_device * dev)
{
gx_device_clist_writer * const cdev =
&((gx_device_clist *)dev)->writer;
int code = clist_init_data(dev, cdev->data, cdev->data_size);
int nbands;
if (code < 0)
return (cdev->permanent_error = code);
/* Now initialize the rest of the state. */
cdev->permanent_error = 0;
nbands = cdev->nbands;
cdev->ymin = cdev->ymax = -1; /* render_init not done yet */
memset(cdev->tile_table, 0, (cdev->tile_hash_mask + 1) *
sizeof(*cdev->tile_table));
cdev->cnext = cdev->cbuf;
cdev->ccl = 0;
cdev->band_range_list.head = cdev->band_range_list.tail = 0;
cdev->band_range_min = 0;
cdev->band_range_max = nbands - 1;
{
int band;
gx_clist_state *states = cdev->states;
for (band = 0; band < nbands; band++, states++) {
static const gx_clist_state cls_initial =
{cls_initial_values};
*states = cls_initial;
}
}
/*
* Round up the size of the per-tile band mask so that the bits,
* which follow it, stay aligned.
*/
cdev->tile_band_mask_size =
((nbands + (align_bitmap_mod * 8 - 1)) >> 3) &
~(align_bitmap_mod - 1);
/*
* Initialize the all-band parameters to impossible values,
* to force them to be written the first time they are used.
*/
memset(&cdev->tile_params, 0, sizeof(cdev->tile_params));
cdev->tile_depth = 0;
cdev->tile_known_min = nbands;
cdev->tile_known_max = -1;
cdev->imager_state = clist_imager_state_initial;
cdev->clip_path = NULL;
cdev->clip_path_id = gs_no_id;
cdev->color_space.byte1 = 0;
cdev->color_space.id = gs_no_id;
cdev->color_space.space = 0;
{
int i;
for (i = 0; i < countof(cdev->transfer_ids); ++i)
cdev->transfer_ids[i] = gs_no_id;
}
cdev->black_generation_id = gs_no_id;
cdev->undercolor_removal_id = gs_no_id;
cdev->device_halftone_id = gs_no_id;
cdev->image_enum_id = gs_no_id;
cdev->cropping_min = cdev->save_cropping_min = 0;
cdev->cropping_max = cdev->save_cropping_max = cdev->height;
cdev->cropping_saved = false;
cdev->cropping_stack = NULL;
cdev->cropping_level = 0;
cdev->mask_id_count = cdev->mask_id = cdev->temp_mask_id = 0;
cdev->icc_table = NULL;
cdev->icc_cache_cl = NULL;
return 0;
}
/*
* Initialize the device state (for writing). This routine requires only
* data, data_size, and target to be set, and is idempotent.
*/
static int
clist_init(gx_device * dev)
{
gx_device_clist_writer * const cdev =
&((gx_device_clist *)dev)->writer;
int code = clist_reset(dev);
if (code >= 0) {
cdev->image_enum_id = gs_no_id;
cdev->error_is_retryable = 0;
cdev->driver_call_nesting = 0;
cdev->ignore_lo_mem_warnings = 0;
}
return code;
}
/* (Re)init open band files for output (set block size, etc). */
static int /* ret 0 ok, -ve error code */
clist_reinit_output_file(gx_device *dev)
{ gx_device_clist_writer * const cdev =
&((gx_device_clist *)dev)->writer;
int code = 0;
/* bfile needs to guarantee cmd_blocks for: 1 band range, nbands */
/* & terminating entry */
int b_block = sizeof(cmd_block) * (cdev->nbands + 2);
/* cfile needs to guarantee one writer buffer */
/* + one end_clip cmd (if during image's clip path setup) */
/* + an end_image cmd for each band (if during image) */
/* + end_cmds for each band and one band range */
int c_block =
cdev->cend - cdev->cbuf + 2 + cdev->nbands * 2 + (cdev->nbands + 1);
/* All this is for partial page rendering's benefit, do only */
/* if partial page rendering is available */
if ( clist_test_VMerror_recoverable(cdev) )
{ if (cdev->page_bfile != 0)
code = cdev->page_info.io_procs->set_memory_warning(cdev->page_bfile, b_block);
if (code >= 0 && cdev->page_cfile != 0)
code = cdev->page_info.io_procs->set_memory_warning(cdev->page_cfile, c_block);
}
return code;
}
/* Write out the current parameters that must be at the head of each page */
/* if async rendering is in effect */
static int
clist_emit_page_header(gx_device *dev)
{
gx_device_clist_writer * const cdev =
&((gx_device_clist *)dev)->writer;
int code = 0;
if ((cdev->disable_mask & clist_disable_pass_thru_params)) {
do
if ((code = clist_put_current_params(cdev)) >= 0)
break;
while ((code = clist_VMerror_recover(cdev, code)) >= 0);
cdev->permanent_error = (code < 0 ? code : 0);
if (cdev->permanent_error < 0)
cdev->error_is_retryable = 0;
}
return code;
}
/* Reset parameters for the beginning of a page. */
static void
clist_reset_page(gx_device_clist_writer *cwdev)
{
cwdev->page_bfile_end_pos = 0;
/* Indicate that the colors_used information hasn't been computed. */
cwdev->page_info.scan_lines_per_colors_used = 0;
memset(cwdev->page_info.band_color_usage, 0,
sizeof(cwdev->page_info.band_color_usage));
}
/* Open the device's bandfiles */
static int
clist_open_output_file(gx_device *dev)
{
gx_device_clist_writer * const cdev =
&((gx_device_clist *)dev)->writer;
char fmode[4];
int code;
if (cdev->do_not_open_or_close_bandfiles)
return 0; /* external bandfile open/close managed externally */
cdev->page_cfile = 0; /* in case of failure */
cdev->page_bfile = 0; /* ditto */
code = clist_init(dev);
if (code < 0)
return code;
strcpy(fmode, "w+");
strcat(fmode, gp_fmode_binary_suffix);
cdev->page_cfname[0] = 0; /* create a new file */
cdev->page_bfname[0] = 0; /* ditto */
clist_reset_page(cdev);
if ((code = cdev->page_info.io_procs->fopen(cdev->page_cfname, fmode, &cdev->page_cfile,
cdev->bandlist_memory, cdev->bandlist_memory,
true)) < 0 ||
(code = cdev->page_info.io_procs->fopen(cdev->page_bfname, fmode, &cdev->page_bfile,
cdev->bandlist_memory, cdev->bandlist_memory,
false)) < 0 ||
(code = clist_reinit_output_file(dev)) < 0
) {
clist_close_output_file(dev);
cdev->permanent_error = code;
cdev->error_is_retryable = 0;
}
return code;
}
/* Close, and free the contents of, the temporary files of a page. */
/* Note that this does not deallocate the buffer. */
int
clist_close_page_info(gx_band_page_info_t *ppi)
{
if (ppi->cfile != NULL) {
ppi->io_procs->fclose(ppi->cfile, ppi->cfname, true);
ppi->cfile = NULL;
}
if (ppi->bfile != NULL) {
ppi->io_procs->fclose(ppi->bfile, ppi->bfname, true);
ppi->bfile = NULL;
}
return 0;
}
/* Close the device by freeing the temporary files. */
/* Note that this does not deallocate the buffer. */
int
clist_close_output_file(gx_device *dev)
{
gx_device_clist_writer * const cdev =
&((gx_device_clist *)dev)->writer;
return clist_close_page_info(&cdev->page_info);
}
static void
clist_set_planar(gx_device *dev)
{
gx_device_clist_common * cdev = &((gx_device_clist *)dev)->common;
if (dev_proc(dev, dev_spec_op)(dev, gxdso_is_native_planar, NULL, 0) > 0) {
cdev->is_planar = true;
} else {
cdev->is_planar = false;
}
}
/* Open the device by initializing the device state and opening the */
/* scratch files. */
int
clist_open(gx_device *dev)
{
gx_device_clist_writer * const cdev =
&((gx_device_clist *)dev)->writer;
bool save_is_open = dev->is_open;
int code;
cdev->permanent_error = 0;
cdev->is_open = false;
clist_set_planar(dev);
code = clist_init(dev);
if (code < 0)
return code;
code = clist_open_output_file(dev);
if ( code >= 0)
code = clist_emit_page_header(dev);
if (code >= 0)
dev->is_open = save_is_open;
return code;
}
static int
clist_close(gx_device *dev)
{
gx_device_clist_writer * const cdev =
&((gx_device_clist *)dev)->writer;
if (cdev->do_not_open_or_close_bandfiles)
return 0;
if (cdev->procs.open_device == pattern_clist_open_device) {
gs_free_object(cdev->bandlist_memory, cdev->data, "clist_close");
cdev->data = NULL;
}
return clist_close_output_file(dev);
}
/* The output_page procedure should never be called! */
static int
clist_output_page(gx_device * dev, int num_copies, int flush)
{
return_error(gs_error_Fatal);
}
/* Reset (or prepare to append to) the command list after printing a page. */
int
clist_finish_page(gx_device *dev, bool flush)
{
gx_device_clist_writer * const cdev = &((gx_device_clist *)dev)->writer;
int code;
/* If this is a reader clist, which is about to be reset to a writer,
* free any band_complexity_array memory used by same.
* since we have been rendering, shut down threads
*/
if (!CLIST_IS_WRITER((gx_device_clist *)dev)) {
gx_clist_reader_free_band_complexity_array( (gx_device_clist *)dev );
clist_teardown_render_threads(dev);
}
/* Also free the icc_table at this time and the icc_cache */
if (!CLIST_IS_WRITER((gx_device_clist *)dev)) {
/* Free the icc table associated with this device.
The threads that may have pointed to this were destroyed in
the above call to clist_teardown_render_threads. Since they
all maintained a copy of the cache and the table there should not
be any issues. */
gx_device_clist_reader * const crdev = &((gx_device_clist *)dev)->reader;
clist_icc_freetable(crdev->icc_table, crdev->memory);
rc_decrement(crdev->icc_cache_cl,"clist_finish_page");
}
if (flush) {
if (cdev->page_cfile != 0)
cdev->page_info.io_procs->rewind(cdev->page_cfile, true, cdev->page_cfname);
if (cdev->page_bfile != 0)
cdev->page_info.io_procs->rewind(cdev->page_bfile, true, cdev->page_bfname);
clist_reset_page(cdev);
} else {
if (cdev->page_cfile != 0)
cdev->page_info.io_procs->fseek(cdev->page_cfile, 0L, SEEK_END, cdev->page_cfname);
if (cdev->page_bfile != 0)
cdev->page_info.io_procs->fseek(cdev->page_bfile, 0L, SEEK_END, cdev->page_bfname);
}
code = clist_init(dev); /* reinitialize */
if (code >= 0)
code = clist_reinit_output_file(dev);
if (code >= 0)
code = clist_emit_page_header(dev);
return code;
}
/* ------ Writing ------ */
/* End a page by flushing the buffer and terminating the command list. */
int /* ret 0 all-ok, -ve error code, or +1 ok w/low-mem warning */
clist_end_page(gx_device_clist_writer * cldev)
{
int code;
cmd_block cb;
int ecode = 0;
code = cmd_write_buffer(cldev, cmd_opv_end_page);
/* If we have ICC profiles present in the cfile save the table now,
along with the ICC profiles. Table is stored in band maxband + 1. */
if ( cldev->icc_table != NULL ) {
/* Save the table */
code = clist_icc_writetable(cldev);
/* Free the table */
clist_icc_freetable(cldev->icc_table, cldev->memory);
cldev->icc_table = NULL;
}
if (code >= 0) {
/*
* Write the terminating entry in the block file.
* Note that because of copypage, there may be many such entries.
*/
memset(&cb, 0, sizeof(cb)); /* Zero the block, including any padding */
cb.band_min = cb.band_max = cmd_band_end;
cb.pos = (cldev->page_cfile == 0 ? 0 : cldev->page_info.io_procs->ftell(cldev->page_cfile));
code = cldev->page_info.io_procs->fwrite_chars(&cb, sizeof(cb), cldev->page_bfile);
if (code > 0)
code = 0;
}
if (code >= 0) {
clist_compute_color_usage(cldev);
ecode |= code;
cldev->page_bfile_end_pos = cldev->page_info.io_procs->ftell(cldev->page_bfile);
}
if (code < 0)
ecode = code;
/* Reset warning margin to 0 to release reserve memory if mem files */
if (cldev->page_bfile != 0)
cldev->page_info.io_procs->set_memory_warning(cldev->page_bfile, 0);
if (cldev->page_cfile != 0)
cldev->page_info.io_procs->set_memory_warning(cldev->page_cfile, 0);
#ifdef DEBUG
if (gs_debug_c('l') | gs_debug_c(':')) {
if (cb.pos <= 0xFFFFFFFF)
dlprintf2("[:]clist_end_page at cfile=%lu, bfile=%lu\n",
(unsigned long)cb.pos, (unsigned long)cldev->page_bfile_end_pos);
else
dlprintf3("[:]clist_end_page at cfile=%lu%0lu, bfile=%lu\n",
(unsigned long) (cb.pos >> 32), (unsigned long) (cb.pos & 0xFFFFFFFF),
(unsigned long)cldev->page_bfile_end_pos);
}
#endif
return 0;
}
gx_color_usage_bits
gx_color_index2usage(gx_device *dev, gx_color_index color)
{
gx_color_usage_bits bits = 0;
int i;
for (i = 0; i < dev->color_info.num_components; i++) {
if (color & dev->color_info.comp_mask[i])
bits |= (1<<i);
}
return bits;
}
/* Compute the set of used colors in the page_info structure.
*
* NB: Area for improvement, move states[band] and page_info to clist
* rather than writer device, or remove completely as this is used by the old planar devices
* to operate on a plane at a time.
*/
void
clist_compute_color_usage(gx_device_clist_writer *cldev)
{
int nbands = cldev->nbands;
int bands_per_colors_used =
(nbands + PAGE_INFO_NUM_COLORS_USED - 1) /
PAGE_INFO_NUM_COLORS_USED;
int band;
cldev->page_info.scan_lines_per_colors_used =
cldev->page_band_height * bands_per_colors_used;
memset(cldev->page_info.band_color_usage, 0,
sizeof(cldev->page_info.band_color_usage));
for (band = 0; band < nbands; ++band) {
int entry = band / bands_per_colors_used;
cldev->page_info.band_color_usage[entry].or |=
cldev->states[band].color_usage.or;
cldev->page_info.band_color_usage[entry].slow_rop |=
cldev->states[band].color_usage.slow_rop;
}
}
/* Recover recoverable VM error if possible without flushing */
int /* ret -ve err, >= 0 if recovered w/# = cnt pages left in page queue */
clist_VMerror_recover(gx_device_clist_writer *cldev,
int old_error_code)
{
int code = old_error_code;
int pages_remain;
if (!clist_test_VMerror_recoverable(cldev) ||
!cldev->error_is_retryable ||
old_error_code != gs_error_VMerror
)
return old_error_code;
/* Do some rendering, return if enough memory is now free */
do {
pages_remain =
(*cldev->free_up_bandlist_memory)( (gx_device *)cldev, false );
if (pages_remain < 0) {
code = pages_remain; /* abort, error or interrupt req */
break;
}
if (clist_reinit_output_file( (gx_device *)cldev ) == 0) {
code = pages_remain; /* got enough memory to continue */
break;
}
} while (pages_remain);
if_debug1('L', "[L]soft flush of command list, status: %d\n", code);
return code;
}
/* If recoverable VM error, flush & try to recover it */
int /* ret 0 ok, else -ve error */
clist_VMerror_recover_flush(gx_device_clist_writer *cldev,
int old_error_code)
{
int free_code = 0;
int reset_code = 0;
int code;
/* If the device has the ability to render partial pages, flush
* out the bandlist, and reset the writing state. Then, get the
* device to render this band. When done, see if there's now enough
* memory to satisfy the minimum low-memory guarantees. If not,
* get the device to render some more. If there's nothing left to
* render & still insufficient memory, declare an error condition.
*/
if (!clist_test_VMerror_recoverable(cldev) ||
old_error_code != gs_error_VMerror
)
return old_error_code; /* sorry, don't have any means to recover this error */
free_code = (*cldev->free_up_bandlist_memory)( (gx_device *)cldev, true );
/* Reset the state of bands to "don't know anything" */
reset_code = clist_reset( (gx_device *)cldev );
if (reset_code >= 0)
reset_code = clist_open_output_file( (gx_device *)cldev );
if ( reset_code >= 0 &&
(cldev->disable_mask & clist_disable_pass_thru_params)
)
reset_code = clist_put_current_params(cldev);
if (reset_code < 0) {
cldev->permanent_error = reset_code;
cldev->error_is_retryable = 0;
}
code = (reset_code < 0 ? reset_code : free_code < 0 ? old_error_code : 0);
if_debug1('L', "[L]hard flush of command list, status: %d\n", code);
return code;
}
/* Write the target device's current parameter list */
static int /* ret 0 all ok, -ve error */
clist_put_current_params(gx_device_clist_writer *cldev)
{
gx_device *target = cldev->target;
gs_c_param_list param_list;
int code;
/*
* If a put_params call fails, the device will be left in a closed
* state, but higher-level code won't notice this fact. We flag this by
* setting permanent_error, which prevents writing to the command list.
*/
if (cldev->permanent_error)
return cldev->permanent_error;
gs_c_param_list_write(¶m_list, cldev->memory);
code = (*dev_proc(target, get_params))
(target, (gs_param_list *)¶m_list);
if (code >= 0) {
gs_c_param_list_read(¶m_list);
code = cmd_put_params( cldev, (gs_param_list *)¶m_list );
}
gs_c_param_list_release(¶m_list);
return code;
}
/* ---------------- Driver interface ---------------- */
static int
clist_get_band(gx_device * dev, int y, int *band_start)
{
gx_device_clist_writer * const cdev =
&((gx_device_clist *)dev)->writer;
int band_height = cdev->page_band_height;
int start;
if (y < 0)
y = 0;
else if (y >= dev->height)
y = dev->height;
*band_start = start = y - y % band_height;
return min(dev->height - start, band_height);
}
/* copy constructor if from != NULL
* default constructor if from == NULL
*/
void
clist_copy_band_complexity(gx_band_complexity_t *self, const gx_band_complexity_t *from)
{
if (from) {
memcpy(self, from, sizeof(gx_band_complexity_t));
} else {
/* default */
self->uses_color = false;
self->nontrivial_rops = false;
#if 0
/* todo: halftone phase */
self->x0 = 0;
self->y0 = 0;
#endif
}
}
/* ICC table operations. See gxclist.h for details */
/* This checks the table for a hash code entry */
bool
clist_icc_searchtable(gx_device_clist_writer *cdev, int64_t hashcode)
{
clist_icctable_t *icc_table = cdev->icc_table;
clist_icctable_entry_t *curr_entry;
if (icc_table == NULL)
return(false); /* No entry */
curr_entry = icc_table->head;
while(curr_entry != NULL) {
if (curr_entry->serial_data.hashcode == hashcode){
return(true);
}
curr_entry = curr_entry->next;
}
return(false); /* No entry */
}
/* Free the table */
int
clist_icc_freetable(clist_icctable_t *icc_table, gs_memory_t *memory)
{
int number_entries;
clist_icctable_entry_t *curr_entry, *next_entry;
int k;
if (icc_table == NULL)
return(0);
number_entries = icc_table->tablesize;
curr_entry = icc_table->head;
for (k = 0; k < number_entries; k++) {
next_entry = curr_entry->next;
gs_free_object(icc_table->memory, curr_entry, "clist_icc_freetable");
curr_entry = next_entry;
}
gs_free_object(icc_table->memory, icc_table, "clist_icc_freetable");
return(0);
}
/* This serializes the ICC table and writes it out for maxband+1 */
int
clist_icc_writetable(gx_device_clist_writer *cldev)
{
unsigned char *pbuf, *buf;
clist_icctable_t *icc_table = cldev->icc_table;
int number_entries = icc_table->tablesize;
clist_icctable_entry_t *curr_entry;
int size_data;
int k;
/* First we need to write out the ICC profiles themselves and update
in the table where they will be stored and their size. */
curr_entry = icc_table->head;
for ( k = 0; k < number_entries; k++ ){
curr_entry->serial_data.file_position = clist_icc_addprofile(cldev, curr_entry->icc_profile, &size_data);
curr_entry->serial_data.size = size_data;
rc_decrement(curr_entry->icc_profile, "clist_icc_writetable");
curr_entry->icc_profile = NULL;
curr_entry = curr_entry->next;
}
/* Now serialize the table data */
size_data = number_entries*sizeof(clist_icc_serial_entry_t) + sizeof(number_entries);
buf = gs_alloc_bytes(cldev->memory, size_data, "clist_icc_writetable");
if (buf == NULL)
return gs_rethrow(-1, "insufficient memory for icc table buffer");
pbuf = buf;
memcpy(pbuf, &number_entries, sizeof(number_entries));
pbuf += sizeof(number_entries);
curr_entry = icc_table->head;
for (k = 0; k < number_entries; k++) {
memcpy(pbuf, &(curr_entry->serial_data), sizeof(clist_icc_serial_entry_t));
pbuf += sizeof(clist_icc_serial_entry_t);
curr_entry = curr_entry->next;
}
/* Now go ahead and save the table data */
cmd_write_icctable(cldev, buf, size_data);
gs_free_object(cldev->memory, buf, "clist_icc_writetable");
return(0);
}
/* This write the actual data out to the cfile */
int64_t
clist_icc_addprofile(gx_device_clist_writer *cldev, cmm_profile_t *iccprofile, int *size)
{
clist_file_ptr cfile = cldev->page_cfile;
int64_t fileposit;
gsicc_serialized_profile_t profile_data;
int count1, count2;
/* Get the current position */
fileposit = cldev->page_info.io_procs->ftell(cfile);
/* Get the serialized header */
gsicc_profile_serialize(&profile_data, iccprofile);
/* Write the header */
if_debug1('l', "[l]writing icc profile in cfile at pos %ld\n",fileposit);
count1 = cldev->page_info.io_procs->fwrite_chars(&profile_data, sizeof(gsicc_serialized_profile_t), cfile);
/* Now write the profile */
count2 = cldev->page_info.io_procs->fwrite_chars(iccprofile->buffer, iccprofile->buffer_size, cfile);
/* Return where we wrote this in the cfile */
*size = count1 + count2;
return(fileposit);
}
/* This add a new entry into the table */
int
clist_icc_addentry(gx_device_clist_writer *cdev, int64_t hashcode_in, cmm_profile_t *icc_profile)
{
clist_icctable_t *icc_table = cdev->icc_table;
clist_icctable_entry_t *entry, *curr_entry;
int k;
int64_t hashcode;
gs_memory_t *stable_mem = cdev->memory->stable_memory;
/* If the hash code is not valid then compute it now */
if (icc_profile->hash_is_valid == false) {
gsicc_get_icc_buff_hash(icc_profile->buffer, &hashcode,
icc_profile->buffer_size);
icc_profile->hashcode = hashcode;
icc_profile->hash_is_valid = true;
} else {
hashcode = hashcode_in;
}
if ( icc_table == NULL ) {
entry = (clist_icctable_entry_t *) gs_alloc_struct(stable_mem,
clist_icctable_entry_t, &st_clist_icctable_entry,
"clist_icc_addentry");
if (entry == NULL)
return gs_rethrow(-1, "insufficient memory to allocate entry in icc table");
entry->next = NULL;
entry->serial_data.hashcode = hashcode;
entry->serial_data.size = -1;
entry->serial_data.file_position = -1;
entry->icc_profile = icc_profile;
rc_increment(icc_profile);
icc_table = gs_alloc_struct(stable_mem, clist_icctable_t,
&st_clist_icctable, "clist_icc_addentry");
if (icc_table == NULL)
return gs_rethrow(-1, "insufficient memory to allocate icc table");
icc_table->tablesize = 1;
icc_table->head = entry;
icc_table->final = entry;
icc_table->memory = stable_mem;
/* For now, we are just going to put the icc_table itself
at band_range_max + 1. The ICC profiles are written
in the cfile at the current stored file position*/
cdev->icc_table = icc_table;
} else {
/* First check if we already have this entry */
curr_entry = icc_table->head;
for ( k = 0; k < icc_table->tablesize; k++ ) {
if ( curr_entry->serial_data.hashcode == hashcode )
return(0); /* A hit */
curr_entry = curr_entry->next;
}
/* Add a new ICC profile */
entry =
(clist_icctable_entry_t *) gs_alloc_struct(icc_table->memory,
clist_icctable_entry_t,
&st_clist_icctable_entry,
"clist_icc_addentry");
if (entry == NULL)
return gs_rethrow(-1, "insufficient memory to allocate entry in icc table");
entry->next = NULL;
entry->serial_data.hashcode = hashcode;
entry->serial_data.size = -1;
entry->serial_data.file_position = -1;
entry->icc_profile = icc_profile;
rc_increment(icc_profile);
icc_table->final->next = entry;
icc_table->final = entry;
icc_table->tablesize++;
}
return(0);
}
int
clist_writer_push_no_cropping(gx_device_clist_writer *cdev)
{
clist_writer_cropping_buffer_t *buf = gs_alloc_struct(cdev->memory,
clist_writer_cropping_buffer_t,
&st_clist_writer_cropping_buffer, "clist_writer_transparency_push");
if (buf == NULL)
return_error(gs_error_VMerror);
if_debug1('v', "[v]push cropping[%d]\n", cdev->cropping_level);
buf->next = cdev->cropping_stack;
cdev->cropping_stack = buf;
buf->cropping_min = cdev->cropping_min;
buf->cropping_max = cdev->cropping_max;
buf->mask_id = cdev->mask_id;
buf->temp_mask_id = cdev->temp_mask_id;
cdev->cropping_level++;
return 0;
}
int
clist_writer_push_cropping(gx_device_clist_writer *cdev, int ry, int rheight)
{
int code = clist_writer_push_no_cropping(cdev);
if (code < 0)
return 0;
cdev->cropping_min = max(cdev->cropping_min, ry);
cdev->cropping_max = min(cdev->cropping_max, ry + rheight);
return 0;
}
int
clist_writer_pop_cropping(gx_device_clist_writer *cdev)
{
clist_writer_cropping_buffer_t *buf = cdev->cropping_stack;
if (buf == NULL)
return_error(gs_error_unregistered); /*Must not happen. */
cdev->cropping_min = buf->cropping_min;
cdev->cropping_max = buf->cropping_max;
cdev->mask_id = buf->mask_id;
cdev->temp_mask_id = buf->temp_mask_id;
cdev->cropping_stack = buf->next;
cdev->cropping_level--;
if_debug1('v', "[v]pop cropping[%d]\n", cdev->cropping_level);
gs_free_object(cdev->memory, buf, "clist_writer_transparency_pop");
return 0;
}
int
clist_writer_check_empty_cropping_stack(gx_device_clist_writer *cdev)
{
if (cdev->cropping_stack != NULL) {
if_debug1('v', "[v]Error: left %d cropping(s)\n", cdev->cropping_level);
return_error(gs_error_unregistered); /* Must not happen */
}
return 0;
}
/* Retrieve total size for cfile and bfile. */
int clist_data_size(const gx_device_clist *cdev, int select)
{
const gx_band_page_info_t *pinfo = &cdev->common.page_info;
clist_file_ptr pfile = (!select ? pinfo->bfile : pinfo->cfile);
const char *fname = (!select ? pinfo->bfname : pinfo->cfname);
int code, size;
code = pinfo->io_procs->fseek(pfile, 0, SEEK_END, fname);
if (code < 0)
return_error(gs_error_unregistered); /* Must not happen. */
code = pinfo->io_procs->ftell(pfile);
if (code < 0)
return_error(gs_error_unregistered); /* Must not happen. */
size = code;
return size;
}
/* Get command list data. */
int
clist_get_data(const gx_device_clist *cdev, int select, int64_t offset, byte *buf, int length)
{
const gx_band_page_info_t *pinfo = &cdev->common.page_info;
clist_file_ptr pfile = (!select ? pinfo->bfile : pinfo->cfile);
const char *fname = (!select ? pinfo->bfname : pinfo->cfname);
int code;
code = pinfo->io_procs->fseek(pfile, offset, SEEK_SET, fname);
if (code < 0)
return_error(gs_error_unregistered); /* Must not happen. */
/* This assumes that fread_chars doesn't return prematurely
when the buffer is not fully filled and the end of stream is not reached. */
return pinfo->io_procs->fread_chars(buf, length, pfile);
}
/* Put command list data. */
int
clist_put_data(const gx_device_clist *cdev, int select, int64_t offset, const byte *buf, int length)
{
const gx_band_page_info_t *pinfo = &cdev->common.page_info;
clist_file_ptr pfile = (!select ? pinfo->bfile : pinfo->cfile);
int64_t code;
code = pinfo->io_procs->ftell(pfile);
if (code < 0)
return_error(gs_error_unregistered); /* Must not happen. */
if (code != offset) {
/* Assuming a consecutive writing only. */
return_error(gs_error_unregistered); /* Must not happen. */
}
/* This assumes that fwrite_chars doesn't return prematurely
when the buffer is not fully written, except with an error. */
return pinfo->io_procs->fwrite_chars(buf, length, pfile);
}
|