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
|
/* 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.
*/
/* Default device parameters for Ghostscript library */
#include "memory_.h" /* for memcpy */
#include "string_.h" /* for strlen */
#include "gx.h"
#include "gserrors.h"
#include "gsdevice.h" /* for prototypes */
#include "gsparam.h"
#include "gxdevice.h"
#include "gxfixed.h"
#include "gsicc_manage.h"
static const char *const std_intent_keys[] = {
GSICC_STANDARD_INTENT_KEYS
};
/* Define whether we accept PageSize as a synonym for MediaSize. */
/* This is for backward compatibility only. */
#define PAGESIZE_IS_MEDIASIZE
/* ================ Getting parameters ================ */
/* Forward references */
static bool param_HWColorMap(gx_device *, byte *);
/* Get the device parameters. */
int
gs_get_device_or_hw_params(gx_device * orig_dev, gs_param_list * plist,
bool is_hardware)
{
/*
* We must be prepared to copy the device if it is the read-only
* prototype.
*/
gx_device *dev;
int code;
if (orig_dev->memory)
dev = orig_dev;
else {
code = gs_copydevice(&dev, orig_dev, plist->memory);
if (code < 0)
return code;
}
gx_device_set_procs(dev);
fill_dev_proc(dev, get_params, gx_default_get_params);
fill_dev_proc(dev, get_page_device, gx_default_get_page_device);
fill_dev_proc(dev, get_alpha_bits, gx_default_get_alpha_bits);
code = (is_hardware ?
(*dev_proc(dev, get_hardware_params)) (dev, plist) :
(*dev_proc(dev, get_params)) (dev, plist));
if (dev != orig_dev)
gx_device_retain(dev, false); /* frees the copy */
return code;
}
/* Get standard parameters. */
int
gx_default_get_params(gx_device * dev, gs_param_list * plist)
{
int code;
/* Standard page device parameters: */
bool seprs = false;
gs_param_string dns, pcms, profile_array[NUM_DEVICE_PROFILES];
gs_param_string proof_profile, link_profile;
gsicc_rendering_intents_t profile_intents[NUM_DEVICE_PROFILES];
bool devicegraytok = true; /* Default if device profile stuct not set */
bool usefastcolor = false; /* set for unmanaged color */
int k;
gs_param_float_array msa, ibba, hwra, ma;
gs_param_string_array scna;
char null_str[1]={'\0'};
#define set_param_array(a, d, s)\
(a.data = d, a.size = s, a.persistent = false);
/* Non-standard parameters: */
int colors = dev->color_info.num_components;
int mns = colors;
int depth = dev->color_info.depth;
int GrayValues = dev->color_info.max_gray + 1;
int HWSize[2];
gs_param_int_array hwsa;
gs_param_float_array hwma, mhwra;
cmm_dev_profile_t *dev_profile;
/* Fill in page device parameters. */
param_string_from_string(dns, dev->dname);
{
const char *cms = get_process_color_model_name(dev);
/* We might have an uninitialized device with */
/* color_info.num_components = 0.... */
if ((cms != NULL) && (*cms != '\0'))
param_string_from_string(pcms, cms);
else
pcms.data = 0;
}
set_param_array(hwra, dev->HWResolution, 2);
set_param_array(msa, dev->MediaSize, 2);
set_param_array(ibba, dev->ImagingBBox, 4);
set_param_array(ma, dev->Margins, 2);
set_param_array(scna, NULL, 0);
/* Fill in non-standard parameters. */
HWSize[0] = dev->width;
HWSize[1] = dev->height;
set_param_array(hwsa, HWSize, 2);
set_param_array(hwma, dev->HWMargins, 4);
set_param_array(mhwra, dev->MarginsHWResolution, 2);
/* Check if the device profile is null. If it is, then we need to
go ahead and get it set up at this time. If the proc is not
set up yet then we are not going to do anything yet */
if (dev->procs.get_profile != NULL) {
code = dev_proc(dev, get_profile)(dev, &dev_profile);
if (dev_profile == NULL) {
code = gsicc_init_device_profile_struct(dev, NULL, 0);
code = dev_proc(dev, get_profile)(dev, &dev_profile);
}
/* It is possible that the current device profile name is NULL if we
have a pdf14 device in line with a transparency group that is in a
color space specified from a source defined ICC profile. Check for
that here to avoid any access violations. Bug 692558 */
for (k = 0; k < NUM_DEVICE_PROFILES; k++) {
if (dev_profile->device_profile[k] == NULL
|| dev_profile->device_profile[k]->name == NULL) {
param_string_from_string(profile_array[k], null_str);
profile_intents[k] = gsPERCEPTUAL;
} else {
param_string_from_string(profile_array[k],
dev_profile->device_profile[k]->name);
profile_intents[k] = dev_profile->intent[k];
}
}
/* The proof and link profile */
if (dev_profile->proof_profile == NULL) {
param_string_from_string(proof_profile, null_str);
} else {
param_string_from_string(proof_profile,
dev_profile->proof_profile->name);
}
if (dev_profile->link_profile == NULL) {
param_string_from_string(link_profile, null_str);
} else {
param_string_from_string(link_profile,
dev_profile->link_profile->name);
}
devicegraytok = dev_profile->devicegraytok;
usefastcolor = dev_profile->usefastcolor;
} else {
for (k = 0; k < NUM_DEVICE_PROFILES; k++) {
param_string_from_string(profile_array[k], null_str);
profile_intents[k] = gsPERCEPTUAL;
}
param_string_from_string(proof_profile, null_str);
param_string_from_string(link_profile, null_str);
}
/* Transmit the values. */
if (
/* Standard parameters */
(code = param_write_name(plist, "OutputDevice", &dns)) < 0 ||
#ifdef PAGESIZE_IS_MEDIASIZE
(code = param_write_float_array(plist, "PageSize", &msa)) < 0 ||
#endif
(code = (pcms.data == 0 ? 0 :
param_write_name(plist, "ProcessColorModel", &pcms))) < 0 ||
(code = param_write_float_array(plist, "HWResolution", &hwra)) < 0 ||
(code = (dev->ImagingBBox_set ?
param_write_float_array(plist, "ImagingBBox", &ibba) :
param_write_null(plist, "ImagingBBox"))) < 0 ||
(code = param_write_float_array(plist, "Margins", &ma)) < 0 ||
(code = param_write_int(plist, "MaxSeparations", &mns)) < 0 ||
(code = (dev->NumCopies_set < 0 ||
(*dev_proc(dev, get_page_device))(dev) == 0 ? 0:
dev->NumCopies_set ?
param_write_int(plist, "NumCopies", &dev->NumCopies) :
param_write_null(plist, "NumCopies"))) < 0 ||
(code = param_write_name_array(plist, "SeparationColorNames", &scna)) < 0 ||
(code = param_write_bool(plist, "Separations", &seprs)) < 0 ||
(code = param_write_bool(plist, "UseCIEColor", &dev->UseCIEColor)) < 0 ||
/* Non-standard parameters */
/* Note: if change is made in NUM_DEVICE_PROFILES we need to name
that profile here for the device parameter on the command line */
(code = param_write_bool(plist, "DeviceGrayToK", &devicegraytok)) < 0 ||
(code = param_write_bool(plist, "UseFastColor", &usefastcolor)) < 0 ||
(code = param_write_string(plist,"OutputICCProfile", &(profile_array[0]))) < 0 ||
(code = param_write_string(plist,"GraphicICCProfile", &(profile_array[1]))) < 0 ||
(code = param_write_string(plist,"ImageICCProfile", &(profile_array[2]))) < 0 ||
(code = param_write_string(plist,"TextICCProfile", &(profile_array[3]))) < 0 ||
(code = param_write_string(plist,"ProofProfile", &(proof_profile))) < 0 ||
(code = param_write_string(plist,"DeviceLinkProfile", &(link_profile))) < 0 ||
(code = param_write_int(plist,"RenderIntent", (const int *) (&(profile_intents[0])))) < 0 ||
(code = param_write_int(plist,"GraphicIntent", (const int *) &(profile_intents[1]))) < 0 ||
(code = param_write_int(plist,"ImageIntent", (const int *) &(profile_intents[2]))) < 0 ||
(code = param_write_int(plist,"TextIntent", (const int *) &(profile_intents[3]))) < 0 ||
(code = param_write_int_array(plist, "HWSize", &hwsa)) < 0 ||
(code = param_write_float_array(plist, ".HWMargins", &hwma)) < 0 ||
(code = param_write_float_array(plist, ".MarginsHWResolution", &mhwra)) < 0 ||
(code = param_write_float_array(plist, ".MediaSize", &msa)) < 0 ||
(code = param_write_string(plist, "Name", &dns)) < 0 ||
(code = param_write_int(plist, "Colors", &colors)) < 0 ||
(code = param_write_int(plist, "BitsPerPixel", &depth)) < 0 ||
(code = param_write_int(plist, "GrayValues", &GrayValues)) < 0 ||
(code = param_write_long(plist, "PageCount", &dev->PageCount)) < 0 ||
(code = param_write_bool(plist, ".IgnoreNumCopies", &dev->IgnoreNumCopies)) < 0 ||
(code = param_write_int(plist, "TextAlphaBits",
&dev->color_info.anti_alias.text_bits)) < 0 ||
(code = param_write_int(plist, "GraphicsAlphaBits",
&dev->color_info.anti_alias.graphics_bits)) < 0 ||
(code = param_write_bool(plist, ".LockSafetyParams", &dev->LockSafetyParams)) < 0 ||
(code = param_write_int(plist, "MaxPatternBitmap", &dev->MaxPatternBitmap)) < 0
)
return code;
/* If LeadingEdge was set explicitly, report it here. */
if (dev->LeadingEdge & LEADINGEDGE_SET_MASK) {
int leadingedge = dev->LeadingEdge & LEADINGEDGE_MASK;
code = param_write_int(plist, "LeadingEdge", &leadingedge);
}
if (code < 0)
return code;
/* Fill in color information. */
if (colors > 1) {
int RGBValues = dev->color_info.max_color + 1;
long ColorValues = (depth >= 32 ? -1 : 1L << depth); /* value can only be 32 bits */
if ((code = param_write_int(plist, "RedValues", &RGBValues)) < 0 ||
(code = param_write_int(plist, "GreenValues", &RGBValues)) < 0 ||
(code = param_write_int(plist, "BlueValues", &RGBValues)) < 0 ||
(code = param_write_long(plist, "ColorValues", &ColorValues)) < 0
)
return code;
}
if (param_requested(plist, "HWColorMap")) {
byte palette[3 << 8];
if (param_HWColorMap(dev, palette)) {
gs_param_string hwcms;
hwcms.data = palette, hwcms.size = colors << depth,
hwcms.persistent = false;
if ((code = param_write_string(plist, "HWColorMap", &hwcms)) < 0)
return code;
}
}
return 0;
}
/* Get the color map for a device. Return true if there is one. */
static bool
param_HWColorMap(gx_device * dev, byte * palette /* 3 << 8 */ )
{
int depth = dev->color_info.depth;
int colors = dev->color_info.num_components;
if (depth <= 8 && colors <= 3) {
byte *p = palette;
gx_color_value rgb[3];
gx_color_index i;
fill_dev_proc(dev, map_color_rgb, gx_default_map_color_rgb);
for (i = 0; (i >> depth) == 0; i++) {
int j;
if ((*dev_proc(dev, map_color_rgb)) (dev, i, rgb) < 0)
return false;
for (j = 0; j < colors; j++)
*p++ = gx_color_value_to_byte(rgb[j]);
}
return true;
}
return false;
}
/* Get hardware-detected parameters. Default action is no hardware params. */
int
gx_default_get_hardware_params(gx_device * dev, gs_param_list * plist)
{
return 0;
}
/* ---------------- Input and output media ---------------- */
/* Finish defining input or output media. */
static int
finish_media(gs_param_list * mlist, gs_param_name key, const char *media_type)
{
int code = 0;
if (media_type != 0) {
gs_param_string as;
param_string_from_string(as, media_type);
code = param_write_string(mlist, key, &as);
}
return code;
}
/* Define input media. */
const gdev_input_media_t gdev_input_media_default =
{
gdev_input_media_default_values
};
int
gdev_begin_input_media(gs_param_list * mlist, gs_param_dict * pdict,
int count)
{
pdict->size = count;
return param_begin_write_dict(mlist, "InputAttributes", pdict, true);
}
int
gdev_write_input_media(int index, gs_param_dict * pdict,
const gdev_input_media_t * pim)
{
char key[25];
gs_param_dict mdict;
int code;
gs_param_string as;
sprintf(key, "%d", index);
mdict.size = 4;
code = param_begin_write_dict(pdict->list, key, &mdict, false);
if (code < 0)
return code;
if ((pim->PageSize[0] != 0 && pim->PageSize[1] != 0) ||
(pim->PageSize[2] != 0 && pim->PageSize[3] != 0)
) {
gs_param_float_array psa;
psa.data = pim->PageSize;
psa.size =
(pim->PageSize[0] == pim->PageSize[2] &&
pim->PageSize[1] == pim->PageSize[3] ? 2 : 4);
psa.persistent = false;
code = param_write_float_array(mdict.list, "PageSize",
&psa);
if (code < 0)
return code;
}
if (pim->MediaColor != 0) {
param_string_from_string(as, pim->MediaColor);
code = param_write_string(mdict.list, "MediaColor",
&as);
if (code < 0)
return code;
}
if (pim->MediaWeight != 0) {
/*
* We do the following silly thing in order to avoid
* having to work around the 'const' in the arg list.
*/
float weight = pim->MediaWeight;
code = param_write_float(mdict.list, "MediaWeight",
&weight);
if (code < 0)
return code;
}
code = finish_media(mdict.list, "MediaType", pim->MediaType);
if (code < 0)
return code;
return param_end_write_dict(pdict->list, key, &mdict);
}
int
gdev_write_input_page_size(int index, gs_param_dict * pdict,
floatp width_points, floatp height_points)
{
gdev_input_media_t media;
media.PageSize[0] = media.PageSize[2] = (float) width_points;
media.PageSize[1] = media.PageSize[3] = (float) height_points;
media.MediaColor = 0;
media.MediaWeight = 0;
media.MediaType = 0;
return gdev_write_input_media(index, pdict, &media);
}
int
gdev_end_input_media(gs_param_list * mlist, gs_param_dict * pdict)
{
return param_end_write_dict(mlist, "InputAttributes", pdict);
}
/* Define output media. */
const gdev_output_media_t gdev_output_media_default =
{
gdev_output_media_default_values
};
int
gdev_begin_output_media(gs_param_list * mlist, gs_param_dict * pdict,
int count)
{
pdict->size = count;
return param_begin_write_dict(mlist, "OutputAttributes", pdict, true);
}
int
gdev_write_output_media(int index, gs_param_dict * pdict,
const gdev_output_media_t * pom)
{
char key[25];
gs_param_dict mdict;
int code;
sprintf(key, "%d", index);
mdict.size = 4;
code = param_begin_write_dict(pdict->list, key, &mdict, false);
if (code < 0)
return code;
code = finish_media(mdict.list, "OutputType", pom->OutputType);
if (code < 0)
return code;
return param_end_write_dict(pdict->list, key, &mdict);
}
int
gdev_end_output_media(gs_param_list * mlist, gs_param_dict * pdict)
{
return param_end_write_dict(mlist, "OutputAttributes", pdict);
}
/* ================ Putting parameters ================ */
/* Forward references */
static int param_normalize_anti_alias_bits( uint max_gray, int bits );
static int param_anti_alias_bits(gs_param_list *, gs_param_name, int *);
static int param_MediaSize(gs_param_list *, gs_param_name,
const float *, gs_param_float_array *);
static int param_check_bool(gs_param_list *, gs_param_name, bool, bool);
static int param_check_long(gs_param_list *, gs_param_name, long, bool);
#define param_check_int(plist, pname, ival, is_defined)\
param_check_long(plist, pname, (long)(ival), is_defined)
static int param_check_bytes(gs_param_list *, gs_param_name, const byte *,
uint, bool);
#define param_check_string(plist, pname, str, is_defined)\
param_check_bytes(plist, pname, (const byte *)(str), \
(is_defined) ? strlen(str) : 0, is_defined)
/* Set the device parameters. */
/* If the device was open and the put_params procedure closed it, */
/* return 1; otherwise, return 0 or an error code as usual. */
int
gs_putdeviceparams(gx_device * dev, gs_param_list * plist)
{
bool was_open = dev->is_open;
int code;
gx_device_set_procs(dev);
fill_dev_proc(dev, put_params, gx_default_put_params);
fill_dev_proc(dev, get_alpha_bits, gx_default_get_alpha_bits);
code = (*dev_proc(dev, put_params)) (dev, plist);
return (code < 0 ? code : was_open && !dev->is_open ? 1 : code);
}
static void
gx_default_put_graytok(bool graytok, gx_device * dev)
{
int code;
cmm_dev_profile_t *profile_struct;
if (dev->procs.get_profile == NULL) {
/* This is an odd case where the device has not yet fully been
set up with its procedures yet. We want to make sure that
we catch this so we assume here that we are dealing with
the target device. For now allocate the profile structure
but do not intialize the profile yet as the color info
may not be fully set up at this time. */
if (dev->icc_struct == NULL) {
/* Allocate at this time the structure */
dev->icc_struct = gsicc_new_device_profile_array(dev->memory);
}
dev->icc_struct->devicegraytok = graytok;
} else {
code = dev_proc(dev, get_profile)(dev, &profile_struct);
if (profile_struct == NULL) {
/* Create now */
dev->icc_struct = gsicc_new_device_profile_array(dev->memory);
profile_struct = dev->icc_struct;
}
profile_struct->devicegraytok = graytok;
}
}
static void
gx_default_put_usefastcolor(bool fastcolor, gx_device * dev)
{
int code;
cmm_dev_profile_t *profile_struct;
if (dev->procs.get_profile == NULL) {
/* This is an odd case where the device has not yet fully been
set up with its procedures yet. We want to make sure that
we catch this so we assume here that we are dealing with
the target device. For now allocate the profile structure
but do not intialize the profile yet as the color info
may not be fully set up at this time. */
if (dev->icc_struct == NULL) {
/* Allocate at this time the structure */
dev->icc_struct = gsicc_new_device_profile_array(dev->memory);
}
dev->icc_struct->usefastcolor = fastcolor;
} else {
code = dev_proc(dev, get_profile)(dev, &profile_struct);
if (profile_struct == NULL) {
/* Create now */
dev->icc_struct = gsicc_new_device_profile_array(dev->memory);
profile_struct = dev->icc_struct;
}
profile_struct->usefastcolor = fastcolor;
}
}
static void
gx_default_put_intent(gsicc_profile_types_t icc_intent, gx_device * dev,
gsicc_profile_types_t index)
{
int code;
cmm_dev_profile_t *profile_struct;
if (dev->procs.get_profile == NULL) {
/* This is an odd case where the device has not yet fully been
set up with its procedures yet. We want to make sure that
we catch this so we assume here that we are dealing with
the target device */
if (dev->icc_struct == NULL) {
/* Intializes the device structure. Not the profile though for index */
dev->icc_struct = gsicc_new_device_profile_array(dev->memory);
}
code = gsicc_set_device_profile_intent(dev, icc_intent, index);
} else {
code = dev_proc(dev, get_profile)(dev, &profile_struct);
if (profile_struct == NULL) {
/* Create now */
dev->icc_struct = gsicc_new_device_profile_array(dev->memory);
}
code = gsicc_set_device_profile_intent(dev, icc_intent, index);
}
}
static void
gx_default_put_icc(gs_param_string *icc_pro, gx_device * dev,
gsicc_profile_types_t index)
{
char *tempstr;
int code;
if (icc_pro->size == 0) return;
/* If this has not yet been set, then set it to the default.
I don't like doing this here but if we are in here trying to
set a profile for our device and if the proc for this has not
yet been set, we are going to lose the chance to set the profile.
Much like open, this proc should be set early on. I leave that
exercise to the device start-up experts */
fill_dev_proc(dev, get_profile, gx_default_get_profile);
if (icc_pro->size < gp_file_name_sizeof) {
tempstr = (char *) gs_alloc_bytes(dev->memory, icc_pro->size+1,
"gx_default_put_icc");
memcpy(tempstr, icc_pro->data, icc_pro->size);
/* Set last position to NULL. */
tempstr[icc_pro->size] = 0;
code = gsicc_init_device_profile_struct(dev, tempstr, index);
gs_free_object(dev->memory, tempstr, "gx_default_put_icc");
}
}
/* Set standard parameters. */
/* Note that setting the size or resolution closes the device. */
/* Window devices that don't want this to happen must temporarily */
/* set is_open to false before calling gx_default_put_params, */
/* and then taking appropriate action afterwards. */
int
gx_default_put_params(gx_device * dev, gs_param_list * plist)
{
int ecode = 0;
int code;
gs_param_name param_name;
gs_param_float_array hwra;
gs_param_int_array hwsa;
gs_param_float_array msa;
gs_param_float_array ma;
gs_param_float_array hwma;
gs_param_float_array mhwra;
gs_param_string_array scna;
int nci = dev->NumCopies;
int ncset = dev->NumCopies_set;
bool ignc = dev->IgnoreNumCopies;
bool ucc = dev->UseCIEColor;
gs_param_string icc_pro;
bool locksafe = dev->LockSafetyParams;
gs_param_float_array ibba;
bool ibbnull = false;
int colors = dev->color_info.num_components;
int depth = dev->color_info.depth;
int GrayValues = dev->color_info.max_gray + 1;
int RGBValues = dev->color_info.max_color + 1;
long ColorValues = (depth >= 32 ? -1 : 1L << depth);
int tab = dev->color_info.anti_alias.text_bits;
int gab = dev->color_info.anti_alias.graphics_bits;
int mpbm = dev->MaxPatternBitmap;
int rend_intent[NUM_DEVICE_PROFILES];
gs_param_string cms;
int leadingedge = dev->LeadingEdge;
int k;
bool devicegraytok = true;
bool usefastcolor = false;
if (dev->icc_struct != NULL) {
for (k = 0; k < NUM_DEVICE_PROFILES; k++) {
rend_intent[k] = dev->icc_struct->intent[k];
}
devicegraytok = dev->icc_struct->devicegraytok;
usefastcolor = dev->icc_struct->usefastcolor;
} else {
for (k = 0; k < NUM_DEVICE_PROFILES; k++) {
rend_intent[k] = gsPERCEPTUAL;
}
}
/*
* Template:
* BEGIN_ARRAY_PARAM(param_read_xxx_array, "pname", pxxa, size, pxxe) {
* ... check value if desired ...
* if (success)
* break;
* ... set ecode ...
* } END_ARRAY_PARAM(pxxa, pxxe);
*/
#define BEGIN_ARRAY_PARAM(pread, pname, pa, psize, e)\
BEGIN\
switch (code = pread(plist, (param_name = pname), &(pa))) {\
case 0:\
if ((pa).size != psize) {\
ecode = gs_note_error(gs_error_rangecheck);\
(pa).data = 0; /* mark as not filled */\
} else
#define END_ARRAY_PARAM(pa, e)\
goto e;\
default:\
ecode = code;\
e: param_signal_error(plist, param_name, ecode);\
case 1:\
(pa).data = 0; /* mark as not filled */\
}\
END
/*
* The actual value of LeadingEdge must be changed inside this routine,
* so that we can detect that it has been changed. Thus, instead of a
* device setting the value itself, it signals a request, which is
* now executed.
*/
if (leadingedge & LEADINGEDGE_REQ_BIT) {
leadingedge = (leadingedge & LEADINGEDGE_SET_MASK) |
((leadingedge >> LEADINGEDGE_REQ_VAL_SHIFT) & LEADINGEDGE_MASK);
}
/*
* The HWResolution, HWSize, and MediaSize parameters interact in
* the following way:
* 1. Setting HWResolution recomputes HWSize from MediaSize.
* 2. Setting HWSize recomputes MediaSize from HWResolution.
* 3. Setting MediaSize recomputes HWSize from HWResolution.
* If more than one parameter is being set, we apply these rules
* in the order 1, 2, 3. This does the right thing in the most
* common case of setting more than one parameter, namely,
* setting both HWResolution and HWSize.
*
* Changing of LeadingEdge is treated exactly the same as a
* change in HWResolution. In typical usage, MediaSize is
* short-edge (MediaSize[0] < MediaSize[1]), so if LeadingEdge
* is 1 or 3, then HWSize will become long-edge. For nonsquare
* resolutions, HWResolution[0] always corresponds with width
* (scan length), and [1] with height (number of scans).
*/
BEGIN_ARRAY_PARAM(param_read_float_array, "HWResolution", hwra, 2, hwre) {
if (hwra.data[0] <= 0 || hwra.data[1] <= 0)
ecode = gs_note_error(gs_error_rangecheck);
else
break;
} END_ARRAY_PARAM(hwra, hwre);
BEGIN_ARRAY_PARAM(param_read_int_array, "HWSize", hwsa, 2, hwsa) {
/* We need a special check to handle the nullpage device, */
/* whose size is legitimately [0 0]. */
if ((hwsa.data[0] <= 0 && hwsa.data[0] != dev->width) ||
(hwsa.data[1] <= 0 && hwsa.data[1] != dev->height)
)
ecode = gs_note_error(gs_error_rangecheck);
#define max_coord (max_fixed / fixed_1)
#if max_coord < max_int
else if (hwsa.data[0] > max_coord || hwsa.data[1] > max_coord)
ecode = gs_note_error(gs_error_limitcheck);
#endif
#undef max_coord
else
break;
} END_ARRAY_PARAM(hwsa, hwse);
{
int t;
code = param_read_int(plist, "LeadingEdge", &t);
if (code < 0) {
if (param_read_null(plist, "LeadingEdge") == 0) {
/* if param is null, clear explicitly-set flag */
leadingedge &= ~LEADINGEDGE_SET_MASK;
code = 0;
} else {
ecode = code;
}
} else if (code == 0) {
if (t < 0 || t > 3)
param_signal_error(plist, "LeadingEdge",
ecode = gs_error_rangecheck);
else
leadingedge = LEADINGEDGE_SET_MASK | t;
}
}
{
const float *res = (hwra.data == 0 ? dev->HWResolution : hwra.data);
#ifdef PAGESIZE_IS_MEDIASIZE
const float *data;
/* .MediaSize takes precedence over PageSize, so */
/* we read PageSize first. */
code = param_MediaSize(plist, "PageSize", res, &msa);
if (code < 0)
ecode = code;
/* Prevent data from being set to 0 if PageSize is specified */
/* but .MediaSize is not. */
data = msa.data;
code = param_MediaSize(plist, ".MediaSize", res, &msa);
if (code < 0)
ecode = code;
else if (msa.data == 0)
msa.data = data;
#else
code = param_MediaSize(plist, ".MediaSize", res, &msa);
if (code < 0)
ecode = code;
#endif
}
BEGIN_ARRAY_PARAM(param_read_float_array, "Margins", ma, 2, me) {
break;
} END_ARRAY_PARAM(ma, me);
BEGIN_ARRAY_PARAM(param_read_float_array, ".HWMargins", hwma, 4, hwme) {
break;
} END_ARRAY_PARAM(hwma, hwme);
/* MarginsHWResolution cannot be changed, only checked. */
BEGIN_ARRAY_PARAM(param_read_float_array, ".MarginsHWResolution", mhwra, 2, mhwre) {
if (mhwra.data[0] != dev->MarginsHWResolution[0] ||
mhwra.data[1] != dev->MarginsHWResolution[1]
)
ecode = gs_note_error(gs_error_rangecheck);
else
break;
} END_ARRAY_PARAM(mhwra, mhwre);
switch (code = param_read_bool(plist, (param_name = ".IgnoreNumCopies"), &ignc)) {
default:
ecode = code;
param_signal_error(plist, param_name, ecode);
case 0:
case 1:
break;
}
if (dev->NumCopies_set >= 0 &&
(*dev_proc(dev, get_page_device))(dev) != 0
) {
switch (code = param_read_int(plist, (param_name = "NumCopies"), &nci)) {
case 0:
if (nci < 0)
ecode = gs_error_rangecheck;
else {
ncset = 1;
break;
}
goto nce;
default:
if ((code = param_read_null(plist, param_name)) == 0) {
ncset = 0;
break;
}
ecode = code; /* can't be 1 */
nce:
param_signal_error(plist, param_name, ecode);
case 1:
break;
}
}
/* Set the directory first */
if ((code = param_read_string(plist, "OutputICCProfile", &icc_pro)) != 1) {
gx_default_put_icc(&icc_pro, dev, gsDEFAULTPROFILE);
}
/* Note, if a change is made to NUM_DEVICE_PROFILES we need to update
this with the name of the profile */
if ((code = param_read_string(plist, "GraphicICCProfile", &icc_pro)) != 1) {
gx_default_put_icc(&icc_pro, dev, gsGRAPHICPROFILE);
}
if ((code = param_read_string(plist, "ImageICCProfile", &icc_pro)) != 1) {
gx_default_put_icc(&icc_pro, dev, gsIMAGEPROFILE);
}
if ((code = param_read_string(plist, "TextICCProfile", &icc_pro)) != 1) {
gx_default_put_icc(&icc_pro, dev, gsTEXTPROFILE);
}
if ((code = param_read_string(plist, "ProofProfile", &icc_pro)) != 1) {
gx_default_put_icc(&icc_pro, dev, gsPROOFPROFILE);
}
if ((code = param_read_string(plist, "DeviceLinkProfile", &icc_pro)) != 1) {
gx_default_put_icc(&icc_pro, dev, gsLINKPROFILE);
}
if ((code = param_read_int(plist, (param_name = "RenderIntent"),
&(rend_intent[0]))) < 0) {
ecode = code;
param_signal_error(plist, param_name, ecode);
}
if ((code = param_read_int(plist, (param_name = "GraphicIntent"),
&(rend_intent[1]))) < 0) {
ecode = code;
param_signal_error(plist, param_name, ecode);
}
if ((code = param_read_int(plist, (param_name = "ImageIntent"),
&(rend_intent[2]))) < 0) {
ecode = code;
param_signal_error(plist, param_name, ecode);
}
if ((code = param_read_int(plist, (param_name = "TextIntent"),
&(rend_intent[3]))) < 0) {
ecode = code;
param_signal_error(plist, param_name, ecode);
}
if ((code = param_read_bool(plist, (param_name = "DeviceGrayToK"),
&devicegraytok)) < 0) {
ecode = code;
param_signal_error(plist, param_name, ecode);
}
if ((code = param_read_bool(plist, (param_name = "UseFastColor"),
&usefastcolor)) < 0) {
ecode = code;
param_signal_error(plist, param_name, ecode);
}
if ((code = param_read_bool(plist, (param_name = "UseCIEColor"), &ucc)) < 0) {
ecode = code;
param_signal_error(plist, param_name, ecode);
}
if ((code = param_anti_alias_bits(plist, "TextAlphaBits", &tab)) < 0)
ecode = code;
if ((code = param_anti_alias_bits(plist, "GraphicsAlphaBits", &gab)) < 0)
ecode = code;
if ((code = param_read_int(plist, "MaxPatternBitmap", &mpbm)) < 0)
ecode = code;
switch (code = param_read_bool(plist, (param_name = ".LockSafetyParams"), &locksafe)) {
case 0:
if (dev->LockSafetyParams && !locksafe)
code = gs_note_error(gs_error_invalidaccess);
else
break;
default:
ecode = code;
param_signal_error(plist, param_name, ecode);
case 1:
break;
}
/* Ignore parameters that only have meaning for printers. */
#define IGNORE_INT_PARAM(pname)\
{ int igni;\
switch ( code = param_read_int(plist, (param_name = pname), &igni) )\
{ default:\
ecode = code;\
param_signal_error(plist, param_name, ecode);\
case 0:\
case 1:\
break;\
}\
}
IGNORE_INT_PARAM("%MediaSource")
IGNORE_INT_PARAM("%MediaDestination")
switch (code = param_read_float_array(plist, (param_name = "ImagingBBox"), &ibba)) {
case 0:
if (ibba.size != 4 ||
ibba.data[2] < ibba.data[0] || ibba.data[3] < ibba.data[1]
)
ecode = gs_note_error(gs_error_rangecheck);
else
break;
goto ibbe;
default:
if ((code = param_read_null(plist, param_name)) == 0) {
ibbnull = true;
ibba.data = 0;
break;
}
ecode = code; /* can't be 1 */
ibbe:param_signal_error(plist, param_name, ecode);
case 1:
ibba.data = 0;
break;
}
/* Separation, DeviceN Color, and ProcessColorModel related parameters. */
{
const char * pcms = get_process_color_model_name(dev);
/* the device should have set a process model name at this point */
if ((code = param_check_string(plist, "ProcessColorModel", pcms, (pcms != NULL))) < 0)
ecode = code;
}
IGNORE_INT_PARAM("MaxSeparations")
if ((code = param_check_bool(plist, "Separations", false, true)) < 0)
ecode = code;
BEGIN_ARRAY_PARAM(param_read_name_array, "SeparationColorNames", scna, scna.size, scne) {
break;
} END_ARRAY_PARAM(scna, scne);
/* Now check nominally read-only parameters. */
if ((code = param_check_string(plist, "OutputDevice", dev->dname, true)) < 0)
ecode = code;
if ((code = param_check_string(plist, "Name", dev->dname, true)) < 0)
ecode = code;
if ((code = param_check_int(plist, "Colors", colors, true)) < 0)
ecode = code;
if ((code = param_check_int(plist, "BitsPerPixel", depth, true)) < 0)
ecode = code;
if ((code = param_check_int(plist, "GrayValues", GrayValues, true)) < 0)
ecode = code;
if ((code = param_check_long(plist, "PageCount", dev->PageCount, true)) < 0)
ecode = code;
if ((code = param_check_int(plist, "RedValues", RGBValues, true)) < 0)
ecode = code;
if ((code = param_check_int(plist, "GreenValues", RGBValues, true)) < 0)
ecode = code;
if ((code = param_check_int(plist, "BlueValues", RGBValues, true)) < 0)
ecode = code;
if ((code = param_check_long(plist, "ColorValues", ColorValues, true)) < 0)
ecode = code;
if (param_read_string(plist, "HWColorMap", &cms) != 1) {
byte palette[3 << 8];
if (param_HWColorMap(dev, palette))
code = param_check_bytes(plist, "HWColorMap", palette,
colors << depth, true);
else
code = param_check_bytes(plist, "HWColorMap", 0, 0, false);
if (code < 0)
ecode = code;
}
/* We must 'commit', in order to detect unknown parameters, */
/* even if there were errors. */
code = param_commit(plist);
if (ecode < 0)
return ecode;
if (code < 0)
return code;
/*
* Now actually make the changes. Changing resolution, rotation
* (through LeadingEdge) or page size requires closing the device,
* but changing margins or ImagingBBox does not. In order not to
* close and reopen the device unnecessarily, we check for
* replacing the values with the same ones.
*/
if (hwra.data != 0 &&
(dev->HWResolution[0] != hwra.data[0] ||
dev->HWResolution[1] != hwra.data[1])
) {
if (dev->is_open)
gs_closedevice(dev);
gx_device_set_resolution(dev, hwra.data[0], hwra.data[1]);
}
if ((leadingedge & LEADINGEDGE_MASK) !=
(dev->LeadingEdge & LEADINGEDGE_MASK)) {
/* If the LeadingEdge_set flag changes but the value of LeadingEdge
itself does not, don't close device and recompute page size. */
dev->LeadingEdge = leadingedge;
if (dev->is_open)
gs_closedevice(dev);
gx_device_set_resolution(dev, dev->HWResolution[0], dev->HWResolution[1]);
}
/* clear leadingedge request, preserve "set" flag */
dev->LeadingEdge &= LEADINGEDGE_MASK;
dev->LeadingEdge |= (leadingedge & LEADINGEDGE_SET_MASK);
if (hwsa.data != 0 &&
(dev->width != hwsa.data[0] ||
dev->height != hwsa.data[1])
) {
if (dev->is_open)
gs_closedevice(dev);
gx_device_set_width_height(dev, hwsa.data[0], hwsa.data[1]);
}
if (msa.data != 0 &&
(dev->MediaSize[0] != msa.data[0] ||
dev->MediaSize[1] != msa.data[1])
) {
if (dev->is_open)
gs_closedevice(dev);
gx_device_set_page_size(dev, msa.data[0], msa.data[1]);
}
if (ma.data != 0) {
dev->Margins[0] = ma.data[0];
dev->Margins[1] = ma.data[1];
}
if (hwma.data != 0) {
dev->HWMargins[0] = hwma.data[0];
dev->HWMargins[1] = hwma.data[1];
dev->HWMargins[2] = hwma.data[2];
dev->HWMargins[3] = hwma.data[3];
}
dev->NumCopies = nci;
dev->NumCopies_set = ncset;
dev->IgnoreNumCopies = ignc;
if (ibba.data != 0) {
dev->ImagingBBox[0] = ibba.data[0];
dev->ImagingBBox[1] = ibba.data[1];
dev->ImagingBBox[2] = ibba.data[2];
dev->ImagingBBox[3] = ibba.data[3];
dev->ImagingBBox_set = true;
} else if (ibbnull) {
dev->ImagingBBox_set = false;
}
dev->UseCIEColor = ucc;
dev->color_info.anti_alias.text_bits =
param_normalize_anti_alias_bits(max(dev->color_info.max_gray,
dev->color_info.max_color), tab);
dev->color_info.anti_alias.graphics_bits =
param_normalize_anti_alias_bits(max(dev->color_info.max_gray,
dev->color_info.max_color), gab);
dev->LockSafetyParams = locksafe;
dev->MaxPatternBitmap = mpbm;
gx_device_decache_colors(dev);
/* Take care of the rendering intents */
if (dev->icc_struct != NULL) {
gx_default_put_intent(rend_intent[0], dev, gsDEFAULTPROFILE);
gx_default_put_intent(rend_intent[1], dev, gsGRAPHICPROFILE);
gx_default_put_intent(rend_intent[2], dev, gsIMAGEPROFILE);
gx_default_put_intent(rend_intent[3], dev, gsTEXTPROFILE);
}
gx_default_put_graytok(devicegraytok, dev);
gx_default_put_usefastcolor(usefastcolor, dev);
return 0;
}
void
gx_device_request_leadingedge(gx_device *dev, int le_req)
{
dev->LeadingEdge = (dev->LeadingEdge & ~LEADINGEDGE_REQ_VAL) |
((le_req << LEADINGEDGE_REQ_VAL_SHIFT) & LEADINGEDGE_REQ_VAL) |
LEADINGEDGE_REQ_BIT;
}
/* Limit the anti-alias bit values to the maximum legal value for the
* current color depth.
*/
static int
param_normalize_anti_alias_bits( uint max_gray, int bits )
{
int max_bits = ilog2( max_gray + 1);
return (bits > max_bits ? max_bits : bits);
}
/* Read TextAlphaBits or GraphicsAlphaBits. */
static int
param_anti_alias_bits(gs_param_list * plist, gs_param_name param_name, int *pa)
{
int code = param_read_int(plist, param_name, pa);
switch (code) {
case 0:
switch (*pa) {
case 1: case 2: case 4:
return 0;
default:
code = gs_error_rangecheck;
}
default:
param_signal_error(plist, param_name, code);
case 1:
;
}
return code;
}
/* Read .MediaSize or, if supported as a synonym, PageSize. */
static int
param_MediaSize(gs_param_list * plist, gs_param_name pname,
const float *res, gs_param_float_array * pa)
{
gs_param_name param_name;
int ecode = 0;
int code;
BEGIN_ARRAY_PARAM(param_read_float_array, pname, *pa, 2, mse) {
float width_new = pa->data[0] * res[0] / 72;
float height_new = pa->data[1] * res[1] / 72;
if (width_new < 0 || height_new < 0)
ecode = gs_note_error(gs_error_rangecheck);
#define max_coord (max_fixed / fixed_1)
#if max_coord < max_int
else if (width_new > max_coord || height_new > max_coord)
ecode = gs_note_error(gs_error_limitcheck);
#endif
#undef max_coord
else
break;
} END_ARRAY_PARAM(*pa, mse);
return ecode;
}
/* Check that a nominally read-only parameter is being set to */
/* its existing value. */
static int
param_check_bool(gs_param_list * plist, gs_param_name pname, bool value,
bool is_defined)
{
int code;
bool new_value;
switch (code = param_read_bool(plist, pname, &new_value)) {
case 0:
if (is_defined && new_value == value)
break;
code = gs_note_error(gs_error_rangecheck);
goto e;
default:
if (param_read_null(plist, pname) == 0)
return 1;
e:param_signal_error(plist, pname, code);
case 1:
;
}
return code;
}
static int
param_check_long(gs_param_list * plist, gs_param_name pname, long value,
bool is_defined)
{
int code;
long new_value;
switch (code = param_read_long(plist, pname, &new_value)) {
case 0:
if (is_defined && new_value == value)
break;
code = gs_note_error(gs_error_rangecheck);
goto e;
default:
if (param_read_null(plist, pname) == 0)
return 1;
e:param_signal_error(plist, pname, code);
case 1:
;
}
return code;
}
static int
param_check_bytes(gs_param_list * plist, gs_param_name pname, const byte * str,
uint size, bool is_defined)
{
int code;
gs_param_string new_value;
switch (code = param_read_string(plist, pname, &new_value)) {
case 0:
if (is_defined && new_value.size == size &&
!memcmp((const char *)str, (const char *)new_value.data,
size)
)
break;
code = gs_note_error(gs_error_rangecheck);
goto e;
default:
if (param_read_null(plist, pname) == 0)
return 1;
e:param_signal_error(plist, pname, code);
case 1:
;
}
return code;
}
|