summaryrefslogtreecommitdiffstats
path: root/Python/traceback.c
blob: 5df7694e66a43ae6d1e745cd366f1446aa7434d8 (plain)
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

/* Traceback implementation */

#include "Python.h"

#include "code.h"
#include "frameobject.h"
#include "structmember.h"
#include "osdefs.h"
#include "traceback.h"

#define OFF(x) offsetof(PyTracebackObject, x)

static struct memberlist tb_memberlist[] = {
	{"tb_next",	T_OBJECT,	OFF(tb_next)},
	{"tb_frame",	T_OBJECT,	OFF(tb_frame)},
	{"tb_lasti",	T_INT,		OFF(tb_lasti)},
	{"tb_lineno",	T_INT,		OFF(tb_lineno)},
	{NULL}	/* Sentinel */
};

static PyObject *
tb_getattr(PyTracebackObject *tb, char *name)
{
	return PyMember_Get((char *)tb, tb_memberlist, name);
}

static void
tb_dealloc(PyTracebackObject *tb)
{
	PyObject_GC_UnTrack(tb);
	Py_TRASHCAN_SAFE_BEGIN(tb)
	Py_XDECREF(tb->tb_next);
	Py_XDECREF(tb->tb_frame);
	PyObject_GC_Del(tb);
	Py_TRASHCAN_SAFE_END(tb)
}

static int
tb_traverse(PyTracebackObject *tb, visitproc visit, void *arg)
{
	Py_VISIT(tb->tb_next);
	Py_VISIT(tb->tb_frame);
	return 0;
}

static void
tb_clear(PyTracebackObject *tb)
{
	Py_CLEAR(tb->tb_next);
	Py_CLEAR(tb->tb_frame);
}

PyTypeObject PyTraceBack_Type = {
	PyVarObject_HEAD_INIT(&PyType_Type, 0)
	"traceback",
	sizeof(PyTracebackObject),
	0,
	(destructor)tb_dealloc, /*tp_dealloc*/
	0,		/*tp_print*/
	(getattrfunc)tb_getattr, /*tp_getattr*/
	0,		/*tp_setattr*/
	0,		/*tp_compare*/
	0,		/*tp_repr*/
	0,		/*tp_as_number*/
	0,		/*tp_as_sequence*/
	0,		/*tp_as_mapping*/
	0,		/* tp_hash */
	0,		/* tp_call */
	0,		/* tp_str */
	0,		/* tp_getattro */
	0,		/* tp_setattro */
	0,					/* tp_as_buffer */
	Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
	0,             				/* tp_doc */
 	(traverseproc)tb_traverse,		/* tp_traverse */
	(inquiry)tb_clear,			/* tp_clear */
	0,					/* tp_richcompare */
	0,					/* tp_weaklistoffset */
	0,					/* tp_iter */
	0,					/* tp_iternext */
	0,					/* tp_methods */
	0,			/* tp_members */
	0,			/* tp_getset */
	0,					/* tp_base */
	0,					/* tp_dict */
};

static PyTracebackObject *
newtracebackobject(PyTracebackObject *next, PyFrameObject *frame)
{
	PyTracebackObject *tb;
	if ((next != NULL && !PyTraceBack_Check(next)) ||
			frame == NULL || !PyFrame_Check(frame)) {
		PyErr_BadInternalCall();
		return NULL;
	}
	tb = PyObject_GC_New(PyTracebackObject, &PyTraceBack_Type);
	if (tb != NULL) {
		Py_XINCREF(next);
		tb->tb_next = next;
		Py_XINCREF(frame);
		tb->tb_frame = frame;
		tb->tb_lasti = frame->f_lasti;
		tb->tb_lineno = PyCode_Addr2Line(frame->f_code, 
						 frame->f_lasti);
		PyObject_GC_Track(tb);
	}
	return tb;
}

int
PyTraceBack_Here(PyFrameObject *frame)
{
	PyThreadState *tstate = PyThreadState_GET();
	PyTracebackObject *oldtb = (PyTracebackObject *) tstate->curexc_traceback;
	PyTracebackObject *tb = newtracebackobject(oldtb, frame);
	if (tb == NULL)
		return -1;
	tstate->curexc_traceback = (PyObject *)tb;
	Py_XDECREF(oldtb);
	return 0;
}

int
_Py_DisplaySourceLine(PyObject *f, const char *filename, int lineno, int indent)
{
	int err = 0;
	FILE *xfp = NULL;
	char linebuf[2000];
	int i;
	char namebuf[MAXPATHLEN+1];

	if (filename == NULL)
		return -1;
	/* This is needed by Emacs' compile command */
#define FMT "  File \"%.500s\", line %d, in %.500s\n"
	xfp = fopen(filename, "r" PY_STDIOTEXTMODE);
	if (xfp == NULL) {
		/* Search tail of filename in sys.path before giving up */
		PyObject *path;
		const char *tail = strrchr(filename, SEP);
		if (tail == NULL)
			tail = filename;
		else
			tail++;
		path = PySys_GetObject("path");
		if (path != NULL && PyList_Check(path)) {
			Py_ssize_t _npath = PyList_Size(path);
			int npath = Py_SAFE_DOWNCAST(_npath, Py_ssize_t, int);
			size_t taillen = strlen(tail);
			for (i = 0; i < npath; i++) {
				PyObject *v = PyList_GetItem(path, i);
				if (v == NULL) {
					PyErr_Clear();
					break;
				}
				if (PyString_Check(v)) {
					size_t len;
					len = PyString_GET_SIZE(v);
					if (len + 1 + taillen >= MAXPATHLEN)
						continue; /* Too long */
					strcpy(namebuf, PyString_AsString(v));
					if (strlen(namebuf) != len)
						continue; /* v contains '\0' */
					if (len > 0 && namebuf[len-1] != SEP)
						namebuf[len++] = SEP;
					strcpy(namebuf+len, tail);
					xfp = fopen(namebuf, "r" PY_STDIOTEXTMODE);
					if (xfp != NULL) {
						filename = namebuf;
						break;
					}
				}
			}
		}
	}

        if (xfp == NULL)
            return err;
        if (err != 0) {
            fclose(xfp);
            return err;
        }

	for (i = 0; i < lineno; i++) {
		char* pLastChar = &linebuf[sizeof(linebuf)-2];
		do {
			*pLastChar = '\0';
			if (Py_UniversalNewlineFgets(linebuf, sizeof linebuf, xfp, NULL) == NULL)
				break;
			/* fgets read *something*; if it didn't get as
			   far as pLastChar, it must have found a newline
			   or hit the end of the file;	if pLastChar is \n,
			   it obviously found a newline; else we haven't
			   yet seen a newline, so must continue */
		} while (*pLastChar != '\0' && *pLastChar != '\n');
	}
	if (i == lineno) {
		char buf[11];
		char *p = linebuf;
		while (*p == ' ' || *p == '\t' || *p == '\014')
			p++;

		/* Write some spaces before the line */
		strcpy(buf, "          ");
		assert (strlen(buf) == 10);
		while (indent > 0) {
			if(indent < 10)
				buf[indent] = '\0';
			err = PyFile_WriteString(buf, f);
			if (err != 0)
				break;
			indent -= 10;
		}

		if (err == 0)
			err = PyFile_WriteString(p, f);
		if (err == 0 && strchr(p, '\n') == NULL)
			err = PyFile_WriteString("\n", f);
	}
	fclose(xfp);
	return err;
}

static int
tb_displayline(PyObject *f, const char *filename, int lineno, const char *name)
{
	int err = 0;
        char linebuf[2000];

	if (filename == NULL || name == NULL)
		return -1;
	/* This is needed by Emacs' compile command */
#define FMT "  File \"%.500s\", line %d, in %.500s\n"
	PyOS_snprintf(linebuf, sizeof(linebuf), FMT, filename, lineno, name);
	err = PyFile_WriteString(linebuf, f);
	if (err != 0)
		return err;
        return _Py_DisplaySourceLine(f, filename, lineno, 4);
}

static int
tb_printinternal(PyTracebackObject *tb, PyObject *f, long limit)
{
	int err = 0;
	long depth = 0;
	PyTracebackObject *tb1 = tb;
	while (tb1 != NULL) {
		depth++;
		tb1 = tb1->tb_next;
	}
	while (tb != NULL && err == 0) {
		if (depth <= limit) {
			err = tb_displayline(f,
			    PyString_AsString(
				    tb->tb_frame->f_code->co_filename),
			    tb->tb_lineno,
			    PyString_AsString(tb->tb_frame->f_code->co_name));
		}
		depth--;
		tb = tb->tb_next;
		if (err == 0)
			err = PyErr_CheckSignals();
	}
	return err;
}

int
PyTraceBack_Print(PyObject *v, PyObject *f)
{
	int err;
	PyObject *limitv;
	long limit = 1000;
	if (v == NULL)
		return 0;
	if (!PyTraceBack_Check(v)) {
		PyErr_BadInternalCall();
		return -1;
	}
	limitv = PySys_GetObject("tracebacklimit");
	if (limitv && PyInt_Check(limitv)) {
		limit = PyInt_AsLong(limitv);
		if (limit <= 0)
			return 0;
	}
	err = PyFile_WriteString("Traceback (most recent call last):\n", f);
	if (!err)
		err = tb_printinternal((PyTracebackObject *)v, f, limit);
	return err;
}
ef='#n1140'>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 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Copyright by The HDF Group.                                               *
 * Copyright by the Board of Trustees of the University of Illinois.         *
 * All rights reserved.                                                      *
 *                                                                           *
 * This file is part of HDF5.  The full HDF5 copyright notice, including     *
 * terms governing use, modification, and redistribution, is contained in    *
 * the files COPYING and Copyright.html.  COPYING can be found at the root   *
 * of the source code distribution tree; Copyright.html can be found at the  *
 * root level of an installed copy of the electronic HDF5 document set and   *
 * is linked from the top-level documents page.  It can also be found at     *
 * http://hdfgroup.org/HDF5/doc/Copyright.html.  If you do not have          *
 * access to either file, you may request a copy from help@hdfgroup.org.     *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/*-------------------------------------------------------------------------
 *
 * Created:		H5trace.c
 *			Aug 21 2006
 *			Quincey Koziol <koziol@hdfgroup.org>
 *
 * Purpose:		Internal code for tracing API calls
 *
 *-------------------------------------------------------------------------
 */

/****************/
/* Module Setup */
/****************/
#define H5I_PACKAGE		/*suppress error about including H5Ipkg	  */


/***********/
/* Headers */
/***********/
#include "H5private.h"		/* Generic Functions			*/
#include "H5Dprivate.h"		/* Datasets				*/
#include "H5Eprivate.h"		/* Error handling		  	*/
#include "H5FDprivate.h"	/* File drivers				*/
#include "H5Ipkg.h"		/* IDs			  		*/
#include "H5MMprivate.h"	/* Memory management			*/

#ifdef H5_HAVE_PARALLEL
/* datatypes of predefined drivers needed by H5_trace() */
#include "H5FDmpio.h"
#endif /* H5_HAVE_PARALLEL */


/****************/
/* Local Macros */
/****************/


/******************/
/* Local Typedefs */
/******************/


/********************/
/* Package Typedefs */
/********************/


/********************/
/* Local Prototypes */
/********************/


/*********************/
/* Package Variables */
/*********************/


/*****************************/
/* Library Private Variables */
/*****************************/


/*******************/
/* Local Variables */
/*******************/



/*-------------------------------------------------------------------------
 * Function:	H5_trace
 *
 * Purpose:	This function is called whenever an API function is called
 *		and tracing is turned on.  If RETURNING is non-zero then
 *		the caller is about to return and RETURNING points to the
 *              time for the corresponding function call event.  Otherwise
 *              we print the function name and the arguments.
 *
 *		The TYPE argument is a string which gives the type of each of
 *		the following argument pairs.  Each type is zero or more
 *		asterisks (one for each level of indirection, although some
 *		types have one level of indirection already implied) followed
 *		by either one letter (lower case) or two letters (first one
 *		uppercase).
 *
 *		The variable argument list consists of pairs of values. Each
 *		pair is a string which is the formal argument name in the
 *		calling function, followed by the argument value.  The type
 *		of the argument value is given by the TYPE string.
 *
 * Note:	The TYPE string is meant to be terse and is generated by a
 *		separate perl script.
 *
 * WARNING:	DO NOT CALL ANY HDF5 FUNCTION THAT CALLS FUNC_ENTER(). DOING
 *		SO MAY CAUSE H5_trace() TO BE INVOKED RECURSIVELY OR MAY
 *		CAUSE LIBRARY INITIALIZATIONS THAT ARE NOT DESIRED.
 *
 * Return:	void
 *
 * Programmer:	Robb Matzke
 *              Tuesday, June 16, 1998
 *
 *-------------------------------------------------------------------------
 */
double
H5_trace(const double *returning, const char *func, const char *type, ...)
{
    va_list		ap;
    char		buf[64], *rest;
    const char		*argname;
    int			argno = 0, ptr, asize_idx;
    hssize_t		asize[16];
    hssize_t		i;
    void		*vp = NULL;
    FILE		*out = H5_debug_g.trace;
    H5_timer_t          event_time;
    static H5_timer_t   first_time = {0.0, 0.0, 0.0};
    static int          current_depth = 0;
    static int          last_call_depth = 0;

    /* FUNC_ENTER() should not be called */

    if(!out)
        return 0.0;	/*tracing is off*/
    va_start(ap, type);

    if(H5_debug_g.ttop) {
        if(returning) {
            if(current_depth > 1) {
                --current_depth;
                return 0.0;
            } /* end if */
        } /* end if */
        else {
            if(current_depth > 0) {
                /*do not update last_call_depth*/
                current_depth++;
                return 0.0;
            } /* end if */
        } /* end else */
    } /* end if */

    /* Get tim for event */
    if(fabs(first_time.etime) < 0.0000000001)
        /* That is == 0.0, but direct comparison between floats is bad */
        H5_timer_begin(&first_time);
    if(H5_debug_g.ttimes)
        H5_timer_begin(&event_time);
    else
        HDmemset(&event_time, 0, sizeof event_time);

    /* Print the first part of the line.  This is the indication of the
     * nesting depth followed by the function name and either start of
     * argument list or start of return value.  If this call is for a
     * function return and no other calls have been made to H5_trace()
     * since the one for the function call, then we're continuing
     * the same line. */
    if(returning) {
        HDassert(current_depth > 0);
        --current_depth;
        if(current_depth < last_call_depth) {
            /* We are at the beginning of a line */
            if(H5_debug_g.ttimes) {
                char tmp[128];

                sprintf(tmp, "%.6f", event_time.etime-first_time.etime);
                fprintf(out, " %*s ", (int)strlen(tmp), "");
            } /* end if */
            for(i = 0; i < current_depth; i++)
                fputc('+', out);
            fprintf(out, "%*s%s = ", 2*current_depth, "", func);
        } /* end if */
        else {
            /* Continue current line with return value */
            fprintf(out, " = ");
        } /* end else */
    } /* end if */
    else {
        if(current_depth>last_call_depth)
            fputs(" = <delayed>\n", out);
        if(H5_debug_g.ttimes)
            fprintf(out, "@%.6f ", event_time.etime - first_time.etime);
        for(i = 0; i < current_depth; i++)
            fputc('+', out);
        fprintf(out, "%*s%s(", 2*current_depth, "", func);
    } /* end else */

    /* Clear array sizes */
    for(i = 0; i < (hssize_t)NELMTS(asize); i++)
        asize[i] = -1;

    /* Parse the argument types */
    for(argno = 0; *type; argno++, type += (HDisupper(*type) ? 2 : 1)) {
	/* Count levels of indirection */
	for(ptr = 0; '*' == *type; type++)
            ptr++;
	if('[' == *type) {
	    if('a' == type[1]) {
		asize_idx = (int)HDstrtol(type + 2, &rest, 10);
		HDassert(']'==*rest);
		type = rest + 1;
	    } else {
		rest = (char *)HDstrchr(type, ']');
		HDassert(rest);
		type = rest + 1;
		asize_idx = -1;
	    }
	} /* end if */
        else
	    asize_idx = -1;

	/*
	 * The argument name.  Leave off the `_id' part.  If the argument
	 * name is the null pointer then don't print the argument or the
	 * following `='.  This is used for return values.
	 */
	argname = va_arg(ap, char *); /*lint !e64 Type mismatch not really occuring */
	if(argname) {
	    unsigned n = (unsigned)MAX (0, (int)HDstrlen(argname) - 3); /*lint !e666 Allow expression with side effects */

	    if(!HDstrcmp(argname + n, "_id")) {
		HDstrncpy(buf, argname, (size_t)MIN((int)sizeof(buf) - 1, n));
		buf[MIN((int)sizeof(buf) - 1, n)] = '\0';
		argname = buf;
	    } /* end if */
	    fprintf(out, "%s%s=", argno?", ":"", argname);
	} /* end if */
        else
	    argname = "";

	/* The value */
	if(ptr)
            vp = va_arg(ap, void *); /*lint !e64 Type mismatch not really occuring */
	switch(type[0]) {
            case 'a':
                if(ptr) {
                    if(vp)
                        fprintf(out, "0x%lx", (unsigned long)vp);
                    else
                        fprintf(out, "NULL");
                } /* end if */
                else {
                    haddr_t addr = va_arg(ap, haddr_t); /*lint !e732 Loss of sign not really occuring */

                    HDfprintf(out, "%a", addr);
                } /* end else */
                break;

            case 'b':
                if(ptr) {
                    if(vp)
                        fprintf(out, "0x%lx", (unsigned long)vp);
                    else
                        fprintf(out, "NULL");
                } /* end if */
                else {
                    hbool_t bool_var = va_arg(ap, hbool_t); /*lint !e732 Loss of sign not really occuring */

                    if(TRUE == bool_var)
                        fprintf(out, "TRUE");
                    else if(!bool_var)
                        fprintf(out, "FALSE");
                    else
                        fprintf(out, "TRUE(%u)", (unsigned)bool_var);
                }
                break;

            case 'd':
                if(ptr) {
                    if(vp)
                        fprintf(out, "0x%lx", (unsigned long)vp);
                    else
                        fprintf(out, "NULL");
                } /* end if */
                else {
                    double dbl = va_arg(ap, double);

                    fprintf(out, "%g", dbl);
                } /* end else */
                break;

            case 'D':
                switch(type[1]) {
                    case 'a':
                        if(ptr) {
                            if(vp)
                                fprintf (out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5D_alloc_time_t alloc_time = (H5D_alloc_time_t)va_arg(ap, int);

                            switch(alloc_time) {
                                case H5D_ALLOC_TIME_ERROR:
                                    fprintf(out, "H5D_ALLOC_TIME_ERROR");
                                    break;

                                case H5D_ALLOC_TIME_DEFAULT:
                                    fprintf(out, "H5D_ALLOC_TIME_DEFAULT");
                                    break;

                                case H5D_ALLOC_TIME_EARLY:
                                    fprintf(out, "H5D_ALLOC_TIME_EARLY");
                                    break;

                                case H5D_ALLOC_TIME_LATE:
                                    fprintf(out, "H5D_ALLOC_TIME_LATE");
                                    break;

                                case H5D_ALLOC_TIME_INCR:
                                    fprintf(out, "H5D_ALLOC_TIME_INCR");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)alloc_time);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 'c':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5FD_mpio_collective_opt_t opt = (H5FD_mpio_collective_opt_t)va_arg(ap, int);

                            switch(opt) {
                                case H5FD_MPIO_COLLECTIVE_IO:
                                    fprintf(out, "H5FD_MPIO_COLLECTIVE_IO");
                                    break;

                                case H5FD_MPIO_INDIVIDUAL_IO:
                                    fprintf(out, "H5FD_MPIO_INDIVIDUAL_IO");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)opt);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 'f':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5D_fill_time_t fill_time = (H5D_fill_time_t)va_arg(ap, int);

                            switch(fill_time) {
                                case H5D_FILL_TIME_ERROR:
                                    fprintf(out, "H5D_FILL_TIME_ERROR");
                                    break;

                                case H5D_FILL_TIME_ALLOC:
                                    fprintf(out, "H5D_FILL_TIME_ALLOC");
                                    break;

                                case H5D_FILL_TIME_NEVER:
                                    fprintf(out, "H5D_FILL_TIME_NEVER");
                                    break;

                                case H5D_FILL_TIME_IFSET:
                                    fprintf(out, "H5D_FILL_TIME_IFSET");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)fill_time);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 'F':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5D_fill_value_t fill_value = (H5D_fill_value_t)va_arg(ap, int);

                            switch(fill_value) {
                                case H5D_FILL_VALUE_ERROR:
                                    fprintf(out, "H5D_FILL_VALUE_ERROR");
                                    break;

                                case H5D_FILL_VALUE_UNDEFINED:
                                    fprintf(out, "H5D_FILL_VALUE_UNDEFINED");
                                    break;

                                case H5D_FILL_VALUE_DEFAULT:
                                    fprintf(out, "H5D_FILL_VALUE_DEFAULT");
                                    break;

                                case H5D_FILL_VALUE_USER_DEFINED:
                                    fprintf(out, "H5D_FILL_VALUE_USER_DEFINED");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)fill_value);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 'h':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5FD_mpio_chunk_opt_t opt = (H5FD_mpio_chunk_opt_t)va_arg(ap, int);

                            switch(opt) {
                                case H5FD_MPIO_CHUNK_DEFAULT:
                                    fprintf(out, "H5FD_MPIO_CHUNK_DEFAULT");
                                    break;

                                case H5FD_MPIO_CHUNK_ONE_IO:
                                    fprintf(out, "H5FD_MPIO_CHUNK_ONE_IO");
                                    break;

                                case H5FD_MPIO_CHUNK_MULTI_IO:
                                    fprintf(out, "H5FD_MPIO_CHUNK_MULTI_IO");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)opt);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 'l':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5D_layout_t layout = (H5D_layout_t)va_arg(ap, int);

                            switch(layout) {
                                case H5D_LAYOUT_ERROR:
                                    fprintf(out, "H5D_LAYOUT_ERROR");
                                    break;

                                case H5D_COMPACT:
                                    fprintf(out, "H5D_COMPACT");
                                    break;

                                case H5D_CONTIGUOUS:
                                    fprintf(out, "H5D_CONTIGUOUS");
                                    break;

                                case H5D_CHUNKED:
                                    fprintf(out, "H5D_CHUNKED");
                                    break;

                                case H5D_NLAYOUTS:
                                    fprintf(out, "H5D_NLAYOUTS");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)layout);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 's':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5D_space_status_t space_status = (H5D_space_status_t)va_arg(ap, int);

                            switch(space_status) {
                                case H5D_SPACE_STATUS_NOT_ALLOCATED:
                                    fprintf(out, "H5D_SPACE_STATUS_NOT_ALLOCATED");
                                    break;

                                case H5D_SPACE_STATUS_PART_ALLOCATED:
                                    fprintf(out, "H5D_SPACE_STATUS_PART_ALLOCATED");
                                    break;

                                case H5D_SPACE_STATUS_ALLOCATED:
                                    fprintf(out, "H5D_SPACE_STATUS_ALLOCATED");
                                    break;

                                case H5D_SPACE_STATUS_ERROR:
                                    fprintf(out, "H5D_SPACE_STATUS_ERROR");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)space_status);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 't':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5FD_mpio_xfer_t transfer = (H5FD_mpio_xfer_t)va_arg(ap, int);

                            switch(transfer) {
                                case H5FD_MPIO_INDEPENDENT:
                                    fprintf(out, "H5FD_MPIO_INDEPENDENT");
                                    break;

                                case H5FD_MPIO_COLLECTIVE:
                                    fprintf(out, "H5FD_MPIO_COLLECTIVE");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)transfer);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    default:
                        fprintf (out, "BADTYPE(D%c)", type[1]);
                        goto error;
                } /* end switch */
                break;

            case 'e':
                if(ptr) {
                    if(vp)
                        fprintf(out, "0x%lx", (unsigned long)vp);
                    else
                        fprintf(out, "NULL");
                } /* end if */
                else {
                    herr_t status = va_arg(ap, herr_t);

                    if(status >= 0)
                        fprintf(out, "SUCCEED");
                    else 
                        fprintf(out, "FAIL");
                } /* end else */
                break;

            case 'E':
                switch(type[1]) {
                    case 'd':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5E_direction_t direction = (H5E_direction_t)va_arg(ap, int);

                            switch(direction) {
                                case H5E_WALK_UPWARD:
                                    fprintf(out, "H5E_WALK_UPWARD");
                                    break;

                                case H5E_WALK_DOWNWARD:
                                    fprintf(out, "H5E_WALK_DOWNWARD");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)direction);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 'e':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5E_error2_t *error = va_arg(ap, H5E_error2_t *); /*lint !e64 Type mismatch not really occuring */

                            fprintf(out, "0x%lx", (unsigned long)error);
                        } /* end else */
                        break;

                    case 't':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5E_type_t etype = (H5E_type_t)va_arg(ap, int);

                            switch(etype) {
                                case H5E_MAJOR:
                                    fprintf(out, "H5E_MAJOR");
                                    break;

                                case H5E_MINOR:
                                    fprintf(out, "H5E_MINOR");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)etype);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    default:
                        fprintf(out, "BADTYPE(E%c)", type[1]);
                        goto error;
                } /* end switch */
                break;

            case 'F':
                switch(type[1]) {
                    case 'd':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5F_close_degree_t degree = (H5F_close_degree_t)va_arg(ap, int);

                            switch(degree) {
                                case H5F_CLOSE_DEFAULT:
                                    fprintf(out, "H5F_CLOSE_DEFAULT");
                                    break;

                                case H5F_CLOSE_WEAK:
                                    fprintf(out, "H5F_CLOSE_WEAK");
                                    break;

                                case H5F_CLOSE_SEMI:
                                    fprintf(out, "H5F_CLOSE_SEMI");
                                    break;

                                case H5F_CLOSE_STRONG:
                                    fprintf(out, "H5F_CLOSE_STRONG");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)degree);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 'f':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5F_file_space_type_t fs_type = (H5F_file_space_type_t)va_arg(ap, int);

                            switch(fs_type) {
                                case H5F_FILE_SPACE_DEFAULT:
                                    fprintf(out, "H5F_FILE_SPACE_DEFAULT");
                                    break;

                                case H5F_FILE_SPACE_ALL_PERSIST:
                                    fprintf(out, "H5F_FILE_SPACE_ALL_PERSIST");
                                    break;

                                case H5F_FILE_SPACE_ALL:
                                    fprintf(out, "H5F_FILE_SPACE_ALL");
                                    break;

                                case H5F_FILE_SPACE_AGGR_VFD:
                                    fprintf(out, "H5F_FILE_SPACE_AGGR_VFD");
                                    break;

                                case H5F_FILE_SPACE_VFD:
                                    fprintf(out, "H5F_FILE_SPACE_VFD");
                                    break;

                                case H5F_FILE_SPACE_NTYPES:
                                default:
                                    fprintf(out, "%ld", (long)fs_type);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 'm':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5F_mem_t mem_type = (H5F_mem_t)va_arg(ap, int);

                            switch(mem_type) {
                                case H5FD_MEM_NOLIST:
                                    fprintf(out, "H5FD_MEM_NOLIST");
                                    break;

                                case H5FD_MEM_DEFAULT:
                                    fprintf(out, "H5FD_MEM_DEFAULT");
                                    break;

                                case H5FD_MEM_SUPER:
                                    fprintf(out, "H5FD_MEM_SUPER");
                                    break;

                                case H5FD_MEM_BTREE:
                                    fprintf(out, "H5FD_MEM_BTREE");
                                    break;

                                case H5FD_MEM_DRAW:
                                    fprintf(out, "H5FD_MEM_DRAW");
                                    break;

                                case H5FD_MEM_GHEAP:
                                    fprintf(out, "H5FD_MEM_GHEAP");
                                    break;

                                case H5FD_MEM_LHEAP:
                                    fprintf(out, "H5FD_MEM_LHEAP");
                                    break;

                                case H5FD_MEM_OHDR:
                                    fprintf(out, "H5FD_MEM_OHDR");
                                    break;

                                case H5FD_MEM_NTYPES:
                                default:
                                    fprintf(out, "%ld", (long)mem_type);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 's':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5F_scope_t scope = (H5F_scope_t)va_arg(ap, int);

                            switch(scope) {
                                case H5F_SCOPE_LOCAL:
                                    fprintf(out, "H5F_SCOPE_LOCAL");
                                    break;

                                case H5F_SCOPE_GLOBAL:
                                    fprintf(out, "H5F_SCOPE_GLOBAL");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)scope);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 'v':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5F_libver_t libver_vers = (H5F_libver_t)va_arg(ap, int);

                            switch(libver_vers) {
                                case H5F_LIBVER_EARLIEST:
                                    fprintf(out, "H5F_LIBVER_EARLIEST");
                                    break;

                                case H5F_LIBVER_LATEST:
                                    fprintf(out, "H5F_LIBVER_LATEST");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)libver_vers);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    default:
                        fprintf(out, "BADTYPE(F%c)", type[1]);
                        goto error;
                } /* end switch */
                break;

            case 'G':
                switch(type[1]) {
#ifndef H5_NO_DEPRECATED_SYMBOLS
                    case 'o':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5G_obj_t obj_type = (H5G_obj_t)va_arg(ap, int);

                            switch(obj_type) {
                                case H5G_UNKNOWN:
                                    fprintf(out, "H5G_UNKNOWN");
                                    break;

                                case H5G_GROUP:
                                    fprintf(out, "H5G_GROUP");
                                    break;

                                case H5G_DATASET:
                                    fprintf(out, "H5G_DATASET");
                                    break;

                                case H5G_TYPE:
                                    fprintf(out, "H5G_TYPE");
                                    break;

                                case H5G_LINK:
                                    fprintf(out, "H5G_LINK");
                                    break;

                                case H5G_UDLINK:
                                    fprintf(out, "H5G_UDLINK");
                                    break;

                                case H5G_RESERVED_5:
                                case H5G_RESERVED_6:
                                case H5G_RESERVED_7:
                                    fprintf(out, "H5G_RESERVED(%ld)", (long)obj_type);
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)obj_type);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 's':
                        if(ptr) {
                            if(vp)
                                fprintf (out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5G_stat_t *statbuf = va_arg(ap, H5G_stat_t*); /*lint !e64 Type mismatch not really occuring */

                            fprintf(out, "0x%lx", (unsigned long)statbuf);
                        }
                        break;
#endif /* H5_NO_DEPRECATED_SYMBOLS */

                    default:
                        fprintf(out, "BADTYPE(G%c)", type[1]);
                        goto error;
                }
                break;

            case 'h':
                if(ptr) {
                    if(vp) {
                        fprintf(out, "0x%lx", (unsigned long)vp);
                        if(asize_idx >= 0 && asize[asize_idx] >= 0) {
                            hsize_t *p = (hsize_t *)vp;

                            fprintf(out, " {");
                            for(i = 0; i < asize[asize_idx]; i++) {
                                if(H5S_UNLIMITED == p[i])
                                    HDfprintf(out, "%sH5S_UNLIMITED", (i ? ", " : ""));
                                else
                                    HDfprintf(out, "%s%Hu", (i ? ", " : ""), p[i]);
                            } /* end for */
                            fprintf(out, "}");
                        } /* end if */
                    } /* end if */
                    else
                        fprintf(out, "NULL");
                } /* end if */
                else {
                    hsize_t hsize = va_arg(ap, hsize_t); /*lint !e732 Loss of sign not really occuring */

                    if(H5S_UNLIMITED == hsize)
                        HDfprintf(out, "H5S_UNLIMITED");
                    else {
                        HDfprintf(out, "%Hu", hsize);
                        asize[argno] = (hssize_t)hsize;
                    } /* end else */
                } /* end else */
                break;

            case 'H':
                switch(type[1]) {
                    case 's':
                        if(ptr) {
                            if(vp) {
                                fprintf(out, "0x%lx", (unsigned long)vp);
                                if(asize_idx >= 0 && asize[asize_idx] >= 0) {
                                    hssize_t *p = (hssize_t *)vp;

                                    fprintf(out, " {");
                                    for(i = 0; i < asize[asize_idx]; i++)
                                        HDfprintf(out, "%s%Hd", (i ? ", " : ""), p[i]);
                                    fprintf(out, "}");
                                } /* end if */
                            } /* end if */
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            hssize_t hssize = va_arg(ap, hssize_t);

                            HDfprintf(out, "%Hd", hssize);
                            asize[argno] = (hssize_t)hssize;
                        } /* end else */
                        break;

                    default:
                        fprintf (out, "BADTYPE(H%c)", type[1]);
                        goto error;
                } /* end switch */
                break;

            case 'i':
                if(ptr) {
                    if(vp)
                        fprintf(out, "0x%lx", (unsigned long)vp);
                    else
                        fprintf(out, "NULL");
                } /* end if */
                else {
                    hid_t obj = va_arg(ap, hid_t);

                    if(H5P_DEFAULT == obj)
                        fprintf(out, "H5P_DEFAULT");
                    else if(obj < 0)
                        fprintf(out, "FAIL");
                    else {
                        switch(H5I_TYPE(obj)) { /* Use internal H5I macro instead of function call */
                            case H5I_UNINIT:
                                fprintf(out, "%ld (uninit - error)", (long)obj);
                                break;

                            case H5I_BADID:
                                fprintf(out, "%ld (error)", (long)obj);
                                break;

                            case H5I_FILE:
                                fprintf(out, "%ld (file)", (long)obj);
                                break;

                            case H5I_GROUP:
                                fprintf(out, "%ld (group)", (long)obj);
                                break;

                            case H5I_DATATYPE:
                                if(obj == H5T_NATIVE_SCHAR_g)
                                    fprintf(out, "H5T_NATIVE_SCHAR");
                                else if(obj == H5T_NATIVE_UCHAR_g)
                                    fprintf(out, "H5T_NATIVE_UCHAR");
                                else if(obj == H5T_NATIVE_SHORT_g)
                                    fprintf(out, "H5T_NATIVE_SHORT");
                                else if(obj == H5T_NATIVE_USHORT_g)
                                    fprintf(out, "H5T_NATIVE_USHORT");
                                else if(obj == H5T_NATIVE_INT_g)
                                    fprintf(out, "H5T_NATIVE_INT");
                                else if(obj == H5T_NATIVE_UINT_g)
                                    fprintf(out, "H5T_NATIVE_UINT");
                                else if(obj == H5T_NATIVE_LONG_g)
                                    fprintf(out, "H5T_NATIVE_LONG");
                                else if(obj == H5T_NATIVE_ULONG_g)
                                    fprintf(out, "H5T_NATIVE_ULONG");
                                else if(obj == H5T_NATIVE_LLONG_g)
                                    fprintf(out, "H5T_NATIVE_LLONG");
                                else if(obj == H5T_NATIVE_ULLONG_g)
                                    fprintf(out, "H5T_NATIVE_ULLONG");
                                else if(obj == H5T_NATIVE_FLOAT_g)
                                    fprintf(out, "H5T_NATIVE_FLOAT");
                                else if(obj == H5T_NATIVE_DOUBLE_g)
                                    fprintf(out, "H5T_NATIVE_DOUBLE");
#if H5_SIZEOF_LONG_DOUBLE !=0
                                else if(obj == H5T_NATIVE_LDOUBLE_g)
                                    fprintf(out, "H5T_NATIVE_LDOUBLE");
#endif
                                else if(obj == H5T_IEEE_F32BE_g)
                                    fprintf(out, "H5T_IEEE_F32BE");
                                else if(obj == H5T_IEEE_F32LE_g)
                                    fprintf(out, "H5T_IEEE_F32LE");
                                else if(obj == H5T_IEEE_F64BE_g)
                                    fprintf(out, "H5T_IEEE_F64BE");
                                else if(obj == H5T_IEEE_F64LE_g)
                                    fprintf(out, "H5T_IEEE_F64LE");
                                else if(obj == H5T_STD_I8BE_g)
                                    fprintf(out, "H5T_STD_I8BE");
                                else if(obj == H5T_STD_I8LE_g)
                                    fprintf(out, "H5T_STD_I8LE");
                                else if(obj == H5T_STD_I16BE_g)
                                    fprintf(out, "H5T_STD_I16BE");
                                else if(obj == H5T_STD_I16LE_g)
                                    fprintf(out, "H5T_STD_I16LE");
                                else if(obj == H5T_STD_I32BE_g)
                                    fprintf(out, "H5T_STD_I32BE");
                                else if(obj == H5T_STD_I32LE_g)
                                    fprintf(out, "H5T_STD_I32LE");
                                else if(obj == H5T_STD_I64BE_g)
                                    fprintf(out, "H5T_STD_I64BE");
                                else if(obj == H5T_STD_I64LE_g)
                                    fprintf(out, "H5T_STD_I64LE");
                                else if(obj == H5T_STD_U8BE_g)
                                    fprintf(out, "H5T_STD_U8BE");
                                else if(obj == H5T_STD_U8LE_g)
                                    fprintf(out, "H5T_STD_U8LE");
                                else if(obj == H5T_STD_U16BE_g)
                                    fprintf(out, "H5T_STD_U16BE");
                                else if(obj == H5T_STD_U16LE_g)
                                    fprintf(out, "H5T_STD_U16LE");
                                else if(obj == H5T_STD_U32BE_g)
                                    fprintf(out, "H5T_STD_U32BE");
                                else if(obj == H5T_STD_U32LE_g)
                                    fprintf(out, "H5T_STD_U32LE");
                                else if(obj == H5T_STD_U64BE_g)
                                    fprintf(out, "H5T_STD_U64BE");
                                else if(obj == H5T_STD_U64LE_g)
                                    fprintf(out, "H5T_STD_U64LE");
                                else if(obj == H5T_STD_B8BE_g)
                                    fprintf(out, "H5T_STD_B8BE");
                                else if(obj == H5T_STD_B8LE_g)
                                    fprintf(out, "H5T_STD_B8LE");
                                else if(obj == H5T_STD_B16BE_g)
                                    fprintf(out, "H5T_STD_B16BE");
                                else if(obj == H5T_STD_B16LE_g)
                                    fprintf(out, "H5T_STD_B16LE");
                                else if(obj == H5T_STD_B32BE_g)
                                    fprintf(out, "H5T_STD_B32BE");
                                else if(obj == H5T_STD_B32LE_g)
                                    fprintf(out, "H5T_STD_B32LE");
                                else if(obj == H5T_STD_B64BE_g)
                                    fprintf(out, "H5T_STD_B64BE");
                                else if(obj == H5T_STD_B64LE_g)
                                    fprintf(out, "H5T_STD_B64LE");
                                else if(obj == H5T_C_S1_g)
                                    fprintf(out, "H5T_C_S1");
                                else if(obj == H5T_FORTRAN_S1_g)
                                    fprintf(out, "H5T_FORTRAN_S1");
                                else
                                    fprintf(out, "%ld (dtype)", (long)obj);
                                break;

                            case H5I_DATASPACE:
                                fprintf(out, "%ld (dspace)", (long)obj);
                                /* Save the rank of simple data spaces for arrays */
                                /* This may generate recursive call to the library... -QAK */
                                {
                                    H5S_t *space;

                                    if(NULL != (space = (H5S_t *)H5I_object(obj)))
                                        if(H5S_SIMPLE == H5S_GET_EXTENT_TYPE(space))
                                            asize[argno] = H5S_GET_EXTENT_NDIMS(space);
                                }
                                break;

                            case H5I_DATASET:
                                fprintf(out, "%ld (dset)", (long)obj);
                                break;

                            case H5I_ATTR:
                                fprintf(out, "%ld (attr)", (long)obj);
                                break;

                            case H5I_REFERENCE:
                                fprintf(out, "%ld (reference)", (long)obj);
                                break;

                            case H5I_VFL:
                                fprintf(out, "%ld (file driver)", (long)obj);
                                break;

                            case H5I_GENPROP_CLS:
                                fprintf(out, "%ld (genprop class)", (long)obj);
                                break;

                            case H5I_GENPROP_LST:
                                fprintf(out, "%ld (genprop list)", (long)obj);
                                break;

                            case H5I_ERROR_CLASS:
                                fprintf(out, "%ld (err class)", (long)obj);
                                break;

                            case H5I_ERROR_MSG:
                                fprintf(out, "%ld (err msg)", (long)obj);
                                break;

                            case H5I_ERROR_STACK:
                                fprintf(out, "%ld (err stack)", (long)obj);
                                break;

                            case H5I_NTYPES:
                                fprintf (out, "%ld (ntypes - error)", (long)obj);
                                break;

                            default:
                                fprintf(out, "%ld (unknown class)", (long)obj);
                                break;
                        } /* end switch */
                    } /* end else */
                } /* end else */
                break;

            case 'I':
                switch (type[1]) {
                    case 'i':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5_index_t idx_type = (H5_index_t)va_arg(ap, int);

                            switch(idx_type) {
                                case H5_INDEX_UNKNOWN:
                                    fprintf(out, "H5_INDEX_UNKNOWN");
                                    break;

                                case H5_INDEX_NAME:
                                    fprintf(out, "H5_INDEX_NAME");
                                    break;

                                case H5_INDEX_CRT_ORDER:
                                    fprintf(out, "H5_INDEX_CRT_ORDER");
                                    break;

                                case H5_INDEX_N:
                                    fprintf(out, "H5_INDEX_N");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)idx_type);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 'o':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5_iter_order_t order = (H5_iter_order_t)va_arg(ap, int);

                            switch(order) {
                                case H5_ITER_UNKNOWN:
                                    fprintf(out, "H5_ITER_UNKNOWN");
                                    break;

                                case H5_ITER_INC:
                                    fprintf(out, "H5_ITER_INC");
                                    break;

                                case H5_ITER_DEC:
                                    fprintf(out, "H5_ITER_DEC");
                                    break;

                                case H5_ITER_NATIVE:
                                    fprintf(out, "H5_ITER_NATIVE");
                                    break;

                                case H5_ITER_N:
                                    fprintf(out, "H5_ITER_N");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)order);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 's':
                        if(ptr) {
                            if(vp) {
                                fprintf(out, "0x%lx", (unsigned long)vp);
                                if(asize_idx >= 0 && asize[asize_idx] >= 0) {
                                    int *p = (int*)vp;

                                    fprintf(out, " {");
                                    for(i = 0; i < asize[asize_idx]; i++)
                                        fprintf(out, "%s%d", (i ? ", " : ""), p[i]);
                                    fprintf(out, "}");
                                } /* end if */
                            } /* end if */
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            int is = va_arg(ap, int);

                            fprintf (out, "%d", is);
                            asize[argno] = is;
                        } /* end else */
                        break;

                    case 't':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5I_type_t id_type = (H5I_type_t)va_arg(ap, int);

                            switch (id_type) {
                                case H5I_UNINIT:
                                    fprintf(out, "H5I_UNINIT");
                                    break;

                                case H5I_BADID:
                                    fprintf(out, "H5I_BADID");
                                    break;

                                case H5I_FILE:
                                    fprintf(out, "H5I_FILE");
                                    break;

                                case H5I_GROUP:
                                    fprintf(out, "H5I_GROUP");
                                    break;

                                case H5I_DATATYPE:
                                    fprintf(out, "H5I_DATATYPE");
                                    break;

                                case H5I_DATASPACE:
                                    fprintf(out, "H5I_DATASPACE");
                                    break;

                                case H5I_DATASET:
                                    fprintf(out, "H5I_DATASET");
                                    break;

                                case H5I_ATTR:
                                    fprintf(out, "H5I_ATTR");
                                    break;

                                case H5I_REFERENCE:
                                    fprintf(out, "H5I_REFERENCE");
                                    break;

                                case H5I_VFL:
                                    fprintf(out, "H5I_VFL");
                                    break;

                                case H5I_GENPROP_CLS:
                                    fprintf(out, "H5I_GENPROP_CLS");
                                    break;

                                case H5I_GENPROP_LST:
                                    fprintf(out, "H5I_GENPROP_LST");
                                    break;

                                case H5I_ERROR_CLASS:
                                    fprintf(out, "H5I_ERROR_CLASS");
                                    break;

                                case H5I_ERROR_MSG:
                                    fprintf(out, "H5I_ERROR_MSG");
                                    break;

                                case H5I_ERROR_STACK:
                                    fprintf(out, "H5I_ERROR_STACK");
                                    break;

                                case H5I_NTYPES:
                                    fprintf(out, "H5I_NTYPES");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)id_type);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 'u':
                        if(ptr) {
                            if(vp) {
                                fprintf(out, "0x%lx", (unsigned long)vp);
                                if(asize_idx >= 0 && asize[asize_idx] >= 0) {
                                    unsigned *p = (unsigned*)vp;

                                    fprintf(out, " {");
                                    for(i = 0; i < asize[asize_idx]; i++)
                                        HDfprintf(out, "%s%u", i?", ":"", p[i]);
                                    fprintf(out, "}");
                                } /* end if */
                            } /* end if */
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            unsigned iu = va_arg(ap, unsigned); /*lint !e732 Loss of sign not really occuring */

                            fprintf(out, "%u", iu);
                            asize[argno] = iu;
                        } /* end else */
                        break;

                    default:
                        fprintf (out, "BADTYPE(I%c)", type[1]);
                        goto error;
                } /* end switch */
                break;

            case 'L':
                switch(type[1]) {
                    case 'l':
                        if(ptr) {
                            if(vp)
                                fprintf (out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5L_type_t link_type = (H5L_type_t)va_arg(ap, int);

                            switch(link_type) {
                                case H5L_TYPE_ERROR:
                                    fprintf(out, "H5L_TYPE_ERROR");
                                    break;

                                case H5L_TYPE_HARD:
                                    fprintf(out, "H5L_TYPE_HARD");
                                    break;

                                case H5L_TYPE_SOFT:
                                    fprintf(out, "H5L_TYPE_SOFT");
                                    break;

                                case H5L_TYPE_EXTERNAL:
                                    fprintf(out, "H5L_TYPE_EXTERNAL");
                                    break;

                                case H5L_TYPE_MAX:
                                    fprintf(out, "H5L_TYPE_MAX");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)link_type);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    default:
                        fprintf(out, "BADTYPE(G%c)", type[1]);
                        goto error;
                } /* end switch */
                break;

            case 'M':
                switch(type[1]) {
                    case 'c':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
#ifdef H5_HAVE_PARALLEL
                        else {
                            MPI_Comm comm = va_arg(ap, MPI_Comm);

                            fprintf(out, "%ld", (long)comm);
                        } /* end else */
#endif /* H5_HAVE_PARALLEL */
                        break;

                    case 'i':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
#ifdef H5_HAVE_PARALLEL
                        else {
                            MPI_Info info = va_arg(ap, MPI_Info);

                            fprintf(out, "%ld", (long)info);
                        } /* end else */
#endif /* H5_HAVE_PARALLEL */
                        break;

                    case 't':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5FD_mem_t mt = (H5FD_mem_t)va_arg(ap, int);

                            switch(mt) {
                                case H5FD_MEM_NOLIST:
                                    fprintf(out, "H5FD_MEM_NOLIST");
                                    break;

                                case H5FD_MEM_DEFAULT:
                                    fprintf(out, "H5FD_MEM_DEFAULT");
                                    break;

                                case H5FD_MEM_SUPER:
                                    fprintf(out, "H5FD_MEM_SUPER");
                                    break;

                                case H5FD_MEM_BTREE:
                                    fprintf(out, "H5FD_MEM_BTREE");
                                    break;

                                case H5FD_MEM_DRAW:
                                    fprintf(out, "H5FD_MEM_DRAW");
                                    break;

                                case H5FD_MEM_GHEAP:
                                    fprintf(out, "H5FD_MEM_GHEAP");
                                    break;

                                case H5FD_MEM_LHEAP:
                                    fprintf(out, "H5FD_MEM_LHEAP");
                                    break;

                                case H5FD_MEM_OHDR:
                                    fprintf(out, "H5FD_MEM_OHDR");
                                    break;

                                case H5FD_MEM_NTYPES:
                                    fprintf(out, "H5FD_MEM_NTYPES");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)mt);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    default:
                        goto error;
                } /* end switch */
                break;

            case 'o':
                if(ptr) {
                    if(vp)
                        fprintf(out, "0x%lx", (unsigned long)vp);
                    else
                        fprintf(out, "NULL");
                } /* end if */
                else {
                    off_t offset = va_arg(ap, off_t);

                    fprintf (out, "%ld", (long)offset);
                } /* end else */
                break;

            case 'O':
                switch(type[1]) {
                    case 't':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5O_type_t objtype = (H5O_type_t)va_arg(ap, int);

                            switch(objtype) {
                                case H5O_TYPE_UNKNOWN:
                                    fprintf(out, "H5O_TYPE_UNKNOWN");
                                    break;

                                case H5O_TYPE_GROUP:
                                    fprintf(out, "H5O_TYPE_GROUP");
                                    break;

                                case H5O_TYPE_DATASET:
                                    fprintf(out, "H5O_TYPE_DATASET");
                                    break;

                                case H5O_TYPE_NAMED_DATATYPE:
                                    fprintf(out, "H5O_TYPE_NAMED_DATATYPE");
                                    break;

                                case H5O_TYPE_NTYPES:
                                    fprintf(out, "H5O_TYPE_TYPES");
                                    break;

                                default:
                                    fprintf(out, "BADTYPE(%ld)", (long)objtype);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    default:
                        fprintf(out, "BADTYPE(S%c)", type[1]);
                        goto error;
                } /* end switch */
                break;

            case 'p':
                if(ptr) {
                    if(vp)
                        fprintf(out, "0x%lx", (unsigned long)vp);
                    else
                        fprintf(out, "NULL");
                } /* end if */
                else {
                    hid_t pclass_id = va_arg(ap, hid_t);
                    char *class_name = NULL;
                    H5P_genclass_t *pclass;

                    /* Get the class name and print it */
                    /* (This may generate recursive call to the library... -QAK) */
                    if(NULL != (pclass = (H5P_genclass_t *)H5I_object(pclass_id)) &&
                            NULL != (class_name = H5P_get_class_name(pclass))) {
                        fprintf(out, "%s", class_name);
                        H5MM_xfree(class_name);
                    } /* end if */
                    else
                        fprintf(out, "%ld", (long)pclass_id);
                } /* end else */
                break;

            case 'r':
                if(ptr) {
                    if(vp)
                        fprintf(out, "0x%lx", (unsigned long)vp);
                    else
                        fprintf(out, "NULL");
                } /* end if */
                else {
                    hobj_ref_t ref = va_arg(ap, hobj_ref_t); /*lint !e732 Loss of sign not really occuring */

                    HDfprintf(out, "Reference Object=%a", ref);
                } /* end else */
                break;

            case 'R':
                switch(type[1]) {
                    case 't':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5R_type_t reftype = (H5R_type_t)va_arg(ap, int);

                            switch(reftype) {
                                case H5R_BADTYPE:
                                    fprintf(out, "H5R_BADTYPE");
                                    break;

                                case H5R_OBJECT:
                                    fprintf(out, "H5R_OBJECT");
                                    break;

                                case H5R_DATASET_REGION:
                                    fprintf(out, "H5R_DATASET_REGION");
                                    break;

                                case H5R_MAXTYPE:
                                    fprintf(out, "H5R_MAXTYPE");
                                    break;

                                default:
                                    fprintf(out, "BADTYPE(%ld)", (long)reftype);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    default:
                        fprintf(out, "BADTYPE(S%c)", type[1]);
                        goto error;
                }
                break;

            case 'S':
                switch(type[1]) {
                    case 'c':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5S_class_t cls = (H5S_class_t)va_arg(ap, int);

                            switch(cls) {
                                case H5S_NO_CLASS:
                                    fprintf(out, "H5S_NO_CLASS");
                                    break;

                                case H5S_SCALAR:
                                    fprintf(out, "H5S_SCALAR");
                                    break;

                                case H5S_SIMPLE:
                                    fprintf(out, "H5S_SIMPLE");
                                    break;

                                case H5S_NULL:
                                    fprintf(out, "H5S_NULL");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)cls);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 's':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5S_seloper_t so = (H5S_seloper_t)va_arg(ap, int);

                            switch(so) {
                                case H5S_SELECT_NOOP:
                                    fprintf(out, "H5S_NOOP");
                                    break;

                                case H5S_SELECT_SET:
                                    fprintf(out, "H5S_SELECT_SET");
                                    break;

                                case H5S_SELECT_OR:
                                    fprintf(out, "H5S_SELECT_OR");
                                    break;

                                case H5S_SELECT_AND:
                                    fprintf(out, "H5S_SELECT_AND");
                                    break;

                                case H5S_SELECT_XOR:
                                    fprintf(out, "H5S_SELECT_XOR");
                                    break;

                                case H5S_SELECT_NOTB:
                                    fprintf(out, "H5S_SELECT_NOTB");
                                    break;

                                case H5S_SELECT_NOTA:
                                    fprintf(out, "H5S_SELECT_NOTA");
                                    break;

                                case H5S_SELECT_APPEND:
                                    fprintf(out, "H5S_SELECT_APPEND");
                                    break;

                                case H5S_SELECT_PREPEND:
                                    fprintf(out, "H5S_SELECT_PREPEND");
                                    break;

                                case H5S_SELECT_INVALID:
                                    fprintf(out, "H5S_SELECT_INVALID");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)so);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 't':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5S_sel_type st = (H5S_sel_type)va_arg(ap, int);

                            switch(st) {
                                case H5S_SEL_ERROR:
                                    fprintf(out, "H5S_SEL_ERROR");
                                    break;

                                case H5S_SEL_NONE:
                                    fprintf(out, "H5S_SEL_NONE");
                                    break;

                                case H5S_SEL_POINTS:
                                    fprintf(out, "H5S_SEL_POINTS");
                                    break;

                                case H5S_SEL_HYPERSLABS:
                                    fprintf(out, "H5S_SEL_HYPERSLABS");
                                    break;

                                case H5S_SEL_ALL:
                                    fprintf(out, "H5S_SEL_ALL");
                                    break;

                                case H5S_SEL_N:
                                    fprintf(out, "H5S_SEL_N");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)st);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    default:
                        fprintf(out, "BADTYPE(S%c)", type[1]);
                        goto error;
                } /* end switch */
                break;

            case 's':
                if(ptr) {
                    if(vp)
                        fprintf(out, "0x%lx", (unsigned long)vp);
                    else
                        fprintf(out, "NULL");
                } /* end if */
                else {
                    const char *str = va_arg(ap, const char *); /*lint !e64 Type mismatch not really occuring */

                    fprintf(out, "\"%s\"", str);
                } /* end else */
                break;

            case 'T':
                switch(type[1]) {
                    case 'c':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5T_cset_t cset = (H5T_cset_t)va_arg(ap, int);

                            switch(cset) {
                                case H5T_CSET_ERROR:
                                    fprintf(out, "H5T_CSET_ERROR");
                                    break;

                                case H5T_CSET_ASCII:
                                    fprintf(out, "H5T_CSET_ASCII");
                                    break;

                                case H5T_CSET_UTF8:
                                    fprintf(out, "H5T_CSET_UTF8");
                                    break;

                                case H5T_CSET_RESERVED_2:
                                case H5T_CSET_RESERVED_3:
                                case H5T_CSET_RESERVED_4:
                                case H5T_CSET_RESERVED_5:
                                case H5T_CSET_RESERVED_6:
                                case H5T_CSET_RESERVED_7:
                                case H5T_CSET_RESERVED_8:
                                case H5T_CSET_RESERVED_9:
                                case H5T_CSET_RESERVED_10:
                                case H5T_CSET_RESERVED_11:
                                case H5T_CSET_RESERVED_12:
                                case H5T_CSET_RESERVED_13:
                                case H5T_CSET_RESERVED_14:
                                case H5T_CSET_RESERVED_15:
                                    fprintf(out, "H5T_CSET_RESERVED_%ld", (long)cset);
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)cset);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 'd':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5T_direction_t direct = (H5T_direction_t)va_arg(ap, int);

                            switch(direct) {
                                case H5T_DIR_DEFAULT:
                                    fprintf(out, "H5T_DIR_DEFAULT");
                                    break;

                                case H5T_DIR_ASCEND:
                                    fprintf(out, "H5T_DIR_ASCEND");
                                    break;

                                case H5T_DIR_DESCEND:
                                    fprintf(out, "H5T_DIR_DESCEND");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)direct);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 'e':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5T_pers_t pers = (H5T_pers_t)va_arg(ap, int);

                            switch(pers) {
                                case H5T_PERS_DONTCARE:
                                    fprintf(out, "H5T_PERS_DONTCARE");
                                    break;

                                case H5T_PERS_SOFT:
                                    fprintf(out, "H5T_PERS_SOFT");
                                    break;

                                case H5T_PERS_HARD:
                                    fprintf(out, "H5T_PERS_HARD");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)pers);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 'n':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5T_norm_t norm = (H5T_norm_t)va_arg(ap, int);

                            switch(norm) {
                                case H5T_NORM_ERROR:
                                    fprintf(out, "H5T_NORM_ERROR");
                                    break;

                                case H5T_NORM_IMPLIED:
                                    fprintf(out, "H5T_NORM_IMPLIED");
                                    break;

                                case H5T_NORM_MSBSET:
                                    fprintf(out, "H5T_NORM_MSBSET");
                                    break;

                                case H5T_NORM_NONE:
                                    fprintf(out, "H5T_NORM_NONE");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)norm);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 'o':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5T_order_t order = (H5T_order_t)va_arg(ap, int);

                            switch(order) {
                                case H5T_ORDER_ERROR:
                                    fprintf(out, "H5T_ORDER_ERROR");
                                    break;

                                case H5T_ORDER_LE:
                                    fprintf(out, "H5T_ORDER_LE");
                                    break;

                                case H5T_ORDER_BE:
                                    fprintf(out, "H5T_ORDER_BE");
                                    break;

                                case H5T_ORDER_VAX:
                                    fprintf(out, "H5T_ORDER_VAX");
                                    break;

                                case H5T_ORDER_NONE:
                                    fprintf(out, "H5T_ORDER_NONE");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)order);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 'p':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5T_pad_t pad = (H5T_pad_t)va_arg(ap, int);

                            switch(pad) {
                                case H5T_PAD_ERROR:
                                    fprintf(out, "H5T_PAD_ERROR");
                                    break;

                                case H5T_PAD_ZERO:
                                    fprintf(out, "H5T_PAD_ZERO");
                                    break;

                                case H5T_PAD_ONE:
                                    fprintf(out, "H5T_PAD_ONE");
                                    break;

                                case H5T_PAD_BACKGROUND:
                                    fprintf(out, "H5T_PAD_BACKGROUND");
                                    break;

                                case H5T_NPAD:
                                    fprintf(out, "H5T_NPAD");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)pad);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 's':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5T_sign_t sign = (H5T_sign_t)va_arg(ap, int);

                            switch(sign) {
                                case H5T_SGN_ERROR:
                                    fprintf(out, "H5T_SGN_ERROR");
                                    break;

                                case H5T_SGN_NONE:
                                    fprintf(out, "H5T_SGN_NONE");
                                    break;

                                case H5T_SGN_2:
                                    fprintf(out, "H5T_SGN_2");
                                    break;

                                case H5T_NSGN:
                                    fprintf(out, "H5T_NSGN");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)sign);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 't':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5T_class_t type_class = (H5T_class_t)va_arg(ap, int);

                            switch(type_class) {
                                case H5T_NO_CLASS:
                                    fprintf(out, "H5T_NO_CLASS");
                                    break;

                                case H5T_INTEGER:
                                    fprintf(out, "H5T_INTEGER");
                                    break;

                                case H5T_FLOAT:
                                    fprintf(out, "H5T_FLOAT");
                                    break;

                                case H5T_TIME:
                                    fprintf(out, "H5T_TIME");
                                    break;

                                case H5T_STRING:
                                    fprintf(out, "H5T_STRING");
                                    break;

                                case H5T_BITFIELD:
                                    fprintf(out, "H5T_BITFIELD");
                                    break;

                                case H5T_OPAQUE:
                                    fprintf(out, "H5T_OPAQUE");
                                    break;

                                case H5T_COMPOUND:
                                    fprintf(out, "H5T_COMPOUND");
                                    break;

                                case H5T_REFERENCE:
                                    fprintf(out, "H5T_REFERENCE");
                                    break;

                                case H5T_ENUM:
                                    fprintf(out, "H5T_ENUM");
                                    break;

                                case H5T_VLEN:
                                    fprintf(out, "H5T_VLEN");
                                    break;

                                case H5T_ARRAY:
                                    fprintf(out, "H5T_ARRAY");
                                    break;

                                case H5T_NCLASSES:
                                    fprintf(out, "H5T_NCLASSES");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)type_class);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 'z':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5T_str_t str = (H5T_str_t)va_arg(ap, int);

                            switch(str) {
                                case H5T_STR_ERROR:
                                    fprintf(out, "H5T_STR_ERROR");
                                    break;

                                case H5T_STR_NULLTERM:
                                    fprintf(out, "H5T_STR_NULLTERM");
                                    break;

                                case H5T_STR_NULLPAD:
                                    fprintf(out, "H5T_STR_NULLPAD");
                                    break;

                                case H5T_STR_SPACEPAD:
                                    fprintf(out, "H5T_STR_SPACEPAD");
                                    break;

                                case H5T_STR_RESERVED_3:
                                case H5T_STR_RESERVED_4:
                                case H5T_STR_RESERVED_5:
                                case H5T_STR_RESERVED_6:
                                case H5T_STR_RESERVED_7:
                                case H5T_STR_RESERVED_8:
                                case H5T_STR_RESERVED_9:
                                case H5T_STR_RESERVED_10:
                                case H5T_STR_RESERVED_11:
                                case H5T_STR_RESERVED_12:
                                case H5T_STR_RESERVED_13:
                                case H5T_STR_RESERVED_14:
                                case H5T_STR_RESERVED_15:
                                    fprintf(out, "H5T_STR_RESERVED(%ld)",(long)str);
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)str);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    default:
                        fprintf (out, "BADTYPE(T%c)", type[1]);
                        goto error;
                } /* end switch */
                break;

            case 't':
                if(ptr) {
                    if(vp)
                        fprintf(out, "0x%lx", (unsigned long)vp);
                    else
                        fprintf(out, "NULL");
                } /* end if */
                else {
                    htri_t tri_var = va_arg (ap, htri_t);

                    if(tri_var>0)
                        fprintf (out, "TRUE");
                    else if(!tri_var)
                        fprintf (out, "FALSE");
                    else
                        fprintf(out, "FAIL(%d)", (int)tri_var);
                } /* end else */
                break;

            case 'x':
                if(ptr) {
                    if(vp) {
                        fprintf(out, "0x%lx", (unsigned long)vp);
                        if(asize_idx >= 0 && asize[asize_idx] >= 0) {
                            void **p = (void**)vp;

                            fprintf(out, " {");
                            for(i = 0; i < asize[asize_idx]; i++) {
                                if(p[i])
                                    fprintf(out, "%s0x%lx", (i ? ", " : ""), (unsigned long)(p[i]));
                                else
                                    fprintf(out, "%sNULL", (i ? ", " : ""));
                            } /* end for */
                            fprintf(out, "}");
                        } /* end if */
                    } /* end if */
                    else
                        fprintf(out, "NULL");
                } /* end if */
                else {
                    vp = va_arg (ap, void *); /*lint !e64 Type mismatch not really occuring */

                    if(vp)
                        fprintf(out, "0x%lx", (unsigned long)vp);
                    else
                        fprintf(out, "NULL");
                } /* end else */
                break;

            case 'z':
                if(ptr) {
                    if(vp) {
                        fprintf(out, "0x%lx", (unsigned long)vp);
                        if(asize_idx >= 0 && asize[asize_idx] >= 0) {
                            size_t *p = (size_t *)vp;

                            fprintf(out, " {");
                            for(i = 0; i < asize[asize_idx]; i++)
                                HDfprintf(out, "%s%Zu", (i ? ", " : ""), p[i]);
                            fprintf(out, "}");
                        } /* end if */
                    } /* end if */
                    else
                        fprintf(out, "NULL");
                } /* end if */
                else {
                    size_t size = va_arg(ap, size_t); /*lint !e732 Loss of sign not really occuring */

                    HDfprintf(out, "%Zu", size);
                    asize[argno] = (hssize_t)size;
                } /* end else */
                break;

            case 'Z':
                switch (type[1]) {
                    case 'a':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5Z_SO_scale_type_t scale_type = (H5Z_SO_scale_type_t)va_arg(ap, int);

                            switch(scale_type) {
                                case H5Z_SO_FLOAT_DSCALE:
                                    fprintf(out, "H5Z_SO_FLOAT_DSCALE");
                                    break;

                                case H5Z_SO_FLOAT_ESCALE:
                                    fprintf(out, "H5Z_SO_FLOAT_ESCALE");
                                    break;

                                case H5Z_SO_INT:
                                    fprintf(out, "H5Z_SO_INT");
                                    break;

                                default:
                                    fprintf(out, "%ld", (long)scale_type);
                                    break;
                            } /* end switch */
                        } /* end else */
                        break;

                    case 'c':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5Z_class2_t *filter = va_arg(ap, H5Z_class2_t*); /*lint !e64 Type mismatch not really occuring */

                            fprintf(out, "0x%lx", (unsigned long)filter);
                        } /* end else */
                        break;

                    case 'e':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5Z_EDC_t edc = (H5Z_EDC_t)va_arg(ap, int);

                            if(H5Z_DISABLE_EDC == edc)
                                fprintf(out, "H5Z_DISABLE_EDC");
                            else if (H5Z_ENABLE_EDC == edc)
                                fprintf(out, "H5Z_ENABLE_EDC");
                            else
                                fprintf(out, "%ld", (long)edc);
                        } /* end else */
                        break;

                    case 'f':
                        if(ptr) {
                            if(vp)
                                fprintf(out, "0x%lx", (unsigned long)vp);
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            H5Z_filter_t id = va_arg(ap, H5Z_filter_t);

                            if(H5Z_FILTER_DEFLATE == id)
                                fprintf(out, "H5Z_FILTER_DEFLATE");
                            else
                                fprintf(out, "%ld", (long)id);
                        } /* end else */
                        break;

                    case 's':
                        if(ptr) {
                            if(vp) {
                                fprintf(out, "0x%lx", (unsigned long)vp);
                                if(asize_idx >= 0 && asize[asize_idx] >= 0) {
                                    ssize_t *p = (ssize_t *)vp;

                                    fprintf(out, " {");
                                    for(i = 0; i < asize[asize_idx]; i++)
                                        HDfprintf(out, "%s%Zd", (i ? ", " : ""), p[i]);
                                    fprintf(out, "}");
                                } /* end if */
                            } /* end if */
                            else
                                fprintf(out, "NULL");
                        } /* end if */
                        else {
                            ssize_t ssize = va_arg(ap, ssize_t);

                            HDfprintf(out, "%Zd", ssize);
                            asize[argno] = (hssize_t)ssize;
                        } /* end else */
                        break;

                    default:
                        fprintf(out, "BADTYPE(Z%c)", type[1]);
                        goto error;
                } /* end switch */
                break;

            default:
                if(HDisupper(type[0]))
                    fprintf(out, "BADTYPE(%c%c)", type[0], type[1]);
                else
                    fprintf(out, "BADTYPE(%c)", type[0]);
                goto error;
	} /* end switch */
    } /* end for */

    /* Display event time for return */
    if(returning && H5_debug_g.ttimes)
        fprintf(out, " @%.6f [dt=%.6f]", (event_time.etime - first_time.etime),
                (event_time.etime - *returning));

error:
    va_end(ap);
    if(returning)
	fprintf(out, ";\n");
    else {
	last_call_depth = current_depth++;
	fprintf (out, ")");
    } /* end else */
    HDfflush(out);

    return event_time.etime;
} /* end H5_trace() */