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 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134
|
#! /bin/sh
#!perl -w # --*- Perl -*--
eval 'exec perl -x $0 ${1+"$@"}'
if 0;
#------------------------------------------------------------------------------
#$Author: antanas $
#$Date: 2022-07-25 16:31:46 +0300 (Mon, 25 Jul 2022) $
#$Revision: 9338 $
#$URL: svn+ssh://www.crystallography.net/home/coder/svn-repositories/cod-tools/tags/v3.7.0/scripts/cif_ddlm_dic_check $
#------------------------------------------------------------------------------
#*
#* Check DDLm dictionaries against a set of best practice rules.
#*
#* USAGE:
#* $0 --options cif_core.dic
#*
#* ENVIRONMENT:
#* COD_TOOLS_DDLM_IMPORT_PATH
#* A list of directories in which to look for the
#* DDLm-compliant CIF dictionaries that are imported
#* by other DDLm-compliant CIF dictionaries. List
#* elements are separated by the colon symbol (':').
#* Directories listed in COD_TOOLS_DDLM_IMPORT_PATH
#* have a lower priority than those provided using
#* the command line option (--add-dictionary-import-path),
#* but higher than the default import path directory
#* (directory of the importing dictionary).
#**
use strict;
use warnings;
binmode STDOUT, ':encoding(UTF-8)';
binmode STDERR, ':encoding(UTF-8)';
use File::Basename qw( fileparse );
use List::MoreUtils qw( any uniq );
use COD::CIF::Parser qw( parse_cif );
use COD::CIF::DDL::DDLm qw( build_ddlm_dic
get_all_data_names
get_type_container
get_type_contents
get_type_purpose
get_category_id
get_definition_class
get_definition_scope
get_dictionary_class
get_data_name
get_data_alias );
use COD::CIF::DDL::DDLm::Import qw( get_ddlm_import_path_from_env
resolve_dic_imports );
use COD::CIF::DDL::Ranges qw( parse_range
range_to_string
is_in_range );
use COD::CIF::Tags::Manage qw( get_item_loop_index
has_special_value );
use COD::SOptions qw( getOptions get_value );
use COD::SUsage qw( usage options );
use COD::ErrorHandler qw( process_parser_messages
process_warnings );
use COD::ToolsVersion qw( get_version_string );
##
# Checks if there is one and only one head category.
#
# @param $dic_data_block
# Dictionary data block as returned by the COD::CIF::Parser.
# @return
# Array reference to a list of validation messages.
##
sub check_head_category
{
my ( $dic_data_block ) = @_;
my @note;
my @head_categories;
for my $save_frame ( @{$dic_data_block->{'save_blocks'}} ) {
if ( uc get_definition_class( $save_frame ) eq 'HEAD' &&
uc get_definition_scope( $save_frame ) eq 'CATEGORY' ) {
push @head_categories, $save_frame;
}
};
if ( !@head_categories ) {
push @note, 'the mandatory HEAD save frame is missing';
};
if ( @head_categories > 1 ) {
push @note,
'more than one HEAD save frame located -- save frames [' .
( join ', ', map { "'$_->{'name'}'" } @head_categories ) .
'] are marked as having the \'HEAD\' definition class';
};
return \@note;
}
##
# Checks the consistency of the DICTIONARY_AUDIT loop and the related
# dictionary metadata items. The subroutine checks that:
# - Version values are of the correct format.
# - DICTIONARY_AUDIT loop is sorted in ascending order by
# the version number.
# - Changes to the current dictionary version are described
# in the DICTIONARY_AUDIT loop.
# - Dictionary revision date matches the date in
# the DICTIONARY_AUDIT loop packet.
# - Dictionary version number matches the latest version
# number in the DICTIONARY_AUDIT loop.
#
# @param $dic_data_block
# Dictionary data block as returned by the COD::CIF::Parser.
# @return
# Array reference to a list of validation messages.
##
sub check_dictionary_audit_loop
{
my ( $dic_data_block ) = @_;
my $dic_values = $dic_data_block->{'values'};
return [] if !defined $dic_values->{'_dictionary_audit.version'};
my @notes;
my %audit_packet = %{extract_audit_packets($dic_data_block)};
for my $version (sort keys %audit_packet) {
for my $issue (@{$audit_packet{$version}->{'parsed_version'}{'issues'}}) {
$issue = 'attribute \'_dictionary_audit.version\' ' . $issue;
push @notes, $issue;
}
}
# Check audit entry order
for my $i (0..($#{$dic_values->{'_dictionary_audit.version'}} - 1)) {
my $curr_ver_string = $dic_values->{'_dictionary_audit.version'}[$i];
my $curr_ver = get_parsed_version($audit_packet{$curr_ver_string});
next if !defined $curr_ver;
my $next_ver_string = $dic_values->{'_dictionary_audit.version'}[$i+1];
my $next_ver = get_parsed_version($audit_packet{$next_ver_string});
next if !defined $next_ver;
if ( compare_versions( $curr_ver, $next_ver ) > 0 ) {
push @notes,
'attribute \'_dictionary_audit.version\' value ' .
"'$curr_ver_string' appears before value '$next_ver_string' " .
'-- packets of the DICTIONARY_AUDIT loop should be sorted ' .
'in ascending order by the version number';
last;
}
}
return \@notes if !defined $dic_values->{'_dictionary.version'};
my $dic_version_string = $dic_values->{'_dictionary.version'}[0];
# Check if the version number is registered at all
if (!exists $audit_packet{$dic_version_string}) {
push @notes,
'changes to the current version of the dictionary are not ' .
'described in the DICTIONARY_AUDIT loop -- attribute ' .
"'_dictionary.version' value '$dic_version_string' was not " .
'found among the values of the \'_dictionary_audit.version\' ' .
'attribute';
} else {
if (defined $audit_packet{$dic_version_string}->{'date'} &&
defined $dic_values->{'_dictionary.date'} &&
($audit_packet{$dic_version_string}->{'date'} ne
$dic_values->{'_dictionary.date'}[0] ) ) {
push @notes,
'dictionary revision date specified using ' .
'the \'_dictionary.date\' attribute does not match ' .
'the date in the DICTIONARY_AUDIT loop packet for ' .
"version '$dic_version_string' " .
"('$dic_values->{'_dictionary.date'}[0]' vs. " .
"'$audit_packet{$dic_version_string}->{'date'}')";
}
}
my $dic_version = parse_and_check_version_string($dic_version_string);
for my $issue (@{$dic_version->{'issues'}}) {
$issue = 'attribute \'_dictionary.version\' ' . $issue;
push @notes, $issue;
}
# Check that the declared dictionary version is the latest one
if (defined $dic_version->{'components'}) {
my $latest_version = $dic_version->{'components'};
my $latest_version_string = $dic_version_string;
for my $version_string (sort keys %audit_packet) {
my $audit_version = get_parsed_version($audit_packet{$version_string});
next if !defined $audit_version;
if (compare_versions($latest_version, $audit_version) < 0) {
$latest_version = $audit_version;
$latest_version_string = $version_string
}
}
if ($dic_version_string ne $latest_version_string) {
push @notes,
'dictionary version number does not match the latest ' .
'version number in the DICTIONARY_AUDIT loop ' .
"('$dic_version_string' vs. '$latest_version_string')";
}
}
return \@notes;
}
##
# Extracts and prepares the DICTIONARY_AUDIT loop packet information
# for further processing.
#
# @param $dic_data_block
# Dictionary data block as returned by the COD::CIF::Parser.
# @return
# Reference to a data structure of the following form:
# {
# # Data item _dictionary_audit.version values
# # (version number strings) serve as the keys.
# '0.1.0' => {
# # Parsed version number as returned by
# # the parse_and_check_version_string()
# # subroutine.
# 'parsed_version' => {
# # May be undefined
# 'components' => {
# 'major' => '0',
# 'minor' => '1',
# 'patch' => '0',
# 'prerelease' => undef,
# 'build' => undef,
# },
# 'issues' => [
# # ...
# ]
# },
# # Value of the _dictionary_audit.version data
# # item (revision date). May be undefined.
# 'date' => 2021-07-25,
# },
# # ...
# '0.2' => {
# # Parsed version number as returned by
# # the parse_version_string() subroutine.
# # Undefined if the string could not be
# # parsed successfully.
# 'parsed_version' => undef,
# 'date' => 2021-07-26,
# },
# }
##
sub extract_audit_packets
{
my ($dic_data_block) = @_;
my %audit_packets;
my $dic_values = $dic_data_block->{'values'};
for my $i (0..$#{$dic_values->{'_dictionary_audit.version'}}) {
my $version = $dic_values->{'_dictionary_audit.version'}[$i];
$audit_packets{$version}{'parsed_version'} =
parse_and_check_version_string($version);
next if !defined $dic_values->{'_dictionary_audit.date'};
$audit_packets{$version}{'date'} =
$dic_values->{'_dictionary_audit.date'}[$i];
}
return \%audit_packets;
}
##
# Parses the DDLm dictionary version string as a SemVer 2.0 [1] string.
#
# @source [1]
# https://semver.org/spec/v2.0.0.html
#
# @param $version_string
# Version string that should be parsed.
# @return
# Reference to a data structure of the following form:
# {
# # Major version number
# 'major' => 4,
# # Minor version number
# 'minor' => 3,
# # Patch version number
# 'patch' => 2
# # Pre-release identifiers captured as single string.
# # May be undefined.
# 'prerelease' => 'dev-0.pre-7'
# # Build metadata identifiers captured as single string.
# # May be undefined.
# 'build' => 'build-2000-01-01'
# }
#
# or undef value if the version string could not be parsed.
##
sub parse_version_string
{
my ($version_string) = @_;
my $version_components;
if ($version_string =~ m/^([0-9]+)[.]
([0-9]+)[.]
([0-9]+)
(-([0-9A-Za-z-.]+))?
([+]([0-9A-Za-z-.]+))?$/x) {
$version_components = { 'major' => $1,
'minor' => $2,
'patch' => $3,
'prerealease' => $5,
'build' => $7 };
}
return $version_components;
}
##
# Parses the DDLm dictionary version string as a SemVer 2.0 [1] string
# and runs some additional validity checks on the parsed value.
#
# @source [1]
# https://semver.org/spec/v2.0.0.html
#
# @param $version_string
# Version string that should be parsed.
# @return
# Reference to a data structure of the following form:
# {
# # Reference to a data structure of a parsed version number
# # as returned by the parse_version_string() subroutine.
# # May be undefined.
# 'components' => {
# # Major version number
# 'major' => 4,
# # Minor version number
# 'minor' => 3,
# # Patch version number
# 'patch' => 2
# # Pre-release identifiers captured as single string.
# # May be undefined.
# 'prerelease' => 'dev-0.pre-7'
# # Build metadata identifiers captured as single string.
# # May be undefined.
# 'build' => 'build-2000-01-01'
# },
# # Reference to an array of parsing issue messages
# 'issues' => [
# 'value '1.1.1.1' could not be parsed as a valid ...'
# # ...
# ]
# }
##
sub parse_and_check_version_string
{
my ($version_string) = @_;
my $version_components = parse_version_string($version_string);
my @issues;
if (defined $version_components) {
push @issues, @{check_parsed_version($version_components)};
} else {
push @issues,
"value '$version_string' could not be parsed as a valid " .
'semantic version string -- the version string should consist ' .
'of three numbers separated by dots with optional pre-release ' .
'identifiers, e.g. \'1.234.56\', \'4.7.8-dev-1\''
}
my $parsed_version = {
'components' => $version_components,
'issues' => \@issues,
};
return $parsed_version;
}
##
# Construct a version string from individual version components.
#
# @param $version
# Data structure that contains the version components as
# returned by the parse_version_string() subroutine.
# @return $version_string
# Constructed version string.
##
sub build_version_string
{
my ($version) = @_;
my $version_string = join '.', map { $version->{$_} } qw(major minor patch);
if (defined $version->{'prerelease'}) {
$version_string .= '-' . $version->{'prerelease'};
}
if (defined $version->{'build'}) {
$version_string .= '+' . $version->{'build'};
}
return $version_string;
}
##
# Checks the validity of the parsed version string from an entry of
# the AUDIT_LOOP
#
# @param $parsed_version
# Reference to a data structure of a parsed version number
# as returned by the parse_version_string() subroutine.
# @return
# Array reference to a list of validation messages.
##
sub check_parsed_version
{
my ($parsed_version) = @_;
my @notes;
my %stripped_version;
for my $type ( keys %{$parsed_version} ) {
next if !defined $parsed_version->{$type};
$stripped_version{$type} = $parsed_version->{$type};
$stripped_version{$type} =~ s/^0+([0-9])/$1/;
}
my $old_version_string = build_version_string($parsed_version);
my $new_version_string = build_version_string(\%stripped_version);
if ($old_version_string ne $new_version_string) {
push @notes,
"value '$old_version_string' should instead be written as " .
"'$new_version_string' -- version numbers must not contain " .
'leading zeros';
}
return \@notes;
}
##
# Retrieves the data structure of the parsed version string from
# the extracted DICTIONARY_AUDIT loop packets.
#
# @param $version
# Reference to an extracted DICTIONARY_AUDIT loop packet as
# returned by the extract_audit_packets() subroutine.
# @return
# Reference to the data structure of the parsed version string
# or undef if the string was is not defined in the input data
# structure.
##
sub get_parsed_version
{
my ($version) = @_;
return if !defined $version->{'parsed_version'}{'components'};
return $version->{'parsed_version'}{'components'};
}
##
# Compares two parsed DDLm version numbers as if they were SemVer 2.0 [1]
# strings.
#
# @source [1]
# https://semver.org/spec/v2.0.0.html
#
# @param $version_a
# Data structure of the first parsed version number as
# returned by the parse_version_string() subroutine.
# @param $version_b
# Data structure of the first parsed version number as
# returned by the parse_version_string() subroutine.
# @return
# 1 if $version_a > $version_b
# 0 if $version_a = $version_b
# -1 if $version_a < $version_b
##
sub compare_versions
{
my ($version_a, $version_b) = @_;
## no critic (ProhibitMagicNumbers)
return -1 if ($version_a->{'major'} < $version_b->{'major'});
return 1 if ($version_a->{'major'} > $version_b->{'major'});
return -1 if ($version_a->{'minor'} < $version_b->{'minor'});
return 1 if ($version_a->{'minor'} > $version_b->{'minor'});
return -1 if ($version_a->{'patch'} < $version_b->{'patch'});
return 1 if ($version_a->{'patch'} > $version_b->{'patch'});
if ( defined $version_a->{'prerelease'} &&
defined $version_b->{'prerelease'} ) {
return $version_a->{'prerelease'} cmp $version_b->{'prerelease'};
}
if ( defined $version_a->{'prerelease'} &&
!defined $version_b->{'prerelease'} ) {
return -1;
}
if ( defined $version_b->{'prerelease'} &&
!defined $version_a->{'prerelease'} ) {
return 1;
}
## use critic
return 0;
}
##
# Checks if all of the provided save frames have a unique save frame code.
#
# @source [1]
# 2.2.7.1.4. General features,
# "International Tables for Crystallography Volume G:
# Definition and exchange of crystallographic data",
# 2005, 25-26, paragraph (6), doi: 10.1107/97809553602060000107
#
# @param $save_frames
# Reference to an array of save frames as returned by
# the COD::CIF::Parser.
# @return
# Array reference to a list of validation messages.
##
sub check_save_frame_code_uniqueness
{
my ( $save_frames ) = @_;
my %code_frequency;
for my $save_frame ( @{$save_frames} ) {
my $frame_code = $save_frame->{'name'};
push @{$code_frequency{lc $frame_code}}, $frame_code;
}
my @notes;
for my $frame_code ( sort keys %code_frequency ) {
my $count = @{$code_frequency{$frame_code}};
next if $count < 2;
push @notes,
"save frame code is not unique -- save frame 'save_$frame_code' " .
"appears $count times as [" .
( join ', ', map {"'$_'"} @{$code_frequency{$frame_code}} ) .
']';
}
return \@notes;
}
##
# Checks if all dREL data names given in the provided save frames are
# unique [1]. dREL data names are constructed by joining the values
# of the '_name.category_id' and '_name.object_id' attributes using
# the full stop symbol (".") as a separator.
#
# @source [1]
# Spadaccini, N., Castleden, I. R., du Boulay, D. & Hall, S. R. (2012).
# dREL: A Relational Expression Language for Dictionary Methods.
# Journal of Chemical Information and Modeling, 52(8), 1917-1925.
# https://doi.org/10.1021/ci300076w.
# Supporting information file, section 4.2, "Data Loop Example 2".
#
# @param $save_frames
# Reference to an array of save frames as returned by
# the COD::CIF::Parser.
# @return
# Array reference to a list of validation messages.
##
sub check_drel_name_uniqueness
{
my ( $save_frames ) = @_;
my %drel_name_to_frame_codes;
for my $save_frame ( @{$save_frames} ) {
next if !defined $save_frame->{'values'}{'_name.category_id'};
my $category_id = $save_frame->{'values'}{'_name.category_id'}[0];
next if !defined $save_frame->{'values'}{'_name.object_id'};
my $object_id = $save_frame->{'values'}{'_name.object_id'}[0];
my $drel_name = "$category_id.$object_id";
my $frame_code = $save_frame->{'name'};
push @{$drel_name_to_frame_codes{lc $drel_name}}, $frame_code;
}
my @notes;
for my $drel_name ( sort keys %drel_name_to_frame_codes ) {
my $frame_codes = $drel_name_to_frame_codes{$drel_name};
next if @{$frame_codes} < 2;
push @notes,
"dREL data name is not unique -- data name '$drel_name' can be " .
"constructed by combining the '_name.category_id' and " .
"'_name.object_id' attributes in save frames [" .
( join ', ', map { "'save_$_'"} @{$frame_codes} )
. ']';
}
return \@notes;
}
##
# Checks if all data names given in the provided save frames are unique.
#
# @param $save_frames
# Reference to an array of save frames as returned by
# the COD::CIF::Parser.
# @return
# Array reference to a list of validation messages.
##
sub check_data_name_uniqueness
{
my ( $save_frames ) = @_;
my @notes;
my %data_name_to_frame_codes;
for my $save_frame ( @{$save_frames} ) {
my @data_names = map {lc} @{get_all_data_names($save_frame)};
next if !@data_names;
for my $data_name ( sort { $a cmp $b } uniq @data_names ) {
push @{$data_name_to_frame_codes{$data_name}}, $save_frame->{'name'};
}
}
for my $data_name ( sort keys %data_name_to_frame_codes ) {
my $frame_codes = $data_name_to_frame_codes{$data_name};
next if @{$frame_codes} < 2;
push @notes,
"data name is not unique -- data name '$data_name' is defined " .
'by save frames [' .
( join ', ', map { "'save_$_'"} @{$frame_codes} )
. ']';
}
return \@notes;
}
##
# Checks if the provided category ids can be located in the dictionary.
#
# @param $save_frame
# Data item definition frame as returned by the COD::CIF::Parser.
# @param $dic_data_block
# Dictionary data block as returned by the COD::CIF::Parser.
# @return
# Array reference to a list of validation messages.
##
sub check_category_ids
{
my ($save_frame, $dic_data_block) = @_;
return [] if !defined get_category_id($save_frame);
my $category_name = uc get_category_id($save_frame);
my @notes;
if ( uc get_definition_class( $save_frame ) eq 'HEAD' &&
uc get_definition_scope( $save_frame ) eq 'CATEGORY' ) {
if ( $category_name ne uc $dic_data_block->{'values'}{'_dictionary.title'}[0] ) {
push @notes,
'value of the \'_name.category_id\' attribute ' .
'in the \'HEAD\' save frame must match the value ' .
'of the \'_dictionary.title\' attribute';
}
} else {
my $category_found = 0;
foreach ( @{$dic_data_block->{'save_blocks'}} ) {
next if uc get_definition_scope($_) ne 'CATEGORY';
next if !defined get_data_name($_);
if ( uc get_data_name($_) eq $category_name ) {
$category_found = 1;
last;
}
}
if (!$category_found) {
push @notes,
"the '$category_name' category could not be located";
}
}
return \@notes;
}
##
# Checks the redundancy of the data item aliases.
#
# @param $save_frame
# Data item definition frame as returned by the COD::CIF::Parser.
# @return
# Array reference to a list of validation messages.
##
sub check_aliases
{
my ( $save_frame ) = @_;
return [] if !defined get_data_name( $save_frame );
my $definition_id = uc get_data_name( $save_frame );
my @validation_messages;
for my $alias ( @{get_data_alias($save_frame)} ) {
if ( $definition_id eq uc $alias ) {
push @validation_messages,
'the \'_alias.definition_id\' attribute value ' .
"'$alias' matches the '_definition.id' attribute value -- " .
'the alias should be removed';
}
}
return \@validation_messages;
}
##
# Checks the usage of the '_enumeration_default.value' attribute.
#
# The subroutine checks that:
# - Attribute '_enumeration.def_index_id' is also provided in the definition.
# - In case the '_enumeration_set.state' attribute is also provided,
# values of the '_enumeration_default.value' attribute are compatible
# with the values of the '_enumeration_set.state' attribute.
#
# @param $save_frame
# Data item definition frame as returned by the COD::CIF::Parser.
# @return
# Array reference to a list of validation messages.
##
sub check_enumeration_default
{
my ($save_frame) = @_;
my @notes;
my $ENUM_DEFAULT_TAG = '_enumeration_default.value';
return \@notes if !defined $save_frame->{'values'}{$ENUM_DEFAULT_TAG};
if ( !defined $save_frame->{'values'}{'_enumeration.def_index_id'} ) {
push @notes,
'incomplete data item definition -- attribute ' .
'\'_enumeration.def_index_id\' must appear in definitions ' .
"that contain the '$ENUM_DEFAULT_TAG' attribute";
}
my $ENUM_VALUE_TAG = '_enumeration_set.state';
return \@notes if !defined $save_frame->{'values'}{$ENUM_VALUE_TAG};
my %enum_states;
for my $i (0..$#{$save_frame->{'values'}{$ENUM_VALUE_TAG}}) {
next if has_special_value( $save_frame, $ENUM_VALUE_TAG, $i );
$enum_states{ $save_frame->{'values'}{$ENUM_VALUE_TAG}[$i] } = 1;
}
my @unenumerated_defaults;
for my $i (0..$#{$save_frame->{'values'}{$ENUM_DEFAULT_TAG}}) {
next if has_special_value( $save_frame, $ENUM_DEFAULT_TAG, $i );
my $default_value = $save_frame->{'values'}{$ENUM_DEFAULT_TAG}[$i];
if ( !defined $enum_states{$default_value} ) {
push @unenumerated_defaults, $default_value
}
}
@unenumerated_defaults = uniq(@unenumerated_defaults);
for my $unenumerated_default ( uniq(@unenumerated_defaults) ) {
push @notes,
"attribute '$ENUM_DEFAULT_TAG' value '$unenumerated_default' " .
"is not one of the '$ENUM_VALUE_TAG' attribute values -- " .
'default enumeration values must belong to the enumeration ' .
'value set'
}
return \@notes;
}
##
# Checks the usage of the '_enumeration.def_index_id' attribute.
#
# The subroutine checks that:
# - Data item referenced using the attribute is defined in the dictionary.
# - Definition does not reference itself using the attribute.
# - Attribute '_enumeration_default.value' is also provided in the definition.
#
# @param $save_frame
# Data item definition frame as returned by the COD::CIF::Parser.
# @param $dic_struct
# Dictionary search structure as returned by the
# COD::CIF::DDL::DDLm::build_ddlm_dic() subroutine.
# @return
# Array reference to a list of validation messages.
##
sub check_attribute_enumeration_def_index_id
{
my ($save_frame, $dic_struct) = @_;
my @notes;
my $REF_ATTRIBUTE = '_enumeration.def_index_id';
return \@notes if !defined $save_frame->{'values'}{$REF_ATTRIBUTE};
my $ref_item_name = $save_frame->{'values'}{$REF_ATTRIBUTE}[0];
if (!defined $dic_struct->{'Item'}{lc $ref_item_name}) {
push @notes,
"attribute '$REF_ATTRIBUTE' references the '$ref_item_name' " .
'data item that is not defined in the given dictionary';
} else {
for my $data_name (@{get_all_data_names($save_frame)}) {
if (lc $ref_item_name eq lc $data_name) {
push @notes,
'definition references itself using the ' .
"'$REF_ATTRIBUTE' attribute";
last;
}
}
}
if ( !defined $save_frame->{'values'}{'_enumeration_default.value'} ) {
push @notes,
'incomplete data item definition -- attribute ' .
'\'_enumeration_default.value\' must appear in definitions ' .
"that contain the '$REF_ATTRIBUTE' attribute";
}
return \@notes;
}
##
# Checks the usage of the '_definition.class' attribute.
#
# The subroutine checks that:
# - Attribute value 'Datum' only appears in data item definitions.
# - Attribute value 'Functions' is accompanied by the '_method.expression'
# attribute.
# - Attribute value 'Head', 'Loop' and 'Set' only appear in category
# definitions.
# - Attribute value 'Loop' is accompanied by the '_category_key.name'
# attribute.
#
# @param $save_frame
# Data item definition frame as returned by the COD::CIF::Parser.
# @return
# Array reference to a list of validation messages.
##
sub check_definition_class
{
my ($save_frame) = @_;
my @notes;
my $ATTRIBUTE = '_definition.class';
return \@notes if !defined $save_frame->{'values'}{$ATTRIBUTE};
my $definition_class = $save_frame->{'values'}{$ATTRIBUTE}[0];
my $definition_class_lc = lc $definition_class;
my $scope = lc get_definition_scope($save_frame);
if( $definition_class_lc eq 'datum' && $scope ne 'item' ) {
push @notes,
"incorrect category definition -- attribute '$ATTRIBUTE' " .
"value '$definition_class' is only compatible with " .
'data item definitions';
}
if( $definition_class_lc eq 'functions' && $scope eq 'item' &&
!defined $save_frame->{'values'}{'_method.expression'} ) {
push @notes,
"incomplete data item definition -- attribute '$ATTRIBUTE' " .
"value is set to '$definition_class', but the " .
'\'_method.expression\' attribute is not provided'
}
if( ( $definition_class_lc eq 'head' ||
$definition_class_lc eq 'loop' ||
$definition_class_lc eq 'set' ) && $scope ne 'category' ) {
push @notes,
"incorrect data item definition -- attribute '$ATTRIBUTE' " .
"value '$definition_class' is only compatible with " .
'category definitions';
}
if( $definition_class_lc eq 'loop' &&
$scope eq 'category' &&
!defined $save_frame->{'values'}{'_category_key.name'} ) {
push @notes,
"incomplete category definition -- attribute '$ATTRIBUTE' " .
"value is set to '$definition_class', but the " .
'\'_category_key.name\' attribute is not provided'
}
return \@notes;
}
##
# Checks if the enumeration ranges specified explicitly do not
# contradict enumeration ranges imposed by content type.
#
# @param $save_frame
# Data item definition frame as returned by the COD::CIF::Parser.
# @param $dic_struct
# Dictionary search structure as returned by the
# COD::CIF::DDL::DDLm::build_ddlm_dic() subroutine.
# @param $options
# Reference to an option hash. The following options are
# recognised:
# {
# # specifies if warnings should be issued in cases
# # when the explicit range limits match those imposed
# # by the content type
# 'report_redundant_range_limits' => 0
# }
# @return
# Array reference to a list of validation messages.
##
sub check_enumeration_range
{
my ($save_frame, $dic_struct, $options) = @_;
return [] if !defined get_data_name( $save_frame );
return [] if !defined $save_frame->{'values'}{'_enumeration.range'};
my @validation_messages;
my $type = lc get_type_contents(
lc get_data_name( $save_frame ),
$save_frame,
$dic_struct
);
my $range = $save_frame->{'values'}{'_enumeration.range'}[0];
my $item_range = parse_range($range);
my $type_range = get_enum_range_from_type($type);
if ( !is_subrange( $type_range, $item_range,
{ 'type' => 'numb' } ) ) {
push @validation_messages,
'the declared enumeration range ' .
range_to_string( $item_range, { 'type' => 'numb' } ) .
" violates the range imposed by the '$type' data type " .
range_to_string( $type_range, { 'type' => 'numb' } );
}
if ( $options->{'report_redundant_range_limits'} ) {
if ( defined $item_range->[0] && defined $type_range->[0] &&
equals($item_range->[0], $type_range->[0], 5) ) {
push @validation_messages,
"the lower enumeration range limit '$item_range->[0]' " .
'is needlessly specified since the same lower limit ' .
"is imposed by the '$type' data type";
}
}
return \@validation_messages;
}
##
# Checks the usage of the '_name.linked_item_id' attribute.
#
# The subroutine checks that:
# - Data item referenced using the attribute is defined in the dictionary.
# - Definition does not reference itself using the attribute.
# - Attribute '_type.purpose' value is set to 'SU' or 'Link'.
# - Data item referenced by an SU data item has the 'Measurand' purpose.
#
# @param $save_frame
# Data item definition frame as returned by the COD::CIF::Parser.
# @param $dic_struct
# Dictionary search structure as returned by the
# COD::CIF::DDL::DDLm::build_ddlm_dic() subroutine.
# @return
# Array reference to a list of validation messages.
##
sub check_linked_items
{
my ($save_frame, $dic_struct) = @_;
my @notes;
my $ref_attribute = '_name.linked_item_id';
return \@notes if !exists $save_frame->{'values'}{$ref_attribute};
my $ref_item_name = $save_frame->{'values'}{$ref_attribute}[0];
if (!defined $dic_struct->{'Item'}{lc $ref_item_name}) {
push @notes,
"attribute '$ref_attribute' references the '$ref_item_name' " .
'data item that is not defined in the given dictionary';
} else {
for my $data_name (@{get_all_data_names($save_frame)}) {
if (lc $ref_item_name eq lc $data_name) {
push @notes,
'definition references itself using the ' .
"'$ref_attribute' attribute";
last;
}
}
}
my $type_purpose = lc get_type_purpose( $save_frame );
if ( $type_purpose eq 'su' ) {
my $linked_item_name = lc $save_frame->{'values'}{$ref_attribute}[0];
if ( defined $dic_struct->{'Item'}{$linked_item_name} ) {
my $linked_item = $dic_struct->{'Item'}{$linked_item_name};
if ( lc get_type_purpose($linked_item) ne 'measurand' ) {
push @notes,
'data item is defined as having the \'SU\' purpose, ' .
"however, it is linked to the '$linked_item_name' " .
'data item that has the ' .
'\'' . get_type_purpose($linked_item) . '\' ' .
'purpose and does not allow standard uncertainties';
}
}
}
if ( $type_purpose ne 'su' && $type_purpose ne 'link' ) {
push @notes,
'incorrect type purpose -- data item is defined as having ' .
"the '$type_purpose' type purpose while only " .
'\'SU\' and \'Link\' type purposes are allowed for data ' .
'items that contain the \'_name.linked_item_id\' attribute in ' .
'their definition';
}
return \@notes;
}
##
# Checks the usage of the '_category_key.name' attribute.
#
# The subroutine checks that:
# - Attribute '_definition.class' value is set to either 'Set' or 'Loop'.
# - Data items referenced using the attribute are defined in the dictionary.
# - Referenced data items belong to the same category as the defining item.
#
# @param $save_frame
# Data item definition frame as returned by the COD::CIF::Parser.
# @param $dic_struct
# Dictionary search structure as returned by the
# COD::CIF::DDL::DDLm::build_ddlm_dic() subroutine.
# @return
# Array reference to a list of validation messages.
##
sub check_category_key_name
{
my ($save_frame, $dic_struct) = @_;
my @notes;
my $REF_ATTRIBUTE = '_category_key.name';
return \@notes if !defined $save_frame->{'values'}{$REF_ATTRIBUTE};
my $definition_class = get_definition_class($save_frame);
if( uc $definition_class ne 'SET' && uc $definition_class ne 'LOOP' ) {
push @notes,
"attribute '$REF_ATTRIBUTE' is not compatible with the " .
"'$definition_class' definition class -- the only compatible " .
'\'_definition.class\' attribute values are [\'Set\', \'Loop\']';
}
for my $ref_item_name (@{$save_frame->{'values'}{$REF_ATTRIBUTE}}) {
if (!defined $dic_struct->{'Item'}{lc $ref_item_name}) {
push @notes,
"attribute '$REF_ATTRIBUTE' references the '$ref_item_name' " .
'data item that is not defined in the given dictionary';
} else {
my $ref_item = $dic_struct->{'Item'}{lc $ref_item_name};
my $definition_name = get_data_name($save_frame);
my $category_name = get_category_id($ref_item);
if (lc $definition_name ne lc $category_name) {
push @notes,
"data item '$ref_item_name' is referenced as the category " .
'key, however, it does not belong to the given category ' .
'(\'' . (uc $category_name) . '\' instead of \'' .
(uc $definition_name) . '\')';
}
}
}
return \@notes;
}
##
# Checks the usage of the '_type.contents_referenced_id' attribute.
#
# The subroutine checks that:
# - Data item referenced using the attribute is defined in the dictionary.
# - Definition does not reference itself using the attribute.
# - Attribute '_type.contents' value is set to 'ByReference' [1,2].
#
# @source [1]
# ddl.dic DDLm reference dictionary version 4.1.0,
# definition of the '_type.contents_referenced_id' attribute.
# @source [2]
# https://github.com/COMCIFS/cif_core/blob/5eed5425867dd7bf9cc0f3a4ccf52f01390e7190/ddl.dic#L1720
#
# @param $save_frame
# Data item definition frame as returned by the COD::CIF::Parser.
# @param $dic_struct
# Dictionary search structure as returned by the
# COD::CIF::DDL::DDLm::build_ddlm_dic() subroutine.
# @return
# Array reference to a list of validation messages.
##
sub check_attribute_type_contents_referenced_id
{
my ($save_frame, $dic_struct) = @_;
my @notes;
my $REF_ATTRIBUTE = '_type.contents_referenced_id';
return \@notes if !defined $save_frame->{'values'}{$REF_ATTRIBUTE};
my $ref_item_name = $save_frame->{'values'}{$REF_ATTRIBUTE}[0];
if (!defined $dic_struct->{'Item'}{$ref_item_name}) {
push @notes,
"attribute '$REF_ATTRIBUTE' references the '$ref_item_name' " .
'data item that is not defined in the given dictionary';
} else {
for my $data_name (@{get_all_data_names($save_frame)}) {
if (lc $ref_item_name eq lc $data_name) {
push @notes,
'definition references itself using the ' .
"'$REF_ATTRIBUTE' attribute";
last;
}
}
}
my $type = lc get_type_contents(
lc get_data_name( $save_frame ),
$save_frame,
$dic_struct,
{
'resolve_implied_type' => 0,
'resolve_byreference_type' => 0,
}
);
if ($type ne 'byreference') {
push @notes,
"data item contains the '$REF_ATTRIBUTE' attribute, but " .
'the \'_type.contents\' attribute value is not set to ' .
'\'ByReference\'';
}
return \@notes;
}
##
# Checks the usage of the '_type.indices_referenced_id' attribute.
#
# The subroutine checks that:
# - Data item referenced using the attribute is defined in the dictionary.
# - Definition does not reference itself using the attribute.
# - Attribute '_type.container' value is set to 'Table' [1,2].
# - Attribute '_type.indices' value is set to 'ByReference' [1,2].
#
# @source [1]
# ddl.dic DDLm reference dictionary version 4.1.0,
# definition of the '_type.indices_referenced_id' attribute.
# @source [2]
# https://github.com/COMCIFS/cif_core/blob/491bf77f39ef2f989b9230ea90e6345f8282a4b7/ddl.dic#L1826
#
# @param $save_frame
# Data item definition frame as returned by the COD::CIF::Parser.
# @param $dic_struct
# Dictionary search structure as returned by the
# COD::CIF::DDL::DDLm::build_ddlm_dic() subroutine.
# @return
# Array reference to a list of validation messages.
##
sub check_attribute_indices_referenced_id
{
my ($save_frame, $dic_struct) = @_;
my @notes;
my $REF_ATTRIBUTE = '_type.indices_referenced_id';
return \@notes if !defined $save_frame->{'values'}{$REF_ATTRIBUTE};
my $ref_item_name = $save_frame->{'values'}{$REF_ATTRIBUTE}[0];
if (!defined $dic_struct->{'Item'}{lc $ref_item_name}) {
push @notes,
"attribute '$REF_ATTRIBUTE' references the '$ref_item_name' " .
'data item that is not defined in the given dictionary';
} else {
for my $data_name (@{get_all_data_names($save_frame)}) {
if (lc $ref_item_name eq lc $data_name) {
push @notes,
'definition references itself using the ' .
"'$REF_ATTRIBUTE' attribute";
last;
}
}
}
my $container = get_type_container($save_frame);
if (lc $container ne 'table') {
push @notes,
"definition contains the '$REF_ATTRIBUTE' attribute, but " .
'\'the \'_type.container\' value is not set to \'Table\'';
}
# Set the default value of the '_type.indices' data item
# as specified in DDLm reference dictionary, version 4.2.0
my $index_type = 'Text';
if ( defined $save_frame->{'values'}{'_type.indices'} ) {
$index_type = $save_frame->{'values'}{'_type.indices'}[0];
}
if (lc $index_type ne 'byreference') {
push @notes,
"definition contains the '$REF_ATTRIBUTE' attribute, but " .
'the \'_type.indices\' attribute value is not set to ' .
'\'ByReference\'';
}
return \@notes;
}
##
# Checks the usage of the '_definition_replaced.by' attribute.
#
# The subroutine checks that:
# - Data items referenced using the attribute are defined in the dictionary.
# - Definition does not reference itself using the attribute.
#
# @param $save_frame
# Data item definition frame as returned by the COD::CIF::Parser.
# @param $dic_struct
# Dictionary search structure as returned by the
# COD::CIF::DDL::DDLm::build_ddlm_dic() subroutine.
# @return
# Array reference to a list of validation messages.
##
sub check_attribute_definition_replaced_by
{
my ($save_frame, $dic_struct) = @_;
my @notes;
my $REF_ATTRIBUTE = '_definition_replaced.by';
return \@notes if !defined $save_frame->{'values'}{$REF_ATTRIBUTE};
for my $i (0..($#{$save_frame->{'values'}{$REF_ATTRIBUTE}})) {
next if has_special_value( $save_frame, $REF_ATTRIBUTE, $i );
my $ref_item_name = $save_frame->{'values'}{$REF_ATTRIBUTE}[$i];
if (!defined $dic_struct->{'Item'}{lc $ref_item_name} ) {
push @notes,
"attribute '$REF_ATTRIBUTE' references the '$ref_item_name' " .
'data item that is not defined in the given dictionary';
} else {
for my $data_name (@{get_all_data_names($save_frame)}) {
if (lc $ref_item_name eq lc $data_name) {
push @notes,
'definition references itself using the ' .
"'$REF_ATTRIBUTE' attribute";
last;
}
}
}
}
return \@notes;
}
##
# Checks if data names referenced in the free-text descriptions and usage
# examples are defined in the dictionary. The subroutine treats all string
# that contain underscores as data item or category names thus false-positive
# validation messages are sometimes produced.
#
# @param $save_frame
# Data item definition frame as returned by the COD::CIF::Parser.
# @param $dic_struct
# Dictionary search structure as returned by the
# COD::CIF::DDL::DDLm::build_ddlm_dic() subroutine.
# @return
# Array reference to a list of validation messages.
##
sub check_data_name_references_in_descriptions
{
my ( $save_frame, $dic_struct ) = @_;
my @messages;
my $scope = lc get_definition_scope($save_frame);
my @TEXT_TAGS = qw( _description.text
_description_example.case
_description_example.detail );
for my $text_tag ( @TEXT_TAGS ) {
next if !defined $save_frame->{'values'}{$text_tag};
if ( $text_tag eq '_description_example.case' &&
$scope ne 'category' ) {
next;
}
for my $description ( @{$save_frame->{'values'}{$text_tag}} ) {
my $names = extract_names_from_text( $description );
for my $name ( @{$names} ) {
if ( $name =~ m/^_/ ) {
if (!exists $dic_struct->{'Item'}{$name}) {
push @messages,
"attribute '$text_tag' value potentially " .
"references the '$name' data item which is " .
'not defined in the dictionary';
}
} else {
if (!exists $dic_struct->{'Category'}{$name}) {
push @messages,
"attribute '$text_tag' value potentially " .
"references the '$name' category which is " .
'not defined in the dictionary';
}
}
}
}
}
return \@messages;
}
##
# Extracts all substrings that resemble DDLm data item names or category names
# from the input string.
#
# @param $string
# Input string that potentially contains the data names.
# @return $names
# Reference to an array of text strings that resemble DDLm data names.
#
sub extract_names_from_text
{
my ($string) = @_;
my @names;
while ( $string =~ m/([^\s]*_[^\s]*)/g ) {
my $name = $1;
$name =~ s/^[(']//;
$name =~ s/[\n.;),']*$//;
$name = lc $name;
next if $name eq 'loop_';
push @names, $name;
}
@names = uniq @names;
return \@names;
}
##
# Checks if item definitions meet the requirements raised by the declared
# item purpose.
#
# @param $save_frame
# Data item definition frame as returned by the COD::CIF::Parser.
# @return
# Array reference to a list of validation messages.
##
sub check_item_purpose
{
my ( $save_frame ) = @_;
my @validation_messages;
my $type_purpose = lc get_type_purpose( $save_frame );
if ( $type_purpose eq 'link' &&
!exists $save_frame->{'values'}{'_name.linked_item_id'} ) {
push @validation_messages,
'incomplete data item definition -- data item is ' .
"defined as having the 'Link' purpose, but the " .
"'_name.linked_item_id' attribute is not provided";
}
if ( $type_purpose eq 'su' &&
!exists $save_frame->{'values'}{'_name.linked_item_id'} ) {
push @validation_messages,
'incomplete data item definition -- data item is ' .
"defined as having the 'SU' purpose, but the " .
"'_name.linked_item_id' attribute is not provided";
}
if ( $type_purpose eq 'state' &&
!exists $save_frame->{'values'}{'_enumeration_set.state'} ) {
push @validation_messages,
'incomplete data item definition -- data item is ' .
"defined as having the 'State' purpose, but the " .
"'_enumeration_set.state' attribute is not provided";
}
return \@validation_messages;
}
##
# Checks if definitions contain a proper revision date. A proper revision
# date should follow the ISO standard date format and be no later than
# the dictionary revision date.
#
# @param $save_frame
# Data item definition frame as returned by the COD::CIF::Parser.
# @param $dic_date
# Text string that contains a valid dictionary revision date
# as specified by the '_dictionary.date' data item.
# @return
# Array reference to a list of validation messages.
##
sub check_update_date
{
my ($save_frame, $dic_date) = @_;
return [] if !defined $save_frame->{'values'}{'_definition.update'};
my $item_date = $save_frame->{'values'}{'_definition.update'}[0];
my @notes;
if (!looks_like_iso_date($item_date)) {
push @notes,
"attribute '_definition.update' value '$item_date' does not " .
'conform to the ISO standard date format <yyyy>-<mm>-<dd>'
} elsif ($dic_date lt $item_date) {
# ISO dates can be compared as simple text strings
push @notes,
'definition revision date is later than the dictionary revision ' .
'date -- attribute \'_definition.update\' value should not ' .
'exceed the \'_dictionary.date\' attribute value ' .
"('$item_date' vs. '$dic_date')";
}
return \@notes;
}
##
# Evaluates if a text strings looks like an ISO date of the form
# <yyyy>-<mm>-<dd>. Proper date validation is not carried out.
#
# @input $date
# Text string that contains the date.
# @return
# Boolean value denoting if the given string looks like an ISO date.
##
sub looks_like_iso_date
{
my ($date) = @_;
return $date =~ m/^[0-9]{4}-[0-9]{2}-[0-9]{2}$/;
}
##
# Checks if all measurand data item definitions have associated standard
# uncertainty (SU) data item definitions as specified in the description
# of the measurand type purpose [1,2].
#
# @source [1]
# ddl.dic DDLm reference dictionary version 4.1.0,
# definition of the '_type.purpose' attribute.
# @source [2]
# https://github.com/COMCIFS/cif_core/blob/491bf77f39ef2f989b9230ea90e6345f8282a4b7/ddl.dic#L1936
#
# @param $save_frames
# Reference to an array of save frames as returned by
# the COD::CIF::Parser.
# @return
# Array reference to a list of validation messages.
##
sub check_su_item_presence
{
my ( $save_frames ) = @_;
my @notes;
my %measurand_items;
my %measurand_to_su;
for my $save_frame (@{$save_frames}) {
my $data_name = get_data_name( $save_frame );
next if !defined $data_name;
$data_name = lc $data_name;
my $type_purpose = lc get_type_purpose( $save_frame );
if ($type_purpose eq 'measurand') {
$measurand_items{$data_name} = $save_frame;
} elsif ($type_purpose eq 'su') {
next if !exists $save_frame->{'values'}{'_name.linked_item_id'};
my $linked_item_name =
lc $save_frame->{'values'}{'_name.linked_item_id'}[0];
$measurand_to_su{$linked_item_name} = $data_name;
}
}
for my $measurand_name (sort keys %measurand_items) {
next if defined $measurand_to_su{$measurand_name};
push @notes,
"measurand data item '$measurand_name' must have an " .
'associated standard uncertainty data item ' .
"(e.g. '${measurand_name}_su')"
}
return \@notes;
}
##
# Checks if data names follow the IUCr data item naming convention that
# applies to the standard uncertainty (SU) data items.
#
# @param $save_frame
# Data item definition frame as returned by the COD::CIF::Parser.
# @return
# Array reference to a list of validation messages.
##
sub check_su_naming_convention
{
my ($save_frame) = @_;
my @notes;
my $data_name = get_data_name( $save_frame );
return \@notes if !defined $data_name;
$data_name = lc $data_name;
my $type_purpose = lc get_type_purpose( $save_frame );
if ($type_purpose ne 'su' && $data_name =~ /_su$/) {
push @notes,
'data item does not follow the IUCr naming convention -- ' .
'only data names of standard uncertainty data items ' .
'should have the \'_su\' postfix';
};
return \@notes if $type_purpose ne 'su';
return \@notes if !exists $save_frame->{'values'}{'_name.linked_item_id'};
my $linked_item_name = lc $save_frame->{'values'}{'_name.linked_item_id'}[0];
if ($linked_item_name . '_su' ne $data_name) {
push @notes,
'data item does not follow the IUCr naming convention -- ' .
'data names of standard uncertainty data items should be ' .
'constructed by appending the \'_su\' postfix to the name of ' .
'the associated measurand data item ' .
"('${linked_item_name}_su' instead of '$data_name')";
}
return \@notes;
}
##
# Checks if the use of the type dimension attribute is compatible with
# the rest of the data item definition as specified in the description
# of the 'Dimension' content type [1,2].
#
# @source [1]
# ddl.dic DDLm reference dictionary version 4.1.0,
# definition of the '_type.contents' attribute.
# @source [2]
# https://github.com/COMCIFS/cif_core/blob/491bf77f39ef2f989b9230ea90e6345f8282a4b7/ddl.dic#L1672
#
# @param $save_frame
# Data item definition frame as returned by the COD::CIF::Parser.
# @return
# Array reference to a list of validation messages.
##
sub check_type_dimension_applicablity
{
my ($save_frame) = @_;
my @notes;
return \@notes if !exists $save_frame->{'values'}{'_type.dimension'};
my $container = get_type_container($save_frame);
my @allowed_containers = qw( List Array Matrix );
my $lc_container = lc $container;
for my $lc_allowed_container (map { lc } @allowed_containers) {
return \@notes if $lc_container eq $lc_allowed_container;
}
push @notes,
'the \'_type.dimension\' attribute is not compatible with ' .
"the '$container' container type -- compatible " .
'\'_type.container\' attribute values include ' .
'[' . ( join ', ', map {"'$_'"} @allowed_containers ) . ']';
return \@notes;
}
##
# Checks if measurement units are explicitly provided in the definitions
# of quantifiable data items.
#
# @param $save_frame
# Data item definition frame as returned by the COD::CIF::Parser.
# @return
# Array reference to a list of validation messages.
##
sub check_measurement_units
{
my ($save_frame, $dic_struct) = @_;
return [] if !defined get_data_name( $save_frame );
my @validation_messages;
my $has_measurement_units = 0;
if ( defined get_measurement_unit( $save_frame ) ) {
$has_measurement_units = 1
} else {
my $methods = get_methods( $save_frame );
if ( defined $methods ) {
for my $i ( 0..$#{$methods->{'purpose'}} ) {
next if lc $methods->{'purpose'}[$i] ne 'definition';
if ( $methods->{'expression'}[$i] =~ m/(^|\s+)_units[.]code\s+=/ ) {
$has_measurement_units = 1;
last;
}
}
}
}
my $type = lc get_type_contents(
lc get_data_name( $save_frame ),
$save_frame,
$dic_struct
);
my @numeric_types = qw( integer real imag complex );
if ( any { $type eq $_ } @numeric_types ) {
if (!$has_measurement_units) {
push @validation_messages,
"content type '$type' should be accompanied by " .
"the '_units.code' attribute -- it is recommended to assign " .
'units of measurement to all data items with numeric ' .
'content types';
}
} else {
if ($has_measurement_units) {
push @validation_messages,
"content type '$type' may be incompatible with the " .
"'_units.code' attribute -- units of measurement are " .
'normally assigned only to data items with numeric ' .
'content types';
}
}
return \@validation_messages;
}
##
# Checks if measurand data items and the related SU data items are assigned
# the same units of measurement.
#
# @param $save_frame
# Data item definition frame as returned by the COD::CIF::Parser.
# @param $dic_data_block
# Dictionary data block as returned by the COD::CIF::Parser.
# @return
# Array reference to a list of validation messages.
##
sub check_measurand_su_unit_compatibility
{
my ($save_frame, $dic_data_block) = @_;
my @notes;
return \@notes if !defined get_data_name( $save_frame );
return \@notes if lc get_type_purpose( $save_frame ) ne 'su';
my $su_unit = get_measurement_unit($save_frame);
return \@notes if !defined $su_unit;
return \@notes if !exists $save_frame->{'values'}{'_name.linked_item_id'};
my $measurand_name = lc $save_frame->{'values'}{'_name.linked_item_id'}[0];
my $measurand_item;
for ( @{$dic_data_block->{'save_blocks'}} ) {
if ( lc get_data_name( $_ ) eq $measurand_name ) {
$measurand_item = $_;
last;
}
}
return \@notes if !defined $measurand_item;
my $measurand_unit = get_measurement_unit($measurand_item);
return \@notes if !defined $measurand_unit;
if (lc $measurand_unit ne lc $su_unit) {
push @notes,
'the \'_units.code\' attribute value does not match the ' .
'value specified in the definition of the linked ' .
"data item '$measurand_name' ('$su_unit' vs. '$measurand_unit') " .
'-- standard uncertainty data items should have the same ' .
'units of measurement as the associated measurand data items';
}
return \@notes;
}
##
# Extracts the measurement unit code from a data item definition frame.
#
# @param $data_frame
# Data item definition frame as returned by the COD::CIF::Parser.
# @return $units
# String containing the measurement unit code or undef value if
# the data frame does not contain a measurement unit code.
##
sub get_measurement_unit
{
my ( $data_frame ) = @_;
return if !exists $data_frame->{'values'}{'_units.code'};
my $units = lc $data_frame->{'values'}{'_units.code'}[0];
return $units;
}
##
# Checks the compatibility of linked data items in regards
# to the _type.contents, _type.container, _enumeration.range,
# _units.code and _type.dimension attributes. Does not cover
# standard uncertainty (SU) data items.
#
# @param $save_frame
# Data item definition frame as returned by the COD::CIF::Parser.
# @param $dic_data_block
# Dictionary data block as returned by the COD::CIF::Parser.
# @return
# Array reference to a list of validation messages.
##
sub check_linked_item_compatibility
{
my ($save_frame, $dic_data_block) = @_;
my @notes;
return \@notes if lc get_type_purpose( $save_frame ) eq 'su';
return \@notes if !exists $save_frame->{'values'}{'_name.linked_item_id'};
my $measurand_name = lc $save_frame->{'values'}{'_name.linked_item_id'}[0];
return \@notes if !exists $save_frame->{'values'}{'_name.linked_item_id'};
my $parent_name = lc $save_frame->{'values'}{'_name.linked_item_id'}[0];
my $parent_item;
for my $dic_save_frame ( @{$dic_data_block->{'save_blocks'}} ) {
if ( lc get_data_name( $dic_save_frame ) eq $parent_name ) {
$parent_item = $dic_save_frame;
last;
}
}
return \@notes if !defined $parent_item;
my @comparable_attributes = qw(
_type.contents
_type.container
_enumeration.range
_units.code
_type.dimension
);
for my $attribute (@comparable_attributes) {
my $parent_attribute = get_attribute_value( $attribute, $parent_item );
my $child_attribute = get_attribute_value( $attribute, $save_frame );
next if !defined $parent_attribute && !defined $child_attribute;
if (!defined $parent_attribute) {
push @notes,
'incompatible definition of the linked data item -- ' .
"definition of the '$parent_name' data item does not " .
"contain the '$attribute' attribute";
next;
}
if (!defined $child_attribute) {
push @notes,
'incompatible definition of the linked data item -- ' .
"definition of the '$parent_name' data item contains " .
"an extra '$attribute' attribute";
next;
}
if ($parent_attribute ne $child_attribute) {
push @notes,
'incompatible definition of the linked data item -- ' .
"attribute '$attribute' value does not match " .
'the value specified in the definition of ' .
"the linked data item '$parent_name' " .
"('$child_attribute' vs. '$parent_attribute')";
}
}
return \@notes;
}
##
# Returns a single attribute value from a save frame.
#
# @param $attribute
# Data name of the attribute that should be returned.
# @param $data_frame
# Data frame as returned by the COD::CIF::Parser.
# @return
# Value of the attribute or
# undef if the attribute is not defined
##
sub get_attribute_value
{
my ($attribute, $data_frame) = @_;
if (defined $data_frame->{'values'}{$attribute}) {
return $data_frame->{'values'}{$attribute}[0];
}
return;
}
##
# Extracts all methods from a data item definition frame. Malformed method
# definitions (e.g. missing data items, data items that reside in separate
# loops) are silently ignored.
#
# @param $data_frame
# Data item definition frame as returned by the COD::CIF::Parser.
# @return $methods
# Reference to a data structure of the following form:
# {
# 'purpose' => [
# 'Evaluation',
# 'Definition',
# ],
# 'expression' => [
# '_atom_type.radius_contact = _atom_type.radius_bond + 1.25',
# '_enumeration.default = 0.',
# ]
# }
#
# or undef value if the data frame does not contain any method definitions.
##
sub get_methods
{
my ( $data_frame ) = @_;
my @method_items = qw( _method.purpose _method.expression );
for my $method_item ( @method_items ) {
return if !exists $data_frame->{'values'}{$method_item}
}
return if !are_same_loop_items( $data_frame, \@method_items );
my %methods;
$methods{'purpose'} = [ @{$data_frame->{'values'}{'_method.purpose'}} ];
$methods{'expression'} = [ @{$data_frame->{'values'}{'_method.expression'}} ];
return \%methods;
}
##
# Determines if all of the provided data items appear in the same loop.
# All unlooped items are treated as appearing in the same loop.
#
# @param $data_frame
# Data item definition frame as returned by the COD::CIF::Parser.
# @param $items
# Reference to an array of data items that should be checked.
# @return
# '1' if all items appear in the same loop,
# '0' otherwise.
##
sub are_same_loop_items
{
my ( $data_frame, $items ) = @_;
my $UNLOOPED_INDEX = -1;
my $previous_item_loop = get_item_loop_index( $data_frame, $items->[-1] );
$previous_item_loop = $UNLOOPED_INDEX if !defined $previous_item_loop;
for my $i ( 0 .. ( $#{$items} - 1 ) ) {
my $current_item_loop = get_item_loop_index( $data_frame, $items->[$i] );
$current_item_loop = $UNLOOPED_INDEX if !defined $current_item_loop;
return 0 if $current_item_loop ne $previous_item_loop;
$previous_item_loop = $current_item_loop;
}
return 1;
}
##
# Returns range limits based on the given DDLm content type.
#
# @param $type
# Content type.
# @return
# Reference to an array containing the range limit values.
##
sub get_enum_range_from_type
{
my ($type) = @_;
$type = lc $type;
my @range = (undef, undef);
if ( $type eq 'count' ) {
@range = (0, undef);
} elsif ( $type eq 'index' ) {
@range = (1, undef);
}
return \@range;
}
##
# Determines if one range is a subrange of the other.
#
# @param $range
# Array reference to the range limits.
# @param $subrange
# Array reference to the subrange limits.
# @param $options
# Reference to an option hash. The following options are
# recognised:
# {
# # type of the enumeration range ('numb' or 'char')
# 'type' => 'numb'
# }
# @return
# Reference to an array containing the range limit values.
##
sub is_subrange
{
my ($range, $subrange, $options) = @_;
my $is_in_lower_range = !defined $subrange->[0] ||
is_in_range( $subrange->[0], {
'range' => $range,
'type' => $options->{'type'}
} );
my $is_in_upper_range = !defined $subrange->[1] ||
is_in_range( $subrange->[1], {
'range' => $range,
'type' => $options->{'type'}
} );
return $is_in_lower_range && $is_in_upper_range;
}
##
# Compares two floating point numbers using given decimal point precision.
# @param $float_1
# First floating point number.
# @param $float_2
# Second floating point number.
# @param $float_2
# Decimal point digit precision.
# @return
# 1 if numbers are equal, 0 otherwise.
##
sub equals
{
my ($float_1, $float_2, $dp) = @_;
return ( ( sprintf "%.${dp}f", $float_1 ) eq
( sprintf "%.${dp}f", $float_2 ) ) ? 1 : 0;
}
my $use_parser = 'c';
my @dic_import_path;
my $report_redundant_range_limits = 0;
my $check_references_in_descriptions = 0;
#* OPTIONS:
#*
#* --report-redundant-range-limits
#* Report explicit range limits that match implicit
#* range limits imposed by the content type.
#* --no-report-redundant-range-limits
#* Do not report explicit range limits that match implicit
#* range limits imposed by the content type. Default.
#*
#* --check-references-in-descriptions
#* Check if the data names referenced in the free-text
#* descriptions and usage examples of data items and
#* categories are defined in the dictionary. This check
#* uses ad hoc code to recognise data names and therefore
#* might produce false-positive validation messages.
#* --no-check-references-in-descriptions
#* Do not check if the data names referenced in the
#* free-text descriptions and usage examples of data
#* items and categories are defined in the dictionary.
#* Default.
#*
#* -I, --add-ddlm-import-path './ddlm/cod/'
#* Prepend an additional directory to the dictionary
#* import path. The dictionary import path specifies
#* a list of directories in which to look for files
#* that are imported by DDLm-compliant CIF dictionaries.
#* Directories provided using this option are assigned
#* the highest priority and are searched prior to
#* the directories listed in the COD_TOOLS_DDLM_IMPORT_PATH
#* environment variable or the default import path
#* (directory of the importing dictionary).
#* --clear-ddlm-import-path
#* Remove all directories from the dictionary import path
#* that were added using the --add-ddlm-import-path option.
#* Neither COD_TOOLS_DDLM_IMPORT_PATH environment variable
#* nor the default import path is affected by this option.
#*
#* --help, --usage
#* Output a short usage message (this message) and exit.
#* --version
#* Output version information and exit.
#**
@ARGV = getOptions(
'-I,--add-ddlm-import-path' => sub { push @dic_import_path, get_value() },
'--clear-ddlm-import-path' => sub { @dic_import_path = () },
'--report-redundant-range-limits' =>
sub { $report_redundant_range_limits = 1 },
'--no-report-redundant-range-limits' =>
sub { $report_redundant_range_limits = 0 },
'--check-references-in-descriptions' =>
sub { $check_references_in_descriptions = 1 },
'--no-check-references-in-descriptions' =>
sub { $check_references_in_descriptions = 0 },
'--options' => sub{ options; exit },
'--help,--usage' => sub{ usage; exit },
'--version' => sub { print get_version_string(), "\n"; exit }
);
my $die_on_error_level = {
'ERROR' => 1,
'WARNING' => 0,
'NOTE' => 0
};
push @dic_import_path, @{get_ddlm_import_path_from_env()};
for my $filename ( @ARGV ) {
my $options = { 'parser' => $use_parser, 'no_print' => 1 };
my ( $data, $err_count, $messages ) = parse_cif( $filename, $options );
process_parser_messages( $messages, $die_on_error_level );
$data = $data->[0];
local $SIG{__WARN__} = sub {
process_warnings( {
'message' => @_,
'program' => $0,
'filename' => $filename,
'add_pos' => $data->{'name'}
}, $die_on_error_level )
};
my $dictionary_class = get_dictionary_class($data);
if ( $dictionary_class ne 'Instance' &&
$dictionary_class ne 'Reference' ) {
warn "WARNING, dictionaries of the '$dictionary_class' dictionary " .
'class are currently not supported -- file will be skipped' . "\n";
next;
}
my ($dirs) = (fileparse($filename))[1];
$data = resolve_dic_imports(
$data,
{
'import_path' => [ @dic_import_path, $dirs ],
'parser_options' => $options,
'die_on_error_level' => $die_on_error_level,
'importing_file' => $filename,
}
);
my $dic_struct = build_ddlm_dic(
$data,
{
'resolve_content_types' => 0,
}
);
foreach ( @{check_head_category($data)} ) {
print "$0: $filename: $_.\n";
}
my $block_header = "data_$data->{'name'}";
my $save_frames = $data->{'save_blocks'};
my @block_warnings;
push @block_warnings, @{check_dictionary_audit_loop($data)};
push @block_warnings, @{check_save_frame_code_uniqueness($save_frames)};
push @block_warnings, @{check_data_name_uniqueness($save_frames)};
push @block_warnings, @{check_drel_name_uniqueness($save_frames)};
push @block_warnings, @{check_su_item_presence($save_frames)};
my $dictionary_revision_date;
if (defined $data->{'values'}{'_dictionary.date'}) {
$dictionary_revision_date = $data->{'values'}{'_dictionary.date'}[0];
if (!looks_like_iso_date($dictionary_revision_date)) {
push @block_warnings,
'attribute \'_dictionary.date\' value ' .
"'$dictionary_revision_date' does not conform to the ISO " .
'standard date format <yyyy>-<mm>-<dd>';
$dictionary_revision_date = undef;
}
}
for (@block_warnings) {
print "$0: $filename $block_header: $_.\n";
}
for my $save_frame ( @{$save_frames} ) {
my @warnings;
if ( $check_references_in_descriptions ) {
push @warnings, @{ check_data_name_references_in_descriptions(
$save_frame,
$dic_struct
) };
}
push @warnings, @{check_category_ids($save_frame, $data)};
if ( lc get_definition_scope($save_frame) eq 'item' ) {
push @warnings, @{ check_aliases($save_frame) };
push @warnings, @{ check_enumeration_range(
$save_frame,
$dic_struct,
{ 'report_redundant_range_limits' =>
$report_redundant_range_limits }
) };
push @warnings, @{ check_enumeration_default( $save_frame ) };
push @warnings, @{ check_attribute_enumeration_def_index_id(
$save_frame,
$dic_struct
) };
push @warnings, @{ check_measurement_units(
$save_frame,
$dic_struct
) };
push @warnings, @{ check_su_naming_convention($save_frame) };
push @warnings, @{ check_type_dimension_applicablity($save_frame) };
push @warnings, @{ check_measurand_su_unit_compatibility(
$save_frame,
$data
) };
};
push @warnings, @{ check_item_purpose($save_frame) };
push @warnings, @{ check_linked_items($save_frame, $dic_struct) };
push @warnings, @{ check_linked_item_compatibility(
$save_frame,
$data
) };
push @warnings, @{ check_attribute_definition_replaced_by(
$save_frame,
$dic_struct
) };
push @warnings, @{ check_category_key_name(
$save_frame,
$dic_struct
) };
push @warnings, @{ check_attribute_indices_referenced_id(
$save_frame,
$dic_struct
) };
push @warnings, @{ check_attribute_type_contents_referenced_id(
$save_frame,
$dic_struct
) };
push @warnings, @{ check_definition_class( $save_frame ) };
if (defined $dictionary_revision_date) {
push @warnings,
@{ check_update_date($save_frame, $dictionary_revision_date) };
}
my $frame_header = "save_$save_frame->{'name'}";
foreach ( @warnings ) {
print "$0: $filename $block_header $frame_header: WARNING, $_.\n";
}
}
}
|