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 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958
|
/*
*
* Copyright (C) 1994-2010, OFFIS e.V.
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation were developed by
*
* OFFIS e.V.
* R&D Division Health
* Escherweg 2
* D-26121 Oldenburg, Germany
*
*
* Module: dcmdata
*
* Author: Andrew Hewett
*
* Purpose:
* Definitions of "well known" DICOM Unique Indentifiers,
* routines for finding and creating UIDs.
*
* Last Update: $Author: joergr $
* Update Date: $Date: 2010-11-05 10:26:08 $
* CVS/RCS Revision: $Revision: 1.89 $
* Status: $State: Exp $
*
* CVS/RCS Log at end of file
*
*/
#include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */
#ifdef HAVE_WINDOWS_H
#include <windows.h> /* this includes either winsock.h or winsock2.h */
#else
#ifdef HAVE_WINSOCK_H
#include <winsock.h> /* include winsock.h directly i.e. on MacOS */
#endif
#endif
#define INCLUDE_CSTDLIB
#define INCLUDE_CSTDIO
#define INCLUDE_CSTRING
#define INCLUDE_CTIME
#define INCLUDE_LIBC
#define INCLUDE_UNISTD
#include "dcmtk/ofstd/ofstdinc.h"
BEGIN_EXTERN_C
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_SYS_SOCKET_H
#ifndef DCOMPAT_SYS_SOCKET_H_
#define DCOMPAT_SYS_SOCKET_H_
/* some systems don't protect sys/socket.h (e.g. DEC Ultrix) */
#include <sys/socket.h>
#endif
#endif
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h>
#endif
#ifdef HAVE_NETDB_H
#include <netdb.h>
#endif
#ifndef HAVE_WINDOWS_H
#ifndef HAVE_PROTOTYPE_GETTIMEOFDAY
/* Ultrix has gettimeofday() but no prototype in the header files */
int gettimeofday(struct timeval *tp, void *);
#endif
#endif
END_EXTERN_C
#include "dcmtk/ofstd/ofstream.h"
#include "dcmtk/dcmdata/dcuid.h"
#include "dcmtk/dcmdata/dctypes.h"
#include "dcmtk/ofstd/ofthread.h"
#include "dcmtk/ofstd/ofcrc32.h"
#include "dcmtk/ofstd/ofdefine.h"
#include "dcmtk/ofstd/ofstd.h"
struct UIDNameMap {
const char* uid;
const char* name;
};
//
// It is very important that the names of the UIDs may not use the following
// characters: space ( ) [ ], = < >
static const UIDNameMap uidNameMap[] = {
{ UID_StandardApplicationContext, "StandardApplicationContext" },
// Transfer Syntax
{ UID_LittleEndianImplicitTransferSyntax, "LittleEndianImplicit" },
{ UID_LittleEndianExplicitTransferSyntax, "LittleEndianExplicit" },
{ UID_BigEndianExplicitTransferSyntax, "BigEndianExplicit" },
{ UID_JPEGProcess1TransferSyntax, "JPEGBaseline" },
{ UID_JPEGProcess2_4TransferSyntax, "JPEGExtended:Process2+4" },
{ UID_JPEGProcess3_5TransferSyntax, "JPEGExtended:Process3+5" },
{ UID_JPEGProcess6_8TransferSyntax, "JPEGSpectralSelection:Non-hierarchical:Process6+8" },
{ UID_JPEGProcess7_9TransferSyntax, "JPEGSpectralSelection:Non-hierarchical:Process7+9" },
{ UID_JPEGProcess10_12TransferSyntax, "JPEGFullProgression:Non-hierarchical:Process10+12" },
{ UID_JPEGProcess11_13TransferSyntax, "JPEGFullProgression:Non-hierarchical:Process11+13" },
{ UID_JPEGProcess14TransferSyntax, "JPEGLossless:Non-hierarchical:Process14" },
{ UID_JPEGProcess15TransferSyntax, "JPEGLossless:Non-hierarchical:Process15" },
{ UID_JPEGProcess16_18TransferSyntax, "JPEGExtended:Hierarchical:Process16+18" },
{ UID_JPEGProcess17_19TransferSyntax, "JPEGExtended:Hierarchical:Process17+19" },
{ UID_JPEGProcess20_22TransferSyntax, "JPEGSpectralSelection:Hierarchical:Process20+22" },
{ UID_JPEGProcess21_23TransferSyntax, "JPEGSpectralSelection:Hierarchical:Process21+23" },
{ UID_JPEGProcess24_26TransferSyntax, "JPEGFullProgression:Hierarchical:Process24+26" },
{ UID_JPEGProcess25_27TransferSyntax, "JPEGFullProgression:Hierarchical:Process25+27" },
{ UID_JPEGProcess28TransferSyntax, "JPEGLossless:Hierarchical:Process28" },
{ UID_JPEGProcess29TransferSyntax, "JPEGLossless:Hierarchical:Process29" },
{ UID_JPEGProcess14SV1TransferSyntax, "JPEGLossless:Non-hierarchical-1stOrderPrediction" },
{ UID_JPEGLSLosslessTransferSyntax, "JPEGLSLossless" },
{ UID_JPEGLSLossyTransferSyntax, "JPEGLSLossy" },
{ UID_RLELosslessTransferSyntax, "RLELossless" },
{ UID_DeflatedExplicitVRLittleEndianTransferSyntax, "DeflatedLittleEndianExplicit" },
{ UID_JPEG2000LosslessOnlyTransferSyntax, "JPEG2000LosslessOnly" },
{ UID_JPEG2000TransferSyntax, "JPEG2000" },
{ UID_MPEG2MainProfileAtMainLevelTransferSyntax, "MPEG2MainProfile@MainLevel" },
{ UID_MPEG2MainProfileAtHighLevelTransferSyntax, "MPEG2MainProfile@HighLevel" },
{ UID_JPEG2000Part2MulticomponentImageCompressionLosslessOnlyTransferSyntax, "JPEG2000MulticomponentLosslessOnly" },
{ UID_JPEG2000Part2MulticomponentImageCompressionTransferSyntax, "JPEG2000Multicomponent" },
{ UID_JPIPReferencedTransferSyntax, "JPIPReferenced" },
{ UID_JPIPReferencedDeflateTransferSyntax, "JPIPReferencedDeflate" },
{ UID_RFC2557MIMEEncapsulationTransferSyntax, "RFC2557MIMEEncapsulation" },
{ UID_XMLEncodingTransferSyntax, "XMLEncoding" },
// Storage
{ UID_AmbulatoryECGWaveformStorage, "AmbulatoryECGWaveformStorage" },
{ UID_ArterialPulseWaveformStorage, "ArterialPulseWaveformStorage" },
{ UID_AutorefractionMeasurementsStorage, "AutorefractionMeasurementsStorage" },
{ UID_BasicStructuredDisplayStorage, "BasicStructuredDisplayStorage" },
{ UID_BasicTextSRStorage, "BasicTextSRStorage" },
{ UID_BasicVoiceAudioWaveformStorage, "BasicVoiceAudioWaveformStorage" },
{ UID_BlendingSoftcopyPresentationStateStorage, "BlendingSoftcopyPresentationStateStorage" },
{ UID_BreastTomosynthesisImageStorage, "BreastTomosynthesisImageStorage" },
{ UID_CardiacElectrophysiologyWaveformStorage, "CardiacElectrophysiologyWaveformStorage" },
{ UID_ChestCADSRStorage, "ChestCADSRStorage" },
{ UID_ColonCADSRStorage, "ColonCADSRStorage" },
{ UID_ColorSoftcopyPresentationStateStorage, "ColorSoftcopyPresentationStateStorage" },
{ UID_ComprehensiveSRStorage, "ComprehensiveSRStorage" },
{ UID_ComputedRadiographyImageStorage, "ComputedRadiographyImageStorage" },
{ UID_CTImageStorage, "CTImageStorage" },
{ UID_DeformableSpatialRegistrationStorage, "DeformableSpatialRegistrationStorage" },
{ UID_DigitalIntraOralXRayImageStorageForPresentation, "DigitalIntraOralXRayImageStorageForPresentation" },
{ UID_DigitalIntraOralXRayImageStorageForProcessing, "DigitalIntraOralXRayImageStorageForProcessing" },
{ UID_DigitalMammographyXRayImageStorageForPresentation, "DigitalMammographyXRayImageStorageForPresentation" },
{ UID_DigitalMammographyXRayImageStorageForProcessing, "DigitalMammographyXRayImageStorageForProcessing" },
{ UID_DigitalXRayImageStorageForPresentation, "DigitalXRayImageStorageForPresentation" },
{ UID_DigitalXRayImageStorageForProcessing, "DigitalXRayImageStorageForProcessing" },
{ UID_EncapsulatedCDAStorage, "EncapsulatedCDAStorage" },
{ UID_EncapsulatedPDFStorage, "EncapsulatedPDFStorage" },
{ UID_EnhancedCTImageStorage, "EnhancedCTImageStorage" },
{ UID_EnhancedMRColorImageStorage, "EnhancedMRColorImageStorage" },
{ UID_EnhancedMRImageStorage, "EnhancedMRImageStorage" },
{ UID_EnhancedPETImageStorage, "EnhancedPETImageStorage" },
{ UID_EnhancedSRStorage, "EnhancedSRStorage" },
{ UID_EnhancedUSVolumeStorage, "EnhancedUSVolumeStorage" },
{ UID_EnhancedXAImageStorage, "EnhancedXAImageStorage" },
{ UID_EnhancedXRFImageStorage, "EnhancedXRFImageStorage" },
{ UID_GeneralAudioWaveformStorage, "GeneralAudioWaveformStorage" },
{ UID_GeneralECGWaveformStorage, "GeneralECGWaveformStorage" },
{ UID_GenericImplantTemplateStorage, "GenericImplantTemplateStorage" },
{ UID_GrayscaleSoftcopyPresentationStateStorage, "GrayscaleSoftcopyPresentationStateStorage" },
{ UID_HangingProtocolStorage, "HangingProtocolStorage" },
{ UID_HemodynamicWaveformStorage, "HemodynamicWaveformStorage" },
{ UID_ImplantAssemblyTemplateStorage, "ImplantAssemblyTemplateStorage" },
{ UID_ImplantationPlanSRDocumentStorage, "ImplantationPlanSRDocumentStorage" },
{ UID_ImplantTemplateGroupStorage, "ImplantTemplateGroupStorage" },
{ UID_IntraocularLensCalculationsStorage, "IntraocularLensCalculationsStorage" },
{ UID_KeratometryMeasurementsStorage, "KeratometryMeasurementsStorage" },
{ UID_KeyObjectSelectionDocumentStorage, "KeyObjectSelectionDocumentStorage" },
{ UID_LensometryMeasurementsStorage, "LensometryMeasurementsStorage" },
{ UID_MacularGridThicknessAndVolumeReportStorage, "MacularGridThicknessAndVolumeReportStorage" },
{ UID_MammographyCADSRStorage, "MammographyCADSRStorage" },
{ UID_MediaStorageDirectoryStorage, "MediaStorageDirectoryStorage" },
{ UID_MRImageStorage, "MRImageStorage" },
{ UID_MRSpectroscopyStorage, "MRSpectroscopyStorage" },
{ UID_MultiframeGrayscaleByteSecondaryCaptureImageStorage, "MultiframeGrayscaleByteSecondaryCaptureImageStorage" },
{ UID_MultiframeGrayscaleWordSecondaryCaptureImageStorage, "MultiframeGrayscaleWordSecondaryCaptureImageStorage" },
{ UID_MultiframeSingleBitSecondaryCaptureImageStorage, "MultiframeSingleBitSecondaryCaptureImageStorage" },
{ UID_MultiframeTrueColorSecondaryCaptureImageStorage, "MultiframeTrueColorSecondaryCaptureImageStorage" },
{ UID_NuclearMedicineImageStorage, "NuclearMedicineImageStorage" },
{ UID_OphthalmicAxialMeasurementsStorage, "OphthalmicAxialMeasurementsStorage" },
{ UID_OphthalmicPhotography16BitImageStorage, "OphthalmicPhotography16BitImageStorage" },
{ UID_OphthalmicPhotography8BitImageStorage, "OphthalmicPhotography8BitImageStorage" },
{ UID_OphthalmicTomographyImageStorage, "OphthalmicTomographyImageStorage" },
{ UID_OphthalmicVisualFieldStaticPerimetryMeasurementsStorage, "OphthalmicVisualFieldStaticPerimetryMeasurementsStorage" },
{ UID_PositronEmissionTomographyImageStorage, "PositronEmissionTomographyImageStorage" },
{ UID_ProcedureLogStorage, "ProcedureLogStorage" },
{ UID_PseudoColorSoftcopyPresentationStateStorage, "PseudoColorSoftcopyPresentationStateStorage" },
{ UID_RawDataStorage, "RawDataStorage" },
{ UID_RealWorldValueMappingStorage, "RealWorldValueMappingStorage" },
{ UID_RespiratoryWaveformStorage, "RespiratoryWaveformStorage" },
{ UID_RTBeamsTreatmentRecordStorage, "RTBeamsTreatmentRecordStorage" },
{ UID_RTBrachyTreatmentRecordStorage, "RTBrachyTreatmentRecordStorage" },
{ UID_RTDoseStorage, "RTDoseStorage" },
{ UID_RTImageStorage, "RTImageStorage" },
{ UID_RTIonBeamsTreatmentRecordStorage, "RTIonBeamsTreatmentRecordStorage" },
{ UID_RTIonPlanStorage, "RTIonPlanStorage" },
{ UID_RTPlanStorage, "RTPlanStorage" },
{ UID_RTStructureSetStorage, "RTStructureSetStorage" },
{ UID_RTTreatmentSummaryRecordStorage, "RTTreatmentSummaryRecordStorage" },
{ UID_SecondaryCaptureImageStorage, "SecondaryCaptureImageStorage" },
{ UID_SegmentationStorage, "SegmentationStorage" },
{ UID_SpatialFiducialsStorage, "SpatialFiducialsStorage" },
{ UID_SpatialRegistrationStorage, "SpatialRegistrationStorage" },
{ UID_SpectaclePrescriptionReportStorage, "SpectaclePrescriptionReportStorage" },
{ UID_StereometricRelationshipStorage, "StereometricRelationshipStorage" },
{ UID_SubjectiveRefractionMeasurementsStorage, "SubjectiveRefractionMeasurementsStorage" },
{ UID_SurfaceSegmentationStorage, "SurfaceSegmentationStorage" },
{ UID_TwelveLeadECGWaveformStorage, "TwelveLeadECGWaveformStorage" },
{ UID_UltrasoundImageStorage, "UltrasoundImageStorage" },
{ UID_UltrasoundMultiframeImageStorage, "UltrasoundMultiframeImageStorage" },
{ UID_VideoEndoscopicImageStorage, "VideoEndoscopicImageStorage" },
{ UID_VideoMicroscopicImageStorage, "VideoMicroscopicImageStorage" },
{ UID_VideoPhotographicImageStorage, "VideoPhotographicImageStorage" },
{ UID_VisualAcuityMeasurementsStorage, "VisualAcuityMeasurementsStorage" },
{ UID_VLEndoscopicImageStorage, "VLEndoscopicImageStorage" },
{ UID_VLMicroscopicImageStorage, "VLMicroscopicImageStorage" },
{ UID_VLPhotographicImageStorage, "VLPhotographicImageStorage" },
{ UID_VLSlideCoordinatesMicroscopicImageStorage, "VLSlideCoordinatesMicroscopicImageStorage" },
{ UID_VLWholeSlideMicroscopyImageStorage, "VLWholeSlideMicroscopyImageStorage" },
{ UID_XAXRFGrayscaleSoftcopyPresentationStateStorage, "XAXRFGrayscaleSoftcopyPresentationStateStorage" },
{ UID_XRay3DAngiographicImageStorage, "XRay3DAngiographicImageStorage" },
{ UID_XRay3DCraniofacialImageStorage, "XRay3DCraniofacialImageStorage" },
{ UID_XRayAngiographicImageStorage, "XRayAngiographicImageStorage" },
{ UID_XRayRadiationDoseSRStorage, "XRayRadiationDoseSRStorage" },
{ UID_XRayRadiofluoroscopicImageStorage, "XRayRadiofluoroscopicImageStorage" },
// Storage (retired)
{ UID_RETIRED_HardcopyColorImageStorage, "RETIRED_HardcopyColorImageStorage" },
{ UID_RETIRED_HardcopyGrayscaleImageStorage, "RETIRED_HardcopyGrayscaleImageStorage" },
{ UID_RETIRED_NuclearMedicineImageStorage, "RETIRED_NuclearMedicineImageStorage" },
{ UID_RETIRED_StandaloneCurveStorage, "RETIRED_StandaloneCurveStorage" },
{ UID_RETIRED_StandaloneModalityLUTStorage, "RETIRED_StandaloneModalityLUTStorage" },
{ UID_RETIRED_StandaloneOverlayStorage, "RETIRED_StandaloneOverlayStorage" },
{ UID_RETIRED_StandalonePETCurveStorage, "RETIRED_StandalonePETCurveStorage" },
{ UID_RETIRED_StandaloneVOILUTStorage, "RETIRED_StandaloneVOILUTStorage" },
{ UID_RETIRED_StoredPrintStorage, "RETIRED_StoredPrintStorage" },
{ UID_RETIRED_UltrasoundImageStorage, "RETIRED_UltrasoundImageStorage" },
{ UID_RETIRED_UltrasoundMultiframeImageStorage, "RETIRED_UltrasoundMultiframeImageStorage" },
{ UID_RETIRED_VLImageStorage, "RETIRED_VLImageStorage" },
{ UID_RETIRED_VLMultiFrameImageStorage, "RETIRED_VLMultiFrameImageStorage" },
{ UID_RETIRED_XRayAngiographicBiPlaneImageStorage, "RETIRED_XRayAngiographicBiPlaneImageStorage" },
// Query/Retrieve
{ UID_FINDPatientRootQueryRetrieveInformationModel, "FINDPatientRootQueryRetrieveInformationModel" },
{ UID_FINDStudyRootQueryRetrieveInformationModel, "FINDStudyRootQueryRetrieveInformationModel" },
{ UID_GETPatientRootQueryRetrieveInformationModel, "GETPatientRootQueryRetrieveInformationModel" },
{ UID_GETStudyRootQueryRetrieveInformationModel, "GETStudyRootQueryRetrieveInformationModel" },
{ UID_MOVEPatientRootQueryRetrieveInformationModel, "MOVEPatientRootQueryRetrieveInformationModel" },
{ UID_MOVEStudyRootQueryRetrieveInformationModel, "MOVEStudyRootQueryRetrieveInformationModel" },
{ UID_RETIRED_FINDPatientStudyOnlyQueryRetrieveInformationModel, "RETIRED_FINDPatientStudyOnlyQueryRetrieveInformationModel" },
{ UID_RETIRED_GETCompositeInstanceRetrieveWithoutBulkData, "RETIRED_GETCompositeInstanceRetrieveWithoutBulkData" },
{ UID_RETIRED_GETCompositeInstanceRootRetrieve, "RETIRED_GETCompositeInstanceRootRetrieve" },
{ UID_RETIRED_GETPatientStudyOnlyQueryRetrieveInformationModel, "RETIRED_GETPatientStudyOnlyQueryRetrieveInformationModel" },
{ UID_RETIRED_MOVECompositeInstanceRootRetrieve, "RETIRED_MOVECompositeInstanceRootRetrieve" },
{ UID_RETIRED_MOVEPatientStudyOnlyQueryRetrieveInformationModel, "RETIRED_MOVEPatientStudyOnlyQueryRetrieveInformationModel" },
// Worklist
{ UID_FINDGeneralPurposeWorklistInformationModel, "FINDGeneralPurposeWorklistInformationModel" },
{ UID_FINDModalityWorklistInformationModel, "FINDModalityWorklistInformationModel" },
// General Purpose Worklist
{ UID_GeneralPurposePerformedProcedureStepSOPClass, "GeneralPurposePerformedProcedureStepSOPClass" },
{ UID_GeneralPurposeScheduledProcedureStepSOPClass, "GeneralPurposeScheduledProcedureStepSOPClass" },
{ UID_GeneralPurposeWorklistManagementMetaSOPClass, "GeneralPurposeWorklistManagementMetaSOPClass" },
// MPPS
{ UID_ModalityPerformedProcedureStepNotificationSOPClass, "ModalityPerformedProcedureStepNotificationSOPClass" },
{ UID_ModalityPerformedProcedureStepRetrieveSOPClass, "ModalityPerformedProcedureStepRetrieveSOPClass" },
{ UID_ModalityPerformedProcedureStepSOPClass, "ModalityPerformedProcedureStepSOPClass" },
// Unified Worklist and Procedure Step
{ UID_UnifiedWorklistAndProcedureStepServiceClass, "UnifiedWorklistAndProcedureStepServiceClass" },
{ UID_UnifiedProcedureStepPushSOPClass, "UnifiedProcedureStepPushSOPClass" },
{ UID_UnifiedProcedureStepWatchSOPClass, "UnifiedProcedureStepWatchSOPClass" },
{ UID_UnifiedProcedureStepPullSOPClass, "UnifiedProcedureStepPullSOPClass" },
{ UID_UnifiedProcedureStepEventSOPClass, "UnifiedProcedureStepEventSOPClass" },
{ UID_UnifiedWorklistAndProcedureStepSOPInstance, "UnifiedWorklistAndProcedureStepSOPInstance" },
// Storage Commitment
{ UID_RETIRED_StorageCommitmentPullModelSOPClass, "RETIRED_StorageCommitmentPullModelSOPClass" },
{ UID_RETIRED_StorageCommitmentPullModelSOPInstance, "RETIRED_StorageCommitmentPullModelSOPInstance" },
{ UID_StorageCommitmentPushModelSOPClass, "StorageCommitmentPushModelSOPClass" },
{ UID_StorageCommitmentPushModelSOPInstance, "StorageCommitmentPushModelSOPInstance" },
// Hanging Protocols
{ UID_FINDHangingProtocolInformationModel, "FINDHangingProtocolInformationModel" },
{ UID_MOVEHangingProtocolInformationModel, "MOVEHangingProtocolInformationModel" },
// Relevant Patient Information Query
{ UID_BreastImagingRelevantPatientInformationQuery, "BreastImagingRelevantPatientInformationQuery" },
{ UID_CardiacRelevantPatientInformationQuery, "CardiacRelevantPatientInformationQuery" },
{ UID_GeneralRelevantPatientInformationQuery, "GeneralRelevantPatientInformationQuery" },
// Color Palette Storage and Query/Retrieve
{ UID_ColorPaletteStorage, "ColorPaletteStorage" },
{ UID_FINDColorPaletteInformationModel, "FINDColorPaletteInformationModel" },
{ UID_MOVEColorPaletteInformationModel, "MOVEColorPaletteInformationModel" },
{ UID_GETColorPaletteInformationModel, "GETColorPaletteInformationModel" },
// Implant Template Query/Retrieve
{ UID_FINDGenericImplantTemplateInformationModel, "FINDGenericImplantTemplateInformationModel" },
{ UID_MOVEGenericImplantTemplateInformationModel, "MOVEGenericImplantTemplateInformationModel" },
{ UID_GETGenericImplantTemplateInformationModel, "GETGenericImplantTemplateInformationModel" },
{ UID_FINDImplantAssemblyTemplateInformationModel, "FINDImplantAssemblyTemplateInformationModel" },
{ UID_MOVEImplantAssemblyTemplateInformationModel, "MOVEImplantAssemblyTemplateInformationModel" },
{ UID_GETImplantAssemblyTemplateInformationModel, "GETImplantAssemblyTemplateInformationModel" },
{ UID_FINDImplantTemplateGroupInformationModel, "FINDImplantTemplateGroupInformationModel" },
{ UID_MOVEImplantTemplateGroupInformationModel, "MOVEImplantTemplateGroupInformationModel" },
{ UID_GETImplantTemplateGroupInformationModel, "GETImplantTemplateGroupInformationModel" },
// Print
{ UID_BasicAnnotationBoxSOPClass, "BasicAnnotationBoxSOPClass" },
{ UID_BasicColorImageBoxSOPClass, "BasicColorImageBoxSOPClass" },
{ UID_BasicColorPrintManagementMetaSOPClass, "BasicColorPrintManagementMetaSOPClass" },
{ UID_BasicFilmBoxSOPClass, "BasicFilmBoxSOPClass" },
{ UID_BasicFilmSessionSOPClass, "BasicFilmSessionSOPClass" },
{ UID_BasicGrayscaleImageBoxSOPClass, "BasicGrayscaleImageBoxSOPClass" },
{ UID_BasicGrayscalePrintManagementMetaSOPClass, "BasicGrayscalePrintManagementMetaSOPClass" },
{ UID_PresentationLUTSOPClass, "PresentationLUTSOPClass" },
{ UID_PrintJobSOPClass, "PrintJobSOPClass" },
{ UID_PrinterConfigurationRetrievalSOPClass, "PrinterConfigurationRetrievalSOPClass" },
{ UID_PrinterConfigurationRetrievalSOPInstance, "PrinterConfigurationRetrievalSOPInstance" },
{ UID_PrinterSOPClass, "PrinterSOPClass" },
{ UID_PrinterSOPInstance, "PrinterSOPInstance" },
{ UID_RETIRED_BasicPrintImageOverlayBoxSOPClass, "RETIRED_BasicPrintImageOverlayBoxSOPClass" },
{ UID_RETIRED_ImageOverlayBoxSOPClass, "RETIRED_ImageOverlayBoxSOPClass" },
{ UID_RETIRED_PrintQueueManagementSOPClass, "RETIRED_PrintQueueManagementSOPClass" },
{ UID_RETIRED_PrintQueueSOPInstance, "RETIRED_PrintQueueSOPInstance" },
{ UID_RETIRED_PullPrintRequestSOPClass, "RETIRED_PullPrintRequestSOPClass" },
{ UID_RETIRED_PullStoredPrintManagementMetaSOPClass, "RETIRED_PullStoredPrintManagementMetaSOPClass" },
{ UID_RETIRED_ReferencedColorPrintManagementMetaSOPClass, "RETIRED_ReferencedColorPrintManagementMetaSOPClass" },
{ UID_RETIRED_ReferencedGrayscalePrintManagementMetaSOPClass, "RETIRED_ReferencedGrayscalePrintManagementMetaSOPClass" },
{ UID_RETIRED_ReferencedImageBoxSOPClass, "RETIRED_ReferencedImageBoxSOPClass" },
{ UID_VOILUTBoxSOPClass, "VOILUTBoxSOPClass" },
// Detached Management
{ UID_RETIRED_DetachedInterpretationManagementSOPClass, "RETIRED_DetachedInterpretationManagementSOPClass" },
{ UID_RETIRED_DetachedPatientManagementMetaSOPClass, "RETIRED_DetachedPatientManagementMetaSOPClass" },
{ UID_RETIRED_DetachedPatientManagementSOPClass, "RETIRED_DetachedPatientManagementSOPClass" },
{ UID_RETIRED_DetachedResultsManagementMetaSOPClass, "RETIRED_DetachedResultsManagementMetaSOPClass" },
{ UID_RETIRED_DetachedResultsManagementSOPClass, "RETIRED_DetachedResultsManagementSOPClass" },
{ UID_RETIRED_DetachedStudyManagementMetaSOPClass, "RETIRED_DetachedStudyManagementMetaSOPClass" },
{ UID_RETIRED_DetachedStudyManagementSOPClass, "RETIRED_DetachedStudyManagementSOPClass" },
{ UID_RETIRED_DetachedVisitManagementSOPClass, "RETIRED_DetachedVisitManagementSOPClass" },
// Procedure Log
{ UID_ProceduralEventLoggingSOPClass, "ProceduralEventLoggingSOPClass" },
{ UID_ProceduralEventLoggingSOPInstance, "ProceduralEventLoggingSOPInstance" },
// Substance Administration
{ UID_SubstanceAdministrationLoggingSOPClass, "SubstanceAdministrationLoggingSOPClass" },
{ UID_SubstanceAdministrationLoggingSOPInstance, "SubstanceAdministrationLoggingSOPInstance" },
{ UID_ProductCharacteristicsQuerySOPClass, "ProductCharacteristicsQuerySOPClass" },
{ UID_SubstanceApprovalQuerySOPClass, "SubstanceApprovalQuerySOPClass" },
// Media Creation
{ UID_MediaCreationManagementSOPClass, "MediaCreationManagementSOPClass" },
// SOP Class Relationship Negotiation
{ UID_StorageServiceClass, "StorageServiceClass" },
// Instance Availability Notification
{ UID_InstanceAvailabilityNotificationSOPClass, "InstanceAvailabilityNotificationSOPClass" },
// Application Hosting
{ UID_NativeDICOMModel, "NativeDICOMModel" },
{ UID_AbstractMultiDimensionalImageModel, "AbstractMultiDimensionalImageModel" },
// Other
{ UID_RETIRED_BasicStudyContentNotificationSOPClass, "RETIRED_BasicStudyContentNotificationSOPClass" },
{ UID_RETIRED_StudyComponentManagementSOPClass, "RETIRED_StudyComponentManagementSOPClass" },
{ UID_VerificationSOPClass, "VerificationSOPClass" },
// Coding Schemes
{ UID_DICOMControlledTerminologyCodingScheme, "DICOMControlledTerminologyCodingScheme" },
{ UID_DICOMUIDRegistryCodingScheme, "DICOMUIDRegistryCodingScheme" },
// Configuration Management LDAP UIDs
{ UID_LDAP_dicomAETitle, "LDAP_dicomAETitle" },
{ UID_LDAP_dicomApplicationCluster, "LDAP_dicomApplicationCluster" },
{ UID_LDAP_dicomAssociationAcceptor, "LDAP_dicomAssociationAcceptor" },
{ UID_LDAP_dicomAssociationInitiator, "LDAP_dicomAssociationInitiator" },
{ UID_LDAP_dicomAuthorizedNodeCertificateReference, "LDAP_dicomAuthorizedNodeCertificateReference" },
{ UID_LDAP_dicomConfigurationRoot, "LDAP_dicomConfigurationRoot" },
{ UID_LDAP_dicomDescription, "LDAP_dicomDescription" },
{ UID_LDAP_dicomDevice, "LDAP_dicomDevice" },
{ UID_LDAP_dicomDeviceName, "LDAP_dicomDeviceName" },
{ UID_LDAP_dicomDeviceSerialNumber, "LDAP_dicomDeviceSerialNumber" },
{ UID_LDAP_dicomDevicesRoot, "LDAP_dicomDevicesRoot" },
{ UID_LDAP_dicomHostname, "LDAP_dicomHostname" },
{ UID_LDAP_dicomInstalled, "LDAP_dicomInstalled" },
{ UID_LDAP_dicomInstitutionAddress, "LDAP_dicomInstitutionAddress" },
{ UID_LDAP_dicomInstitutionDepartmentName, "LDAP_dicomInstitutionDepartmentName" },
{ UID_LDAP_dicomInstitutionName, "LDAP_dicomInstitutionName" },
{ UID_LDAP_dicomIssuerOfPatientID, "LDAP_dicomIssuerOfPatientID" },
{ UID_LDAP_dicomManufacturer, "LDAP_dicomManufacturer" },
{ UID_LDAP_dicomManufacturerModelName, "LDAP_dicomManufacturerModelName" },
{ UID_LDAP_dicomNetworkAE, "LDAP_dicomNetworkAE" },
{ UID_LDAP_dicomNetworkConnection, "LDAP_dicomNetworkConnection" },
{ UID_LDAP_dicomNetworkConnectionReference, "LDAP_dicomNetworkConnectionReference" },
{ UID_LDAP_dicomPort, "LDAP_dicomPort" },
{ UID_LDAP_dicomPreferredCalledAETitle, "LDAP_dicomPreferredCalledAETitle" },
{ UID_LDAP_dicomPreferredCallingAETitle, "LDAP_dicomPreferredCallingAETitle" },
{ UID_LDAP_dicomPrimaryDeviceType, "LDAP_dicomPrimaryDeviceType" },
{ UID_LDAP_dicomRelatedDeviceReference, "LDAP_dicomRelatedDeviceReference" },
{ UID_LDAP_dicomSOPClass, "LDAP_dicomSOPClass" },
{ UID_LDAP_dicomSoftwareVersion, "LDAP_dicomSoftwareVersion" },
{ UID_LDAP_dicomStationName, "LDAP_dicomStationName" },
{ UID_LDAP_dicomSupportedCharacterSet, "LDAP_dicomSupportedCharacterSet" },
{ UID_LDAP_dicomTLSCyphersuite, "LDAP_dicomTLSCyphersuite" },
{ UID_LDAP_dicomThisNodeCertificateReference, "LDAP_dicomThisNodeCertificateReference" },
{ UID_LDAP_dicomTransferCapability, "LDAP_dicomTransferCapability" },
{ UID_LDAP_dicomTransferRole, "LDAP_dicomTransferRole" },
{ UID_LDAP_dicomTransferSyntax, "LDAP_dicomTransferSyntax" },
{ UID_LDAP_dicomUniqueAETitle, "LDAP_dicomUniqueAETitle" },
{ UID_LDAP_dicomUniqueAETitlesRegistryRoot, "LDAP_dicomUniqueAETitlesRegistryRoot" },
{ UID_LDAP_dicomVendorData, "LDAP_dicomVendorData" },
// Well-known Frame of References
{ UID_ICBM452T1FrameOfReference, "ICBM452T1FrameOfReference" },
{ UID_ICBMSingleSubjectMRIFrameOfReference, "ICBMSingleSubjectMRIFrameOfReference" },
{ UID_SPM2AVG152PDFrameOfReference, "SPM2AVG152PDFrameOfReference" },
{ UID_SPM2AVG152T1FrameOfReference, "SPM2AVG152T1FrameOfReference" },
{ UID_SPM2AVG152T2FrameOfReference, "SPM2AVG152T2FrameOfReference" },
{ UID_SPM2AVG305T1FrameOfReference, "SPM2AVG305T1FrameOfReference" },
{ UID_SPM2BRAINMASKFrameOfReference, "SPM2BRAINMASKFrameOfReference" },
{ UID_SPM2CSFFrameOfReference, "SPM2CSFFrameOfReference" },
{ UID_SPM2EPIFrameOfReference, "SPM2EPIFrameOfReference" },
{ UID_SPM2FILT1FrameOfReference, "SPM2FILT1FrameOfReference" },
{ UID_SPM2GRAYFrameOfReference, "SPM2GRAYFrameOfReference" },
{ UID_SPM2PDFrameOfReference, "SPM2PDFrameOfReference" },
{ UID_SPM2PETFrameOfReference, "SPM2PETFrameOfReference" },
{ UID_SPM2SINGLESUBJT1FrameOfReference, "SPM2SINGLESUBJT1FrameOfReference" },
{ UID_SPM2SPECTFrameOfReference, "SPM2SPECTFrameOfReference" },
{ UID_SPM2T1FrameOfReference, "SPM2T1FrameOfReference" },
{ UID_SPM2T2FrameOfReference, "SPM2T2FrameOfReference" },
{ UID_SPM2TRANSMFrameOfReference, "SPM2TRANSMFrameOfReference" },
{ UID_SPM2WHITEFrameOfReference, "SPM2WHITEFrameOfReference" },
{ UID_TalairachBrainAtlasFrameOfReference, "TalairachBrainAtlasFrameOfReference" },
// UTC Synchronization Frame of Reference (CP 432)
{ UID_UniversalCoordinatedTimeSynchronizationFrameOfReference, "UniversalCoordinatedTimeSynchronizationFrameOfReference" },
// Well-known SOP Instances for Color Palettes
{ UID_HotIronColorPaletteSOPInstance, "HotIronColorPaletteSOPInstance" },
{ UID_HotMetalBlueColorPaletteSOPInstance, "HotMetalBlueColorPaletteSOPInstance" },
{ UID_PET20StepColorPaletteSOPInstance, "PET20StepColorPaletteSOPInstance" },
{ UID_PETColorPaletteSOPInstance, "PETColorPaletteSOPInstance" },
// Draft Supplements
{ UID_DRAFT_RTBeamsDeliveryInstructionStorage, "DRAFT_RTBeamsDeliveryInstructionStorage" },
{ UID_DRAFT_RTConventionalMachineVerification, "DRAFT_RTConventionalMachineVerification" },
{ UID_DRAFT_RTIonMachineVerification, "DRAFT_RTIonMachineVerification" },
{ UID_DRAFT_SRAudioStorage, "DRAFT_SRAudioStorage" },
{ UID_DRAFT_SRComprehensiveStorage, "DRAFT_SRComprehensiveStorage" },
{ UID_DRAFT_SRDetailStorage, "DRAFT_SRDetailStorage" },
{ UID_DRAFT_SRTextStorage, "DRAFT_SRTextStorage" },
{ UID_DRAFT_WaveformStorage, "DRAFT_WaveformStorage" },
{ NULL, NULL }
};
static const int uidNameMap_size = ( sizeof(uidNameMap) / sizeof(UIDNameMap) );
/** an array of const strings containing all known Storage SOP Classes
* that fit into the conventional PATIENT-STUDY-SERIES-INSTANCE information
* model, i.e. everything a Storage SCP might want to store in a PACS.
* Special cases such as hanging protocol storage or the Storage SOP Class
* are not included in this list.
*
* THIS LIST CONTAINS ALL STORAGE SOP CLASSES INCLUDING RETIRED ONES
* AND IS LARGER THAN 64 ENTRIES.
*/
const char* dcmAllStorageSOPClassUIDs[] =
{
UID_AmbulatoryECGWaveformStorage,
UID_ArterialPulseWaveformStorage,
UID_AutorefractionMeasurementsStorage,
UID_BasicStructuredDisplayStorage,
UID_BasicTextSRStorage,
UID_BasicVoiceAudioWaveformStorage,
UID_BlendingSoftcopyPresentationStateStorage,
UID_BreastTomosynthesisImageStorage,
UID_CardiacElectrophysiologyWaveformStorage,
UID_ChestCADSRStorage,
UID_ColonCADSRStorage,
UID_ColorSoftcopyPresentationStateStorage,
UID_ComprehensiveSRStorage,
UID_ComputedRadiographyImageStorage,
UID_CTImageStorage,
UID_DeformableSpatialRegistrationStorage,
UID_DigitalIntraOralXRayImageStorageForPresentation,
UID_DigitalIntraOralXRayImageStorageForProcessing,
UID_DigitalMammographyXRayImageStorageForPresentation,
UID_DigitalMammographyXRayImageStorageForProcessing,
UID_DigitalXRayImageStorageForPresentation,
UID_DigitalXRayImageStorageForProcessing,
UID_EncapsulatedCDAStorage,
UID_EncapsulatedPDFStorage,
UID_EnhancedCTImageStorage,
UID_EnhancedMRColorImageStorage,
UID_EnhancedMRImageStorage,
UID_EnhancedPETImageStorage,
UID_EnhancedSRStorage,
UID_EnhancedUSVolumeStorage,
UID_EnhancedXAImageStorage,
UID_EnhancedXRFImageStorage,
UID_GeneralAudioWaveformStorage,
UID_GeneralECGWaveformStorage,
UID_GenericImplantTemplateStorage,
UID_GrayscaleSoftcopyPresentationStateStorage,
UID_HemodynamicWaveformStorage,
UID_ImplantAssemblyTemplateStorage,
UID_ImplantationPlanSRDocumentStorage,
UID_ImplantTemplateGroupStorage,
UID_IntraocularLensCalculationsStorage,
UID_KeratometryMeasurementsStorage,
UID_KeyObjectSelectionDocumentStorage,
UID_LensometryMeasurementsStorage,
UID_MacularGridThicknessAndVolumeReportStorage,
UID_MammographyCADSRStorage,
UID_MRImageStorage,
UID_MRSpectroscopyStorage,
UID_MultiframeGrayscaleByteSecondaryCaptureImageStorage,
UID_MultiframeGrayscaleWordSecondaryCaptureImageStorage,
UID_MultiframeSingleBitSecondaryCaptureImageStorage,
UID_MultiframeTrueColorSecondaryCaptureImageStorage,
UID_NuclearMedicineImageStorage,
UID_OphthalmicAxialMeasurementsStorage,
UID_OphthalmicPhotography16BitImageStorage,
UID_OphthalmicPhotography8BitImageStorage,
UID_OphthalmicTomographyImageStorage,
UID_OphthalmicVisualFieldStaticPerimetryMeasurementsStorage,
UID_PositronEmissionTomographyImageStorage,
UID_ProcedureLogStorage,
UID_PseudoColorSoftcopyPresentationStateStorage,
UID_RawDataStorage,
UID_RealWorldValueMappingStorage,
UID_RespiratoryWaveformStorage,
UID_RTBeamsTreatmentRecordStorage,
UID_RTBrachyTreatmentRecordStorage,
UID_RTDoseStorage,
UID_RTImageStorage,
UID_RTIonBeamsTreatmentRecordStorage,
UID_RTIonPlanStorage,
UID_RTPlanStorage,
UID_RTStructureSetStorage,
UID_RTTreatmentSummaryRecordStorage,
UID_SecondaryCaptureImageStorage,
UID_SegmentationStorage,
UID_SpatialFiducialsStorage,
UID_SpatialRegistrationStorage,
UID_SpectaclePrescriptionReportStorage,
UID_StereometricRelationshipStorage,
UID_SubjectiveRefractionMeasurementsStorage,
UID_SurfaceSegmentationStorage,
UID_TwelveLeadECGWaveformStorage,
UID_UltrasoundImageStorage,
UID_UltrasoundMultiframeImageStorage,
UID_VideoEndoscopicImageStorage,
UID_VideoMicroscopicImageStorage,
UID_VideoPhotographicImageStorage,
UID_VisualAcuityMeasurementsStorage,
UID_VLEndoscopicImageStorage,
UID_VLMicroscopicImageStorage,
UID_VLPhotographicImageStorage,
UID_VLSlideCoordinatesMicroscopicImageStorage,
UID_VLWholeSlideMicroscopyImageStorage,
UID_XAXRFGrayscaleSoftcopyPresentationStateStorage,
UID_XRay3DAngiographicImageStorage,
UID_XRay3DCraniofacialImageStorage,
UID_XRayAngiographicImageStorage,
UID_XRayRadiationDoseSRStorage,
UID_XRayRadiofluoroscopicImageStorage,
// retired
UID_RETIRED_HardcopyColorImageStorage,
UID_RETIRED_HardcopyGrayscaleImageStorage,
UID_RETIRED_NuclearMedicineImageStorage,
UID_RETIRED_StandaloneCurveStorage,
UID_RETIRED_StandaloneModalityLUTStorage,
UID_RETIRED_StandaloneOverlayStorage,
UID_RETIRED_StandalonePETCurveStorage,
UID_RETIRED_StandaloneVOILUTStorage,
UID_RETIRED_StoredPrintStorage,
UID_RETIRED_UltrasoundImageStorage,
UID_RETIRED_UltrasoundMultiframeImageStorage,
UID_RETIRED_VLImageStorage,
UID_RETIRED_VLMultiFrameImageStorage,
UID_RETIRED_XRayAngiographicBiPlaneImageStorage,
// draft
UID_DRAFT_SRAudioStorage,
UID_DRAFT_SRComprehensiveStorage,
UID_DRAFT_SRDetailStorage,
UID_DRAFT_SRTextStorage,
UID_DRAFT_WaveformStorage,
UID_DRAFT_RTBeamsDeliveryInstructionStorage,
NULL
};
const int numberOfAllDcmStorageSOPClassUIDs = (sizeof(dcmAllStorageSOPClassUIDs) / sizeof(const char*)) - 1;
/* an array of const strings containing all storage SOP classes that
* are proposed by default by those Storage SCU components in DCMTK
* that always propose one presentation context for each SOP class,
* e.g. movescu or dcmqrdb. This list is guaranteed to have at most
* 120 entries (currently: 119) to leave enough room for FIND/MOVE
* presentation contexts.
*/
const char* dcmLongSCUStorageSOPClassUIDs[] =
{
UID_AmbulatoryECGWaveformStorage,
UID_ArterialPulseWaveformStorage,
UID_AutorefractionMeasurementsStorage,
UID_BasicStructuredDisplayStorage,
UID_BasicTextSRStorage,
UID_BasicVoiceAudioWaveformStorage,
UID_BlendingSoftcopyPresentationStateStorage,
UID_BreastTomosynthesisImageStorage,
UID_CardiacElectrophysiologyWaveformStorage,
UID_ChestCADSRStorage,
UID_ColonCADSRStorage,
UID_ColorSoftcopyPresentationStateStorage,
UID_ComprehensiveSRStorage,
UID_ComputedRadiographyImageStorage,
UID_CTImageStorage,
UID_DeformableSpatialRegistrationStorage,
UID_DigitalIntraOralXRayImageStorageForPresentation,
UID_DigitalIntraOralXRayImageStorageForProcessing,
UID_DigitalMammographyXRayImageStorageForPresentation,
UID_DigitalMammographyXRayImageStorageForProcessing,
UID_DigitalXRayImageStorageForPresentation,
UID_DigitalXRayImageStorageForProcessing,
UID_EncapsulatedCDAStorage,
UID_EncapsulatedPDFStorage,
UID_EnhancedCTImageStorage,
UID_EnhancedMRColorImageStorage,
UID_EnhancedMRImageStorage,
UID_EnhancedPETImageStorage,
UID_EnhancedSRStorage,
UID_EnhancedUSVolumeStorage,
UID_EnhancedXAImageStorage,
UID_EnhancedXRFImageStorage,
UID_GeneralAudioWaveformStorage,
UID_GeneralECGWaveformStorage,
UID_GenericImplantTemplateStorage,
UID_GrayscaleSoftcopyPresentationStateStorage,
UID_HemodynamicWaveformStorage,
UID_ImplantAssemblyTemplateStorage,
UID_ImplantationPlanSRDocumentStorage,
UID_ImplantTemplateGroupStorage,
UID_IntraocularLensCalculationsStorage,
UID_KeratometryMeasurementsStorage,
UID_KeyObjectSelectionDocumentStorage,
UID_LensometryMeasurementsStorage,
UID_MacularGridThicknessAndVolumeReportStorage,
UID_MammographyCADSRStorage,
UID_MRImageStorage,
UID_MRSpectroscopyStorage,
UID_MultiframeGrayscaleByteSecondaryCaptureImageStorage,
UID_MultiframeGrayscaleWordSecondaryCaptureImageStorage,
UID_MultiframeSingleBitSecondaryCaptureImageStorage,
UID_MultiframeTrueColorSecondaryCaptureImageStorage,
UID_NuclearMedicineImageStorage,
UID_OphthalmicAxialMeasurementsStorage,
UID_OphthalmicPhotography16BitImageStorage,
UID_OphthalmicPhotography8BitImageStorage,
UID_OphthalmicTomographyImageStorage,
UID_OphthalmicVisualFieldStaticPerimetryMeasurementsStorage,
UID_PositronEmissionTomographyImageStorage,
UID_ProcedureLogStorage,
UID_PseudoColorSoftcopyPresentationStateStorage,
UID_RawDataStorage,
UID_RealWorldValueMappingStorage,
UID_RespiratoryWaveformStorage,
UID_RTBeamsTreatmentRecordStorage,
UID_RTBrachyTreatmentRecordStorage,
UID_RTDoseStorage,
UID_RTImageStorage,
UID_RTIonBeamsTreatmentRecordStorage,
UID_RTIonPlanStorage,
UID_RTPlanStorage,
UID_RTStructureSetStorage,
UID_RTTreatmentSummaryRecordStorage,
UID_SecondaryCaptureImageStorage,
UID_SegmentationStorage,
UID_SpatialFiducialsStorage,
UID_SpatialRegistrationStorage,
UID_SpectaclePrescriptionReportStorage,
UID_StereometricRelationshipStorage,
UID_SubjectiveRefractionMeasurementsStorage,
UID_SurfaceSegmentationStorage,
UID_TwelveLeadECGWaveformStorage,
UID_UltrasoundImageStorage,
UID_UltrasoundMultiframeImageStorage,
UID_VideoEndoscopicImageStorage,
UID_VideoMicroscopicImageStorage,
UID_VideoPhotographicImageStorage,
UID_VisualAcuityMeasurementsStorage,
UID_VLEndoscopicImageStorage,
UID_VLMicroscopicImageStorage,
UID_VLPhotographicImageStorage,
UID_VLSlideCoordinatesMicroscopicImageStorage,
UID_VLWholeSlideMicroscopyImageStorage,
UID_XAXRFGrayscaleSoftcopyPresentationStateStorage,
UID_XRay3DAngiographicImageStorage,
UID_XRay3DCraniofacialImageStorage,
UID_XRayAngiographicImageStorage,
UID_XRayRadiationDoseSRStorage,
UID_XRayRadiofluoroscopicImageStorage,
// retired
UID_RETIRED_HardcopyColorImageStorage,
UID_RETIRED_HardcopyGrayscaleImageStorage,
UID_RETIRED_NuclearMedicineImageStorage,
UID_RETIRED_StandaloneCurveStorage,
UID_RETIRED_StandaloneModalityLUTStorage,
UID_RETIRED_StandaloneOverlayStorage,
UID_RETIRED_StandalonePETCurveStorage,
UID_RETIRED_StandaloneVOILUTStorage,
UID_RETIRED_StoredPrintStorage,
UID_RETIRED_UltrasoundImageStorage,
UID_RETIRED_UltrasoundMultiframeImageStorage,
UID_RETIRED_VLImageStorage,
UID_RETIRED_VLMultiFrameImageStorage,
UID_RETIRED_XRayAngiographicBiPlaneImageStorage,
// draft
UID_DRAFT_RTBeamsDeliveryInstructionStorage,
UID_DRAFT_SRAudioStorage,
UID_DRAFT_SRComprehensiveStorage,
UID_DRAFT_SRDetailStorage,
UID_DRAFT_SRTextStorage,
UID_DRAFT_WaveformStorage,
NULL
};
const int numberOfDcmLongSCUStorageSOPClassUIDs = (sizeof(dcmLongSCUStorageSOPClassUIDs) / sizeof(const char*)) - 1;
/** an array of const strings containing all storage SOP classes that
* are proposed by default by those Storage SCU components in DCMTK
* that always propose TWO presentation context for each SOP class,
* e.g. storescu. This list is guaranteed to have at most 64 entries.
*/
const char* dcmShortSCUStorageSOPClassUIDs[] = {
/* This list *must* be limited to 64 SOP classes or less (currently: 64).
* If we have more than 64 storage transfer syntaxes, tools such as
* storescu will fail because they attempt to negotiate two presentation
* contexts for each SOP class, and there is a total limit of 128 contexts
* for one association.
* Because of this limitation, all draft and retired storage SOP classes
* are removed from this list. We have also omitted support for some
* recently approved SOP classes.
* UID_MediaStorageDirectoryStorage should not be present in this list.
*/
UID_AmbulatoryECGWaveformStorage,
UID_BasicTextSRStorage,
UID_BasicVoiceAudioWaveformStorage,
UID_BlendingSoftcopyPresentationStateStorage,
UID_CardiacElectrophysiologyWaveformStorage,
UID_ChestCADSRStorage,
UID_ColonCADSRStorage,
UID_ColorSoftcopyPresentationStateStorage,
UID_ComprehensiveSRStorage,
UID_ComputedRadiographyImageStorage,
UID_CTImageStorage,
UID_DigitalIntraOralXRayImageStorageForPresentation,
UID_DigitalIntraOralXRayImageStorageForProcessing,
UID_DigitalMammographyXRayImageStorageForPresentation,
UID_DigitalMammographyXRayImageStorageForProcessing,
UID_DigitalXRayImageStorageForPresentation,
UID_DigitalXRayImageStorageForProcessing,
UID_EncapsulatedPDFStorage,
UID_EnhancedCTImageStorage,
UID_EnhancedMRImageStorage,
UID_EnhancedSRStorage,
UID_EnhancedXAImageStorage,
UID_EnhancedXRFImageStorage,
UID_GeneralECGWaveformStorage,
UID_GrayscaleSoftcopyPresentationStateStorage,
UID_HemodynamicWaveformStorage,
UID_KeyObjectSelectionDocumentStorage,
UID_MammographyCADSRStorage,
UID_MRImageStorage,
UID_MRSpectroscopyStorage,
UID_MultiframeGrayscaleByteSecondaryCaptureImageStorage,
UID_MultiframeGrayscaleWordSecondaryCaptureImageStorage,
UID_MultiframeSingleBitSecondaryCaptureImageStorage,
UID_MultiframeTrueColorSecondaryCaptureImageStorage,
UID_NuclearMedicineImageStorage,
UID_OphthalmicPhotography16BitImageStorage,
UID_OphthalmicPhotography8BitImageStorage,
UID_OphthalmicTomographyImageStorage,
UID_PositronEmissionTomographyImageStorage,
UID_ProcedureLogStorage,
UID_PseudoColorSoftcopyPresentationStateStorage,
UID_RawDataStorage,
UID_RealWorldValueMappingStorage,
UID_RTBeamsTreatmentRecordStorage,
UID_RTBrachyTreatmentRecordStorage,
UID_RTDoseStorage,
UID_RTImageStorage,
UID_RTPlanStorage,
UID_RTStructureSetStorage,
UID_RTTreatmentSummaryRecordStorage,
UID_SecondaryCaptureImageStorage,
UID_SpatialFiducialsStorage,
UID_SpatialRegistrationStorage,
UID_StereometricRelationshipStorage,
UID_TwelveLeadECGWaveformStorage,
UID_UltrasoundImageStorage,
UID_UltrasoundMultiframeImageStorage,
UID_VLEndoscopicImageStorage,
UID_VLMicroscopicImageStorage,
UID_VLPhotographicImageStorage,
UID_VLSlideCoordinatesMicroscopicImageStorage,
UID_XRayAngiographicImageStorage,
UID_XRayRadiationDoseSRStorage,
UID_XRayRadiofluoroscopicImageStorage,
NULL
};
const int numberOfDcmShortSCUStorageSOPClassUIDs = (sizeof(dcmShortSCUStorageSOPClassUIDs) / sizeof(const char*)) - 1;
/*
** The global variable dcmImageSOPClassUIDs is an array of
** string pointers containing the UIDs of all known Image SOP
** Classes. The instances of SOP Classes in this list can be
** referenced from DICOMDIR IMAGE records.
**
** The dcmgpdir/dcmmkdir program uses this list to determine
** what kind of objects can be referenced from IMAGE records.
** Be _very_ careful when adding SOP Classes to this list!!
**
** The global variable numberOfDcmImageSOPClassUIDs defines the
** size of the array.
*/
const char* dcmImageSOPClassUIDs[] = {
// retired
UID_BreastTomosynthesisImageStorage,
UID_ComputedRadiographyImageStorage,
UID_CTImageStorage,
UID_DigitalIntraOralXRayImageStorageForPresentation,
UID_DigitalIntraOralXRayImageStorageForProcessing,
UID_DigitalMammographyXRayImageStorageForPresentation,
UID_DigitalMammographyXRayImageStorageForProcessing,
UID_DigitalXRayImageStorageForPresentation,
UID_DigitalXRayImageStorageForProcessing,
UID_EnhancedCTImageStorage,
UID_EnhancedMRColorImageStorage,
UID_EnhancedMRImageStorage,
UID_EnhancedPETImageStorage,
UID_EnhancedUSVolumeStorage,
UID_EnhancedXAImageStorage,
UID_EnhancedXRFImageStorage,
UID_MRImageStorage,
UID_MultiframeGrayscaleByteSecondaryCaptureImageStorage,
UID_MultiframeGrayscaleWordSecondaryCaptureImageStorage,
UID_MultiframeSingleBitSecondaryCaptureImageStorage,
UID_MultiframeTrueColorSecondaryCaptureImageStorage,
UID_NuclearMedicineImageStorage,
UID_OphthalmicPhotography16BitImageStorage,
UID_OphthalmicPhotography8BitImageStorage,
UID_OphthalmicTomographyImageStorage,
UID_PositronEmissionTomographyImageStorage,
UID_RETIRED_HardcopyColorImageStorage,
UID_RETIRED_HardcopyGrayscaleImageStorage,
UID_RETIRED_NuclearMedicineImageStorage,
UID_RETIRED_UltrasoundImageStorage,
UID_RETIRED_UltrasoundMultiframeImageStorage,
UID_RETIRED_VLImageStorage,
UID_RETIRED_VLMultiFrameImageStorage,
UID_RETIRED_XRayAngiographicBiPlaneImageStorage,
UID_RTImageStorage,
UID_SecondaryCaptureImageStorage,
UID_UltrasoundImageStorage,
UID_UltrasoundMultiframeImageStorage,
UID_VideoEndoscopicImageStorage,
UID_VideoMicroscopicImageStorage,
UID_VideoPhotographicImageStorage,
UID_VLEndoscopicImageStorage,
UID_VLMicroscopicImageStorage,
UID_VLPhotographicImageStorage,
UID_VLSlideCoordinatesMicroscopicImageStorage,
UID_VLWholeSlideMicroscopyImageStorage,
UID_XRay3DAngiographicImageStorage,
UID_XRay3DCraniofacialImageStorage,
UID_XRayAngiographicImageStorage,
UID_XRayRadiofluoroscopicImageStorage,
NULL
};
const int numberOfDcmImageSOPClassUIDs = (sizeof(dcmImageSOPClassUIDs) / sizeof(const char*)) - 1;
typedef struct {
const char *sopClass;
const char *modality;
unsigned long averageSize; /* can be way, way out */
} DcmModalityTable;
/*
** The modalities table defines a short character code for each
** Storage SOP Class for use in filenames.
** It also gives a typical size for each SOP Instance. This will
** ususally be way out, but is useful in user interfaces to give an
** idea of progress when receiving an image (C-STORE does not indicate
** the size of an image being transmitted).
*/
static const DcmModalityTable modalities[] = {
{ UID_AmbulatoryECGWaveformStorage, "ECA", 4096 },
{ UID_ArterialPulseWaveformStorage, "WVa", 4096 },
{ UID_AutorefractionMeasurementsStorage, "OPa", 4096 },
{ UID_BasicStructuredDisplayStorage, "SD", 4096 },
{ UID_BasicTextSRStorage, "SRt", 4096 },
{ UID_BasicVoiceAudioWaveformStorage, "AUV", 4096 },
{ UID_BlendingSoftcopyPresentationStateStorage, "PSb", 4096 },
{ UID_BreastTomosynthesisImageStorage, "BT", 4096 * 4096 * 2 },
{ UID_CardiacElectrophysiologyWaveformStorage, "WVc", 4096 },
{ UID_ChestCADSRStorage, "SRh", 4096 },
{ UID_ColonCADSRStorage, "SRo", 4096 },
{ UID_ColorSoftcopyPresentationStateStorage, "PSc", 4096 },
{ UID_ComprehensiveSRStorage, "SRc", 4096 },
{ UID_ComputedRadiographyImageStorage, "CR", 2048 * 2048 * 2 },
{ UID_CTImageStorage, "CT", 512 * 512 * 2 },
{ UID_DeformableSpatialRegistrationStorage, "RGd", 4096 },
{ UID_DigitalIntraOralXRayImageStorageForPresentation, "DXo", 1024 * 1024 * 2 },
{ UID_DigitalIntraOralXRayImageStorageForProcessing, "DPo", 1024 * 1024 * 2 },
{ UID_DigitalMammographyXRayImageStorageForPresentation, "DXm", 4096 * 4096 * 2 },
{ UID_DigitalMammographyXRayImageStorageForProcessing, "DPm", 4096 * 4096 * 2 },
{ UID_DigitalXRayImageStorageForPresentation, "DX", 2048 * 2048 * 2 },
{ UID_DigitalXRayImageStorageForProcessing, "DP", 2048 * 2048 * 2 },
{ UID_EncapsulatedCDAStorage, "CDA", 4096 },
{ UID_EncapsulatedPDFStorage, "PDF", 1024 * 1024 },
{ UID_EnhancedCTImageStorage, "CTe", 256 * 512 * 512 },
{ UID_EnhancedMRColorImageStorage, "MRc", 256 * 512 * 512 * 3 },
{ UID_EnhancedMRImageStorage, "MRe", 256 * 512 * 512 },
{ UID_EnhancedPETImageStorage, "PIe", 512 * 512 * 2 },
{ UID_EnhancedSRStorage, "SRe", 4096 },
{ UID_EnhancedUSVolumeStorage, "USe", 512 * 512 },
{ UID_EnhancedXAImageStorage, "XAe", 256 * 512 * 512 },
{ UID_EnhancedXRFImageStorage, "RFe", 256 * 512 * 512 },
{ UID_GeneralAudioWaveformStorage, "AUG", 4096 },
{ UID_GeneralECGWaveformStorage, "ECG", 4096 },
{ UID_GenericImplantTemplateStorage, "IT", 4096 },
{ UID_GrayscaleSoftcopyPresentationStateStorage, "PSg", 4096 },
{ UID_HemodynamicWaveformStorage, "WVh", 4096 },
{ UID_ImplantAssemblyTemplateStorage, "ITa", 4096 },
{ UID_ImplantationPlanSRDocumentStorage, "SRi", 4096 },
{ UID_ImplantTemplateGroupStorage, "ITg", 4096 },
{ UID_IntraocularLensCalculationsStorage, "OPc", 4096 },
{ UID_KeratometryMeasurementsStorage, "OPk", 4096 },
{ UID_KeyObjectSelectionDocumentStorage, "KO", 4096 },
{ UID_LensometryMeasurementsStorage, "OPl", 4096 },
{ UID_MacularGridThicknessAndVolumeReportStorage, "SRg", 4096 },
{ UID_MammographyCADSRStorage, "SRm", 4096 },
{ UID_MRImageStorage, "MR", 256 * 256 * 2},
{ UID_MRSpectroscopyStorage, "MRs", 256 * 512 * 512 },
{ UID_MultiframeGrayscaleByteSecondaryCaptureImageStorage, "SCb", 512 * 512 },
{ UID_MultiframeGrayscaleWordSecondaryCaptureImageStorage, "SCw", 512 * 512 * 2 },
{ UID_MultiframeSingleBitSecondaryCaptureImageStorage, "SCs", 1024 * 1024 }, /* roughly an A4 300dpi scan */
{ UID_MultiframeTrueColorSecondaryCaptureImageStorage, "SCc", 512 * 512 * 3 },
{ UID_NuclearMedicineImageStorage, "NM", 64 * 64 * 2 },
{ UID_OphthalmicAxialMeasurementsStorage, "OPx", 4096 },
{ UID_OphthalmicPhotography16BitImageStorage, "OPw", 768 * 576 * 6 },
{ UID_OphthalmicPhotography8BitImageStorage, "OPb", 768 * 576 * 3 },
{ UID_OphthalmicTomographyImageStorage, "OPt", 768 * 576 * 3 },
{ UID_OphthalmicVisualFieldStaticPerimetryMeasurementsStorage, "OPp", 4096 },
{ UID_PositronEmissionTomographyImageStorage, "PI", 512 * 512 * 2 },
{ UID_ProcedureLogStorage, "SRp", 4096 },
{ UID_PseudoColorSoftcopyPresentationStateStorage, "PSp", 4096 },
{ UID_RawDataStorage, "RAW", 512 * 512 * 256 },
{ UID_RealWorldValueMappingStorage, "RWM", 4096 },
{ UID_RespiratoryWaveformStorage, "WVr", 4096 },
{ UID_RTBeamsTreatmentRecordStorage, "RTb", 4096 },
{ UID_RTBrachyTreatmentRecordStorage, "RTr", 4096 },
{ UID_RTDoseStorage, "RD", 4096 },
{ UID_RTImageStorage, "RI", 4096 },
{ UID_RTIonBeamsTreatmentRecordStorage, "RTi", 4096 },
{ UID_RTIonPlanStorage, "RPi", 4096 },
{ UID_RTPlanStorage, "RP" , 4096 },
{ UID_RTStructureSetStorage, "RS", 4096 },
{ UID_RTTreatmentSummaryRecordStorage, "RTs", 4096 },
{ UID_SecondaryCaptureImageStorage, "SC", 512 * 512 * 2 },
{ UID_SegmentationStorage, "SG", 4096 },
{ UID_SpatialFiducialsStorage, "FID", 4096 },
{ UID_SpatialRegistrationStorage, "RGs", 4096 },
{ UID_SpectaclePrescriptionReportStorage, "SRs", 4096 },
{ UID_StereometricRelationshipStorage, "OPr", 4096 },
{ UID_SubjectiveRefractionMeasurementsStorage, "OPs", 4096 },
{ UID_SurfaceSegmentationStorage, "SGs", 4096 },
{ UID_TwelveLeadECGWaveformStorage, "TLE", 4096 },
{ UID_UltrasoundImageStorage, "US", 512 * 512 },
{ UID_UltrasoundMultiframeImageStorage, "USm", 512 * 512 },
{ UID_VideoEndoscopicImageStorage, "VVe", 768 * 576 * 3 },
{ UID_VideoMicroscopicImageStorage, "VVm", 768 * 576 * 3 },
{ UID_VideoPhotographicImageStorage, "VVp", 768 * 576 * 3 },
{ UID_VisualAcuityMeasurementsStorage, "OPv", 4096 },
{ UID_VLEndoscopicImageStorage, "VLe", 768 * 576 * 3 },
{ UID_VLMicroscopicImageStorage, "VLm", 768 * 576 * 3 },
{ UID_VLPhotographicImageStorage, "VLp", 768 * 576 * 3 },
{ UID_VLSlideCoordinatesMicroscopicImageStorage, "VLs", 768 * 576 * 3 },
{ UID_VLWholeSlideMicroscopyImageStorage, "VLw", 10000 * 10000 * 3},
{ UID_XAXRFGrayscaleSoftcopyPresentationStateStorage, "PSx", 4096 },
{ UID_XRay3DAngiographicImageStorage, "XA3", 256 * 512 * 512 },
{ UID_XRay3DCraniofacialImageStorage, "XC3", 256 * 512 * 512 },
{ UID_XRayAngiographicImageStorage, "XA", 256 * 512 * 512 },
{ UID_XRayRadiationDoseSRStorage, "SRd", 4096 },
{ UID_XRayRadiofluoroscopicImageStorage, "RF", 256 * 512 * 512 },
// retired
{ UID_RETIRED_HardcopyColorImageStorage, "HC", 4096 },
{ UID_RETIRED_HardcopyGrayscaleImageStorage, "HG", 4096 },
{ UID_RETIRED_NuclearMedicineImageStorage, "NMr", 64 * 64 * 2 },
{ UID_RETIRED_StandaloneCurveStorage, "CV", 4096 },
{ UID_RETIRED_StandaloneModalityLUTStorage, "ML", 4096 * 2 },
{ UID_RETIRED_StandaloneOverlayStorage, "OV", 512 * 512 },
{ UID_RETIRED_StandalonePETCurveStorage, "PC", 4096 },
{ UID_RETIRED_StandaloneVOILUTStorage, "VO", 4096 * 2 },
{ UID_RETIRED_StoredPrintStorage, "SP", 4096 },
{ UID_RETIRED_UltrasoundImageStorage, "USr", 512 * 512 },
{ UID_RETIRED_UltrasoundMultiframeImageStorage, "USf", 512 * 512 },
{ UID_RETIRED_VLImageStorage, "VLr", 768 * 576 * 3 },
{ UID_RETIRED_VLMultiFrameImageStorage, "VMr", 768 * 576 * 3 },
{ UID_RETIRED_XRayAngiographicBiPlaneImageStorage, "XB", 512 * 512 * 2 },
// draft
{ UID_DRAFT_RTBeamsDeliveryInstructionStorage, "RBd", 4096 },
{ UID_DRAFT_SRAudioStorage, "SRw", 4096 },
{ UID_DRAFT_SRComprehensiveStorage, "SRx", 4096 },
{ UID_DRAFT_SRDetailStorage, "SRy", 4096 },
{ UID_DRAFT_SRTextStorage, "SRz", 4096 },
{ UID_DRAFT_WaveformStorage, "WVd", 4096 }
};
static const int numberOfDcmModalityTableEntries = (sizeof(modalities) / sizeof(DcmModalityTable));
/*
* Public Function Prototypes
*/
const char *dcmSOPClassUIDToModality(const char *sopClassUID,
const char *defaultValue)
{
if (sopClassUID == NULL) return NULL;
/* check for known SOP class */
for (int i = 0; i < numberOfDcmModalityTableEntries; i++)
{
if (strcmp(modalities[i].sopClass, sopClassUID) == 0) return modalities[i].modality;
}
/* SOP class not found */
return defaultValue;
}
unsigned long dcmGuessModalityBytes(const char *sopClassUID)
{
unsigned long nbytes = 1048576; /* default: 1 MByte */
if (sopClassUID == NULL) return nbytes;
int found=0;
for (int i = 0; (!found && (i < numberOfDcmModalityTableEntries)); i++)
{
found = (strcmp(modalities[i].sopClass, sopClassUID) == 0);
if (found) nbytes = modalities[i].averageSize;
}
return nbytes;
}
/*
** dcmFindNameOfUID(const char* uid)
** Return the name of a UID.
** Performs a table lookup and returns a pointer to a read-only string.
** Returns defaultValue of the UID is not known.
*/
const char*
dcmFindNameOfUID(const char* uid, const char* defaultValue)
{
int i = 0;
if (uid == NULL) return defaultValue;
for (i=0; i<uidNameMap_size; i++) {
if (uidNameMap[i].uid != NULL && strcmp(uid, uidNameMap[i].uid) == 0) {
return uidNameMap[i].name;
}
}
return defaultValue;
}
//
// dcmFindUIDFromName(const char* name)
// Return the UID of a name.
// Performs a table lookup and returns a pointer to a read-only string.
// Returns NULL of the name is not known.
//
const char *
dcmFindUIDFromName(const char * name)
{
if (name == NULL) return NULL;
for(int i = 0; i < uidNameMap_size; i++)
{
if (uidNameMap[i].name != NULL && strcmp(name, uidNameMap[i].name) == 0)
return uidNameMap[i].uid;
}
return NULL;
}
/*
** dcmIsaStorageSOPClassUID(const char* uid)
** Returns true if the uid is one of the Storage SOP Classes.
** Performs a table lookup in the dcmAllStorageSOPClassUIDs table.
*/
OFBool
dcmIsaStorageSOPClassUID(const char* uid)
{
int i = 0;
if (uid == NULL) return OFFalse;
for (i=0; i<numberOfAllDcmStorageSOPClassUIDs; i++) {
if (dcmAllStorageSOPClassUIDs[i] != NULL && strcmp(uid, dcmAllStorageSOPClassUIDs[i]) == 0) {
return OFTrue;
}
}
return OFFalse;
}
// ********************************
#ifndef HAVE_GETHOSTID
#ifdef HAVE_SYSINFO
#include <sys/systeminfo.h>
static long gethostid(void)
{
char buf[128];
if (sysinfo(SI_HW_SERIAL, buf, 128) == -1) {
char buf[256];
DCMDATA_FATAL("sysinfo: " << OFStandard::strerror(errno, buf, sizeof(buf));
exit(1);
}
#ifdef HAVE_STRTOUL
return(strtoul(buf, NULL, 0));
#else
long result;
sscanf(buf, "%ld", &result);
return result;
#endif
}
#else // !HAVE_SYSINFO
/*
** There is no implementation of gethostid() and we cannot implement it in
** terms of sysinfo() so define a workaround.
*/
#if (defined(HAVE_GETHOSTNAME) && defined(HAVE_GETHOSTBYNAME)) || defined(HAVE_WINDOWS_H)
// 16K should be large enough to handle everything pointed to by a struct hostent
#define GETHOSTBYNAME_R_BUFSIZE 16384
/* On Windows systems specify a routine to determine the MAC address of the Ethernet adapter */
/* Special handling for MinGW which does not yet (as of MinGW 2.0) support snmp.h */
#if defined(HAVE_WINDOWS_H) && !defined(__MINGW32__)
#include <snmp.h>
// Visual C++ prior to version 6 declared different type names
// in <snmp.h>, so we need to define a mapping
#if _MSC_VER < 1200
typedef RFC1157VarBind SnmpVarBind;
typedef RFC1157VarBindList SnmpVarBindList;
typedef AsnInteger AsnInteger32;
#define SNMP_PDU_GETNEXT ASN_RFC1157_GETNEXTREQUEST
#endif
typedef int(WINAPI *pSnmpUtilOidCpy) (
OUT AsnObjectIdentifier *pOidDst,
IN AsnObjectIdentifier *pOidSrc);
typedef int(WINAPI *pSnmpUtilOidNCmp) (
IN AsnObjectIdentifier *pOid1,
IN AsnObjectIdentifier *pOid2,
IN UINT nSubIds);
typedef void(WINAPI *pSnmpUtilVarBindFree) (
IN OUT SnmpVarBind *pVb);
typedef bool(WINAPI *pSnmpExtensionInit) (
IN DWORD dwTimeZeroReference,
OUT HANDLE *hPollForTrapEvent,
OUT AsnObjectIdentifier *supportedView);
typedef bool(WINAPI *pSnmpExtensionTrap) (
OUT AsnObjectIdentifier *enterprise,
OUT AsnInteger32 *genericTrap,
OUT AsnInteger32 *specificTrap,
OUT AsnTimeticks *timeStamp,
OUT SnmpVarBindList *variableBindings);
typedef bool(WINAPI *pSnmpExtensionQuery) (
IN BYTE requestType,
IN OUT SnmpVarBindList *variableBindings,
OUT AsnInteger32 *errorStatus,
OUT AsnInteger32 *errorIndex);
typedef bool(WINAPI *pSnmpExtensionInitEx) (
OUT AsnObjectIdentifier *supportedView);
typedef struct _ASTAT_
{
ADAPTER_STATUS adapt;
NAME_BUFFER NameBuff[30];
} ASTAT, *PASTAT;
/* get the MAC address of the (first) Ethernet adapter (6 bytes) */
static unsigned char *getMACAddress(unsigned char buffer[6])
{
OFBool success = OFFalse;
/* init return variable */
memzero(buffer, 6 * sizeof(unsigned char));
NCB ncb;
memzero(&ncb, sizeof(ncb));
/* reset the LAN adapter */
ncb.ncb_command = NCBRESET;
/* it is considered bad practice to hardcode the LANA number (should enumerate
adapters first), but at least this approach also works on Windows 9x */
ncb.ncb_lana_num = 0;
if (Netbios(&ncb) == NRC_GOODRET)
{
ASTAT Adapter;
/* prepare to get the adapter status block */
memzero(&ncb, sizeof(ncb));
ncb.ncb_command = NCBASTAT;
/* it is considered bad practice to hardcode the LANA number (should enumerate
adapters first), but at least this approach also works on Windows 9x */
ncb.ncb_lana_num = 0;
strcpy((char *)ncb.ncb_callname, "*");
ncb.ncb_buffer = (unsigned char *)&Adapter;
ncb.ncb_length = sizeof(Adapter);
/* get the adapter's info */
if (Netbios(&ncb) == 0)
{
/* store the MAC address */
buffer[0] = Adapter.adapt.adapter_address[0];
buffer[1] = Adapter.adapt.adapter_address[1];
buffer[2] = Adapter.adapt.adapter_address[2];
buffer[3] = Adapter.adapt.adapter_address[3];
buffer[4] = Adapter.adapt.adapter_address[4];
buffer[5] = Adapter.adapt.adapter_address[5];
success = OFTrue;
}
}
/* check whether NetBIOS routines succeeded, if not try the SNMP approach */
if (!success)
{
HINSTANCE m_hInst1, m_hInst2;
/* load the "SNMP Utility Library" dll and get the addresses of the functions necessary */
m_hInst1 = LoadLibrary("snmpapi.dll");
if (m_hInst1 >= (HINSTANCE)HINSTANCE_ERROR)
{
pSnmpUtilOidCpy m_Copy = (pSnmpUtilOidCpy)GetProcAddress(m_hInst1, "SnmpUtilOidCpy");
pSnmpUtilOidNCmp m_Compare = (pSnmpUtilOidNCmp)GetProcAddress(m_hInst1, "SnmpUtilOidNCmp");
pSnmpUtilVarBindFree m_BindFree = (pSnmpUtilVarBindFree)GetProcAddress(m_hInst1, "SnmpUtilVarBindFree");
/* load the "SNMP Internet MIB" dll and get the addresses of the functions necessary */
m_hInst2 = LoadLibrary("inetmib1.dll");
if (m_hInst2 >= (HINSTANCE)HINSTANCE_ERROR)
{
HANDLE PollForTrapEvent;
AsnObjectIdentifier SupportedView;
UINT OID_ifEntryType[] = {1, 3, 6, 1, 2, 1, 2, 2, 1, 3};
UINT OID_ifEntryNum[] = {1, 3, 6, 1, 2, 1, 2, 1};
UINT OID_ipMACEntAddr[] = {1, 3, 6, 1, 2, 1, 2, 2, 1, 6};
AsnObjectIdentifier MIB_ifMACEntAddr = {sizeof(OID_ipMACEntAddr) / sizeof(UINT), OID_ipMACEntAddr};
AsnObjectIdentifier MIB_ifEntryType = {sizeof(OID_ifEntryType) / sizeof(UINT), OID_ifEntryType};
AsnObjectIdentifier MIB_ifEntryNum = {sizeof(OID_ifEntryNum) / sizeof(UINT), OID_ifEntryNum};
SnmpVarBindList varBindList;
SnmpVarBind varBind[2];
AsnInteger32 errorStatus;
AsnInteger32 errorIndex;
AsnObjectIdentifier MIB_NULL = {0, 0};
int ret;
int dtmp;
int j = 0;
pSnmpExtensionInit m_Init = (pSnmpExtensionInit)GetProcAddress(m_hInst2, "SnmpExtensionInit");
/* pSnmpExtensionInitEx m_InitEx = (pSnmpExtensionInitEx)GetProcAddress(m_hInst2, "SnmpExtensionInitEx"); */
pSnmpExtensionQuery m_Query = (pSnmpExtensionQuery)GetProcAddress(m_hInst2, "SnmpExtensionQuery");
/* pSnmpExtensionTrap m_Trap = (pSnmpExtensionTrap)GetProcAddress(m_hInst2, "SnmpExtensionTrap"); */
m_Init(GetTickCount(), &PollForTrapEvent, &SupportedView);
/* initialize the variable list to be retrieved by m_Query */
varBindList.list = varBind;
varBind[0].name = MIB_NULL;
varBind[1].name = MIB_NULL;
/* copy in the OID to find the number of entries in the inteface table */
varBindList.len = 1; /* only retrieving one item */
m_Copy(&varBind[0].name, &MIB_ifEntryNum);
ret = m_Query(SNMP_PDU_GETNEXT, &varBindList, &errorStatus, &errorIndex);
varBindList.len = 2;
/* copy in the OID of ifType, the type of interface */
m_Copy(&varBind[0].name, &MIB_ifEntryType);
/* copy in the OID of ifPhysAddress, the address */
m_Copy(&varBind[1].name, &MIB_ifMACEntAddr);
do {
/* Submit the query. Responses will be loaded into varBindList.
We can expect this call to succeed a # of times corresponding
to the # of adapters reported to be in the system */
ret = m_Query(SNMP_PDU_GETNEXT, &varBindList, &errorStatus, &errorIndex);
if (!ret)
ret = 1;
else
{
/* confirm that the proper type has been returned */
ret = m_Compare(&varBind[0].name, &MIB_ifEntryType, MIB_ifEntryType.idLength);
}
if (!ret)
{
j++;
dtmp = varBind[0].value.asnValue.number;
/* type 6 describes ethernet interfaces */
if (dtmp == 6)
{
/* confirm that we have an address here */
ret = m_Compare(&varBind[1].name, &MIB_ifMACEntAddr,MIB_ifMACEntAddr.idLength);
if ((!ret) && (varBind[1].value.asnValue.address.stream != NULL))
{
if ((varBind[1].value.asnValue.address.stream[0] == 0x44) &&
(varBind[1].value.asnValue.address.stream[1] == 0x45) &&
(varBind[1].value.asnValue.address.stream[2] == 0x53) &&
(varBind[1].value.asnValue.address.stream[3] == 0x54) &&
(varBind[1].value.asnValue.address.stream[4] == 0x00))
{
/* ignore all dial-up networking adapters */
continue;
}
if ((varBind[1].value.asnValue.address.stream[0] == 0x00) &&
(varBind[1].value.asnValue.address.stream[1] == 0x00) &&
(varBind[1].value.asnValue.address.stream[2] == 0x00) &&
(varBind[1].value.asnValue.address.stream[3] == 0x00) &&
(varBind[1].value.asnValue.address.stream[4] == 0x00) &&
(varBind[1].value.asnValue.address.stream[5] == 0x00))
{
/* ignore NULL addresses returned by other network interfaces */
continue;
}
/* store the MAC address */
buffer[0] = varBind[1].value.asnValue.address.stream[0];
buffer[1] = varBind[1].value.asnValue.address.stream[1];
buffer[2] = varBind[1].value.asnValue.address.stream[2];
buffer[3] = varBind[1].value.asnValue.address.stream[3];
buffer[4] = varBind[1].value.asnValue.address.stream[4];
buffer[5] = varBind[1].value.asnValue.address.stream[5];
ret = 1; // we found an address -> exit
}
}
}
} while (!ret); /* Stop only on an error. An error will occur when we
go exhaust the list of interfaces to be examined */
FreeLibrary(m_hInst2);
/* free the bindings */
m_BindFree(&varBind[0]);
m_BindFree(&varBind[1]);
}
FreeLibrary(m_hInst1);
}
}
return buffer;
}
#endif
#ifdef HAVE_PROTOTYPE_GETHOSTID
/* CW10 has a prototype but no implementation (gethostid() is already declared extern */
long gethostid(void)
#else
static long gethostid(void)
#endif
{
long result = 0;
#if (defined(HAVE_GETHOSTNAME) && defined(HAVE_GETHOSTBYNAME)) || defined(HAVE_WINDOWS_H)
char name[1024];
struct hostent *hent = NULL;
char **p = NULL;
struct in_addr in;
#ifdef HAVE_WINSOCK_H
WSAData winSockData;
/* we need at least version 1.1 */
WORD winSockVersionNeeded = MAKEWORD(1, 1);
WSAStartup(winSockVersionNeeded, &winSockData);
#endif
/*
** Define the hostid to be the system's main TCP/IP address.
** This is not perfect but it is better than nothing (i.e. using zero)
*/
if (gethostname(name, 1024) == 0)
{
#if defined(_REENTRANT) && !defined(_WIN32) && !defined(__CYGWIN__)
// use gethostbyname_r instead of gethostbyname
int h_errnop=0;
struct hostent theHostent;
char buffer[GETHOSTBYNAME_R_BUFSIZE];
if ((hent = gethostbyname_r(name, &theHostent, buffer, GETHOSTBYNAME_R_BUFSIZE, &h_errnop)) != NULL)
#else
if ((hent = gethostbyname(name)) != NULL)
#endif
{
p = hent->h_addr_list;
if (p && *p)
{
(void) memcpy(&in.s_addr, *p, sizeof(in.s_addr));
result = (long)in.s_addr;
}
}
}
#ifdef HAVE_WINSOCK_H
WSACleanup();
#endif
#endif /* defined(HAVE_GETHOSTNAME) && defined(HAVE_GETHOSTBYNAME) */
/* on Windows systems determine some system specific information (e.g. MAC address) */
#ifdef HAVE_WINDOWS_H
OFCRC32 crc;
/* get some processor specific information in addition to the MAC address */
SYSTEM_INFO systemInfo;
GetSystemInfo(&systemInfo);
/* get volume information of the system drive */
char systemDrive[MAX_PATH];
DWORD serialNumber = 0;
if (GetSystemDirectory(systemDrive, sizeof(systemDrive)) >= 0)
{
/* check for proper pathname */
if ((strlen(systemDrive) >= 3) && (systemDrive[1] == ':') && (systemDrive[2] == '\\'))
{
/* truncate the pathname directly after the drive specification */
systemDrive[3] = 0;
if (!GetVolumeInformation(systemDrive, NULL, 0, &serialNumber, NULL, NULL, NULL, 0))
serialNumber = 0;
}
}
/* concatenate the host specific elements and compute a 32-bit checksum */
crc.addBlock(&result /*ip address*/, sizeof(result));
#ifndef __MINGW32__
/* on MinGW, getMacAddress() is not yet available. */
unsigned char buffer[6];
crc.addBlock(getMACAddress(buffer), sizeof(buffer));
#endif
crc.addBlock(&serialNumber, sizeof(serialNumber));
crc.addBlock(&systemInfo.wProcessorLevel, sizeof(systemInfo.wProcessorLevel));
crc.addBlock(&systemInfo.wProcessorRevision, sizeof(systemInfo.wProcessorRevision));
crc.addBlock(&systemInfo.dwProcessorType, sizeof(systemInfo.dwProcessorType));
result = (long)crc.getCRC32();
#endif
/* 'artificial' hostid: on Windows system a CRC32 checksum over some host specific
information (e.g. MAC address), the 4 bytes TCP/IP address otherwise.
*/
return result;
}
#else // !(defined(HAVE_GETHOSTNAME) && defined(HAVE_GETHOSTBYNAME))
/*
** last chance workaround if there is no other way
*/
#ifdef HAVE_PROTOTYPE_GETHOSTID
/* CW10 has a prototype but no implementation (gethostid() is already declared extern */
long gethostid(void) { return 0; }
#else
static long gethostid(void) { return 0; }
#endif
#endif // !(defined(HAVE_GETHOSTNAME) && defined(HAVE_GETHOSTBYNAME))
#endif // !HAVE_SYSINFO
#else // HAVE_GETHOSTID
#ifndef HAVE_PROTOTYPE_GETHOSTID
extern "C" {
long gethostid(void);
}
#endif // !HAVE_PROTOTYPE_GETHOSTID
#endif // HAVE_GETHOSTID
// ********************************
/*
* Global variable storing the return value of gethostid().
* Since the variable is not declared in the header file it can only be used
* within this source file. Any access to or modification of its value is
* protected by a mutex (see dcmGenerateUniqueIdentifier()).
*/
static unsigned long hostIdentifier = 0;
/*
** char* generateUniqueIdentifer(char* buf)
** Creates a Unique Identifer in buf and returns buf.
** buf must be at least 65 bytes.
*/
#ifdef WITH_THREADS
static OFMutex uidCounterMutex; // mutex protecting access to counterOfCurrentUID and hostIdentifier
#endif
static unsigned int counterOfCurrentUID = 0;
static const unsigned int maxUIDLen = 64; /* A UID may be 64 chars or less */
static void
initCounterOfCurrentUID()
{
/* Code taken from oftime.cc */
#ifdef HAVE_WINDOWS_H
/* Windows: no microseconds available, use milliseconds instead */
SYSTEMTIME timebuf;
GetSystemTime(&timebuf);
counterOfCurrentUID = timebuf.wMilliseconds; /* This is in the range 0 - 999 */
#else /* Unix */
struct timeval tv;
if (gettimeofday(&tv, NULL) == 0)
counterOfCurrentUID = tv.tv_usec; /* This is in the range 0 - 999999 */
#endif
/* Do not ever use "0" for the counter */
counterOfCurrentUID++;
}
static char*
stripTrailing(char* s, char c)
{
int i, n;
if (s == NULL) return s;
n = strlen(s);
for (i = n - 1; (i >= 0) && (s[i] == c); i--)
s[i] = '\0';
return s;
}
static void
addUIDComponent(char* uid, const char* s)
{
/* copy into UID as much of the contents of s as possible */
if (OFStandard::strlcat(uid, s, maxUIDLen + 1) >= maxUIDLen + 1) // maxUIDLen+1 because strlcat() wants the size of the buffer, not the permitted number of characters.
{
DCMDATA_WARN("Truncated UID in dcmGenerateUniqueIdentifier(), SITE_UID_ROOT too long?");
}
stripTrailing(uid, '.');
}
inline static unsigned long
forcePositive(long i)
{
return (i < 0) ? OFstatic_cast(unsigned long, -i) : OFstatic_cast(unsigned long, i);
}
char* dcmGenerateUniqueIdentifier(char* uid, const char* prefix)
{
char buf[128]; /* be very safe */
uid[0] = '\0'; /* initialise */
#ifdef WITH_THREADS
uidCounterMutex.lock();
#endif
if (hostIdentifier == 0)
{
/* On 64-bit Linux, the "32-bit identifier" returned by gethostid() is
sign-extended to a 64-bit long, so we need to blank the upper 32 bits */
hostIdentifier = OFstatic_cast(unsigned long, gethostid() & 0xffffffff);
}
if (counterOfCurrentUID == 0)
initCounterOfCurrentUID();
unsigned int counter = counterOfCurrentUID++;
#ifdef WITH_THREADS
uidCounterMutex.unlock();
#endif
if (prefix != NULL ) {
addUIDComponent(uid, prefix);
} else {
addUIDComponent(uid, SITE_INSTANCE_UID_ROOT);
}
sprintf(buf, ".%lu", hostIdentifier);
addUIDComponent(uid, buf);
sprintf(buf, ".%lu", forcePositive(OFStandard::getProcessID()));
addUIDComponent(uid, buf);
sprintf(buf, ".%lu", forcePositive(OFstatic_cast(long, time(NULL))));
addUIDComponent(uid, buf);
sprintf(buf, ".%u", counter);
addUIDComponent(uid, buf);
return uid;
}
/*
** CVS/RCS Log:
** $Log: dcuid.cc,v $
** Revision 1.89 2010-11-05 10:26:08 joergr
** Added new SOP Class UIDs from Supplement 131 and 134 (Implant Templates).
**
** Revision 1.88 2010-10-14 13:14:09 joergr
** Updated copyright header. Added reference to COPYRIGHT file.
**
** Revision 1.87 2010-10-04 14:44:42 joergr
** Replaced "#ifdef _REENTRANT" by "#ifdef WITH_THREADS" where appropriate (i.e.
** in all cases where OFMutex, OFReadWriteLock, etc. are used).
**
** Revision 1.86 2010-10-01 10:21:05 uli
** Fixed most compiler warnings from -Wall -Wextra -pedantic in dcmdata.
**
** Revision 1.85 2010-09-30 14:08:17 joergr
** Added two Model UIDs from Supplement 118 (Application Hosting).
**
** Revision 1.84 2010-09-30 07:53:23 joergr
** Fixed typo in the name of a Storage SOP Class (copied from DICOM part 6).
**
** Revision 1.83 2010-09-28 07:56:07 joergr
** Added VL Whole Slide Microscopy Image Storage SOP Class (Supplement 145).
**
** Revision 1.82 2010-09-27 14:05:01 joergr
** Updated list of SOP Class UIDs and well-known SOP Instance UIDs according to
** the current edition of the DICOM standard (including final text supplements).
**
** Revision 1.81 2010-09-24 13:24:37 joergr
** Compared names of SOP Class UIDs with 2009 edition of the DICOM standard. The
** resulting name changes are mainly caused by the fact that the corresponding
** SOP Class is now retired.
**
** Revision 1.80 2010-09-15 08:53:05 joergr
** Added definition of XML encoding transfer syntax (Supplement 114) and JPIP
** referenced transfer syntaxes (Supplement 106).
**
** Revision 1.79 2010-09-02 12:12:46 joergr
** Added support for "MPEG2 Main Profile @ High Level" transfer syntax.
**
** Revision 1.78 2010-08-10 12:31:15 uli
** Fixed some cases where dcmFindNameOfUID() returning NULL could cause crashes.
**
** Revision 1.77 2010-07-07 07:28:38 onken
** Added Ophthalmic Tomography Image Storage to list of supported SOP classes.
**
** Revision 1.76 2010-06-03 10:28:41 joergr
** Replaced calls to strerror() by new helper function OFStandard::strerror()
** which results in using the thread safe version of strerror() if available.
**
** Revision 1.75 2010-03-01 09:08:45 uli
** Removed some unnecessary include directives in the headers.
**
** Revision 1.74 2010-02-22 11:39:54 uli
** Remove some unneeded includes.
**
** Revision 1.73 2010-01-20 13:49:47 uli
** Added OFStandard::getProcessID().
**
** Revision 1.72 2009-11-04 09:58:10 uli
** Switched to logging mechanism provided by the "new" oflog module
**
** Revision 1.71 2009-09-28 13:30:59 joergr
** Moved general purpose definition file from module dcmdata to ofstd, and
** added new defines in order to make the usage easier.
**
** Revision 1.70 2009-08-03 16:01:41 meichel
** In order to reduce the probability of generating duplicate UIDs when one
** process is spawned immediately after termination of another one, and both
** use the same process ID and generate UIDs within the same second of
** system time (which may happen if a command line tool is implemented that
** just generates and prints a single UID and then terminates, and that tool
** is called repeatedly from a shell script), initialize the counter
** component of the UID with a sub-second fraction from the system time
** (microseconds on Posix systems, milliseconds on Win32).
**
** Revision 1.69 2009-08-03 15:50:09 meichel
** Fixed possible buffer overflow in UID generation code when UID root too
** long. Now printing warning message to stderr when truncating a UID.
**
** Revision 1.68 2009-01-29 15:58:47 onken
** Fixed compilation under windows (missing memzero) by including dcdefine.h.
**
** Revision 1.67 2009-01-29 11:14:07 joergr
** Fixed issue with array initialization on x64 platform with Windows Vista and
** VisualStudio 2008.
**
** Revision 1.66 2007/07/11 08:49:54 meichel
** Changed the modality codes used for filename generation for the current and
** retired ultrasound multiframe SOP classes to USm and USf, respectively.
**
** Revision 1.65 2006/11/17 15:37:32 joergr
** Mask out the upper 32 bits gethostid()'s return value since on 64-bit Linux
** it is sign-extended to a 64-bit long.
**
** Revision 1.64 2006/10/27 11:42:24 joergr
** Added new default parameter to dcmSOPClassUIDToModality() that allows for
** the specification of the return value in case the SOP Class is unknown.
**
** Revision 1.63 2006/08/15 15:49:54 meichel
** Updated all code in module dcmdata to correctly compile when
** all standard C++ classes remain in namespace std.
**
** Revision 1.62 2005/12/08 15:41:42 meichel
** Changed include path schema for all DCMTK header files
**
** Revision 1.61 2005/11/17 14:25:12 meichel
** Fixed warnings reported by VS2005
**
** Revision 1.60 2005/11/16 18:36:10 joergr
** Added support for X-Ray Radiation Dose SR SOP class.
** Synchronized list of supported SOP classes in source code and documentation.
**
** Revision 1.59 2005/10/25 08:55:34 meichel
** Updated list of UIDs and added support for new transfer syntaxes
** and storage SOP classes.
**
** Revision 1.58 2005/02/17 13:10:41 joergr
** Renamed "MicroscopicImageStorage" to "VideoMicroscopicImageStorage".
**
** Revision 1.57 2004/11/10 12:37:56 meichel
** Updated directory of UIDs for 2004 DICOM edition. Removed all standalone and
** most retired storage SOP classes from list of storage SOP classes for
** storescu, storescp, imagectn etc. to keep list shorter than 64 entries.
**
** Revision 1.56 2004/08/03 11:41:09 meichel
** Headers libc.h and unistd.h are now included via ofstdinc.h
**
** Revision 1.55 2004/04/16 08:38:41 joergr
** Added missing comma separator to UIDNameMap.
**
** Revision 1.54 2004/04/06 18:08:04 joergr
** Updated data dictionary, UIDs and transfer syntaxes for the latest Final Text
** Supplements (42 and 47) and Correction Proposals (CP 25).
** Added missing suffix "TransferSyntax" to some transfer syntax constants.
**
** Revision 1.53 2004/03/16 13:49:49 joergr
** Updated comment.
**
** Revision 1.52 2004/03/16 13:43:08 joergr
** Renamed UID_BasicDirectoryStorageSOPClass to UID_MediaStorageDirectoryStorage.
**
** Revision 1.51 2004/02/13 14:11:54 joergr
** Fixed wrong spelling of "SpatialFiducialsStorage".
**
** Revision 1.50 2004/02/13 11:46:44 joergr
** Corrected order of UIDs, modified comments and other minor corrections.
** Changed filename prefix for some storage SOP classes (array "modalities").
** Replaced non-Unix newline characters.
**
** Revision 1.49 2004/02/11 15:53:30 wilkens
** Updated attribute and UID specification (update before dcmtk 3.5.3 release).
**
** Revision 1.48 2004/02/04 16:47:04 joergr
** Adapted type casts to new-style typecast operators defined in ofcast.h.
** Removed acknowledgements with e-mail addresses from CVS log.
**
** Revision 1.47 2003/10/09 12:50:25 joergr
** Added support for SOP Class "Procedure Log" (Supplement 66).
**
** Revision 1.46 2003/07/03 14:25:30 meichel
** Added special handling for MinGW where getMacAddress() cannot
** be compiled because the <snmp.h> header file is not (yet) available.
**
** Revision 1.45 2003/05/20 09:06:28 joergr
** Added support for SOP Class "Chest CAD SR" (Supplement 65).
**
** Revision 1.44 2003/03/21 13:08:04 meichel
** Minor code purifications for warnings reported by MSVC in Level 4
**
** Revision 1.43 2002/12/09 13:14:07 joergr
** Renamed parameter/local variable to avoid name clashes with global
** declaration left and/or right (used for as iostream manipulators).
**
** Revision 1.42 2002/12/09 13:03:22 meichel
** Updated list of UIDs
**
** Revision 1.41 2002/11/27 12:06:53 meichel
** Adapted module dcmdata to use of new header file ofstdinc.h
**
** Revision 1.40 2002/08/27 16:55:14 meichel
** Restricted list of storage SOP classes to less than 64 to prevent
** presentation context overflow in various tools
**
** Revision 1.39 2002/06/19 15:35:46 meichel
** Updated list of SOP Class UIDs for Supplement 49
**
** Revision 1.38 2002/05/16 12:37:31 meichel
** Fixed problem with new UID creation routines on Visual C++ 5 where
** some type names and constants in <snmp.h> are defined differently
** than on Visual C++ 6.
**
** Revision 1.37 2002/04/16 13:43:22 joergr
** Added configurable support for C++ ANSI standard includes (e.g. streams).
**
** Revision 1.36 2002/01/08 11:16:58 joergr
** Enhanced algorithm to create unique identifiers (i.e. a unique suffix for
** DICOM UIDs) on Windows systems where gethostid() is not available. Fixed
** some minor inconsistencies regarding the creation of unique identifiers.
**
** Revision 1.35 2001/11/08 16:17:34 meichel
** Updated data dictionary, UIDs and transfer syntaxes for DICOM 2001 edition.
**
** Revision 1.34 2001/06/05 10:08:16 joergr
** Replaced some #ifdef _WIN32 statements by #ifdef HAVE_WINDOWS_H or #ifdef
** __CYGWIN__ respectively to reflect the fact that the latest Cygwin/gcc
** version does not define _WIN32 any more.
**
** Revision 1.33 2001/06/01 15:49:12 meichel
** Updated copyright header
**
** Revision 1.32 2001/05/25 09:50:24 meichel
** Updated data dictionary and UID list (again).
**
** Revision 1.31 2001/05/10 16:10:41 meichel
** Updated data dictionary and UID list
**
** Revision 1.30 2000/12/14 12:48:27 joergr
** Updated SOP Class and Transfer Syntax UIDs for 2000 edition of the DICOM
** standard.
**
** Revision 1.29 2000/12/12 12:32:43 joergr
** Replaced #ifdef HAVE_WINDOWS_H by _WIN32 to allow Cygwin 1.1.x to compile
** with Posix threads.
**
** Revision 1.28 2000/05/30 15:45:11 joergr
** Changed #ifdef statement to ensure correct compilation under Windows.
**
** Revision 1.27 2000/04/14 16:04:53 meichel
** Made function dcmGenerateUniqueIdentifer thread safe by protecting
** the counter with a Mutex and using gethostbyname_r instead of
** gethostbyname on Posix platforms.
**
** Revision 1.26 2000/03/08 16:26:43 meichel
** Updated copyright header.
**
** Revision 1.25 2000/03/03 14:05:37 meichel
** Implemented library support for redirecting error messages into memory
** instead of printing them to stdout/stderr for GUI applications.
**
** Revision 1.24 2000/02/23 15:12:04 meichel
** Corrected macro for Borland C++ Builder 4 workaround.
**
** Revision 1.23 2000/02/03 11:48:26 meichel
** Rebuilt data dictionary based on 1999 standard text,
** latest supplements and CP packet 6.
**
** Revision 1.22 2000/02/01 10:12:10 meichel
** Avoiding to include <stdlib.h> as extern "C" on Borland C++ Builder 4,
** workaround for bug in compiler header files.
**
** Revision 1.21 1999/07/14 12:02:36 meichel
** Updated data dictionary for supplement 29, 39, 33_lb, CP packet 4 and 5.
** Corrected dcmtk applications for changes in attribute name constants.
**
** Revision 1.20 1999/04/21 13:02:32 meichel
** Now always including <windows.h> instead of <winsock.h> on Win32 platforms.
** This makes sure that <winsock2.h> is used if available.
**
** Revision 1.19 1999/03/31 09:25:43 meichel
** Updated copyright header in module dcmdata
**
** Revision 1.18 1999/03/29 10:13:40 meichel
** Corrected list of image SOP classes
**
** Revision 1.17 1999/03/22 13:41:24 meichel
** Reworked UID list based on the 1998 DICOM edition and the latest
** supplement versions.
**
** Revision 1.16 1998/10/26 13:02:53 meichel
** Updated data dictionary and UIDs for Grayscale Softcopy Presentation State
** (Supplement 33 frozen draft).
**
** Revision 1.15 1998/02/25 14:29:02 hewett
** Updated data dictionary and UID information to reflect changes in
** Supplement 24 (Stored Print Related SOP Classes). Some data dictionary
** attibutes and UIDs have changed between the Letter Ballot version and
** the Final Text version.
**
** Revision 1.14 1998/02/06 09:41:56 hewett
** Corrected typo in UID table.
**
** Revision 1.13 1998/02/06 09:05:16 hewett
** Updated support for Supplements 15 (Visible Light),
** 16 (Postscript Print Management), 17 (Modality Performed Procedure Step),
** 22 (Presentation Look Up Table (LUT)), 23 (Structured Reporting),
** 24 (Stored Print), 30 (Waveform Interchange).
**
** Revision 1.12 1998/01/14 15:15:02 hewett
** Added basic support for the Structured Reporting (SR) SOP Classes.
**
** Revision 1.11 1997/10/13 11:34:49 hewett
** Fixed unimportant spelling error in comment (StopClass -> SOPClass).
**
** Revision 1.10 1997/09/22 14:56:56 hewett
** Added a global list of Image SOP Classes UIDs (dcmImageSOPClassUIDs)
** which is used by dcmgpdir to identify SOP Classes which can be
** referenced from a DICOMDIR IMAGE record.
**
** Revision 1.9 1997/05/13 13:54:27 hewett
** Added UIDs and data dictionary attributes for the draft supplements 12 (PET),
** 13 (Queue Management), 15 (Visible Light), 17 (Modality Performed Procedure
** Step), 22 (User Preference LUT) and 24 (Print Storage). Updated UID tables
** so that recompiled Storage SCP/SCU's will handle the new SOPs.
**
** Revision 1.8 1997/01/13 15:50:49 hewett
** Fixed bug when creating unique identifers. No check was made to ensure
** that negative numbers never appeared in a UID. Also added an
** implementation of a simple gethostid() function for systems which
** lack this function (e.g. Mac & Windows). The implementation requires
** TCP/IP to be available.
**
** Revision 1.7 1996/09/24 16:00:59 hewett
** Added SOP Class UIDs for Radiotherapy Objects.
** Added a separate table of Storage SOP Class UIDs (usefull during
** association negotiation).
**
** Revision 1.6 1996/04/19 12:46:21 hewett
** Added UID for RLE Lossless transfer syntax
**
** Revision 1.5 1996/03/22 12:42:22 andreas
** findUIDfromName does not dump anymore if name does not correspond to a uid
**
** Revision 1.4 1996/03/11 14:38:01 hewett
** Added new SOP Class UIDs.
**
** Revision 1.3 1996/01/29 13:38:30 andreas
** - new put method for every VR to put value as a string
** - better and unique print methods
**
** Revision 1.2 1996/01/23 17:29:25 andreas
** Support for old fashioned make without @^
** Support for machines that have mktemp but do not define it.
**
** Revision 1.1 1995/11/23 17:02:56 hewett
** Updated for loadable data dictionary. Some cleanup (more to do).
**
*/
|