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 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892
|
/* 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.
*/
/* GS ICC link cache. Initial stubbing of functions. */
#include "std.h"
#include "stdpre.h"
#include "gstypes.h"
#include "gsmemory.h"
#include "gsstruct.h"
#include "scommon.h"
#include "gx.h"
#include "gpsync.h" /* for MAX_THREADS */
#include "gxgstate.h"
#include "smd5.h"
#include "gscms.h"
#include "gsicc_cms.h"
#include "gsicc_manage.h"
#include "gsicc_cache.h"
#include "gserrors.h"
#include "gsmalloc.h" /* Needed for named color structure allocation */
#include "string_.h" /* Needed for named color structure allocation */
#include "gxsync.h"
#include "gzstate.h"
#include "stdint_.h"
#include "assert_.h"
/*
* Note that the the external memory used to maintain
* links in the CMS is generally not visible to GS.
* For most CMS's the links are 33x33x33x33x4 bytes at worst
* for a CMYK to CMYK MLUT which is about 4.5Mb per link.
* If the link were matrix based it would be much much smaller.
* We will likely want to do at least have an estimate of the
* memory used based upon how the CMS is configured.
* This will be done later. For now, just limit the number
* of links.
*/
#define ICC_CACHE_MAXLINKS (MAX_THREADS*2) /* allow up to two active links per thread */
#define ICC_CACHE_NOT_VALID_COUNT 20 /* This should not really occur. If it does we need to take a closer look */
/* Static prototypes */
static gsicc_link_t * gsicc_alloc_link(gs_memory_t *memory, gsicc_hashlink_t hashcode);
static int gsicc_get_cspace_hash(gsicc_manager_t *icc_manager, gx_device *dev,
cmm_profile_t *profile, int64_t *hash);
static int gsicc_compute_linkhash(gsicc_manager_t *icc_manager, gx_device *dev,
cmm_profile_t *input_profile,
cmm_profile_t *output_profile,
gsicc_rendering_param_t *rendering_params,
gsicc_hashlink_t *hash);
static void gsicc_remove_link(gsicc_link_t *link);
static void gsicc_get_buff_hash(unsigned char *data, int64_t *hash, unsigned int num_bytes);
static void rc_gsicc_link_cache_free(gs_memory_t * mem, void *ptr_in, client_name_t cname);
/* Structure pointer information */
struct_proc_finalize(icc_link_finalize);
gs_private_st_ptrs3_final(st_icc_link, gsicc_link_t, "gsiccmanage_link",
icc_link_enum_ptrs, icc_link_reloc_ptrs, icc_link_finalize,
icc_link_cache, next, lock);
struct_proc_finalize(icc_linkcache_finalize);
gs_private_st_ptrs3_final(st_icc_linkcache, gsicc_link_cache_t, "gsiccmanage_linkcache",
icc_linkcache_enum_ptrs, icc_linkcache_reloc_ptrs, icc_linkcache_finalize,
head, lock, full_wait);
/* These are used to construct a hash for the ICC link based upon the
render parameters */
#define BP_SHIFT 0
#define REND_SHIFT 8
#define PRESERVE_SHIFT 16
/**
* gsicc_cache_new: Allocate a new ICC cache manager
* Return value: Pointer to allocated manager, or NULL on failure.
**/
gsicc_link_cache_t *
gsicc_cache_new(gs_memory_t *memory)
{
gsicc_link_cache_t *result;
/* We want this to be maintained in stable_memory. It should be be effected by the
save and restores */
memory = memory->stable_memory;
result = gs_alloc_struct(memory, gsicc_link_cache_t, &st_icc_linkcache,
"gsicc_cache_new");
if ( result == NULL )
return(NULL);
result->head = NULL;
result->num_links = 0;
result->cache_full = false;
result->memory = memory;
result->full_wait = NULL; /* Required so finaliser can work when result freed. */
rc_init_free(result, memory, 1, rc_gsicc_link_cache_free);
result->lock = gx_monitor_label(gx_monitor_alloc(memory),
"gsicc_cache_new");
if (result->lock == NULL) {
rc_decrement(result, "gsicc_cache_new");
return(NULL);
}
result->full_wait = gx_semaphore_label(gx_semaphore_alloc(memory),
"gsicc_cache_new");
if (result->full_wait == NULL) {
/* Don't free result->lock, as the finaliser for result does that! */
rc_decrement(result, "gsicc_cache_new");
return(NULL);
}
if_debug2m(gs_debug_flag_icc, memory,
"[icc] Allocating link cache = "PRI_INTPTR" memory = "PRI_INTPTR"\n",
(intptr_t)result, (intptr_t)result->memory);
return(result);
}
static void
rc_gsicc_link_cache_free(gs_memory_t * mem, void *ptr_in, client_name_t cname)
{
/* Ending the entire cache. The ref counts on all the links should be 0 */
gsicc_link_cache_t *link_cache = (gsicc_link_cache_t * ) ptr_in;
/* mem is unused, but we are passed it anyway by the ref counting mechanisms. */
assert(link_cache != NULL && mem == link_cache->memory);
if (link_cache == NULL)
return;
if_debug2m(gs_debug_flag_icc, link_cache->memory,
"[icc] Removing link cache = "PRI_INTPTR" memory = "PRI_INTPTR"\n",
(intptr_t)link_cache, (intptr_t)link_cache->memory);
/* NB: freeing the link_cache will call icc_linkcache_finalize */
gs_free_object(link_cache->memory, link_cache, "rc_gsicc_link_cache_free");
}
/* release the monitor of the link_cache when it is freed */
void
icc_linkcache_finalize(const gs_memory_t *mem, void *ptr)
{
gsicc_link_cache_t *link_cache = (gsicc_link_cache_t * ) ptr;
/* mem is unused, but we are passed it anyway by the ref counting mechanisms. */
assert(link_cache != NULL && mem == link_cache->memory);
if (link_cache == NULL)
return;
while (link_cache->head != NULL) {
if (link_cache->head->ref_count != 0) {
if_debug2m(gs_debug_flag_icc, link_cache->memory, "link at "PRI_INTPTR" being removed, but has ref_count = %d\n",
(intptr_t)link_cache->head, link_cache->head->ref_count);
link_cache->head->ref_count = 0; /* force removal */
}
gsicc_remove_link(link_cache->head);
}
#ifdef DEBUG
if (link_cache->num_links != 0) {
emprintf1(link_cache->memory, "num_links is %d, should be 0.\n", link_cache->num_links);
}
#endif
if (link_cache->rc.ref_count == 0) {
gx_monitor_free(link_cache->lock);
link_cache->lock = NULL;
gx_semaphore_free(link_cache->full_wait);
link_cache->full_wait = 0;
}
}
/* This is a special allocation for a link that is used by devices for
doing color management on post rendered data. It is not tied into the
profile cache like gsicc_alloc_link. Also it goes ahead and creates
the link, i.e. link creation is not delayed. */
gsicc_link_t *
gsicc_alloc_link_dev(gs_memory_t *memory, cmm_profile_t *src_profile,
cmm_profile_t *des_profile, gsicc_rendering_param_t *rendering_params)
{
gsicc_link_t *result;
int cms_flags = 0;
memory = memory->non_gc_memory;
result = (gsicc_link_t*)gs_alloc_byte_array(memory, 1,
sizeof(gsicc_link_t), "gsicc_alloc_link_dev");
if (result == NULL)
return NULL;
result->lock = gx_monitor_label(gx_monitor_alloc(memory),
"gsicc_link_new");
if (result->lock == NULL) {
gs_free_object(memory, result, "gsicc_alloc_link(lock)");
return NULL;
}
gx_monitor_enter(result->lock);
/* set up placeholder values */
result->is_monitored = false;
result->orig_procs.map_buffer = NULL;
result->orig_procs.map_color = NULL;
result->orig_procs.free_link = NULL;
result->next = NULL;
result->link_handle = NULL;
result->icc_link_cache = NULL;
result->procs.map_buffer = gscms_transform_color_buffer;
result->procs.map_color = gscms_transform_color;
result->procs.free_link = gscms_release_link;
result->hashcode.link_hashcode = 0;
result->hashcode.des_hash = 0;
result->hashcode.src_hash = 0;
result->hashcode.rend_hash = 0;
result->ref_count = 1;
result->includes_softproof = 0;
result->includes_devlink = 0;
result->is_identity = false;
result->valid = true;
result->memory = memory;
if_debug1m('^', result->memory, "[^]icclink "PRI_INTPTR" init = 1\n",
(intptr_t)result);
if (src_profile->profile_handle == NULL) {
src_profile->profile_handle = gsicc_get_profile_handle_buffer(
src_profile->buffer, src_profile->buffer_size, memory);
}
if (des_profile->profile_handle == NULL) {
des_profile->profile_handle = gsicc_get_profile_handle_buffer(
des_profile->buffer, des_profile->buffer_size, memory);
}
/* Check for problems.. */
if (src_profile->profile_handle == 0 || des_profile->profile_handle == 0) {
gs_free_object(memory, result, "gsicc_alloc_link_dev");
return NULL;
}
/* [0] is chunky, littleendian, noalpha, 16-in, 16-out */
result->link_handle = gscms_get_link(src_profile->profile_handle,
des_profile->profile_handle, rendering_params, cms_flags,
memory);
/* Check for problems.. */
if (result->link_handle == NULL) {
gs_free_object(memory, result, "gsicc_alloc_link_dev");
return NULL;
}
/* Check for identity transform */
if (gsicc_get_hash(src_profile) == gsicc_get_hash(des_profile))
result->is_identity = true;
/* Set the rest */
result->data_cs = src_profile->data_cs;
result->num_input = src_profile->num_comps;
result->num_output = des_profile->num_comps;
return result;
}
/* And the related release of the link */
void
gsicc_free_link_dev(gsicc_link_t *link)
{
if (link == NULL)
return;
link->procs.free_link(link);
gs_free_object(link->memory, link, "gsicc_free_link_dev");
}
static gsicc_link_t *
gsicc_alloc_link(gs_memory_t *memory, gsicc_hashlink_t hashcode)
{
gsicc_link_t *result;
/* The link has to be added in stable memory. We want them
to be maintained across the gsave and grestore process */
memory = memory->stable_memory;
result = gs_alloc_struct(memory, gsicc_link_t, &st_icc_link,
"gsicc_alloc_link");
if (result == NULL)
return NULL;
/* set up placeholder values */
result->is_monitored = false;
result->orig_procs.map_buffer = NULL;
result->orig_procs.map_color = NULL;
result->orig_procs.free_link = NULL;
result->next = NULL;
result->link_handle = NULL;
result->procs.map_buffer = gscms_transform_color_buffer;
result->procs.map_color = gscms_transform_color;
result->procs.free_link = gscms_release_link;
result->hashcode.link_hashcode = hashcode.link_hashcode;
result->hashcode.des_hash = 0;
result->hashcode.src_hash = 0;
result->hashcode.rend_hash = 0;
result->ref_count = 1; /* prevent it from being freed */
result->includes_softproof = 0;
result->includes_devlink = 0;
result->is_identity = false;
result->valid = false; /* not yet complete */
result->memory = memory;
result->lock = gx_monitor_label(gx_monitor_alloc(memory),
"gsicc_link_new");
if (result->lock == NULL) {
gs_free_object(memory, result, "gsicc_alloc_link(lock)");
return NULL;
}
gx_monitor_enter(result->lock); /* this link is owned by this thread until built and made "valid" */
if_debug1m('^', result->memory, "[^]icclink "PRI_INTPTR" init = 1\n",
(intptr_t)result);
return result;
}
static void
gsicc_set_link_data(gsicc_link_t *icc_link, void *link_handle,
gsicc_hashlink_t hashcode, gx_monitor_t *lock,
bool includes_softproof, bool includes_devlink,
bool pageneutralcolor, gsicc_colorbuffer_t data_cs)
{
gx_monitor_enter(lock); /* lock the cache while changing data */
icc_link->link_handle = link_handle;
gscms_get_link_dim(link_handle, &(icc_link->num_input), &(icc_link->num_output),
icc_link->memory);
icc_link->hashcode.link_hashcode = hashcode.link_hashcode;
icc_link->hashcode.des_hash = hashcode.des_hash;
icc_link->hashcode.src_hash = hashcode.src_hash;
icc_link->hashcode.rend_hash = hashcode.rend_hash;
icc_link->includes_softproof = includes_softproof;
icc_link->includes_devlink = includes_devlink;
if ( (hashcode.src_hash == hashcode.des_hash) &&
!includes_softproof && !includes_devlink) {
icc_link->is_identity = true;
} else {
icc_link->is_identity = false;
}
/* Set up for monitoring */
icc_link->data_cs = data_cs;
if (pageneutralcolor)
gsicc_mcm_set_link(icc_link);
/* release the lock of the link so it can now be used */
icc_link->valid = true;
gx_monitor_leave(icc_link->lock);
gx_monitor_leave(lock); /* done with updating, let everyone run */
}
static void
gsicc_link_free_contents(gsicc_link_t *icc_link)
{
icc_link->procs.free_link(icc_link);
gx_monitor_free(icc_link->lock);
icc_link->lock = NULL;
}
void
gsicc_link_free(gsicc_link_t *icc_link)
{
if (icc_link == NULL)
return;
gsicc_link_free_contents(icc_link);
gs_free_object(icc_link->memory, icc_link, "gsicc_link_free");
}
void
icc_link_finalize(const gs_memory_t *mem, void *ptr)
{
gsicc_link_t *icc_link = (gsicc_link_t * ) ptr;
gsicc_link_free_contents(icc_link);
}
static void
gsicc_mash_hash(gsicc_hashlink_t *hash)
{
hash->link_hashcode =
(hash->des_hash >> 1) ^ (hash->rend_hash) ^ (hash->src_hash);
}
static void
gsicc_set_hash(cmm_profile_t *profile)
{
if (!profile->hash_is_valid) {
int64_t hash;
gsicc_get_icc_buff_hash(profile->buffer, &hash, profile->buffer_size);
profile->hashcode = hash;
profile->hash_is_valid = true;
}
return;
}
int64_t
gsicc_get_hash(cmm_profile_t *profile)
{
if (!profile->hash_is_valid) {
int64_t hash;
gsicc_get_icc_buff_hash(profile->buffer, &hash, profile->buffer_size);
profile->hashcode = hash;
profile->hash_is_valid = true;
}
return profile->hashcode;
}
bool
gsicc_profiles_equal(cmm_profile_t *profile1, cmm_profile_t *profile2) {
if (profile1 == NULL || profile2 == NULL)
return false;
if (!(profile1->hash_is_valid)) {
gsicc_set_hash(profile1);
}
if (!(profile1->hash_is_valid)) {
gsicc_set_hash(profile2);
}
return profile1->hashcode == profile2->hashcode;
}
void
gsicc_get_icc_buff_hash(unsigned char *buffer, int64_t *hash, unsigned int buff_size)
{
gsicc_get_buff_hash(buffer, hash, buff_size);
}
static void
gsicc_get_buff_hash(unsigned char *data, int64_t *hash, unsigned int num_bytes)
{
gs_md5_state_t md5;
byte digest[16];
int k;
int64_t word1,word2,shift;
/* We could probably do something faster than this. But use this for now. */
gs_md5_init(&md5);
gs_md5_append(&md5, data, num_bytes);
gs_md5_finish(&md5, digest);
/* For now, xor this into 64 bit word */
word1 = 0;
word2 = 0;
shift = 0;
/* need to do it this way because of
potential word boundary issues */
for( k = 0; k<8; k++) {
word1 += ((int64_t) digest[k]) << shift;
word2 += ((int64_t) digest[k+8]) << shift;
shift += 8;
}
*hash = word1 ^ word2;
}
/* Compute a hash code for the current transformation case.
This just computes a 64bit xor of upper and lower portions of
md5 for the input, output
and rendering params structure. We may change this later */
static int
gsicc_compute_linkhash(gsicc_manager_t *icc_manager, gx_device *dev,
cmm_profile_t *input_profile,
cmm_profile_t *output_profile,
gsicc_rendering_param_t *rendering_params,
gsicc_hashlink_t *hash)
{
int code;
/* first get the hash codes for the color spaces */
code = gsicc_get_cspace_hash(icc_manager, dev, input_profile,
&(hash->src_hash));
if (code < 0)
return code;
code = gsicc_get_cspace_hash(icc_manager, dev, output_profile,
&(hash->des_hash));
if (code < 0)
return code;
/* now for the rendering paramaters, just use the word itself. At this
point in time, we only include the black point setting, the intent
and if we are preserving black. We don't differentiate at this time
with object type since the current CMM does not create different
links based upon this type setting. Other parameters such as cmm
and override ICC are used prior to a link creation and so should also
not factor into the link hash calculation */
hash->rend_hash = ((rendering_params->black_point_comp) << BP_SHIFT) +
((rendering_params->rendering_intent) << REND_SHIFT) +
((rendering_params->preserve_black) << PRESERVE_SHIFT);
/* for now, mash all of these into a link hash */
gsicc_mash_hash(hash);
return 0;
}
static int
gsicc_get_cspace_hash(gsicc_manager_t *icc_manager, gx_device *dev,
cmm_profile_t *cmm_icc_profile_data, int64_t *hash)
{
cmm_dev_profile_t *dev_profile;
cmm_profile_t *icc_profile;
gsicc_rendering_param_t render_cond;
int code;
if (cmm_icc_profile_data == NULL)
{
if (dev == NULL)
return -1;
code = dev_proc(dev, get_profile)(dev, &dev_profile);
if (code < 0)
return code;
gsicc_extract_profile(dev->graphics_type_tag, dev_profile,
&(icc_profile), &render_cond);
*hash = icc_profile->hashcode;
return 0;
}
if (cmm_icc_profile_data->hash_is_valid ) {
*hash = cmm_icc_profile_data->hashcode;
} else {
/* We need to compute for this color space */
gsicc_get_icc_buff_hash(cmm_icc_profile_data->buffer, hash,
cmm_icc_profile_data->buffer_size);
cmm_icc_profile_data->hashcode = *hash;
cmm_icc_profile_data->hash_is_valid = true;
}
return 0;
}
gsicc_link_t*
gsicc_findcachelink(gsicc_hashlink_t hash, gsicc_link_cache_t *icc_link_cache,
bool includes_proof, bool includes_devlink)
{
gsicc_link_t *curr, *prev;
int64_t hashcode = hash.link_hashcode;
int cache_loop = 0;
/* Look through the cache for the hashcode */
gx_monitor_enter(icc_link_cache->lock);
/* List scanning is fast, so we scan the entire list, this includes */
/* links that are currently unused, but still in the cache (zero_ref) */
curr = icc_link_cache->head;
prev = NULL;
while (curr != NULL ) {
if (curr->hashcode.link_hashcode == hashcode &&
includes_proof == curr->includes_softproof &&
includes_devlink == curr->includes_devlink) {
/* move this one to the front of the list hoping we will use it
again soon */
if (prev != NULL) {
/* if prev == NULL, curr is already the head */
prev->next = curr->next;
curr->next = icc_link_cache->head;
icc_link_cache->head = curr;
}
/* bump the ref_count since we will be using this one */
curr->ref_count++;
if_debug3m('^', curr->memory, "[^]%s "PRI_INTPTR" ++ => %d\n",
"icclink", (intptr_t)curr, curr->ref_count);
while (curr->valid == false) {
gx_monitor_leave(icc_link_cache->lock); /* exit to let other threads run briefly */
if (cache_loop > ICC_CACHE_NOT_VALID_COUNT) {
/* Clearly something is wrong. Return NULL.
File a bug report. */
emprintf(curr->memory, "Reached maximum invalid counts \n");
return NULL;
}
cache_loop++;
gx_monitor_enter(curr->lock); /* wait until we can acquire the lock */
gx_monitor_leave(curr->lock); /* it _should be valid now */
/* If it is still not valid, but we were able to lock, it means that the thread */
/* that was building it failed to be able to complete building it. Try this only
a limited number of times before we bail. */
if (curr->valid == false) {
if_debug1m(gs_debug_flag_icc, curr->memory, "link "PRI_INTPTR" lock released, but still not valid.\n", (intptr_t)curr); /* Breakpoint here */
}
gx_monitor_enter(icc_link_cache->lock); /* re-enter to loop and check */
}
gx_monitor_leave(icc_link_cache->lock);
return curr; /* success */
}
prev = curr;
curr = curr->next;
}
gx_monitor_leave(icc_link_cache->lock);
return NULL;
}
/* Remove link from cache. Notify CMS and free */
static void
gsicc_remove_link(gsicc_link_t *link)
{
gsicc_link_t *curr, *prev;
gsicc_link_cache_t *icc_link_cache = link->icc_link_cache;
if_debug2m(gs_debug_flag_icc, link->memory,
"[icc] Removing link = "PRI_INTPTR" memory = "PRI_INTPTR"\n",
(intptr_t)link, (intptr_t)link->memory);
/* NOTE: link->ref_count must be 0: assert ? */
gx_monitor_enter(icc_link_cache->lock);
if (link->ref_count != 0) {
if_debug2m(gs_debug_flag_icc, link->memory, "link at "PRI_INTPTR" being removed, but has ref_count = %d\n", (intptr_t)link, link->ref_count);
}
curr = icc_link_cache->head;
prev = NULL;
while (curr != NULL ) {
/* don't get rid of it if another thread has decided to use it */
if (curr == link && link->ref_count == 0) {
/* remove this one from the list */
if (prev == NULL)
icc_link_cache->head = curr->next;
else
prev->next = curr->next;
break;
}
prev = curr;
curr = curr->next;
}
/* if curr != link we didn't find it or another thread may have decided to */
/* use it (ref_count > 0). Skip freeing it if so. */
if (curr == link && link->ref_count == 0) {
icc_link_cache->num_links--; /* no longer in the cache */
if (icc_link_cache->cache_full) {
icc_link_cache->cache_full = false;
gx_semaphore_signal(icc_link_cache->full_wait); /* let a waiting thread run */
}
gx_monitor_leave(icc_link_cache->lock);
gsicc_link_free(link); /* outside link cache now. */
} else {
/* even if we didn't find the link to remove, unlock the cache */
gx_monitor_leave(icc_link_cache->lock);
}
}
static void
gsicc_get_srcprofile(gsicc_colorbuffer_t data_cs,
gs_graphics_type_tag_t graphics_type_tag,
cmm_srcgtag_profile_t *srcgtag_profile, cmm_profile_t **profile,
gsicc_rendering_param_t *render_cond)
{
(*profile) = NULL;
(*render_cond).rendering_intent = gsPERCEPTUAL;
(*render_cond).cmm = gsCMM_DEFAULT;
switch (graphics_type_tag & ~GS_DEVICE_ENCODES_TAGS) {
case GS_UNKNOWN_TAG:
case GS_UNTOUCHED_TAG:
default:
break;
case GS_VECTOR_TAG:
if (data_cs == gsRGB) {
(*profile) = srcgtag_profile->rgb_profiles[gsSRC_GRAPPRO];
*render_cond = srcgtag_profile->rgb_rend_cond[gsSRC_GRAPPRO];
}
else if (data_cs == gsCMYK) {
(*profile) = srcgtag_profile->cmyk_profiles[gsSRC_GRAPPRO];
*render_cond = srcgtag_profile->cmyk_rend_cond[gsSRC_GRAPPRO];
}
else if (data_cs == gsGRAY) {
(*profile) = srcgtag_profile->gray_profiles[gsSRC_GRAPPRO];
*render_cond = srcgtag_profile->gray_rend_cond[gsSRC_GRAPPRO];
}
break;
case GS_IMAGE_TAG:
if (data_cs == gsRGB) {
(*profile) = srcgtag_profile->rgb_profiles[gsSRC_IMAGPRO];
*render_cond = srcgtag_profile->rgb_rend_cond[gsSRC_IMAGPRO];
}
else if (data_cs == gsCMYK) {
(*profile) = srcgtag_profile->cmyk_profiles[gsSRC_IMAGPRO];
*render_cond = srcgtag_profile->cmyk_rend_cond[gsSRC_IMAGPRO];
}
else if (data_cs == gsGRAY) {
(*profile) = srcgtag_profile->gray_profiles[gsSRC_IMAGPRO];
*render_cond = srcgtag_profile->gray_rend_cond[gsSRC_IMAGPRO];
}
break;
case GS_TEXT_TAG:
if (data_cs == gsRGB) {
(*profile) = srcgtag_profile->rgb_profiles[gsSRC_TEXTPRO];
*render_cond = srcgtag_profile->rgb_rend_cond[gsSRC_TEXTPRO];
}
else if (data_cs == gsCMYK) {
(*profile) = srcgtag_profile->cmyk_profiles[gsSRC_TEXTPRO];
*render_cond = srcgtag_profile->cmyk_rend_cond[gsSRC_TEXTPRO];
}
else if (data_cs == gsGRAY) {
(*profile) = srcgtag_profile->gray_profiles[gsSRC_TEXTPRO];
*render_cond = srcgtag_profile->gray_rend_cond[gsSRC_TEXTPRO];
}
break;
}
}
gsicc_link_t*
gsicc_get_link(const gs_gstate *pgs1, gx_device *dev_in,
const gs_color_space *pcs_in,
gs_color_space *output_colorspace,
gsicc_rendering_param_t *rendering_params, gs_memory_t *memory)
{
cmm_profile_t *gs_input_profile;
cmm_profile_t *gs_srcgtag_profile = NULL;
cmm_profile_t *gs_output_profile;
gs_gstate *pgs = (gs_gstate *)pgs1;
gx_device *dev;
gsicc_rendering_param_t render_cond;
cmm_dev_profile_t *dev_profile;
int code;
bool devicegraytok;
gs_color_space *input_colorspace = (gs_color_space*) pcs_in;
if (dev_in == NULL) {
/* Get from the gs_gstate which is going to be a graphic state.
This only occurs for the other (non-ps/pdf) interpreters */
pgs = (gs_gstate*) pgs;
dev = pgs->device;
} else {
dev = dev_in;
}
if (input_colorspace->cmm_icc_profile_data == NULL) {
if (input_colorspace->icc_equivalent != NULL) {
gs_input_profile = input_colorspace->icc_equivalent->cmm_icc_profile_data;
} else {
/* Use default type */
gs_input_profile = gsicc_get_gscs_profile(input_colorspace,
pgs->icc_manager);
}
} else {
gs_input_profile = input_colorspace->cmm_icc_profile_data;
}
code = dev_proc(dev, get_profile)(dev, &dev_profile);
if (code < 0)
return NULL;
/* If present, use an graphic object defined source profile */
if (pgs->icc_manager != NULL &&
pgs->icc_manager->srcgtag_profile != NULL) {
if (gs_input_profile->data_cs == gsRGB
|| gs_input_profile->data_cs == gsCMYK
|| gs_input_profile->data_cs == gsGRAY) {
gsicc_get_srcprofile(gs_input_profile->data_cs,
dev->graphics_type_tag,
pgs->icc_manager->srcgtag_profile,
&(gs_srcgtag_profile), &render_cond);
if (gs_srcgtag_profile != NULL) {
/* In this case, the user is letting the source profiles
drive the color management. Let that set the
rendering intent and blackpoint compensation also as they
must know what they are doing. However, before we do
this we need to check if they want to overide
embedded source profiles. See if our profile is a
default one that came from DefaultRGB or DefaultCMYK
for example */
int csi;
csi = gsicc_get_default_type(gs_input_profile);
if (render_cond.override_icc ||
csi == gs_color_space_index_DeviceRGB ||
csi == gs_color_space_index_DeviceCMYK ||
csi == gs_color_space_index_DeviceGray) {
gs_input_profile = gs_srcgtag_profile;
(*rendering_params) = render_cond;
}
/* We also need to worry about the case when the source
profile is actually a device link profile. In this case
we can go ahead now and the our link transform as we
don't need to worry about a destination profile.
However, it is possible that someone could do another
device link profile associated with the device. */
if (gs_input_profile->isdevlink) {
/* OK. Go ahead and use this one. Note output profile
is not NULL so that we can compute a hash with out
special conditional logic */
rendering_params->rendering_intent =
render_cond.rendering_intent & gsRI_MASK;
rendering_params->black_point_comp =
render_cond.black_point_comp & gsBP_MASK;
return gsicc_get_link_profile(pgs, dev, gs_input_profile,
dev_profile->device_profile[GS_DEFAULT_DEVICE_PROFILE],
rendering_params, memory, false);
}
} else {
/* In this case we may be wanting for a "unmanaged color"
result. This is done by specifying "None" on the
particular line for that source object. Check if this
is what is desired. If it is, then return the link now.
Also need to worry about the replace case */
if (render_cond.cmm == gsCMM_NONE) {
gsicc_link_t *link;
link = gsicc_nocm_get_link(pgs, dev, gs_input_profile->num_comps);
/* Set the identity case if we are in that situation */
if (link != NULL) {
if (gs_input_profile->num_comps ==
dev_profile->device_profile[GS_DEFAULT_DEVICE_PROFILE]->num_comps) {
link->is_identity = true;
}
return link;
}
} else if (render_cond.cmm == gsCMM_REPLACE) {
return gsicc_rcm_get_link(pgs, dev,
gs_input_profile->data_cs);
/* Note that there is never an identity case */
}
}
}
}
if (output_colorspace != NULL) {
gs_output_profile = output_colorspace->cmm_icc_profile_data;
devicegraytok = false;
} else {
/* Use the device profile. Only use the rendering intent if it has
an override setting. Also, only use the blackpoint if overide_bp
is set. Note that this can conflict with intents set from the source
objects so the user needs to understand what options to set. */
code = dev_proc(dev, get_profile)(dev, &dev_profile);
if (code < 0)
return NULL;
/* Check for unmanaged color case */
if (gsicc_use_fast_color(gs_input_profile) > 0 && dev_profile->usefastcolor) {
/* Return a "link" from the source space to the device color space */
gsicc_link_t *link = gsicc_nocm_get_link(pgs, dev,
gs_input_profile->num_comps);
if (link != NULL) {
if (gs_input_profile->num_comps ==
dev_profile->device_profile[GS_DEFAULT_DEVICE_PROFILE]->num_comps) {
link->is_identity = true;
}
return link;
}
}
gsicc_extract_profile(dev->graphics_type_tag, dev_profile,
&(gs_output_profile), &render_cond);
/* Check if the incoming rendering intent was source based
(this can occur for high level images in the clist) in
that case we need to use the source ri and not the device one */
if (!(rendering_params->rendering_intent & gsRI_OVERRIDE)) {
/* No it was not. Check if our device profile RI was specified */
if (render_cond.rendering_intent != gsRINOTSPECIFIED) {
rendering_params->rendering_intent = render_cond.rendering_intent;
}
}
/* Similar for the black point compensation */
if (!(rendering_params->black_point_comp & gsBP_OVERRIDE)) {
if (render_cond.black_point_comp != gsBPNOTSPECIFIED) {
rendering_params->black_point_comp = render_cond.black_point_comp;
}
}
/* And the Black preservation */
if (!(rendering_params->preserve_black & gsKP_OVERRIDE)) {
if (render_cond.preserve_black != gsBKPRESNOTSPECIFIED) {
rendering_params->preserve_black = render_cond.preserve_black;
}
}
devicegraytok = dev_profile->devicegraytok;
}
/* If we are going from DeviceGray to DeviceCMYK and devicegraytok
is true then use the ps_gray and ps_cmyk profiles instead of these
profiles */
rendering_params->rendering_intent = rendering_params->rendering_intent & gsRI_MASK;
rendering_params->black_point_comp = rendering_params->black_point_comp & gsBP_MASK;
rendering_params->preserve_black = rendering_params->preserve_black & gsKP_MASK;
return gsicc_get_link_profile(pgs, dev, gs_input_profile, gs_output_profile,
rendering_params, memory, devicegraytok);
}
/* This operation of adding in a new link entry is actually shared amongst
different functions that can each add an entry. For example, entrys may
come from the CMM or they may come from the non color managed approach
(i.e. gsicc_nocm_get_link)
Returns true if link was found with that has, false if alloc fails.
*/
bool
gsicc_alloc_link_entry(gsicc_link_cache_t *icc_link_cache,
gsicc_link_t **ret_link, gsicc_hashlink_t hash,
bool include_softproof, bool include_devlink)
{
gs_memory_t *cache_mem = icc_link_cache->memory;
gsicc_link_t *link;
int retries = 0;
assert(cache_mem == cache_mem->stable_memory);
*ret_link = NULL;
/* First see if we can add a link */
/* TODO: this should be based on memory usage, not just num_links */
gx_monitor_enter(icc_link_cache->lock);
while (icc_link_cache->num_links >= ICC_CACHE_MAXLINKS) {
/* Look through the cache for first zero ref count to re-use that entry.
When ref counts go to zero, the icc_link will have been moved to
the end of the list, so the first we find is the 'oldest'.
If we get to the last entry we release the lock, set the cache_full
flag and wait on full_wait for some other thread to let this thread
run again after releasing a cache slot. Release the cache lock to
let other threads run and finish with (release) a cache entry.
*/
link = icc_link_cache->head;
while (link != NULL ) {
if (link->ref_count == 0) {
/* we will use this one */
if_debug3m('^', cache_mem, "[^]%s "PRI_INTPTR" ++ => %d\n",
"icclink", (intptr_t)link, link->ref_count);
break;
}
link = link->next;
}
if (link == NULL) {
icc_link_cache->cache_full = true;
/* unlock while waiting for a link to come available */
gx_monitor_leave(icc_link_cache->lock);
gx_semaphore_wait(icc_link_cache->full_wait);
/* repeat the findcachelink to see if some other thread has */
/* already started building the link we need */
*ret_link = gsicc_findcachelink(hash, icc_link_cache,
include_softproof, include_devlink);
/* Got a hit, return link. ref_count for the link was already bumped */
if (*ret_link != NULL)
return true;
gx_monitor_enter(icc_link_cache->lock); /* restore the lock */
/* we will re-test the num_links above while locked to insure */
/* that some other thread didn't grab the slot and max us out */
if (retries++ > 10)
return false;
} else {
/* Remove the zero ref_count link profile we found. */
/* Even if we remove this link, we may still be maxed out so*/
/* the outermost 'while' will check to make sure some other */
/* thread did not grab the one we remove. */
gsicc_remove_link(link);
}
}
/* insert an empty link that we will reserve so we can unlock while */
/* building the link contents. If successful, the entry will set */
/* the hash for the link, Set valid=false, and lock the profile */
(*ret_link) = gsicc_alloc_link(cache_mem, hash);
/* NB: the link returned will be have the lock owned by this thread */
/* the lock will be released when the link becomes valid. */
if (*ret_link) {
(*ret_link)->icc_link_cache = icc_link_cache;
(*ret_link)->next = icc_link_cache->head;
icc_link_cache->head = *ret_link;
icc_link_cache->num_links++;
}
/* unlock before returning */
gx_monitor_leave(icc_link_cache->lock);
return false; /* we didn't find it, but return a link to be filled */
}
/* This is the main function called to obtain a linked transform from the ICC
cache If the cache has the link ready, it will return it. If not, it will
request one from the CMS and then return it. We may need to do some cache
locking during this process to avoid multi-threaded issues (e.g. someone
deleting while someone is updating a reference count). Note that if the
source profile is a device link profile we have no output profile but
may still have a proofing or another device link profile to use */
gsicc_link_t*
gsicc_get_link_profile(const gs_gstate *pgs, gx_device *dev,
cmm_profile_t *gs_input_profile,
cmm_profile_t *gs_output_profile,
gsicc_rendering_param_t *rendering_params,
gs_memory_t *memory, bool devicegraytok)
{
gsicc_hashlink_t hash;
gsicc_link_t *link, *found_link;
gcmmhlink_t link_handle = NULL;
gsicc_manager_t *icc_manager = pgs->icc_manager;
gsicc_link_cache_t *icc_link_cache = pgs->icc_link_cache;
gs_memory_t *cache_mem = pgs->icc_link_cache->memory;
gcmmhprofile_t *cms_input_profile = NULL;
gcmmhprofile_t *cms_output_profile = NULL;
gcmmhprofile_t *cms_proof_profile = NULL;
gcmmhprofile_t *cms_devlink_profile = NULL;
int code;
bool include_softproof = false;
bool include_devicelink = false;
cmm_dev_profile_t *dev_profile;
cmm_profile_t *proof_profile = NULL;
cmm_profile_t *devlink_profile = NULL;
bool src_dev_link = gs_input_profile->isdevlink;
bool pageneutralcolor = false;
int cms_flags = 0;
/* Determine if we are using a soft proof or device link profile */
if (dev != NULL ) {
code = dev_proc(dev, get_profile)(dev, &dev_profile);
if (code < 0)
return NULL;
if (dev_profile != NULL) {
proof_profile = dev_profile->proof_profile;
devlink_profile = dev_profile->link_profile;
pageneutralcolor = dev_profile->pageneutralcolor;
}
/* If the source color is the same as the proofing color then we do not
need to apply the proofing color in this case. This occurs in cases
where we have a CMYK output intent profile, a Device CMYK color, and
are going out to an RGB device */
if (proof_profile != NULL ) {
if (proof_profile->hashcode == gs_input_profile->hashcode) {
proof_profile = NULL;
} else {
include_softproof = true;
}
}
if (devlink_profile != NULL) include_devicelink = true;
}
/* First compute the hash code for the incoming case. If the output color
space is NULL we will use the device profile for the output color space */
code = gsicc_compute_linkhash(icc_manager, dev, gs_input_profile,
gs_output_profile,
rendering_params, &hash);
if (code < 0)
return NULL;
/* Check the cache for a hit. Need to check if softproofing was used */
found_link = gsicc_findcachelink(hash, icc_link_cache, include_softproof,
include_devicelink);
/* Got a hit, return link (ref_count for the link was already bumped */
if (found_link != NULL) {
if_debug2m(gs_debug_flag_icc, memory,
"[icc] Found Link = "PRI_INTPTR", hash = %lld \n",
(intptr_t)found_link, (long long)hash.link_hashcode);
if_debug2m(gs_debug_flag_icc, memory,
"[icc] input_numcomps = %d, input_hash = %lld \n",
gs_input_profile->num_comps,
(long long)gs_input_profile->hashcode);
if_debug2m(gs_debug_flag_icc, memory,
"[icc] output_numcomps = %d, output_hash = %lld \n",
gs_output_profile->num_comps,
(long long)gs_output_profile->hashcode);
return found_link;
}
/* Before we do anything, check if we have a case where the source profile
is coming from the clist and we don't even want to be doing any color
managment */
if (gs_input_profile->profile_handle == NULL &&
gs_input_profile->buffer == NULL &&
gs_input_profile->dev != NULL) {
/* ICC profile should be in clist. This is the first call to it. Note that
the profiles are not really shared amongst threads like the links are.
Hence the memory is for the local thread's chunk */
cms_input_profile =
gsicc_get_profile_handle_clist(gs_input_profile,
gs_input_profile->memory);
gs_input_profile->profile_handle = cms_input_profile;
/* It is possible that we are not using color management
due to a setting forced from srcgtag object (the None option)
which has made its way though the clist in the clist imaging
code. In this case, the srcgtag_profile structure
which was part of the ICC manager is no longer available.
We also have the Replace option. */
if (gs_input_profile->rend_is_valid &&
gs_input_profile->rend_cond.cmm == gsCMM_NONE) {
link = gsicc_nocm_get_link(pgs, dev, gs_input_profile->num_comps);
/* Set the identity case if we are in that situation */
if (link != NULL) {
if (dev_profile != NULL && gs_input_profile->num_comps ==
dev_profile->device_profile[GS_DEFAULT_DEVICE_PROFILE]->num_comps) {
link->is_identity = true;
}
return link;
}
} else if (gs_input_profile->rend_is_valid &&
gs_input_profile->rend_cond.cmm == gsCMM_REPLACE) {
return gsicc_rcm_get_link(pgs, dev, gs_input_profile->data_cs);
/* Note that there is never an identity case for
this type. */
}
/* We may have a source profile that is a device link profile and
made its way through the clist. If so get things set up to
handle that properly. */
src_dev_link = gs_input_profile->isdevlink;
}
/* No link was found so lets create a new one if there is room. This will
usually return a link that is not yet valid, but may return a valid link
if another thread has already created it */
if (gsicc_alloc_link_entry(icc_link_cache, &link, hash, include_softproof,
include_devicelink))
return link;
if (link == NULL)
return NULL; /* error, couldn't allocate a link. Nothing to cleanup */
/* Here the link was new and the contents have valid=false and we */
/* own the lock for the link_profile. Build the profile, set valid */
/* to true and release the lock. */
/* Now compute the link contents */
cms_input_profile = gs_input_profile->profile_handle;
/* Check if the source was generated from a PS CIE color space. If yes,
then we need to make sure that the CMM does not do something like
force a white point mapping like lcms does. This is also the source
of the issue with the flower picture that has the hand made ICC
profile that is highly nonlinear at the whitepoint */
if (gsicc_profile_from_ps(gs_input_profile)) {
cms_flags = cms_flags | gscms_avoid_white_fix_flag(memory);
}
if (cms_input_profile == NULL) {
if (gs_input_profile->buffer != NULL) {
cms_input_profile =
gsicc_get_profile_handle_buffer(gs_input_profile->buffer,
gs_input_profile->buffer_size,
memory);
if (cms_input_profile == NULL) {
link->ref_count--;
goto icc_link_error;
}
gs_input_profile->profile_handle = cms_input_profile;
/* This *must* be a default profile that was not set up at start-up/
However it could be one from the icc creator code which does not
do an initialization at the time of creation from CalRGB etc. */
code = gsicc_initialize_default_profile(gs_input_profile);
if (code < 0) {
link->ref_count--;
goto icc_link_error;
}
} else {
/* Cant create the link. No profile present,
nor any defaults to use for this. */
link->ref_count--;
goto icc_link_error;
}
}
/* No need to worry about an output profile handle if our source is a
device link profile */
if (!src_dev_link) {
cms_output_profile = gs_output_profile->profile_handle;
}
if (cms_output_profile == NULL && !src_dev_link) {
if (gs_output_profile->buffer != NULL) {
cms_output_profile =
gsicc_get_profile_handle_buffer(gs_output_profile->buffer,
gs_output_profile->buffer_size,
memory);
gs_output_profile->profile_handle = cms_output_profile;
/* This *must* be a default profile that was not set up at start-up */
code = gsicc_initialize_default_profile(gs_output_profile);
if (code < 0) {
link->ref_count--;
goto icc_link_error;
}
} else {
/* See if we have a clist device pointer. */
if ( gs_output_profile->dev != NULL ) {
/* ICC profile should be in clist. This is
the first call to it. */
cms_output_profile =
gsicc_get_profile_handle_clist(gs_output_profile,
gs_output_profile->memory);
gs_output_profile->profile_handle = cms_output_profile;
} else {
/* Cant create the link. No profile present,
nor any defaults to use for this. */
link->ref_count--;
goto icc_link_error;
}
}
}
if (include_softproof) {
cms_proof_profile = proof_profile->profile_handle;
if (cms_proof_profile == NULL) {
if (proof_profile->buffer != NULL) {
cms_proof_profile =
gsicc_get_profile_handle_buffer(proof_profile->buffer,
proof_profile->buffer_size,
memory);
proof_profile->profile_handle = cms_proof_profile;
if (!gscms_is_threadsafe())
gx_monitor_enter(proof_profile->lock);
} else {
/* Cant create the link */
link->ref_count--;
goto icc_link_error;
}
}
}
if (include_devicelink) {
cms_devlink_profile = devlink_profile->profile_handle;
if (cms_devlink_profile == NULL) {
if (devlink_profile->buffer != NULL) {
cms_devlink_profile =
gsicc_get_profile_handle_buffer(devlink_profile->buffer,
devlink_profile->buffer_size,
memory);
devlink_profile->profile_handle = cms_devlink_profile;
if (!gscms_is_threadsafe())
gx_monitor_enter(devlink_profile->lock);
} else {
/* Cant create the link */
link->ref_count--;
goto icc_link_error;
}
}
}
/* Profile reading of same structure not thread safe in CMM */
if (!gscms_is_threadsafe()) {
gx_monitor_enter(gs_input_profile->lock);
if (!src_dev_link) {
gx_monitor_enter(gs_output_profile->lock);
}
}
/* We may have to worry about special handling for DeviceGray to
DeviceCMYK to ensure that Gray is mapped to K only. This is only
done once and then it is cached and the link used. Note that Adobe
appears to do this only when the source color space was DeviceGray.
For us, this requirement is meant by the test of
gs_input_profile->default_match == DEFAULT_GRAY */
if (!src_dev_link && gs_output_profile->data_cs == gsCMYK &&
gs_input_profile->data_cs == gsGRAY &&
gs_input_profile->default_match == DEFAULT_GRAY &&
pgs->icc_manager != NULL && devicegraytok) {
if (icc_manager->graytok_profile == NULL) {
assert(pgs->icc_manager->memory == pgs->icc_manager->memory->stable_memory);
icc_manager->graytok_profile =
gsicc_set_iccsmaskprofile(GRAY_TO_K, strlen(GRAY_TO_K),
pgs->icc_manager,
pgs->icc_manager->memory);
if (icc_manager->graytok_profile == NULL) {
/* Cant create the link */
link->ref_count--;
goto icc_link_error;
}
}
if (icc_manager->smask_profiles == NULL) {
code = gsicc_initialize_iccsmask(icc_manager);
}
cms_input_profile =
icc_manager->smask_profiles->smask_gray->profile_handle;
cms_output_profile =
icc_manager->graytok_profile->profile_handle;
/* Turn off bp compensation in this case as there is a bug in lcms */
rendering_params->black_point_comp = false;
cms_flags = 0; /* Turn off any flag setting */
}
/* Get the link with the proof and or device link profile */
if (include_softproof || include_devicelink || src_dev_link) {
link_handle = gscms_get_link_proof_devlink(cms_input_profile,
cms_proof_profile,
cms_output_profile,
cms_devlink_profile,
rendering_params,
src_dev_link, cms_flags,
cache_mem->non_gc_memory);
if (!gscms_is_threadsafe()) {
if (include_softproof) {
gx_monitor_leave(proof_profile->lock);
}
if (include_devicelink) {
gx_monitor_leave(devlink_profile->lock);
}
}
} else {
link_handle = gscms_get_link(cms_input_profile, cms_output_profile,
rendering_params, cms_flags,
cache_mem->non_gc_memory);
}
if (!gscms_is_threadsafe()) {
if (!src_dev_link) {
gx_monitor_leave(gs_output_profile->lock);
}
gx_monitor_leave(gs_input_profile->lock);
}
if (link_handle != NULL) {
if (gs_input_profile->data_cs == gsGRAY)
pageneutralcolor = false;
gsicc_set_link_data(link, link_handle, hash, icc_link_cache->lock,
include_softproof, include_devicelink, pageneutralcolor,
gs_input_profile->data_cs);
if_debug2m(gs_debug_flag_icc, cache_mem,
"[icc] New Link = "PRI_INTPTR", hash = %lld \n",
(intptr_t)link, (long long)hash.link_hashcode);
if_debug2m(gs_debug_flag_icc, cache_mem,
"[icc] input_numcomps = %d, input_hash = %lld \n",
gs_input_profile->num_comps,
(long long)gs_input_profile->hashcode);
if_debug2m(gs_debug_flag_icc, cache_mem,
"[icc] output_numcomps = %d, output_hash = %lld \n",
gs_output_profile->num_comps,
(long long)gs_output_profile->hashcode);
} else {
/* If other threads are waiting, we won't have set link->valid true. */
/* This could result in an infinite loop if other threads are waiting */
/* for it to be made valid. (see gsicc_findcachelink). */
link->ref_count--; /* this thread no longer using this link entry */
if_debug2m('^', link->memory, "[^]icclink "PRI_INTPTR" -- => %d\n",
(intptr_t)link, link->ref_count);
if (icc_link_cache->cache_full) {
icc_link_cache->cache_full = false;
gx_semaphore_signal(icc_link_cache->full_wait); /* let a waiting thread run */
}
gx_monitor_leave(link->lock);
goto icc_link_error;
}
return link;
icc_link_error:
/* Something went very wrong. Clean up so that the cache
does not maintain an invalid entry. Any other allocations
(e.g. profile handles) would get freed when the profiles
are freed */
gsicc_remove_link(link);
return NULL;
}
/* The following is used to transform a named color value at a particular tint
value to the output device values. This function is provided only as a
demonstration and will likely need to be altered and optimized for those wishing
to perform full spot color look-up support.
The object used to perform the transformation is typically
a look-up table that contains the spot color name and a CIELAB value for
100% colorant (it could also contain device values in the table).
It can be more complex where-by you have a 1-D lut that
provides CIELAB values or direct device values as a function of tint. In
such a case, the table would be interpolated to compute all possible tint values.
If CIELAB values are provided, they can be pushed through the
device profile using the CMM. In this particular demonstration, we simply
provide CIELAB for a few color names in the file
toolbin/color/named_color/named_color_table.txt .
The tint value is used to scale the CIELAB value from 100% colorant to a D50
whitepoint. The resulting CIELAB value is then pushed through the CMM to
obtain device values for the current device. The file named_colors.pdf
which is in toolbin/color/named_color/ contains these
spot colors and will enable the user to see how the code behaves. The named
color table is specified to ghostscript by the command line option
-sNamedProfile=./toolbin/color/named_color/named_color_table.txt (or with
full path name). If it is desired to have ghostscript compiled with the
named color table, it can be placed in the iccprofiles directory and then
build ghostscript with COMPILE_INITS=1. When specified the file contents
are pointed to by the buffer member variable of the device_named profile in
profile manager. When the first call occurs in here, the contents of the
buffer are parsed and placed into a custom stucture that is pointed to by
the profile pointer. Note that this pointer is not visible to the garbage
collector and should be allocated in non-gc memory as is demonstrated in
this sample. The structure elements are released when the profile is
destroyed through the call to gsicc_named_profile_release, which is set
as the value of the profile member variable release.
Note that there are calls defined in gsicc_littlecms.c that will create link
transforms between Named Color ICC profiles and the output device. Such
profiles are rarely used (at least I have not run across any yet) so the
code is currently not used. Also note that for those serious about named
color support, a cache as well as efficient table-look-up methods would
likely be important for performance.
Finally note that PANTONE is a registered trademark and PANTONE colors are a
licensed product of XRITE Inc. See http://www.pantone.com
for more information. Licensees of Pantone color libraries or similar
libraries should find it straight forward to interface. Pantone names are
referred to in named_color_table.txt and contained in the file named_colors.pdf.
!!!!IT WILL BE NECESSARY TO PERFORM THE PROPER DEALLOCATION
CLEAN-UP OF THE STRUCTURES WHEN rc_free_icc_profile OCCURS FOR THE NAMED
COLOR PROFILE!!!!!! See gsicc_named_profile_release below for an example.
This is set in the profile release member variable.
*/
/* Define the demo structure and function for named color look-up */
typedef struct gsicc_namedcolortable_s {
gsicc_namedcolor_t *named_color; /* The named color */
unsigned int number_entries; /* The number of entries */
gs_memory_t *memory;
} gsicc_namedcolortable_t;
/* Support functions for parsing buffer */
static int
get_to_next_line(char **buffptr, int *buffer_count)
{
while (1) {
if (**buffptr == ';') {
(*buffptr)++;
(*buffer_count)--;
return(0);
} else {
(*buffptr)++;
(*buffer_count)--;
}
if (*buffer_count <= 0) {
return -1;
}
}
}
/* Release the structures we allocated in gsicc_transform_named_color */
static void
gsicc_named_profile_release(void *ptr, gs_memory_t *memory)
{
gsicc_namedcolortable_t *namedcolor_table = (gsicc_namedcolortable_t*) ptr;
unsigned int num_entries;
gs_memory_t *mem;
int k;
gsicc_namedcolor_t *namedcolor_data;
if (namedcolor_table != NULL) {
mem = namedcolor_table->memory;
num_entries = namedcolor_table->number_entries;
namedcolor_data = namedcolor_table->named_color;
for (k = 0; k < num_entries; k++) {
gs_free(mem, namedcolor_data[k].colorant_name, 1,
namedcolor_data[k].name_size + 1,
"gsicc_named_profile_release (colorant_name)");
}
gs_free(mem, namedcolor_data, num_entries, sizeof(gsicc_namedcolor_t),
"gsicc_named_profile_release (namedcolor_data)");
gs_free(namedcolor_table->memory, namedcolor_table, 1,
sizeof(gsicc_namedcolortable_t),
"gsicc_named_profile_release (namedcolor_table)");
}
}
static int
create_named_profile(gs_memory_t *mem, cmm_profile_t *named_profile)
{
/* Create the structure that we will use in searching */
/* Note that we do this in non-GC memory since the
profile pointer is not GC'd */
gsicc_namedcolortable_t *namedcolor_table;
gsicc_namedcolor_t *namedcolor_data;
char *buffptr;
int buffer_count;
int count;
unsigned int num_entries;
int code;
int k, j;
char *pch, *temp_ptr, *last = NULL;
bool done;
int curr_name_size;
float lab[3];
namedcolor_table =
(gsicc_namedcolortable_t*)gs_malloc(mem, 1,
sizeof(gsicc_namedcolortable_t), "create_named_profile");
if (namedcolor_table == NULL)
return_error(gs_error_VMerror);
namedcolor_table->memory = mem;
/* Parse buffer and load the structure we will be searching */
buffptr = (char*)named_profile->buffer;
buffer_count = named_profile->buffer_size;
count = sscanf(buffptr, "%d", &num_entries);
if (num_entries < 1 || count == 0) {
gs_free(mem, namedcolor_table, 1, sizeof(gsicc_namedcolortable_t),
"create_named_profile");
return -1;
}
code = get_to_next_line(&buffptr, &buffer_count);
if (code < 0) {
gs_free(mem, namedcolor_table, 1, sizeof(gsicc_namedcolortable_t),
"create_named_profile");
return -1;
}
namedcolor_data =
(gsicc_namedcolor_t*)gs_malloc(mem, num_entries,
sizeof(gsicc_namedcolor_t), "create_named_profile");
if (namedcolor_data == NULL) {
gs_free(mem, namedcolor_table, num_entries,
sizeof(gsicc_namedcolortable_t), "create_named_profile");
return_error(gs_error_VMerror);
}
namedcolor_table->number_entries = num_entries;
namedcolor_table->named_color = namedcolor_data;
for (k = 0; k < num_entries; k++) {
if (k == 0) {
pch = gs_strtok(buffptr, ",;", &last);
} else {
pch = gs_strtok(NULL, ",;", &last);
}
/* Remove any /0d /0a stuff from start */
temp_ptr = pch;
done = 0;
while (!done) {
if (*temp_ptr == 0x0d || *temp_ptr == 0x0a) {
temp_ptr++;
} else {
done = 1;
}
}
curr_name_size = strlen(temp_ptr);
namedcolor_data[k].name_size = curr_name_size;
/* +1 for the null */
namedcolor_data[k].colorant_name =
(char*)gs_malloc(mem, 1, curr_name_size + 1,
"create_named_profile");
if (namedcolor_data[k].colorant_name == NULL) {
/* Free up all that has been allocated so far */
for (j = 0; j < k; j++) {
gs_free(mem, namedcolor_table, 1, namedcolor_data[j].name_size+1,
"create_named_profile");
}
gs_free(mem, namedcolor_data, num_entries, sizeof(gsicc_namedcolor_t),
"create_named_profile");
gs_free(mem, namedcolor_table, num_entries,
sizeof(gsicc_namedcolortable_t), "create_named_profile");
return_error(gs_error_VMerror);
}
strncpy(namedcolor_data[k].colorant_name, temp_ptr,
namedcolor_data[k].name_size + 1);
for (j = 0; j < 3; j++) {
pch = gs_strtok(NULL, ",;", &last);
count = sscanf(pch, "%f", &(lab[j]));
}
lab[0] = lab[0] * 65535 / 100.0;
lab[1] = (lab[1] + 128.0) * 65535 / 255;
lab[2] = (lab[2] + 128.0) * 65535 / 255;
for (j = 0; j < 3; j++) {
if (lab[j] > 65535) lab[j] = 65535;
if (lab[j] < 0) lab[j] = 0;
namedcolor_data[k].lab[j] = (unsigned short)lab[j];
}
}
/* Assign to the profile pointer */
named_profile->profile_handle = namedcolor_table;
named_profile->release = gsicc_named_profile_release;
return 0;
}
/* Check for support of named color at time of install of DeviceN or Sep color space.
This function returning false means that Process colorants (e.g. CMYK) will
not undergo color management. */
bool
gsicc_support_named_color(const gs_color_space *pcs, const gs_gstate *pgs)
{
cmm_profile_t *named_profile;
gsicc_namedcolortable_t *namedcolor_table;
unsigned int num_entries;
int k, code, i, num_comp, num_spots=0, num_process=0, num_other=0;
gs_color_space_index type = gs_color_space_get_index(pcs);
char **names = NULL;
byte *pname = NULL; /* Silence compiler warning */
uint name_size = 0; /* Silence compiler warning */
bool is_supported;
bool none_colorant;
/* Get the data for the named profile */
named_profile = pgs->icc_manager->device_named;
if (named_profile == NULL)
return false;
if (named_profile->buffer != NULL &&
named_profile->profile_handle == NULL) {
code = create_named_profile(pgs->memory->non_gc_memory, named_profile);
if (code < 0)
return false;
}
namedcolor_table =
(gsicc_namedcolortable_t*)named_profile->profile_handle;
num_entries = namedcolor_table->number_entries;
/* Get the color space specifics */
if (type == gs_color_space_index_DeviceN) {
names = pcs->params.device_n.names;
num_comp = pcs->params.device_n.num_components;
} else if (type == gs_color_space_index_Separation) {
pname = (byte *)pcs->params.separation.sep_name;
name_size = strlen(pcs->params.separation.sep_name);
num_comp = 1;
} else
return false;
/* Step through the color space colorants */
for (i = 0; i < num_comp; i++) {
if (type == gs_color_space_index_DeviceN) {
pname = (byte *)names[i];
name_size = strlen(names[i]);
}
none_colorant = (strncmp((char*)pname, "None", name_size) == 0);
/* Classify */
if (none_colorant ||
strncmp((char *)pname, "All", name_size) == 0) {
num_other++;
} else {
if (strncmp((char *)pname, "Cyan", name_size) == 0 ||
strncmp((char *)pname, "Magenta", name_size) == 0 ||
strncmp((char *)pname, "Yellow", name_size) == 0 ||
strncmp((char *)pname, "Black", name_size) == 0) {
num_process++;
} else {
num_spots++;
}
}
/* Check if the colorant is supported */
is_supported = false;
/* If we have a none colorant name in the DeviceN list, just ignore it */
if (none_colorant && type == gs_color_space_index_DeviceN)
is_supported = true;
else {
for (k = 0; k < num_entries; k++) {
if (name_size == namedcolor_table->named_color[k].name_size) {
if (strncmp((const char*)namedcolor_table->named_color[k].colorant_name,
(const char*)pname, name_size) == 0) {
is_supported = true;
break;
}
}
}
}
if (!is_supported)
return false;
}
/* If we made it this far, all the individual colorants are supported.
If the names contained no spots, then let standard color management
processing occur. It may be that some applications want standard
processing in other cases. For example, [Cyan Magenta Varnish] to
a tiffsep-like device one may want color management to occur for the
Cyan and Magenta but Varnish to pass to the separation device unmolested.
You will then want to add "Varnish" to the list of names in the above test
for the Process colorants of Cyan, Magenta, Yellow and Black to avoid
"Varnish" being counted as a spot here */
if (num_spots == 0)
return false;
return true;
}
/* Function returns -1 if a name is not found. Otherwise it will transform
the named colors and return 0 */
int
gsicc_transform_named_color(const float tint_values[],
gsicc_namedcolor_t color_names[],
uint num_names,
gx_color_value device_values[],
const gs_gstate *pgs, gx_device *dev,
cmm_profile_t *gs_output_profile,
gsicc_rendering_param_t *rendering_params)
{
unsigned int num_entries;
cmm_profile_t *named_profile;
gsicc_namedcolortable_t *namedcolor_table;
int num_nonnone_names;
uint k,j,n;
int code;
bool found_match;
unsigned short psrc[GS_CLIENT_COLOR_MAX_COMPONENTS];
unsigned short psrc_cm[GS_CLIENT_COLOR_MAX_COMPONENTS];
unsigned short *psrc_temp;
unsigned short white_lab[3] = {65535, 32767, 32767};
gsicc_link_t *icc_link;
cmm_profile_t *curr_output_profile;
gsicc_rendering_param_t render_cond;
cmm_dev_profile_t *dev_profile;
int indices[GS_CLIENT_COLOR_MAX_COMPONENTS];
gs_memory_t *nongc_mem = pgs->memory->non_gc_memory;
/* Set indices to avoid use of uninitialized index. It is actually not
possible to access them using real data but someone could perhaps
be malicious and cause a problem */
memset(&(indices[0]), 0, sizeof(indices));
/* Check if the data that we have has already been generated. */
if (pgs->icc_manager != NULL) {
if (pgs->icc_manager->device_named != NULL) {
named_profile = pgs->icc_manager->device_named;
if (named_profile->buffer != NULL &&
named_profile->profile_handle == NULL) {
code = create_named_profile(nongc_mem, named_profile);
if (code < 0)
return -1;
}
namedcolor_table =
(gsicc_namedcolortable_t*)named_profile->profile_handle;
num_entries = namedcolor_table->number_entries;
/* Go through each of our spot names, getting the color value for
each one. */
num_nonnone_names = num_names;
for (n = 0; n < num_names; n++) {
/* Search our structure for the color name. Ignore the None
colorant names. All is a special case that someone may
want to detect and do some special handling for. In this
particular example we would punt with All and let the default
methods handle it */
found_match = false;
if (strncmp("None", (const char *)color_names[n].colorant_name,
color_names[n].name_size) == 0) {
num_nonnone_names--;
} else {
/* Colorant was not None */
for (k = 0; k < num_entries; k++) {
if (color_names[n].name_size ==
namedcolor_table->named_color[k].name_size) {
if (strncmp((const char *)namedcolor_table->named_color[k].colorant_name,
(const char *)color_names[n].colorant_name, color_names[n].name_size) == 0) {
found_match = true;
break;
}
}
}
if (found_match) {
indices[n] = k;
} else {
/* We do not know this colorant, return -1 */
return -1;
}
}
}
if (num_nonnone_names < 1)
return -1; /* No non-None colorants. */
/* We have all the colorants. Lets go through and see if we can
make something that looks like a merge of the various ones */
/* Apply tint, blend LAB values. Note that we may have wanted to
check if we even want to do this. It is possible that the
device directly supports this particular colorant. One may
want to check the alt tint transform boolean */
/* Start with white */
for (j = 0; j < 3; j++) {
psrc[j] = white_lab[j];
}
for (n = 0; n < num_nonnone_names; n++) {
/* Blend with the current color based upon current tint value */
for (j = 0; j < 3; j++) {
psrc[j] = (unsigned short)
((float) namedcolor_table->named_color[indices[n]].lab[j] * tint_values[n]
+ (float) psrc[j] * (1.0 - tint_values[n]));
}
}
/* Push LAB value through CMM to get CMYK device values */
/* Note that there are several options here. You could us an NCLR
icc profile to compute the device colors that you want. For,
example if the output device had an NCLR profile.
However, what you MUST do here is set ALL the device values.
Hence, below we initialize all of them to zero and in this
particular example, set only the ones that were output from
the device profile */
if ( gs_output_profile != NULL ) {
curr_output_profile = gs_output_profile;
} else {
/* Use the device profile. Note if one was not set for the
device, the default CMYK profile is used. Note that
if we specified and NCLR profile it will be used here */
code = dev_proc(dev, get_profile)(dev, &dev_profile);
gsicc_extract_profile(dev->graphics_type_tag,
dev_profile, &(curr_output_profile),
&render_cond);
}
icc_link = gsicc_get_link_profile(pgs, dev,
pgs->icc_manager->lab_profile,
curr_output_profile, rendering_params,
pgs->memory, false);
if (icc_link->is_identity) {
psrc_temp = &(psrc[0]);
} else {
/* Transform the color */
psrc_temp = &(psrc_cm[0]);
(icc_link->procs.map_color)(dev, icc_link, psrc, psrc_temp, 2);
}
gsicc_release_link(icc_link);
/* Clear out ALL the color values */
for (k = 0; k < dev->color_info.num_components; k++){
device_values[k] = 0;
}
/* Set only the values that came from the profile. By default
this would generally be just CMYK values. For the equivalent
color computation case it certainly will be. If someone
specified an NCLR profile it could be more. Note that if an
NCLR profile is being used we will want to make sure the colorant
order is correct */
for (k = 0; k < curr_output_profile->num_comps; k++){
device_values[k] = psrc_temp[k];
}
return 0;
}
}
return -1; /* Color not found */
}
/* Used by gs to notify the ICC manager that we are done with this link for now */
/* This may release elements waiting on an icc_link_cache slot */
void
gsicc_release_link(gsicc_link_t *icclink)
{
gsicc_link_cache_t *icc_link_cache;
if (icclink == NULL)
return;
icc_link_cache = icclink->icc_link_cache;
gx_monitor_enter(icc_link_cache->lock);
if_debug2m('^', icclink->memory, "[^]icclink "PRI_INTPTR" -- => %d\n",
(intptr_t)icclink, icclink->ref_count - 1);
/* Decrement the reference count */
if (--(icclink->ref_count) == 0) {
gsicc_link_t *curr, *prev;
/* Find link in cache, and move it to the end of the list. */
/* This way zero ref_count links are found LRU first */
curr = icc_link_cache->head;
prev = NULL;
while (curr != icclink) {
prev = curr;
curr = curr->next;
};
if (prev == NULL) {
/* this link was the head */
icc_link_cache->head = curr->next;
} else {
prev->next = curr->next; /* de-link this one */
}
/* Find the first zero-ref entry on the list */
curr = icc_link_cache->head;
prev = NULL;
while (curr != NULL && curr->ref_count > 0) {
prev = curr;
curr = curr->next;
}
/* Found where to link this one into the tail of the list */
if (prev == NULL) {
icc_link_cache->head = icclink;
icclink->next = icc_link_cache->head->next;
} else {
/* link this one in here */
prev->next = icclink;
icclink->next = curr;
}
/* Finally, if some thread was waiting because the cache was full, let it run */
if (icc_link_cache->cache_full) {
icc_link_cache->cache_full = false;
gx_semaphore_signal(icc_link_cache->full_wait); /* let a waiting thread run */
}
}
gx_monitor_leave(icc_link_cache->lock);
}
/* Used to initialize the buffer description prior to color conversion */
void
gsicc_init_buffer(gsicc_bufferdesc_t *buffer_desc, unsigned char num_chan, unsigned char bytes_per_chan,
bool has_alpha, bool alpha_first, bool is_planar, int plane_stride, int row_stride,
int num_rows, int pixels_per_row)
{
buffer_desc->num_chan = num_chan;
buffer_desc->bytes_per_chan = bytes_per_chan;
buffer_desc->has_alpha = has_alpha;
buffer_desc->alpha_first = alpha_first;
buffer_desc->is_planar = is_planar;
buffer_desc->plane_stride = plane_stride;
buffer_desc->row_stride = row_stride;
buffer_desc->num_rows = num_rows;
buffer_desc->pixels_per_row = pixels_per_row;
buffer_desc->endian_swap = false;
}
/* Return the proper component numbers based upon the profiles of the device.
This is in here since it is usually called when creating and using a link
from the link cache. */
int
gsicc_get_device_profile_comps(const cmm_dev_profile_t *dev_profile)
{
if (dev_profile->link_profile == NULL) {
return dev_profile->device_profile[GS_DEFAULT_DEVICE_PROFILE]->num_comps;
} else {
return dev_profile->link_profile->num_comps_out;
}
}
|