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
|
/*
* This file is part of the Score-P software (http://www.score-p.org)
*
* Copyright (c) 2009-2012,
* RWTH Aachen University, Germany
*
* Copyright (c) 2009-2012,
* Gesellschaft fuer numerische Simulation mbH Braunschweig, Germany
*
* Copyright (c) 2009-2012, 2014, 2021,
* Technische Universitaet Dresden, Germany
*
* Copyright (c) 2009-2012,
* University of Oregon, Eugene, USA
*
* Copyright (c) 2009-2012,
* Forschungszentrum Juelich GmbH, Germany
*
* Copyright (c) 2009-2012,
* German Research School for Simulation Sciences GmbH, Juelich/Aachen, Germany
*
* Copyright (c) 2009-2012,
* Technische Universitaet Muenchen, Germany
*
* This software may be modified and distributed under the terms of
* a BSD-style license. See the COPYING file in the package base
* directory for details.
*
*/
#ifndef OTF2_DEF_READER_CALLBACKS_H
#define OTF2_DEF_READER_CALLBACKS_H
/**
* @file
* @source templates/OTF2_DefReaderCallbacks.tmpl.h
*
* @brief This defines the callbacks for the definition reader.
*/
#include <stdint.h>
#include "otf2_compiler.h"
#include <otf2/OTF2_ErrorCodes.h>
#include <otf2/OTF2_GeneralDefinitions.h>
#include <otf2/OTF2_AttributeValue.h>
#include <otf2/OTF2_Definitions.h>
#include <otf2/OTF2_IdMap.h>
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/** @brief Opaque struct which holds all definition record callbacks.
*/
typedef struct OTF2_DefReaderCallbacks_struct OTF2_DefReaderCallbacks;
/** @brief Allocates a new struct for the definition callbacks.
*
* @return A newly allocated struct of type @eref{OTF2_DefReaderCallbacks}.
*/
OTF2_DefReaderCallbacks*
OTF2_DefReaderCallbacks_New( void );
/** @brief Deallocates a struct for the definition callbacks.
*
* @param defReaderCallbacks Handle to a struct previously allocated
* with @eref{OTF2_DefReaderCallbacks_New}.
*/
void
OTF2_DefReaderCallbacks_Delete( OTF2_DefReaderCallbacks* defReaderCallbacks );
/** @brief Clears a struct for the definition callbacks.
*
* @param defReaderCallbacks Handle to a struct previously allocated
* with @eref{OTF2_DefReaderCallbacks_New}.
*/
void
OTF2_DefReaderCallbacks_Clear( OTF2_DefReaderCallbacks* defReaderCallbacks );
/** @brief Function pointer definition for the callback which is
* triggered for an unknown definition.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_Unknown )( void* userData );
/** @brief Registers the callback for an unknown definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param unknownCallback Function which should be called for all
* unknown definitions.
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetUnknownCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_Unknown unknownCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{MappingTable} definition record.
*
* Mapping tables are needed for situations where an ID is not globally
* known at measurement time. They are applied automatically at
* reading.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param mappingType Says to what type of ID the mapping table has to be
* applied.
* @param idMap Mapping table.
*
* @since Version 1.0
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_MappingTable )( void* userData,
OTF2_MappingType mappingType,
const OTF2_IdMap* idMap );
/** @brief Registers the callback for the @eref{MappingTable} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param mappingTableCallback Function which should be called for all
* @eref{MappingTable} definitions.
*
* @since Version 1.0
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetMappingTableCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_MappingTable mappingTableCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{ClockOffset} definition record.
*
* Clock offsets are used for clock corrections.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param time Time when this offset was determined.
* @param offset The offset to the global clock which was determined
* at @p time.
* @param standardDeviation A possible standard deviation, which can be used as
* a metric for the quality of the offset.
*
* @since Version 1.0
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_ClockOffset )( void* userData,
OTF2_TimeStamp time,
int64_t offset,
double standardDeviation );
/** @brief Registers the callback for the @eref{ClockOffset} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param clockOffsetCallback Function which should be called for all
* @eref{ClockOffset} definitions.
*
* @since Version 1.0
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetClockOffsetCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_ClockOffset clockOffsetCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{String} definition record.
*
* The string definition.
*
* @param userData User data as set by @eref{OTF2_Reader_RegisterDefCallbacks}
* or @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this @eref{String} definition.
* @param string The string, null terminated.
*
* @since Version 1.0
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_String )( void* userData,
OTF2_StringRef self,
const char* string );
/** @brief Registers the callback for the @eref{String} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param stringCallback Function which should be called for all
* @eref{String} definitions.
*
* @since Version 1.0
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetStringCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_String stringCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{Attribute} definition record.
*
* The attribute definition.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this @eref{Attribute}
* definition.
* @param name Name of the attribute. References a @eref{String}
* definition.
* @param description Description of the attribute. References a @eref{String}
* definition. Since version 1.4.
* @param type Type of the attribute value.
*
* @since Version 1.0
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_Attribute )( void* userData,
OTF2_AttributeRef self,
OTF2_StringRef name,
OTF2_StringRef description,
OTF2_Type type );
/** @brief Registers the callback for the @eref{Attribute} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param attributeCallback Function which should be called for all
* @eref{Attribute} definitions.
*
* @since Version 1.0
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetAttributeCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_Attribute attributeCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{SystemTreeNode} definition record.
*
* The system tree node definition.
*
* @param userData User data as set by @eref{OTF2_Reader_RegisterDefCallbacks}
* or @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this @eref{SystemTreeNode}
* definition.
* @param name Free form instance name of this node. References a
* @eref{String} definition.
* @param className Free form class name of this node References a @eref{String}
* definition.
* @param parent Parent ID of this node. May be
* @eref{OTF2_UNDEFINED_SYSTEM_TREE_NODE} to indicate that
* there is no parent. References a @eref{SystemTreeNode}
* definition.
*
* @since Version 1.0
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_SystemTreeNode )( void* userData,
OTF2_SystemTreeNodeRef self,
OTF2_StringRef name,
OTF2_StringRef className,
OTF2_SystemTreeNodeRef parent );
/** @brief Registers the callback for the @eref{SystemTreeNode} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param systemTreeNodeCallback Function which should be called for all
* @eref{SystemTreeNode} definitions.
*
* @since Version 1.0
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetSystemTreeNodeCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_SystemTreeNode systemTreeNodeCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{LocationGroup} definition record.
*
* The location group definition.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this
* @eref{LocationGroup} definition.
* @param name Name of the group. References a @eref{String}
* definition.
* @param locationGroupType Type of this group.
* @param systemTreeParent Parent of this location group in the system
* tree. References a @eref{SystemTreeNode}
* definition.
* @param creatingLocationGroup The creating location group of this group. For
* type @eref{OTF2_LOCATION_GROUP_TYPE_PROCESS}
* this may be another group of type
* @eref{OTF2_LOCATION_GROUP_TYPE_PROCESS} or
* @eref{OTF2_UNDEFINED_LOCATION_GROUP}. For
* type
* @eref{OTF2_LOCATION_GROUP_TYPE_ACCELERATOR},
* this must be a group of type
* @eref{OTF2_LOCATION_GROUP_TYPE_PROCESS}.
* References a @eref{LocationGroup}
* definition. Since version 3.0.
*
* @since Version 1.0
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_LocationGroup )( void* userData,
OTF2_LocationGroupRef self,
OTF2_StringRef name,
OTF2_LocationGroupType locationGroupType,
OTF2_SystemTreeNodeRef systemTreeParent,
OTF2_LocationGroupRef creatingLocationGroup );
/** @brief Registers the callback for the @eref{LocationGroup} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param locationGroupCallback Function which should be called for all
* @eref{LocationGroup} definitions.
*
* @since Version 1.0
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetLocationGroupCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_LocationGroup locationGroupCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{Location} definition record.
*
* The location definition.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this @eref{Location}
* definition.
* @param name Name of the location References a @eref{String}
* definition.
* @param locationType Location type.
* @param numberOfEvents Number of events this location has recorded.
* @param locationGroup Location group which includes this location. References
* a @eref{LocationGroup} definition.
*
* @since Version 1.0
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_Location )( void* userData,
OTF2_LocationRef self,
OTF2_StringRef name,
OTF2_LocationType locationType,
uint64_t numberOfEvents,
OTF2_LocationGroupRef locationGroup );
/** @brief Registers the callback for the @eref{Location} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param locationCallback Function which should be called for all
* @eref{Location} definitions.
*
* @since Version 1.0
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetLocationCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_Location locationCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{Region} definition record.
*
* The region definition.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this @eref{Region}
* definition.
* @param name Name of the region (demangled name if available).
* References a @eref{String} definition.
* @param canonicalName Alternative name of the region (e.g. mangled name).
* References a @eref{String} definition. Since
* version 1.1.
* @param description A more detailed description of this region. References
* a @eref{String} definition.
* @param regionRole Region role. Since version 1.1.
* @param paradigm Paradigm. Since version 1.1.
* @param regionFlags Region flags. Since version 1.1.
* @param sourceFile The source file where this region was declared.
* References a @eref{String} definition.
* @param beginLineNumber Starting line number of this region in the source
* file.
* @param endLineNumber Ending line number of this region in the source file.
*
* @since Version 1.0
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_Region )( void* userData,
OTF2_RegionRef self,
OTF2_StringRef name,
OTF2_StringRef canonicalName,
OTF2_StringRef description,
OTF2_RegionRole regionRole,
OTF2_Paradigm paradigm,
OTF2_RegionFlag regionFlags,
OTF2_StringRef sourceFile,
uint32_t beginLineNumber,
uint32_t endLineNumber );
/** @brief Registers the callback for the @eref{Region} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param regionCallback Function which should be called for all
* @eref{Region} definitions.
*
* @since Version 1.0
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetRegionCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_Region regionCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{Callsite} definition record.
*
* The callsite definition.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this @eref{Callsite}
* definition.
* @param sourceFile The source file where this call was made. References a
* @eref{String} definition.
* @param lineNumber Line number in the source file where this call was made.
* @param enteredRegion The region which was called. References a @eref{Region}
* definition.
* @param leftRegion The region which made the call. References a
* @eref{Region} definition.
*
* @since Version 1.0
*
* @deprecated In version 2.0
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_Callsite )( void* userData,
OTF2_CallsiteRef self,
OTF2_StringRef sourceFile,
uint32_t lineNumber,
OTF2_RegionRef enteredRegion,
OTF2_RegionRef leftRegion );
/** @brief Registers the callback for the @eref{Callsite} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param callsiteCallback Function which should be called for all
* @eref{Callsite} definitions.
*
* @since Version 1.0
*
* @deprecated In version 2.0
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetCallsiteCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_Callsite callsiteCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{Callpath} definition record.
*
* The callpath definition.
*
* @param userData User data as set by @eref{OTF2_Reader_RegisterDefCallbacks}
* or @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this @eref{Callpath} definition.
* @param parent The parent of this callpath. References a @eref{Callpath}
* definition.
* @param region The region of this callpath. References a @eref{Region}
* definition.
*
* @since Version 1.0
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_Callpath )( void* userData,
OTF2_CallpathRef self,
OTF2_CallpathRef parent,
OTF2_RegionRef region );
/** @brief Registers the callback for the @eref{Callpath} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param callpathCallback Function which should be called for all
* @eref{Callpath} definitions.
*
* @since Version 1.0
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetCallpathCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_Callpath callpathCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{Group} definition record.
*
* The group definition.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this @eref{Group}
* definition.
* @param name Name of this group References a @eref{String}
* definition.
* @param groupType The type of this group. Since version 1.2.
* @param paradigm The paradigm of this communication group. Since
* version 1.2.
* @param groupFlags Flags for this group. Since version 1.2.
* @param numberOfMembers The number of members in this group.
* @param members The identifiers of the group members.
*
* @since Version 1.0
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_Group )( void* userData,
OTF2_GroupRef self,
OTF2_StringRef name,
OTF2_GroupType groupType,
OTF2_Paradigm paradigm,
OTF2_GroupFlag groupFlags,
uint32_t numberOfMembers,
const uint64_t* members );
/** @brief Registers the callback for the @eref{Group} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param groupCallback Function which should be called for all
* @eref{Group} definitions.
*
* @since Version 1.0
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetGroupCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_Group groupCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{MetricMember} definition record.
*
* A metric is defined by a @e MetricMember definition. A metric member
* is always a member of a metric class. Therefore, a single metric
* is a special case of a metric class with only one member. It is
* not allowed to reference a metric member ID in a @eref{Metric}
* event, but only metric class IDs.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this @eref{MetricMember}
* definition.
* @param name Name of the metric. References a @eref{String} definition.
* @param description Description of the metric. References a @eref{String}
* definition.
* @param metricType Metric type: PAPI, etc.
* @param metricMode Metric mode: accumulative, fix, relative, etc.
* @param valueType Type of the value. Only @eref{OTF2_TYPE_INT64},
* @eref{OTF2_TYPE_UINT64}, and @eref{OTF2_TYPE_DOUBLE}
* are valid types. If this metric member is recorded in
* a @eref{Metric} event, than this type and the type in
* the event must match.
* @param base The recorded values should be handled in this given base,
* either binary or decimal. This information can be used
* if the value needs to be scaled.
* @param exponent The values inside the Metric events should be scaled by
* the factor base^exponent, to get the value in its base
* unit. For example, if the metric values come in as
* KiBi, than the base should be @eref{OTF2_BASE_BINARY}
* and the exponent 10. Than the writer does not need to
* scale the values up to bytes, but can directly write
* the KiBi values into the Metric event. At reading
* time, the reader can apply the scaling factor to get
* the value in its base unit, ie. in bytes.
* @param unit Unit of the metric. This needs to be the scale free base
* unit, ie. "bytes", "operations", or "seconds". In
* particular this unit should not have any scale prefix.
* References a @eref{String} definition.
*
* @since Version 1.0
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_MetricMember )( void* userData,
OTF2_MetricMemberRef self,
OTF2_StringRef name,
OTF2_StringRef description,
OTF2_MetricType metricType,
OTF2_MetricMode metricMode,
OTF2_Type valueType,
OTF2_Base base,
int64_t exponent,
OTF2_StringRef unit );
/** @brief Registers the callback for the @eref{MetricMember} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param metricMemberCallback Function which should be called for all
* @eref{MetricMember} definitions.
*
* @since Version 1.0
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetMetricMemberCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_MetricMember metricMemberCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{MetricClass} definition record.
*
* For a metric class it is implicitly given that the event stream that
* records the metric is also the scope. A metric class can contain
* multiple different metrics.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this @eref{MetricClass}
* definition.
* @param numberOfMetrics Number of metrics within the set.
* @param metricMembers List of metric members. References a
* @eref{MetricMember} definition.
* @param metricOccurrence Defines occurrence of a metric set.
* @param recorderKind What kind of locations will record this metric class,
* or will this metric class only be recorded by
* metric instances. Since version 1.2.
*
* @since Version 1.0
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_MetricClass )( void* userData,
OTF2_MetricRef self,
uint8_t numberOfMetrics,
const OTF2_MetricMemberRef* metricMembers,
OTF2_MetricOccurrence metricOccurrence,
OTF2_RecorderKind recorderKind );
/** @brief Registers the callback for the @eref{MetricClass} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param metricClassCallback Function which should be called for all
* @eref{MetricClass} definitions.
*
* @since Version 1.0
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetMetricClassCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_MetricClass metricClassCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{MetricInstance} definition record.
*
* A @e MetricInstance is used to define metrics that are recorded at one
* location for multiple locations or for another location. The
* occurrence of a metric instance is implicitly of type
* @eref{OTF2_METRIC_ASYNCHRONOUS}.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this @eref{MetricClass}
* definition.
* @param metricClass The instanced @eref{MetricClass}. This metric class must
* be of kind @eref{OTF2_RECORDER_KIND_ABSTRACT}.
* References a @eref{MetricClass}, or a
* @eref{MetricInstance} definition.
* @param recorder Recorder of the metric: location ID. References a
* @eref{Location} definition.
* @param metricScope Defines type of scope: location, location group, system
* tree node, or a generic group of locations.
* @param scope Scope of metric: ID of a location, location group, system
* tree node, or a generic group of locations.
*
* @since Version 1.0
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_MetricInstance )( void* userData,
OTF2_MetricRef self,
OTF2_MetricRef metricClass,
OTF2_LocationRef recorder,
OTF2_MetricScope metricScope,
uint64_t scope );
/** @brief Registers the callback for the @eref{MetricInstance} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param metricInstanceCallback Function which should be called for all
* @eref{MetricInstance} definitions.
*
* @since Version 1.0
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetMetricInstanceCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_MetricInstance metricInstanceCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{Comm} definition record.
*
* The communicator definition.
*
* @param userData User data as set by @eref{OTF2_Reader_RegisterDefCallbacks}
* or @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this @eref{Comm} definition.
* @param name The name given by calling MPI_Comm_set_name on this
* communicator. Or the empty name to indicate that no name
* was given. References a @eref{String} definition.
* @param group The describing MPI group of this MPI communicator The group
* needs to be of type @eref{OTF2_GROUP_TYPE_COMM_GROUP} or
* @eref{OTF2_GROUP_TYPE_COMM_SELF}. References a
* @eref{Group} definition.
* @param parent The parent MPI communicator from which this communicator was
* created, if any. Use @eref{OTF2_UNDEFINED_COMM} to
* indicate no parent. References a @eref{Comm} definition.
* @param flags Special characteristics of this communicator. Since version
* 3.0.
*
* @since Version 1.0
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_Comm )( void* userData,
OTF2_CommRef self,
OTF2_StringRef name,
OTF2_GroupRef group,
OTF2_CommRef parent,
OTF2_CommFlag flags );
/** @brief Registers the callback for the @eref{Comm} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param commCallback Function which should be called for all @eref{Comm}
* definitions.
*
* @since Version 1.0
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetCommCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_Comm commCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{Parameter} definition record.
*
* The parameter definition.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this @eref{Parameter}
* definition.
* @param name Name of the parameter (variable name etc.) References a
* @eref{String} definition.
* @param parameterType Type of the parameter, @eref{OTF2_ParameterType} for
* possible types.
*
* @since Version 1.0
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_Parameter )( void* userData,
OTF2_ParameterRef self,
OTF2_StringRef name,
OTF2_ParameterType parameterType );
/** @brief Registers the callback for the @eref{Parameter} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param parameterCallback Function which should be called for all
* @eref{Parameter} definitions.
*
* @since Version 1.0
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetParameterCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_Parameter parameterCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{RmaWin} definition record.
*
* A window defines the communication context for any remote-memory
* access operation.
*
* @param userData User data as set by @eref{OTF2_Reader_RegisterDefCallbacks}
* or @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this @eref{RmaWin} definition.
* @param name Name, e.g. 'GASPI Queue 1', 'NVidia Card 2', etc.. References
* a @eref{String} definition.
* @param comm Communicator object used to create the window. References a
* @eref{Comm} definition.
* @param flags Special characteristics of this RMA window. Since version
* 3.0.
*
* @since Version 1.2
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_RmaWin )( void* userData,
OTF2_RmaWinRef self,
OTF2_StringRef name,
OTF2_CommRef comm,
OTF2_RmaWinFlag flags );
/** @brief Registers the callback for the @eref{RmaWin} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param rmaWinCallback Function which should be called for all
* @eref{RmaWin} definitions.
*
* @since Version 1.2
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetRmaWinCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_RmaWin rmaWinCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{MetricClassRecorder} definition record.
*
* The metric class recorder definition.
*
* @param userData User data as set by @eref{OTF2_Reader_RegisterDefCallbacks}
* or @eref{OTF2_DefReader_SetCallbacks}.
* @param metric Parent @eref{MetricClass}, or @eref{MetricInstance}
* definition to which this one is a supplementary
* definition. References a @eref{MetricClass}, or a
* @eref{MetricInstance} definition.
* @param recorder The location which recorded the referenced metric class.
* References a @eref{Location} definition.
*
* @since Version 1.2
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_MetricClassRecorder )( void* userData,
OTF2_MetricRef metric,
OTF2_LocationRef recorder );
/** @brief Registers the callback for the @eref{MetricClassRecorder} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param metricClassRecorderCallback Function which should be called for all
* @eref{MetricClassRecorder}
* definitions.
*
* @since Version 1.2
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetMetricClassRecorderCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_MetricClassRecorder metricClassRecorderCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{SystemTreeNodeProperty} definition record.
*
* An arbitrary key/value property for a @eref{SystemTreeNode}
* definition.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param systemTreeNode Parent @eref{SystemTreeNode} definition to which this
* one is a supplementary definition. References a
* @eref{SystemTreeNode} definition.
* @param name Name of the property. References a @eref{String}
* definition.
* @param type The type of this property. Since version 2.0.
* @param value The value of this property. Since version 2.0.
*
* @since Version 1.2
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_SystemTreeNodeProperty )( void* userData,
OTF2_SystemTreeNodeRef systemTreeNode,
OTF2_StringRef name,
OTF2_Type type,
OTF2_AttributeValue value );
/** @brief Registers the callback for the @eref{SystemTreeNodeProperty} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param systemTreeNodePropertyCallback Function which should be called for all
* @eref{SystemTreeNodeProperty}
* definitions.
*
* @since Version 1.2
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetSystemTreeNodePropertyCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_SystemTreeNodeProperty systemTreeNodePropertyCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{SystemTreeNodeDomain} definition record.
*
* The system tree node domain definition.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param systemTreeNode Parent @eref{SystemTreeNode} definition to which this
* one is a supplementary definition. References a
* @eref{SystemTreeNode} definition.
* @param systemTreeDomain The domain in which the referenced
* @eref{SystemTreeNode} operates in.
*
* @since Version 1.2
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_SystemTreeNodeDomain )( void* userData,
OTF2_SystemTreeNodeRef systemTreeNode,
OTF2_SystemTreeDomain systemTreeDomain );
/** @brief Registers the callback for the @eref{SystemTreeNodeDomain} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param systemTreeNodeDomainCallback Function which should be called for all
* @eref{SystemTreeNodeDomain}
* definitions.
*
* @since Version 1.2
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetSystemTreeNodeDomainCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_SystemTreeNodeDomain systemTreeNodeDomainCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{LocationGroupProperty} definition record.
*
* An arbitrary key/value property for a @eref{LocationGroup} definition.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param locationGroup Parent @eref{LocationGroup} definition to which this one
* is a supplementary definition. References a
* @eref{LocationGroup} definition.
* @param name Name of the property. References a @eref{String}
* definition.
* @param type The type of this property. Since version 2.0.
* @param value The value of this property. Since version 2.0.
*
* @since Version 1.3
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_LocationGroupProperty )( void* userData,
OTF2_LocationGroupRef locationGroup,
OTF2_StringRef name,
OTF2_Type type,
OTF2_AttributeValue value );
/** @brief Registers the callback for the @eref{LocationGroupProperty} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param locationGroupPropertyCallback Function which should be called for all
* @eref{LocationGroupProperty}
* definitions.
*
* @since Version 1.3
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetLocationGroupPropertyCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_LocationGroupProperty locationGroupPropertyCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{LocationProperty} definition record.
*
* An arbitrary key/value property for a @eref{Location} definition.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param location Parent @eref{Location} definition to which this one is a
* supplementary definition. References a @eref{Location}
* definition.
* @param name Name of the property. References a @eref{String}
* definition.
* @param type The type of this property. Since version 2.0.
* @param value The value of this property. Since version 2.0.
*
* @since Version 1.3
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_LocationProperty )( void* userData,
OTF2_LocationRef location,
OTF2_StringRef name,
OTF2_Type type,
OTF2_AttributeValue value );
/** @brief Registers the callback for the @eref{LocationProperty} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param locationPropertyCallback Function which should be called for all
* @eref{LocationProperty} definitions.
*
* @since Version 1.3
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetLocationPropertyCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_LocationProperty locationPropertyCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{CartDimension} definition record.
*
* Each dimension in a Cartesian topology is composed of a global ID, a
* name, its size, and whether it is periodic or not.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this @eref{CartDimension}
* definition.
* @param name The name of the Cartesian topology dimension.
* References a @eref{String} definition.
* @param size The size of the Cartesian topology dimension.
* @param cartPeriodicity Periodicity of the Cartesian topology dimension.
*
* @since Version 1.3
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_CartDimension )( void* userData,
OTF2_CartDimensionRef self,
OTF2_StringRef name,
uint32_t size,
OTF2_CartPeriodicity cartPeriodicity );
/** @brief Registers the callback for the @eref{CartDimension} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param cartDimensionCallback Function which should be called for all
* @eref{CartDimension} definitions.
*
* @since Version 1.3
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetCartDimensionCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_CartDimension cartDimensionCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{CartTopology} definition record.
*
* Each topology is described by a global ID, a reference to its name, a
* reference to a communicator, the number of dimensions, and
* references to those dimensions. The topology type is defined by
* the paradigm of the group referenced by the associated
* communicator.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this @eref{CartTopology}
* definition.
* @param name The name of the topology. References a
* @eref{String} definition.
* @param communicator Communicator object used to create the topology.
* References a @eref{Comm} definition.
* @param numberOfDimensions Number of dimensions.
* @param cartDimensions The dimensions of this topology. References a
* @eref{CartDimension} definition.
*
* @since Version 1.3
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_CartTopology )( void* userData,
OTF2_CartTopologyRef self,
OTF2_StringRef name,
OTF2_CommRef communicator,
uint8_t numberOfDimensions,
const OTF2_CartDimensionRef* cartDimensions );
/** @brief Registers the callback for the @eref{CartTopology} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param cartTopologyCallback Function which should be called for all
* @eref{CartTopology} definitions.
*
* @since Version 1.3
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetCartTopologyCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_CartTopology cartTopologyCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{CartCoordinate} definition record.
*
* Defines the coordinate of the location referenced by the given rank
* (w.r.t. the communicator associated to the topology) in the
* referenced topology.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param cartTopology Parent @eref{CartTopology} definition to which this
* one is a supplementary definition. References a
* @eref{CartTopology} definition.
* @param rank The rank w.r.t. the communicator associated to the
* topology referencing this coordinate.
* @param numberOfDimensions Number of dimensions.
* @param coordinates Coordinates, indexed by dimension.
*
* @since Version 1.3
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_CartCoordinate )( void* userData,
OTF2_CartTopologyRef cartTopology,
uint32_t rank,
uint8_t numberOfDimensions,
const uint32_t* coordinates );
/** @brief Registers the callback for the @eref{CartCoordinate} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param cartCoordinateCallback Function which should be called for all
* @eref{CartCoordinate} definitions.
*
* @since Version 1.3
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetCartCoordinateCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_CartCoordinate cartCoordinateCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{SourceCodeLocation} definition record.
*
* The definition of a source code location as tuple of the corresponding
* file name and line number.
*
* When used to attach source code annotations to events, use the
* @eref{OTF2_AttributeList} with an @eref{Attribute} definition
* named @c "SOURCE_CODE_LOCATION" and of type
* @eref{OTF2_TYPE_SOURCE_CODE_LOCATION}.
*
* @param userData User data as set by @eref{OTF2_Reader_RegisterDefCallbacks}
* or @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this @eref{SourceCodeLocation}
* definition.
* @param file The name of the file for the source code location.
* References a @eref{String} definition.
* @param lineNumber The line number for the source code location.
*
* @since Version 1.5
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_SourceCodeLocation )( void* userData,
OTF2_SourceCodeLocationRef self,
OTF2_StringRef file,
uint32_t lineNumber );
/** @brief Registers the callback for the @eref{SourceCodeLocation} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param sourceCodeLocationCallback Function which should be called for all
* @eref{SourceCodeLocation} definitions.
*
* @since Version 1.5
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetSourceCodeLocationCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_SourceCodeLocation sourceCodeLocationCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{CallingContext} definition record.
*
* Defines a node in the calling context tree. These nodes are referenced
* in the @eref{CallingContextSample}, @eref{CallingContextEnter},
* and @eref{CallingContextLeave} events.
*
* The referenced @eref{CallingContext} node in these events form a path
* which represents the calling context at this time. This path will
* be partitioned into at most three sub-paths by the @a
* unwindDistance attribute. For the @eref{CallingContextLeave}
* event, the @a unwindDistance is defined to be 1.
*
* Starting from the referenced @eref{CallingContext} node, the first @f$
* N \ge 0 @f$ nodes were newly entered regions since the previous
* calling context event. The next node is a region which was not
* left but made progress since the previous calling context event.
* All other nodes did not make progress at all, and thus the regions
* were neither left nor entered again. The @a unwindDistance is
* then @f$ N + 1 @f$. In case the @p unwindDistance is @f$ 0 @f$,
* there are neither newly entered regions nor regions which made
* progress.
*
* It is guaranteed, that the node referenced by the @a unwindDistance
* exists in the previous and current calling context. All
* descendants of this node's child in the previous calling context
* were left since the previous calling context event.
*
* It is valid that this node is the
* @eref{OTF2_UNDEFINED_CALLING_CONTEXT} node and that this node is
* already reached after @a unwindDistance @f$ - 1 @f$ steps. In the
* latter case, there exists no region which made progress, all
* regions in the previous calling context were left and all regions
* in the current calling context were newly entered.
*
* Note that for @eref{CallingContextLeave} events, the parent of the
* referenced @eref{CallingContext} must be used as the previous
* calling context for the next event.
*
* Regions which were entered with a @eref{CallingContextEnter} event
* form an upper bound for the unwind distance, i.e., the @a
* unwindDistance points either to the parent of the last such
* entered region, or a node which is a descendant to this parent.
*
* To summarize, an @a unwindDistance of @f$ 0 @f$ means that no regions
* were left, newly entered, or made any progress. An @a
* unwindDistance of @f$ 1 @f$ means that some regions were left
* regarding the previous calling context, no regions were newly
* entered, and there was progress in the region of the first node.
* An @a unwindDistance greater than @f$ 1 @f$ means that some
* regions were left regarding the previous calling context, there
* was progress in one region, and the first @a unwindDistance @f$ -
* 1 @f$ regions were newly entered.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this
* @eref{CallingContext} definition.
* @param region The region. References a @eref{Region} definition.
* @param sourceCodeLocation The absolute source code location of this calling
* context. References a @eref{SourceCodeLocation}
* definition.
* @param parent Parent ID of this context. References a
* @eref{CallingContext} definition.
*
* @since Version 1.5
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_CallingContext )( void* userData,
OTF2_CallingContextRef self,
OTF2_RegionRef region,
OTF2_SourceCodeLocationRef sourceCodeLocation,
OTF2_CallingContextRef parent );
/** @brief Registers the callback for the @eref{CallingContext} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param callingContextCallback Function which should be called for all
* @eref{CallingContext} definitions.
*
* @since Version 1.5
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetCallingContextCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_CallingContext callingContextCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{CallingContextProperty} definition record.
*
* An arbitrary key/value property for a @eref{CallingContext}
* definition.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param callingContext Parent @eref{CallingContext} definition to which this
* one is a supplementary definition. References a
* @eref{CallingContext} definition.
* @param name Property name. References a @eref{String} definition.
* @param type The type of this property. Must match with the defined
* type of the @a property.
* @param value The value of this property.
*
* @since Version 2.0
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_CallingContextProperty )( void* userData,
OTF2_CallingContextRef callingContext,
OTF2_StringRef name,
OTF2_Type type,
OTF2_AttributeValue value );
/** @brief Registers the callback for the @eref{CallingContextProperty} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param callingContextPropertyCallback Function which should be called for all
* @eref{CallingContextProperty}
* definitions.
*
* @since Version 2.0
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetCallingContextPropertyCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_CallingContextProperty callingContextPropertyCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{InterruptGenerator} definition record.
*
* Defines an interrupt generator which periodically triggers
* @eref{CallingContextSample} events. If the mode of the interrupt
* generator is set to @eref{OTF2_INTERRUPT_GENERATOR_MODE_TIME}, the
* generator produces interrupts which are uniformly distributed over
* time, and the unit of the period is implicitly in seconds. If the
* mode is @eref{OTF2_INTERRUPT_GENERATOR_MODE_COUNT}, the interrupt
* is triggered if a specific counter threshold is reached in the
* system. Therefore these samples are unlikely to be uniformly
* distributed over time. The unit of the period is then implicitly
* a number (threshold value).
*
* The interrupts period in base unit (which is implicitly seconds or
* number, based on the @p mode) is derived out of the @p base, the
* @p exponent, and the @p period attributes by this formula:
*
* base-period = period x base^exponent
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this
* @eref{InterruptGenerator} definition.
* @param name The name of this interrupt generator.
* References a @eref{String} definition.
* @param interruptGeneratorMode Mode of the interrupt generator.
* @param base The base for the period calculation.
* @param exponent The exponent for the period calculation.
* @param period The period this interrupt generator generates
* interrupts.
*
* @since Version 1.5
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_InterruptGenerator )( void* userData,
OTF2_InterruptGeneratorRef self,
OTF2_StringRef name,
OTF2_InterruptGeneratorMode interruptGeneratorMode,
OTF2_Base base,
int64_t exponent,
uint64_t period );
/** @brief Registers the callback for the @eref{InterruptGenerator} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param interruptGeneratorCallback Function which should be called for all
* @eref{InterruptGenerator} definitions.
*
* @since Version 1.5
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetInterruptGeneratorCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_InterruptGenerator interruptGeneratorCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{IoFileProperty} definition record.
*
* Extensible annotation for the polymorphic @eref{IoFile} definition
* class.
*
* The tuple (@a ioFile, @a name) must be unique.
*
* @param userData User data as set by @eref{OTF2_Reader_RegisterDefCallbacks}
* or @eref{OTF2_DefReader_SetCallbacks}.
* @param ioFile Parent @eref{IoRegularFile} definition to which this one is a
* supplementary definition. References a
* @eref{IoRegularFile} definition.
* @param name Property name. References a @eref{String} definition.
* @param type The type of this property.
* @param value The value of this property.
*
* @since Version 2.1
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_IoFileProperty )( void* userData,
OTF2_IoFileRef ioFile,
OTF2_StringRef name,
OTF2_Type type,
OTF2_AttributeValue value );
/** @brief Registers the callback for the @eref{IoFileProperty} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param ioFilePropertyCallback Function which should be called for all
* @eref{IoFileProperty} definitions.
*
* @since Version 2.1
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetIoFilePropertyCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_IoFileProperty ioFilePropertyCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{IoRegularFile} definition record.
*
* Defines a regular file from which an @eref{IoHandle} can be created.
*
* This definition is member of the polymorphic @eref{IoFile} definition
* class. All definitions of this polymorphic definition class share
* the same global identifier namespace.
*
* @param userData User data as set by @eref{OTF2_Reader_RegisterDefCallbacks}
* or @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this @eref{IoRegularFile}
* definition.
* @param name Name of the file. References a @eref{String} definition.
* @param scope Defines the physical scope of this @eref{IoRegularFile} in
* the system tree. E.g., two @eref{IoRegularFile}
* definitions with the same name but different @p scope
* values are physically different, thus I/O operations
* through @eref{IoHandle}s do not operate on the same file.
* References a @eref{SystemTreeNode} definition.
*
* @since Version 2.1
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_IoRegularFile )( void* userData,
OTF2_IoFileRef self,
OTF2_StringRef name,
OTF2_SystemTreeNodeRef scope );
/** @brief Registers the callback for the @eref{IoRegularFile} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param ioRegularFileCallback Function which should be called for all
* @eref{IoRegularFile} definitions.
*
* @since Version 2.1
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetIoRegularFileCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_IoRegularFile ioRegularFileCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{IoDirectory} definition record.
*
* Defines a directory from which an @eref{IoHandle} can be created.
*
* This definition is member of the polymorphic @eref{IoFile} definition
* class. All definitions of this polymorphic definition class share
* the same global identifier namespace.
*
* @param userData User data as set by @eref{OTF2_Reader_RegisterDefCallbacks}
* or @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this @eref{IoRegularFile}
* definition.
* @param name Name of the directory. References a @eref{String} definition.
* @param scope Defines the physical scope of this @eref{IoDirectory} in the
* system tree. E.g., two @eref{IoDirectory} definitions
* with the same name but different @p scope values are
* physically different, thus I/O operations through
* @eref{IoHandle}s do not operate on the same directory.
* References a @eref{SystemTreeNode} definition.
*
* @since Version 2.1
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_IoDirectory )( void* userData,
OTF2_IoFileRef self,
OTF2_StringRef name,
OTF2_SystemTreeNodeRef scope );
/** @brief Registers the callback for the @eref{IoDirectory} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param ioDirectoryCallback Function which should be called for all
* @eref{IoDirectory} definitions.
*
* @since Version 2.1
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetIoDirectoryCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_IoDirectory ioDirectoryCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{IoHandle} definition record.
*
* Defines an I/O handle which will be used by subsequent I/O operations.
* I/O operations can only be applied to @emph{active} I/O handles.
* An I/O handle gets @emph{active} either if it was marked with the
* @eref{OTF2_IO_HANDLE_FLAG_PRE_CREATED} flag, after it was
* referenced in an @eref{IoCreateHandle} event, or it was referenced
* in the @a newHandle attribute of an @eref{IoDuplicateHandle}
* event. It gets @emph{inactive} if it was referenced in an
* @eref{IoDestroyHandle} event. This life cycle can be repeated
* indefinitely. Though the @eref{OTF2_IO_HANDLE_FLAG_PRE_CREATED}
* flag is unset after a @eref{IoDuplicateHandle} event. All
* @eref{Location}s of a @eref{LocationGroup} have access to an
* @emph{active} @eref{IoHandle}, regardless which @eref{Location} of
* the @eref{LocationGroup} activated the @eref{IoHandle}.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this @eref{IoHandle}
* definition.
* @param name Handle name. References a @eref{String} definition.
* @param file File identifier. References a @eref{IoRegularFile}, or a
* @eref{IoDirectory} definition.
* @param ioParadigm The I/O paradigm. References a @eref{IoParadigm}
* definition.
* @param ioHandleFlags Special characteristics of this handle.
* @param comm Scope of the file handle. This scope defines which
* process can access this file via this handle and
* also defines the collective context for this handle.
* References a @eref{Comm} definition.
* @param parent Parent, in case this I/O handle was created and operated
* by an higher-level I/O paradigm. References a
* @eref{IoHandle} definition.
*
* @since Version 2.1
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_IoHandle )( void* userData,
OTF2_IoHandleRef self,
OTF2_StringRef name,
OTF2_IoFileRef file,
OTF2_IoParadigmRef ioParadigm,
OTF2_IoHandleFlag ioHandleFlags,
OTF2_CommRef comm,
OTF2_IoHandleRef parent );
/** @brief Registers the callback for the @eref{IoHandle} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param ioHandleCallback Function which should be called for all
* @eref{IoHandle} definitions.
*
* @since Version 2.1
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetIoHandleCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_IoHandle ioHandleCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{IoPreCreatedHandleState} definition record.
*
* Provide the I/O access mode and status flags for @emph{pre-created}
* @eref{IoHandle}s.
*
* Only allowed once for a @eref{IoHandle} definition with the
* @eref{OTF2_IO_HANDLE_FLAG_PRE_CREATED} flag set.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param ioHandle Parent @eref{IoHandle} definition to which this one is a
* supplementary definition. References a @eref{IoHandle}
* definition.
* @param mode The access mode of the @emph{pre-created} @eref{IoHandle}.
* @param statusFlags The status flags of the @emph{pre-created}
* @eref{IoHandle}.
*
* @since Version 2.1
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_IoPreCreatedHandleState )( void* userData,
OTF2_IoHandleRef ioHandle,
OTF2_IoAccessMode mode,
OTF2_IoStatusFlag statusFlags );
/** @brief Registers the callback for the @eref{IoPreCreatedHandleState} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param ioPreCreatedHandleStateCallback Function which should be called for
* all @eref{IoPreCreatedHandleState}
* definitions.
*
* @since Version 2.1
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetIoPreCreatedHandleStateCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_IoPreCreatedHandleState ioPreCreatedHandleStateCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{CallpathParameter} definition record.
*
* A parameter for a callpath definition.
*
* @param userData User data as set by @eref{OTF2_Reader_RegisterDefCallbacks}
* or @eref{OTF2_DefReader_SetCallbacks}.
* @param callpath Parent @eref{Callpath} definition to which this one is a
* supplementary definition. References a @eref{Callpath}
* definition.
* @param parameter The parameter of this callpath. References a
* @eref{Parameter} definition.
* @param type The type of the attribute value. Must match the type of the
* parameter.
* @param value The value of the parameter for this callpath.
*
* @since Version 2.2
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_CallpathParameter )( void* userData,
OTF2_CallpathRef callpath,
OTF2_ParameterRef parameter,
OTF2_Type type,
OTF2_AttributeValue value );
/** @brief Registers the callback for the @eref{CallpathParameter} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param callpathParameterCallback Function which should be called for all
* @eref{CallpathParameter} definitions.
*
* @since Version 2.2
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetCallpathParameterCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_CallpathParameter callpathParameterCallback );
/** @brief Function pointer definition for the callback which is triggered by
* a @eref{InterComm} definition record.
*
* The inter-communicator definition.
*
* @param userData User data as set by
* @eref{OTF2_Reader_RegisterDefCallbacks} or
* @eref{OTF2_DefReader_SetCallbacks}.
* @param self The unique identifier for this @eref{Comm}
* definition.
* @param name The name given by calling MPI_Comm_set_name on this
* communicator. Or the empty name to indicate
* that no name was given. References a
* @eref{String} definition.
* @param groupA One of the two MPI process groups in the
* intercommunicator. The group needs to be of
* type @eref{OTF2_GROUP_TYPE_COMM_GROUP} or
* @eref{OTF2_GROUP_TYPE_COMM_SELF}. References a
* @eref{Group} definition.
* @param groupB The other of the two MPI process groups in the
* intercommunicator. The group needs to be of
* type @eref{OTF2_GROUP_TYPE_COMM_GROUP} or
* @eref{OTF2_GROUP_TYPE_COMM_SELF}. References a
* @eref{Group} definition.
* @param commonCommunicator The common peer MPI communicator used to create
* this inter-communicator. Use
* @eref{OTF2_UNDEFINED_COMM} if no such
* communicator was used. References a
* @eref{Comm}, or a @eref{InterComm} definition.
* @param flags Special characteristics of this communicator.
*
* @since Version 3.0
*
* @return @eref{OTF2_CALLBACK_SUCCESS} or @eref{OTF2_CALLBACK_INTERRUPT}.
*/
typedef OTF2_CallbackCode
( * OTF2_DefReaderCallback_InterComm )( void* userData,
OTF2_CommRef self,
OTF2_StringRef name,
OTF2_GroupRef groupA,
OTF2_GroupRef groupB,
OTF2_CommRef commonCommunicator,
OTF2_CommFlag flags );
/** @brief Registers the callback for the @eref{InterComm} definition.
*
* @param defReaderCallbacks Struct for all callbacks.
* @param interCommCallback Function which should be called for all
* @eref{InterComm} definitions.
*
* @since Version 3.0
*
* @retbegin
* @retcode{OTF2_SUCCESS, if successful}
* @retcode{OTF2_ERROR_INVALID_ARGUMENT,
* for an invalid @p defReaderCallbacks argument}
* @retend
*/
OTF2_ErrorCode
OTF2_DefReaderCallbacks_SetInterCommCallback(
OTF2_DefReaderCallbacks* defReaderCallbacks,
OTF2_DefReaderCallback_InterComm interCommCallback );
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* !OTF2_DEF_READER_CALLBACKS_H */
|