1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
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
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* 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. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
* Programmer: Robb Matzke <matzke@llnl.gov>
* Monday, November 10, 1997
*
* Purpose: Implements a family of files that acts as a single hdf5
* file. The purpose is to be able to split a huge file on a
* 64-bit platform, transfer all the <2GB members to a 32-bit
* platform, and then access the entire huge file on the 32-bit
* platform.
*
* All family members are logically the same size although their
* physical sizes may vary. The logical member size is
* determined by looking at the physical size of the first member
* when the file is opened. When creating a file family, the
* first member is created with a predefined physical size
* (actually, this happens when the file family is flushed, and
* can be quite time consuming on file systems that don't
* implement holes, like nfs).
*
*/
/* Interface initialization */
#define H5_INTERFACE_INIT_FUNC H5FD_family_init_interface
#include "H5private.h" /* Generic Functions */
#include "H5Eprivate.h" /* Error handling */
#include "H5Fprivate.h" /* File access */
#include "H5FDprivate.h" /* File drivers */
#include "H5FDfamily.h" /* Family file driver */
#include "H5FLprivate.h" /* Free Lists */
#include "H5Iprivate.h" /* IDs */
#include "H5MMprivate.h" /* Memory management */
#include "H5Pprivate.h" /* Property lists */
#undef MAX
#define MAX(X,Y) ((X)>(Y)?(X):(Y))
#undef MIN
#define MIN(X,Y) ((X)<(Y)?(X):(Y))
/* Type definitions of the data structure used to store the aio control
* block(s) returned by any underlying file driver(s) that support AIO,
* along with the information needed to route the control block to the
* appropriate driver when a family aio control block is passed down to
* the family driver.
*
* The magic field of H5FD_family_aio_ctlblk_t must always be set to
* H5FD_FAMILY_AIO_CTLBLK_T__MAGIC. That of H5FD_family_aio_subctlblk_t
* must be set to H5FD_FAMILY_AIO_SUBCTLBLK_T__MAGIC.
*
* While AIO reads and writes will usually only involve a single
* underlying file, they can, in pricipal, involve all files in the
* family file. Further, in general, aio fsync operations will involve
* all open files in the family file. Thus the aio control block returned
* by the family file driver must be able to accomodate an arbitrarily
* large list of driver/aio control block pairs. Do this by allocating
* an array of struct H5FD_family_aio_subctlblk_t and storing the base
* address of the array in the instance of H5FD_family_aio_ctlblk_t whose
* address is passed back to the caller. Initially set the size of the
* array to H5FD_FAMILY_AIO_SUBCTLBLK_INIT_ARRAY_SIZE, and double its
* size each time we run out of space. Store the number of array entries
* currently in use in num_subctlblks, and the current size of the
* array in array_len.
*
* In each element of the array of H5FD_family_aio_subctlblk_t, we
* maintain a a pointer to the associated instance of H5FD_t, a
* pointer to the AIO control block, and booleans to store the done
* and finished status of each sub operation.
*
* The driver, ctlblk, done, and finished fields of each entry
* in the array are set to NULL, NULL, FALSE, and FALSE respectively,
* and retain those values when not in use.
*/
#ifdef H5_HAVE_AIO
#define H5FD_FAMILY_AIO_CTLBLK_T__MAGIC 0x46414342 /* 'FACB' */
#define H5FD_FAMILY_AIO_SUBCTLBLK_T__MAGIC 0x46534342 /* 'FSCB' */
#define H5FD_FAMILY_AIO_SUBCTLBLK_INIT_ARRAY_SIZE 1
typedef struct H5FD_family_aio_subctlblk_t {
uint32_t magic;
H5FD_t * driver;
void * ctlblk;
hbool_t done;
hbool_t finished;
} H5FD_family_aio_subctlblk_t;
typedef struct H5FD_family_aio_ctlblk_t {
uint32_t magic;
unsigned array_len;
unsigned num_subctlblks;
H5FD_family_aio_subctlblk_t * subctlblks;
} H5FD_family_aio_ctlblk_t;
/* declare a free list to manage top level aio control blocks */
H5FL_DEFINE_STATIC(H5FD_family_aio_ctlblk_t);
/* declare a free list to manage singleton aio sub control blocks.
* This is the common case -- when we ever need more than one we will
* just do a malloc.
*/
H5FL_DEFINE_STATIC(H5FD_family_aio_subctlblk_t);
#endif /* H5_HAVE_AIO */
/* The driver identification number, initialized at runtime */
static hid_t H5FD_FAMILY_g = 0;
/* The description of a file belonging to this driver. */
typedef struct H5FD_family_t {
H5FD_t pub; /*public stuff, must be first */
hid_t memb_fapl_id; /*file access property list for members */
hsize_t memb_size; /*actual size of each member file */
hsize_t pmem_size; /*member size passed in from property */
unsigned nmembs; /*number of family members */
unsigned amembs; /*number of member slots allocated */
H5FD_t **memb; /*dynamic array of member pointers */
haddr_t eoa; /*end of allocated addresses */
char *name; /*name generator printf format */
unsigned flags; /*flags for opening additional members */
/* Information from properties set by 'h5repart' tool */
hsize_t mem_newsize; /*new member size passed in as private
* property. It's used only by h5repart */
hbool_t repart_members; /* Whether to mark the superblock dirty
* when it is loaded, so that the family
* member sizes can be re-encoded */
} H5FD_family_t;
/* Driver-specific file access properties */
typedef struct H5FD_family_fapl_t {
hsize_t memb_size; /*size of each member */
hid_t memb_fapl_id; /*file access property list of each memb*/
} H5FD_family_fapl_t;
/* Driver specific data transfer properties */
typedef struct H5FD_family_dxpl_t {
hid_t memb_dxpl_id; /*data xfer property list of each memb */
} H5FD_family_dxpl_t;
/* Callback prototypes */
static herr_t H5FD_family_term(void);
static void *H5FD_family_fapl_get(H5FD_t *_file);
static void *H5FD_family_fapl_copy(const void *_old_fa);
static herr_t H5FD_family_fapl_free(void *_fa);
static void *H5FD_family_dxpl_copy(const void *_old_dx);
static herr_t H5FD_family_dxpl_free(void *_dx);
static hsize_t H5FD_family_sb_size(H5FD_t *_file);
static herr_t H5FD_family_sb_encode(H5FD_t *_file, char *name/*out*/,
unsigned char *buf/*out*/);
static herr_t H5FD_family_sb_decode(H5FD_t *_file, const char *name,
const unsigned char *buf);
static H5FD_t *H5FD_family_open(const char *name, unsigned flags,
hid_t fapl_id, haddr_t maxaddr);
static herr_t H5FD_family_close(H5FD_t *_file);
static int H5FD_family_cmp(const H5FD_t *_f1, const H5FD_t *_f2);
static herr_t H5FD_family_query(const H5FD_t *_f1, unsigned long *flags);
static haddr_t H5FD_family_get_eoa(const H5FD_t *_file, H5FD_mem_t type);
static herr_t H5FD_family_set_eoa(H5FD_t *_file, H5FD_mem_t type, haddr_t eoa);
static haddr_t H5FD_family_get_eof(const H5FD_t *_file);
static herr_t H5FD_family_get_handle(H5FD_t *_file, hid_t fapl, void** file_handle);
static herr_t H5FD_family_read(H5FD_t *_file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr,
size_t size, void *_buf/*out*/);
static herr_t H5FD_family_write(H5FD_t *_file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr,
size_t size, const void *_buf);
static herr_t H5FD_family_flush(H5FD_t *_file, hid_t dxpl_id, unsigned closing);
static herr_t H5FD_family_truncate(H5FD_t *_file, hid_t dxpl_id, unsigned closing);
#ifdef H5_HAVE_AIO
static herr_t H5FD_family_aio_alloc_ctlblk(unsigned init_array_len,
H5FD_family_aio_ctlblk_t **ctlblk_ptr_ptr);
static herr_t H5FD_family_aio_discard_ctlblk(
H5FD_family_aio_ctlblk_t *ctlblk_ptr);
static herr_t H5FD_family_aio_extend_ctlblk(
H5FD_family_aio_ctlblk_t *ctlblk_ptr);
static herr_t H5FD_family_aio_read(H5FD_t *file, H5FD_mem_t type, hid_t dxpl_id,
haddr_t addr, size_t size, void *buffer,
void **ctlblk_ptr_ptr);
static herr_t H5FD_family_aio_write(H5FD_t *file, H5FD_mem_t type, hid_t dxpl_id,
haddr_t addr, size_t size, void *buffer,
void **ctlblk_ptr_ptr);
static herr_t H5FD_family_aio_test(hbool_t *done_ptr, void *ctlblk_ptr);
static herr_t H5FD_family_aio_wait(void *ctlblk_ptr);
static herr_t H5FD_family_aio_finish(int *errno_ptr, void *ctlblk_ptr);
static herr_t H5FD_family_aio_fsync(H5FD_t *file, void **ctlblk_ptr_ptr);
static herr_t H5FD_family_aio_cancel(void *ctlblk_ptr);
#endif /* H5_HAVE_AIO */
static herr_t H5FD_family_fsync(H5FD_t *file, hid_t dxpl_id);
static herr_t H5FD_family_get_stats(H5FD_t *file, H5FD_stats_t *stats_ptr);
static herr_t H5FD_family_reset_stats(H5FD_t *file);
/* The class struct */
static const H5FD_private_class_t H5FD_family_g = {
{
"family", /*name */
HADDR_MAX, /*maxaddr */
H5F_CLOSE_WEAK, /*fc_degree */
H5FD_family_term, /*terminate */
H5FD_family_sb_size, /*sb_size */
H5FD_family_sb_encode, /*sb_encode */
H5FD_family_sb_decode, /*sb_decode */
sizeof(H5FD_family_fapl_t), /*fapl_size */
H5FD_family_fapl_get, /*fapl_get */
H5FD_family_fapl_copy, /*fapl_copy */
H5FD_family_fapl_free, /*fapl_free */
sizeof(H5FD_family_dxpl_t), /*dxpl_size */
H5FD_family_dxpl_copy, /*dxpl_copy */
H5FD_family_dxpl_free, /*dxpl_free */
H5FD_family_open, /*open */
H5FD_family_close, /*close */
H5FD_family_cmp, /*cmp */
H5FD_family_query, /*query */
NULL, /*get_type_map */
NULL, /*alloc */
NULL, /*free */
H5FD_family_get_eoa, /*get_eoa */
H5FD_family_set_eoa, /*set_eoa */
H5FD_family_get_eof, /*get_eof */
H5FD_family_get_handle, /*get_handle */
H5FD_family_read, /*read */
H5FD_family_write, /*write */
H5FD_family_flush, /*flush */
H5FD_family_truncate, /*truncate */
NULL, /*lock */
NULL, /*unlock */
#ifdef H5_HAVE_AIO
H5FD_family_aio_read, /*aio_read */
H5FD_family_aio_write, /*aio_write */
H5FD_family_aio_test, /*aio_test */
H5FD_family_aio_wait, /*aio_wait */
H5FD_family_aio_finish, /*aio_finish */
H5FD_family_aio_fsync, /*aio_fsync */
H5FD_family_aio_cancel, /*aio_cancel */
#else /* H5_HAVE_AIO */
NULL, /*aio_read */
NULL, /*aio_write */
NULL, /*aio_test */
NULL, /*aio_wait */
NULL, /*aio_finish */
NULL, /*aio_fsync */
NULL, /*aio_cancel */
#endif /* H5_HAVE_AIO */
H5FD_family_fsync, /*fsync */
H5FD_FLMAP_SINGLE /*fl_map */
},
H5FD__H5FD_PRIVATE_CLASS_T__MAGIC, /*magic */
H5FD_family_get_stats, /*get_stats */
H5FD_family_reset_stats /*reset_stats */
};
/*--------------------------------------------------------------------------
NAME
H5FD_family_init_interface -- Initialize interface-specific information
USAGE
herr_t H5FD_family_init_interface()
RETURNS
Non-negative on success/Negative on failure
DESCRIPTION
Initializes any interface-specific data or routines. (Just calls
H5FD_family_init currently).
--------------------------------------------------------------------------*/
static herr_t
H5FD_family_init_interface(void)
{
FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5FD_family_init_interface)
FUNC_LEAVE_NOAPI(H5FD_family_init())
} /* H5FD_family_init_interface() */
/*-------------------------------------------------------------------------
* Function: H5FD_family_init
*
* Purpose: Initialize this driver by registering the driver with the
* library.
*
* Return: Success: The driver ID for the family driver.
*
* Failure: Negative
*
* Programmer: Robb Matzke
* Wednesday, August 4, 1999
*
* Modifications:
*
*-------------------------------------------------------------------------
*/
hid_t
H5FD_family_init(void)
{
hid_t ret_value=H5FD_FAMILY_g; /* Return value */
FUNC_ENTER_NOAPI(H5FD_family_init, FAIL)
if (H5I_VFL!=H5Iget_type(H5FD_FAMILY_g))
H5FD_FAMILY_g = H5FD_register(&H5FD_family_g,sizeof(H5FD_private_class_t),FALSE);
/* Set return value */
ret_value=H5FD_FAMILY_g;
done:
FUNC_LEAVE_NOAPI(ret_value)
}
/*---------------------------------------------------------------------------
* Function: H5FD_family_term
*
* Purpose: Shut down the VFD
*
* Returns: Non-negative on success or negative on failure
*
* Programmer: Quincey Koziol
* Friday, Jan 30, 2004
*
*---------------------------------------------------------------------------
*/
static herr_t
H5FD_family_term(void)
{
FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5FD_family_term)
/* Reset VFL ID */
H5FD_FAMILY_g=0;
FUNC_LEAVE_NOAPI(SUCCEED)
} /* end H5FD_family_term() */
/*-------------------------------------------------------------------------
* Function: H5Pset_fapl_family
*
* Purpose: Sets the file access property list FAPL_ID to use the family
* driver. The MEMB_SIZE is the size in bytes of each file
* member (used only when creating a new file) and the
* MEMB_FAPL_ID is a file access property list to be used for
* each family member.
*
* Return: Success: Non-negative
*
* Failure: Negative
*
* Programmer: Robb Matzke
* Wednesday, August 4, 1999
*
* Modifications:
*
* Raymond Lu
* Tuesday, Oct 23, 2001
* Changed the file access list to the new generic property
* list.
*
*-------------------------------------------------------------------------
*/
herr_t
H5Pset_fapl_family(hid_t fapl_id, hsize_t msize, hid_t memb_fapl_id)
{
herr_t ret_value;
H5FD_family_fapl_t fa={0, -1};
H5P_genplist_t *plist; /* Property list pointer */
FUNC_ENTER_API(H5Pset_fapl_family, FAIL)
H5TRACE3("e", "ihi", fapl_id, msize, memb_fapl_id);
/* Check arguments */
if(TRUE != H5P_isa_class(fapl_id, H5P_FILE_ACCESS))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a file access property list")
if(H5P_DEFAULT == memb_fapl_id)
memb_fapl_id = H5P_FILE_ACCESS_DEFAULT;
else
if(TRUE != H5P_isa_class(memb_fapl_id, H5P_FILE_ACCESS))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a file access list")
/*
* Initialize driver specific information. No need to copy it into the FA
* struct since all members will be copied by H5P_set_driver().
*/
fa.memb_size = msize;
fa.memb_fapl_id = memb_fapl_id;
if(NULL == (plist = (H5P_genplist_t *)H5I_object(fapl_id)))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a file access property list")
ret_value= H5P_set_driver(plist, H5FD_FAMILY, &fa);
done:
FUNC_LEAVE_API(ret_value)
}
/*-------------------------------------------------------------------------
* Function: H5Pget_fapl_family
*
* Purpose: Returns information about the family file access property
* list though the function arguments.
*
* Return: Success: Non-negative
*
* Failure: Negative
*
* Programmer: Robb Matzke
* Wednesday, August 4, 1999
*
* Modifications:
*
* Raymond Lu
* Tuesday, Oct 23, 2001
* Changed the file access list to the new generic property
* list.
*
*-------------------------------------------------------------------------
*/
herr_t
H5Pget_fapl_family(hid_t fapl_id, hsize_t *msize/*out*/,
hid_t *memb_fapl_id/*out*/)
{
H5FD_family_fapl_t *fa;
H5P_genplist_t *plist; /* Property list pointer */
herr_t ret_value=SUCCEED; /* Return value */
FUNC_ENTER_API(H5Pget_fapl_family, FAIL)
H5TRACE3("e", "ixx", fapl_id, msize, memb_fapl_id);
if(NULL == (plist = H5P_object_verify(fapl_id,H5P_FILE_ACCESS)))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a file access list")
if(H5FD_FAMILY != H5P_get_driver(plist))
HGOTO_ERROR(H5E_PLIST, H5E_BADVALUE, FAIL, "incorrect VFL driver")
if(NULL == (fa = (H5FD_family_fapl_t *)H5P_get_driver_info(plist)))
HGOTO_ERROR(H5E_PLIST, H5E_BADVALUE, FAIL, "bad VFL driver info")
if(msize)
*msize = fa->memb_size;
if(memb_fapl_id) {
if(NULL == (plist = (H5P_genplist_t *)H5I_object(fa->memb_fapl_id)))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a file access list")
*memb_fapl_id = H5P_copy_plist(plist, TRUE);
} /* end if */
done:
FUNC_LEAVE_API(ret_value)
}
/*-------------------------------------------------------------------------
* Function: H5FD_family_fapl_get
*
* Purpose: Gets a file access property list which could be used to
* create an identical file.
*
* Return: Success: Ptr to new file access property list.
*
* Failure: NULL
*
* Programmer: Robb Matzke
* Friday, August 13, 1999
*
* Modifications:
*
*-------------------------------------------------------------------------
*/
static void *
H5FD_family_fapl_get(H5FD_t *_file)
{
H5FD_family_t *file = (H5FD_family_t*)_file;
H5FD_family_fapl_t *fa = NULL;
H5P_genplist_t *plist; /* Property list pointer */
void *ret_value; /* Return value */
FUNC_ENTER_NOAPI(H5FD_family_fapl_get, NULL)
if(NULL == (fa = (H5FD_family_fapl_t *)H5MM_calloc(sizeof(H5FD_family_fapl_t))))
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed")
fa->memb_size = file->memb_size;
if(NULL == (plist = (H5P_genplist_t *)H5I_object(file->memb_fapl_id)))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, NULL, "not a file access property list")
fa->memb_fapl_id = H5P_copy_plist(plist, FALSE);
/* Set return value */
ret_value=fa;
done:
if(ret_value==NULL) {
if(fa!=NULL)
H5MM_xfree(fa);
} /* end if */
FUNC_LEAVE_NOAPI(ret_value)
}
/*-------------------------------------------------------------------------
* Function: H5FD_family_fapl_copy
*
* Purpose: Copies the family-specific file access properties.
*
* Return: Success: Ptr to a new property list
*
* Failure: NULL
*
* Programmer: Robb Matzke
* Wednesday, August 4, 1999
*
* Modifications:
*
*-------------------------------------------------------------------------
*/
static void *
H5FD_family_fapl_copy(const void *_old_fa)
{
const H5FD_family_fapl_t *old_fa = (const H5FD_family_fapl_t*)_old_fa;
H5FD_family_fapl_t *new_fa = NULL;
H5P_genplist_t *plist; /* Property list pointer */
void *ret_value; /* Return value */
FUNC_ENTER_NOAPI(H5FD_family_fapl_copy, NULL)
if(NULL == (new_fa = (H5FD_family_fapl_t *)H5MM_malloc(sizeof(H5FD_family_fapl_t))))
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed")
/* Copy the fields of the structure */
memcpy(new_fa, old_fa, sizeof(H5FD_family_fapl_t));
/* Deep copy the property list objects in the structure */
if(old_fa->memb_fapl_id==H5P_FILE_ACCESS_DEFAULT) {
if(H5I_inc_ref(new_fa->memb_fapl_id, FALSE)<0)
HGOTO_ERROR(H5E_VFL, H5E_CANTINC, NULL, "unable to increment ref count on VFL driver")
} /* end if */
else {
if(NULL == (plist = (H5P_genplist_t *)H5I_object(old_fa->memb_fapl_id)))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, NULL, "not a file access property list")
new_fa->memb_fapl_id = H5P_copy_plist(plist, FALSE);
} /* end else */
/* Set return value */
ret_value=new_fa;
done:
if(ret_value==NULL) {
if(new_fa!=NULL)
H5MM_xfree(new_fa);
} /* end if */
FUNC_LEAVE_NOAPI(ret_value)
}
/*-------------------------------------------------------------------------
* Function: H5FD_family_fapl_free
*
* Purpose: Frees the family-specific file access properties.
*
* Return: Success: 0
*
* Failure: -1
*
* Programmer: Robb Matzke
* Wednesday, August 4, 1999
*
* Modifications:
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_fapl_free(void *_fa)
{
H5FD_family_fapl_t *fa = (H5FD_family_fapl_t*)_fa;
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(H5FD_family_fapl_free, FAIL)
if(H5I_dec_ref(fa->memb_fapl_id) < 0)
HGOTO_ERROR(H5E_VFL, H5E_CANTDEC, FAIL, "can't close driver ID")
H5MM_xfree(fa);
done:
FUNC_LEAVE_NOAPI(ret_value)
}
/*-------------------------------------------------------------------------
* Function: H5FD_family_dxpl_copy
*
* Purpose: Copes the family-specific data transfer properties.
*
* Return: Success: Ptr to new property list
*
* Failure: NULL
*
* Programmer: Robb Matzke
* Wednesday, August 4, 1999
*
* Modifications:
*
*-------------------------------------------------------------------------
*/
static void *
H5FD_family_dxpl_copy(const void *_old_dx)
{
const H5FD_family_dxpl_t *old_dx = (const H5FD_family_dxpl_t*)_old_dx;
H5FD_family_dxpl_t *new_dx = NULL;
H5P_genplist_t *plist; /* Property list pointer */
void *ret_value; /* Return value */
FUNC_ENTER_NOAPI(H5FD_family_dxpl_copy, NULL)
if(NULL == (new_dx = (H5FD_family_dxpl_t *)H5MM_malloc(sizeof(H5FD_family_dxpl_t))))
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed")
HDmemcpy(new_dx, old_dx, sizeof(H5FD_family_dxpl_t));
if(old_dx->memb_dxpl_id == H5P_DATASET_XFER_DEFAULT) {
if(H5I_inc_ref(new_dx->memb_dxpl_id, FALSE)<0)
HGOTO_ERROR(H5E_VFL, H5E_CANTINC, NULL, "unable to increment ref count on VFL driver")
} /* end if */
else {
if(NULL == (plist = (H5P_genplist_t *)H5I_object(old_dx->memb_dxpl_id)))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, NULL, "not a file access property list")
new_dx->memb_dxpl_id = H5P_copy_plist(plist, FALSE);
} /* end else */
/* Set return value */
ret_value=new_dx;
done:
if(ret_value==NULL) {
if(new_dx!=NULL)
H5MM_xfree(new_dx);
} /* end if */
FUNC_LEAVE_NOAPI(ret_value)
}
/*-------------------------------------------------------------------------
* Function: H5FD_family_dxpl_free
*
* Purpose: Frees the family-specific data transfer properties.
*
* Return: Success: 0
*
* Failure: -1
*
* Programmer: Robb Matzke
* Wednesday, August 4, 1999
*
* Modifications:
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_dxpl_free(void *_dx)
{
H5FD_family_dxpl_t *dx = (H5FD_family_dxpl_t*)_dx;
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(H5FD_family_dxpl_free, FAIL)
if(H5I_dec_ref(dx->memb_dxpl_id) < 0)
HGOTO_ERROR(H5E_VFL, H5E_CANTDEC, FAIL, "can't close driver ID")
H5MM_xfree(dx);
done:
FUNC_LEAVE_NOAPI(ret_value)
}
/*-------------------------------------------------------------------------
* Function: H5FD_family_sb_size
*
* Purpose: Returns the size of the private information to be stored in
* the superblock.
*
* Return: Success: The super block driver data size.
*
* Failure: never fails
*
* Programmer: Raymond Lu
* Tuesday, May 10, 2005
*
* Modifications:
*
*-------------------------------------------------------------------------
*/
static hsize_t
H5FD_family_sb_size(H5FD_t UNUSED *_file)
{
hsize_t ret_value = 0; /*size of header*/
FUNC_ENTER_NOAPI(H5FD_family_sb_size, UFAIL)
/* 8 bytes field for the size of member file size field should be
* enough for now. */
ret_value += 8;
done:
FUNC_LEAVE_NOAPI(ret_value)
}
/*-------------------------------------------------------------------------
* Function: H5FD_family_sb_encode
*
* Purpose: Encode driver information for the superblock. The NAME
* argument is a nine-byte buffer which will be initialized with
* an eight-character name/version number and null termination.
*
* The encoding is the member file size and name template.
*
* Return: Success: 0
*
* Failure: -1
*
* Programmer: Raymond Lu
* Tuesday, May 10, 2005
*
* Modifications:
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_sb_encode(H5FD_t *_file, char *name/*out*/, unsigned char *buf/*out*/)
{
H5FD_family_t *file = (H5FD_family_t*)_file;
FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5FD_family_sb_encode)
/* Name and version number */
HDstrncpy(name, "NCSAfami", (size_t)9);
name[8] = '\0';
/* Store member file size. Use the member file size from the property here.
* This is to guarantee backward compatibility. If a file is created with
* v1.6 library and the driver info isn't saved in the superblock. We open
* it with v1.8, the FILE->MEMB_SIZE will be the actual size of the first
* member file (see H5FD_family_open). So it isn't safe to use FILE->MEMB_SIZE.
* If the file is created with v1.8, the correctness of FILE->PMEM_SIZE is
* checked in H5FD_family_sb_decode. SLU - 2009/3/21
*/
UINT64ENCODE(buf, (uint64_t)file->pmem_size);
FUNC_LEAVE_NOAPI(SUCCEED)
} /* end H5FD_family_sb_encode() */
/*-------------------------------------------------------------------------
* Function: H5FD_family_sb_decode
*
* Purpose: This function has 2 seperate purpose. One is to decodes the
* superblock information for this driver. The NAME argument is
* the eight-character (plus null termination) name stored in i
* the file. The FILE argument is updated according to the
* information in the superblock.
*
* Return: Success: 0
*
* Failure: -1
*
* Programmer: Raymond Lu
* Tuesday, May 10, 2005
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_sb_decode(H5FD_t *_file, const char UNUSED *name, const unsigned char *buf)
{
H5FD_family_t *file = (H5FD_family_t*)_file;
uint64_t msize;
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(H5FD_family_sb_decode, FAIL)
/* Read member file size. Skip name template for now although it's saved. */
UINT64DECODE(buf, msize);
/* For h5repart only. Private property of new member size is used to signal
* h5repart is being used to change member file size. h5repart will open
* files for read and write. When the files are closed, metadata will be
* flushed to the files and updated to this new size */
if(file->mem_newsize) {
file->memb_size = file->pmem_size = file->mem_newsize;
HGOTO_DONE(ret_value)
} /* end if */
/* Default - use the saved member size */
if(file->pmem_size == H5F_FAMILY_DEFAULT)
file->pmem_size = msize;
/* Check if member size from file access property is correct */
if(msize != file->pmem_size) {
char err_msg[128];
HDsnprintf(err_msg, sizeof(err_msg), "Family member size should be %lu. But the size from file access property is %lu", (unsigned long)msize, (unsigned long)file->pmem_size);
HGOTO_ERROR(H5E_FILE, H5E_BADVALUE, FAIL, err_msg)
} /* end if */
/* Update member file size to the size saved in the superblock.
* That's the size intended to be. */
file->memb_size = msize;
done:
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5FD_family_sb_decode() */
/*-------------------------------------------------------------------------
* Function: H5FD_family_open
*
* Purpose: Creates and/or opens a family of files as an HDF5 file.
*
* Return: Success: A pointer to a new file dat structure. The
* public fields will be initialized by the
* caller, which is always H5FD_open().
*
* Failure: NULL
*
* Programmer: Robb Matzke
* Wednesday, August 4, 1999
*
* Modifications:
* Raymond Lu
* Thursday, November 18, 2004
* When file is re-opened, member size passed in from access property
* is checked to see if it's reasonable. If there is only 1 member
* file, member size can't be smaller than current member size.
* If there are at least 2 member files, member size can only be equal
* the 1st member size.
*
* Raymond Lu
* Tuesday, May 24, 2005
* The modification described above has been changed. The major checking
* is done in H5F_read_superblock. Member file size is saved in the
* superblock now. H5F_read_superblock() reads this saved size and compare
* to the size passed in from file access property. Wrong size will
* result in a failure.
*
*-------------------------------------------------------------------------
*/
static H5FD_t *
H5FD_family_open(const char *name, unsigned flags, hid_t fapl_id,
haddr_t maxaddr)
{
H5FD_family_t *file=NULL;
H5FD_t *ret_value=NULL;
char memb_name[4096], temp[4096];
hsize_t eof=HADDR_UNDEF;
unsigned t_flags = flags & ~H5F_ACC_CREAT;
FUNC_ENTER_NOAPI(H5FD_family_open, NULL)
/* Check arguments */
if(!name || !*name)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, NULL, "invalid file name")
if(0 == maxaddr || HADDR_UNDEF == maxaddr)
HGOTO_ERROR(H5E_ARGS, H5E_BADRANGE, NULL, "bogus maxaddr")
/* Initialize file from file access properties */
if(NULL == (file = (H5FD_family_t *)H5MM_calloc(sizeof(H5FD_family_t))))
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "unable to allocate file struct")
if(H5P_FILE_ACCESS_DEFAULT==fapl_id) {
file->memb_fapl_id = H5P_FILE_ACCESS_DEFAULT;
if(H5I_inc_ref(file->memb_fapl_id, FALSE) < 0)
HGOTO_ERROR(H5E_VFL, H5E_CANTINC, NULL, "unable to increment ref count on VFL driver")
file->memb_size = 1024 * 1024 * 1024; /*1GB. Actual member size to be updated later */
file->pmem_size = 1024 * 1024 * 1024; /*1GB. Member size passed in through property */
file->mem_newsize = 0; /*New member size used by h5repart only */
} /* end if */
else {
H5P_genplist_t *plist; /* Property list pointer */
H5FD_family_fapl_t *fa;
if(NULL == (plist = (H5P_genplist_t *)H5I_object(fapl_id)))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, NULL, "not a file access property list")
fa = (H5FD_family_fapl_t *)H5P_get_driver_info(plist);
HDassert(fa);
/* Check for new family file size. It's used by h5repart only. */
if(H5P_exist_plist(plist, H5F_ACS_FAMILY_NEWSIZE_NAME) > 0) {
hsize_t fam_newsize = 0; /* New member size, when repartitioning */
/* Get the new family file size */
if(H5P_get(plist, H5F_ACS_FAMILY_NEWSIZE_NAME, &fam_newsize) < 0)
HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, NULL, "can't get new family member size")
/* Store information for later */
file->mem_newsize = fam_newsize; /* New member size passed in through property */
file->repart_members = TRUE;
} /* end if */
if(fa->memb_fapl_id==H5P_FILE_ACCESS_DEFAULT) {
if(H5I_inc_ref(fa->memb_fapl_id, FALSE)<0)
HGOTO_ERROR(H5E_VFL, H5E_CANTINC, NULL, "unable to increment ref count on VFL driver")
file->memb_fapl_id = fa->memb_fapl_id;
} /* end if */
else {
if(NULL == (plist = (H5P_genplist_t *)H5I_object(fa->memb_fapl_id)))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, NULL, "not a file access property list")
file->memb_fapl_id = H5P_copy_plist(plist, FALSE);
} /* end else */
file->memb_size = fa->memb_size; /* Actual member size to be updated later */
file->pmem_size = fa->memb_size; /* Member size passed in through property */
} /* end else */
file->name = H5MM_strdup(name);
file->flags = flags;
/* Check that names are unique */
HDsnprintf(memb_name, sizeof(memb_name), name, 0);
HDsnprintf(temp, sizeof(temp), name, 1);
if(!HDstrcmp(memb_name, temp))
HGOTO_ERROR(H5E_FILE, H5E_FILEEXISTS, NULL, "file names not unique")
/* Open all the family members */
while(1) {
HDsnprintf(memb_name, sizeof(memb_name), name, file->nmembs);
/* Enlarge member array */
if(file->nmembs >= file->amembs) {
unsigned n = MAX(64, 2 * file->amembs);
H5FD_t **x;
HDassert(n > 0);
if(NULL == (x = (H5FD_t **)H5MM_realloc(file->memb, n * sizeof(H5FD_t *))))
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "unable to reallocate members")
file->amembs = n;
file->memb = x;
} /* end if */
/*
* Attempt to open file. If the first file cannot be opened then fail;
* otherwise an open failure means that we've reached the last member.
* Allow H5F_ACC_CREAT only on the first family member.
*/
H5E_BEGIN_TRY {
file->memb[file->nmembs] = H5FDopen(memb_name,
(0==file->nmembs ? flags : t_flags), file->memb_fapl_id, HADDR_UNDEF);
} H5E_END_TRY;
if (!file->memb[file->nmembs]) {
if (0==file->nmembs)
HGOTO_ERROR(H5E_FILE, H5E_CANTOPENFILE, NULL, "unable to open member file")
H5E_clear_stack(NULL);
break;
}
file->nmembs++;
}
/* If the file is reopened and there's only one member file existing, this file maybe
* smaller than the size specified through H5Pset_fapl_family(). Update the actual
* member size.
*/
if ((eof=H5FDget_eof(file->memb[0]))) file->memb_size = eof;
ret_value=(H5FD_t *)file;
done:
/* Cleanup and fail */
if(ret_value == NULL && file != NULL) {
unsigned nerrors = 0; /* Number of errors closing member files */
unsigned u; /* Local index variable */
/* Close as many members as possible. Use private function here to avoid clearing
* the error stack. We need the error message to indicate wrong member file size. */
for(u = 0; u < file->nmembs; u++)
if(file->memb[u])
if(H5FD_close(file->memb[u]) < 0)
nerrors++;
if(nerrors)
HGOTO_ERROR(H5E_FILE, H5E_CANTCLOSEFILE, NULL, "unable to close member files")
if(file->memb)
H5MM_xfree(file->memb);
if(H5I_dec_ref(file->memb_fapl_id) < 0)
HDONE_ERROR(H5E_VFL, H5E_CANTDEC, NULL, "can't close driver ID")
if(file->name)
H5MM_xfree(file->name);
H5MM_xfree(file);
} /* end if */
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5FD_family_open() */
/*-------------------------------------------------------------------------
* Function: H5FD_family_close
*
* Purpose: Closes a family of files.
*
* Return: Success: Non-negative
*
* Failure: Negative with as many members closed as
* possible. The only subsequent operation
* permitted on the file is a close operation.
*
* Programmer: Robb Matzke
* Wednesday, August 4, 1999
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_close(H5FD_t *_file)
{
H5FD_family_t *file = (H5FD_family_t*)_file;
unsigned nerrors = 0; /* Number of errors while closing member files */
unsigned u; /* Local index variable */
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(H5FD_family_close, FAIL)
/* Close as many members as possible. Use private function here to avoid clearing
* the error stack. We need the error message to indicate wrong member file size. */
for(u = 0; u < file->nmembs; u++) {
if(file->memb[u]) {
if(H5FD_close(file->memb[u]) < 0)
nerrors++;
else
file->memb[u] = NULL;
} /* end if */
} /* end for */
if(nerrors)
/* Push error, but keep going*/
HDONE_ERROR(H5E_FILE, H5E_CANTCLOSEFILE, FAIL, "unable to close member files")
/* Clean up other stuff */
if(H5I_dec_ref(file->memb_fapl_id) < 0)
/* Push error, but keep going*/
HDONE_ERROR(H5E_VFL, H5E_CANTDEC, FAIL, "can't close driver ID")
H5MM_xfree(file->memb);
H5MM_xfree(file->name);
H5MM_xfree(file);
done:
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5FD_family_close() */
/*-------------------------------------------------------------------------
* Function: H5FD_family_cmp
*
* Purpose: Compares two file families to see if they are the same. It
* does this by comparing the first member of the two families.
*
* Return: Success: like strcmp()
*
* Failure: never fails (arguments were checked by the
* caller).
*
* Programmer: Robb Matzke
* Wednesday, August 4, 1999
*
* Modifications:
*
*-------------------------------------------------------------------------
*/
static int
H5FD_family_cmp(const H5FD_t *_f1, const H5FD_t *_f2)
{
const H5FD_family_t *f1 = (const H5FD_family_t*)_f1;
const H5FD_family_t *f2 = (const H5FD_family_t*)_f2;
int ret_value = 0;
FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5FD_family_cmp)
HDassert(f1->nmembs >= 1 && f1->memb[0]);
HDassert(f2->nmembs >= 1 && f2->memb[0]);
ret_value = H5FDcmp(f1->memb[0], f2->memb[0]);
done:
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5FD_family_cmp() */
/*-------------------------------------------------------------------------
* Function: H5FD_family_query
*
* Purpose: Set the flags that this VFL driver is capable of supporting.
* (listed in H5FDpublic.h)
*
* Return: Success: non-negative
* Failure: negative
*
* Programmer: Quincey Koziol
* Friday, August 25, 2000
*
*-------------------------------------------------------------------------
*/
/* ARGSUSED */
static herr_t
H5FD_family_query(const H5FD_t * _file, unsigned long *flags /* out */)
{
const H5FD_family_t *file = (const H5FD_family_t*)_file; /* Family VFD info */
FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5FD_family_query)
/* Set the VFL feature flags that this driver supports */
if(flags) {
*flags = 0;
*flags |= H5FD_FEAT_AGGREGATE_METADATA; /* OK to aggregate metadata allocations */
*flags |= H5FD_FEAT_ACCUMULATE_METADATA; /* OK to accumulate metadata for faster writes. */
*flags |= H5FD_FEAT_DATA_SIEVE; /* OK to perform data sieving for faster raw data reads & writes */
*flags |= H5FD_FEAT_AGGREGATE_SMALLDATA; /* OK to aggregate "small" raw data allocations */
*flags |= H5FD_FEAT_EXTENDED_CLASS; /* this driver supports H5FD_private_class_t */
/* Check for flags that are set by h5repart */
if(file->repart_members)
*flags |= H5FD_FEAT_DIRTY_SBLK_LOAD; /* Mark the superblock dirty when it is loaded (so the family member sizes are rewritten) */
} /* end if */
FUNC_LEAVE_NOAPI(SUCCEED)
} /* end H5FD_family_query() */
/*-------------------------------------------------------------------------
* Function: H5FD_family_get_eoa
*
* Purpose: Returns the end-of-address marker for the file. The EOA
* marker is the first address past the last byte allocated in
* the format address space.
*
* Return: Success: The end-of-address-marker
*
* Failure: HADDR_UNDEF
*
* Programmer: Robb Matzke
* Wednesday, August 4, 1999
*
* Modifications:
* Raymond Lu
* 21 Dec. 2006
* Added the parameter TYPE. It's only used for MULTI driver.
*
*-------------------------------------------------------------------------
*/
static haddr_t
H5FD_family_get_eoa(const H5FD_t *_file, H5FD_mem_t UNUSED type)
{
const H5FD_family_t *file = (const H5FD_family_t*)_file;
haddr_t ret_value; /* Return value */
FUNC_ENTER_NOAPI(H5FD_family_get_eoa, HADDR_UNDEF)
/* Set return value */
ret_value=file->eoa;
done:
FUNC_LEAVE_NOAPI(ret_value)
}
/*-------------------------------------------------------------------------
* Function: H5FD_family_set_eoa
*
* Purpose: Set the end-of-address marker for the file.
*
* Return: Success: 0
*
* Failure: -1
*
* Programmer: Robb Matzke
* Wednesday, August 4, 1999
*
* Modifications:
* Raymond Lu
* 21 Dec. 2006
* Added the parameter TYPE. It's only used for MULTI driver.
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_set_eoa(H5FD_t *_file, H5FD_mem_t type, haddr_t abs_eoa)
{
H5FD_family_t *file = (H5FD_family_t*)_file;
haddr_t addr = abs_eoa;
char memb_name[4096];
unsigned u; /* Local index variable */
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(H5FD_family_set_eoa, FAIL)
for(u = 0; addr || u < file->nmembs; u++) {
/* Enlarge member array */
if(u >= file->amembs) {
unsigned n = MAX(64, 2 * file->amembs);
H5FD_t **x = (H5FD_t **)H5MM_realloc(file->memb, n * sizeof(H5FD_t *));
if(!x)
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "unable to allocate memory block")
file->amembs = n;
file->memb = x;
file->nmembs = u;
} /* end if */
/* Create another file if necessary */
if(u >= file->nmembs || !file->memb[u]) {
file->nmembs = MAX(file->nmembs, u+1);
HDsnprintf(memb_name, sizeof(memb_name), file->name, u);
H5E_BEGIN_TRY {
H5_CHECK_OVERFLOW(file->memb_size, hsize_t, haddr_t);
file->memb[u] = H5FDopen(memb_name, file->flags | H5F_ACC_CREAT,
file->memb_fapl_id, (haddr_t)file->memb_size);
} H5E_END_TRY;
if(NULL == file->memb[u])
HGOTO_ERROR(H5E_FILE, H5E_CANTOPENFILE, FAIL, "unable to open member file")
} /* end if */
/* Set the EOA marker for the member */
/* (Note compensating for base address addition in internal routine) */
H5_CHECK_OVERFLOW(file->memb_size, hsize_t, haddr_t);
if(addr > (haddr_t)file->memb_size) {
if(H5FD_set_eoa(file->memb[u], type, ((haddr_t)file->memb_size - file->pub.base_addr)) < 0)
HGOTO_ERROR(H5E_FILE, H5E_CANTINIT, FAIL, "unable to set file eoa")
addr -= file->memb_size;
} /* end if */
else {
if(H5FD_set_eoa(file->memb[u], type, (addr - file->pub.base_addr)) < 0)
HGOTO_ERROR(H5E_FILE, H5E_CANTINIT, FAIL, "unable to set file eoa")
addr = 0;
} /* end else */
} /* end for */
file->eoa = abs_eoa;
done:
FUNC_LEAVE_NOAPI(ret_value)
}
/*-------------------------------------------------------------------------
* Function: H5FD_family_get_eof
*
* Purpose: Returns the end-of-file marker, which is the greater of
* either the total family size or the current EOA marker.
*
* Return: Success: End of file address, the first address past
* the end of the family of files or the current
* EOA, whichever is larger.
*
* Failure: HADDR_UNDEF
*
* Programmer: Robb Matzke
* Wednesday, August 4, 1999
*
* Modifications:
*
*-------------------------------------------------------------------------
*/
static haddr_t
H5FD_family_get_eof(const H5FD_t *_file)
{
const H5FD_family_t *file = (const H5FD_family_t*)_file;
haddr_t eof=0;
int i; /* Local index variable */
haddr_t ret_value; /* Return value */
FUNC_ENTER_NOAPI(H5FD_family_get_eof, HADDR_UNDEF)
/*
* Find the last member that has a non-zero EOF and break out of the loop
* with `i' equal to that member. If all members have zero EOF then exit
* loop with i==0.
*/
HDassert(file->nmembs > 0);
for(i = (int)file->nmembs - 1; i >= 0; --i) {
if((eof = H5FD_get_eof(file->memb[i])) != 0)
break;
if(0 == i)
break;
} /* end for */
/* Adjust for base address for file */
eof += file->pub.base_addr;
/*
* The file size is the number of members before the i'th member plus the
* size of the i'th member.
*/
eof += ((unsigned)i)*file->memb_size;
/* Set return value */
ret_value = MAX(eof, file->eoa);
done:
FUNC_LEAVE_NOAPI(ret_value)
}
/*-------------------------------------------------------------------------
* Function: H5FD_family_get_handle
*
* Purpose: Returns the file handle of FAMILY file driver.
*
* Returns: Non-negative if succeed or negative if fails.
*
* Programmer: Raymond Lu
* Sept. 16, 2002
*
* Modifications:
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_get_handle(H5FD_t *_file, hid_t fapl, void** file_handle)
{
H5FD_family_t *file = (H5FD_family_t *)_file;
H5P_genplist_t *plist;
hsize_t offset;
int memb;
herr_t ret_value;
FUNC_ENTER_NOAPI(H5FD_family_get_handle, FAIL)
/* Get the plist structure and family offset */
if(NULL == (plist = H5P_object_verify(fapl, H5P_FILE_ACCESS)))
HGOTO_ERROR(H5E_ATOM, H5E_BADATOM, FAIL, "can't find object for ID")
if(H5P_get(plist, H5F_ACS_FAMILY_OFFSET_NAME, &offset) < 0)
HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, FAIL, "can't get offset for family driver")
if(offset > (file->memb_size * file->nmembs))
HGOTO_ERROR(H5E_ATOM, H5E_BADATOM, FAIL, "offset is bigger than file size")
memb = (int)(offset/file->memb_size);
ret_value = H5FD_get_vfd_handle(file->memb[memb], fapl, file_handle);
done:
FUNC_LEAVE_NOAPI(ret_value)
}
/*-------------------------------------------------------------------------
* Function: H5FD_family_read
*
* Purpose: Reads SIZE bytes of data from FILE beginning at address ADDR
* into buffer BUF according to data transfer properties in
* DXPL_ID.
*
* Return: Success: Zero. Result is stored in caller-supplied
* buffer BUF.
*
* Failure: -1, contents of buffer BUF are undefined.
*
* Programmer: Robb Matzke
* Wednesday, August 4, 1999
*
* Modifications:
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_read(H5FD_t *_file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, size_t size,
void *_buf/*out*/)
{
H5FD_family_t *file = (H5FD_family_t*)_file;
unsigned char *buf = (unsigned char*)_buf;
hid_t memb_dxpl_id = H5P_DATASET_XFER_DEFAULT;
haddr_t sub;
size_t req;
hsize_t tempreq;
unsigned u; /* Local index variable */
H5P_genplist_t *plist; /* Property list pointer */
herr_t ret_value=SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(H5FD_family_read, FAIL)
/*
* Get the member data transfer property list. If the transfer property
* list does not belong to this driver then assume defaults
*/
if(NULL == (plist = (H5P_genplist_t *)H5I_object(dxpl_id)))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a file access property list")
if(H5P_DATASET_XFER_DEFAULT != dxpl_id && H5FD_FAMILY == H5P_get_driver(plist)) {
H5FD_family_dxpl_t *dx = (H5FD_family_dxpl_t *)H5P_get_driver_info(plist);
HDassert(TRUE == H5P_isa_class(dxpl_id, H5P_DATASET_XFER));
assert(dx);
memb_dxpl_id = dx->memb_dxpl_id;
} /* end if */
/* Read from each member */
while(size > 0) {
H5_ASSIGN_OVERFLOW(u,addr /file->memb_size,hsize_t,unsigned);
sub = addr % file->memb_size;
/* This check is for mainly for IA32 architecture whose size_t's size
* is 4 bytes, to prevent overflow when user application is trying to
* write files bigger than 4GB. */
tempreq = file->memb_size-sub;
if(tempreq > SIZET_MAX)
tempreq = SIZET_MAX;
req = MIN(size, (size_t)tempreq);
assert(u<file->nmembs);
if (H5FDread(file->memb[u], type, memb_dxpl_id, sub, req, buf)<0)
HGOTO_ERROR(H5E_IO, H5E_READERROR, FAIL, "member file read failed")
addr += req;
buf += req;
size -= req;
}
done:
FUNC_LEAVE_NOAPI(ret_value)
}
/*-------------------------------------------------------------------------
* Function: H5FD_family_write
*
* Purpose: Writes SIZE bytes of data to FILE beginning at address ADDR
* from buffer BUF according to data transfer properties in
* DXPL_ID.
*
* Return: Success: Zero
*
* Failure: -1
*
* Programmer: Robb Matzke
* Wednesday, August 4, 1999
*
* Modifications:
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_write(H5FD_t *_file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, size_t size,
const void *_buf)
{
H5FD_family_t *file = (H5FD_family_t*)_file;
const unsigned char *buf = (const unsigned char*)_buf;
hid_t memb_dxpl_id = H5P_DATASET_XFER_DEFAULT;
haddr_t sub;
size_t req;
hsize_t tempreq;
unsigned u; /* Local index variable */
H5P_genplist_t *plist; /* Property list pointer */
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(H5FD_family_write, FAIL)
/*
* Get the member data transfer property list. If the transfer property
* list does not belong to this driver then assume defaults.
*/
if(NULL == (plist = (H5P_genplist_t *)H5I_object(dxpl_id)))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a file access property list")
if(H5P_DATASET_XFER_DEFAULT != dxpl_id && H5FD_FAMILY == H5P_get_driver(plist)) {
H5FD_family_dxpl_t *dx = (H5FD_family_dxpl_t *)H5P_get_driver_info(plist);
HDassert(TRUE == H5P_isa_class(dxpl_id, H5P_DATASET_XFER));
HDassert(dx);
memb_dxpl_id = dx->memb_dxpl_id;
} /* end if */
/* Write to each member */
while (size>0) {
H5_ASSIGN_OVERFLOW(u,addr /file->memb_size,hsize_t,unsigned);
sub = addr % file->memb_size;
/* This check is for mainly for IA32 architecture whose size_t's size
* is 4 bytes, to prevent overflow when user application is trying to
* write files bigger than 4GB. */
tempreq = file->memb_size-sub;
if(tempreq > SIZET_MAX)
tempreq = SIZET_MAX;
req = MIN(size, (size_t)tempreq);
assert(u<file->nmembs);
if (H5FDwrite(file->memb[u], type, memb_dxpl_id, sub, req, buf)<0)
HGOTO_ERROR(H5E_IO, H5E_WRITEERROR, FAIL, "member file write failed")
addr += req;
buf += req;
size -= req;
}
done:
FUNC_LEAVE_NOAPI(ret_value)
}
/*-------------------------------------------------------------------------
* Function: H5FD_family_flush
*
* Purpose: Flushes all family members.
*
* Return: Success: 0
* Failure: -1, as many files flushed as possible.
*
* Programmer: Robb Matzke
* Wednesday, August 4, 1999
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_flush(H5FD_t *_file, hid_t dxpl_id, unsigned closing)
{
H5FD_family_t *file = (H5FD_family_t*)_file;
unsigned u, nerrors = 0;
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(H5FD_family_flush, FAIL)
for(u = 0; u < file->nmembs; u++)
if(file->memb[u] && H5FD_flush(file->memb[u], dxpl_id, closing) < 0)
nerrors++;
if(nerrors)
HGOTO_ERROR(H5E_IO, H5E_BADVALUE, FAIL, "unable to flush member files")
done:
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5FD_family_flush() */
/*-------------------------------------------------------------------------
* Function: H5FD_family_truncate
*
* Purpose: Truncates all family members.
*
* Return: Success: 0
*
* Failure: -1, as many files truncated as possible.
*
* Programmer: Quincey Koziol
* Saturday, February 23, 2008
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_truncate(H5FD_t *_file, hid_t dxpl_id, unsigned closing)
{
H5FD_family_t *file = (H5FD_family_t*)_file;
unsigned u, nerrors = 0;
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(H5FD_family_truncate, FAIL)
for(u = 0; u < file->nmembs; u++)
if(file->memb[u] && H5FD_truncate(file->memb[u], dxpl_id, closing) < 0)
nerrors++;
if(nerrors)
HGOTO_ERROR(H5E_IO, H5E_BADVALUE, FAIL, "unable to flush member files")
done:
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5FD_family_truncate() */
#ifdef H5_HAVE_AIO
/*-------------------------------------------------------------------------
* Function: H5FD_family_aio_alloc_ctlblk
*
* Purpose: Allocate a control block for use in an asynchronous
* read, write, or fsync. Allocate the array of sub aio
* control blocks with initial size init_array_len.
*
* If successful, return a pointer to the newly allocated
* and initialized control block in *ctlblk_ptr_ptr.
*
* Return: Success: SUCCEED
* Failure: Negative
*
* Programmer: John Mainzer
* 6/20/10
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_aio_alloc_ctlblk(unsigned init_array_len,
H5FD_family_aio_ctlblk_t **ctlblk_ptr_ptr)
{
herr_t ret_value = SUCCEED; /* Return value */
unsigned i;
H5FD_family_aio_ctlblk_t * ctlblk_ptr = NULL;
FUNC_ENTER_NOAPI(H5FD_family_aio_alloc_ctlblk, FAIL)
if((ctlblk_ptr_ptr == NULL) || (*ctlblk_ptr_ptr != NULL) || (init_array_len <= 0))
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "bad param(s) on entry")
if(NULL == (ctlblk_ptr = H5FL_CALLOC(H5FD_family_aio_ctlblk_t)))
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed(1)")
ctlblk_ptr->magic = H5FD_FAMILY_AIO_CTLBLK_T__MAGIC;
ctlblk_ptr->array_len = init_array_len;
ctlblk_ptr->num_subctlblks = 0;
ctlblk_ptr->subctlblks = NULL;
/* for the most common case of only one underlying file associated
* with the operation, use the free list of instances of
* H5FD_family_aio_subctlblk_t. For larger numbers of underlying
* files, just malloc an array of the desired size.
*/
if(init_array_len == 1) {
if(NULL == (ctlblk_ptr->subctlblks = H5FL_CALLOC(H5FD_family_aio_subctlblk_t)))
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed(2)")
} else {
HDassert( init_array_len > 1 );
if(NULL == (ctlblk_ptr->subctlblks = (H5FD_family_aio_subctlblk_t *)
H5MM_malloc(((size_t)init_array_len) * sizeof(H5FD_family_aio_subctlblk_t))))
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed(3)")
}
for(i = 0; i < ctlblk_ptr->array_len; i++) {
(ctlblk_ptr->subctlblks[i]).magic = H5FD_FAMILY_AIO_SUBCTLBLK_T__MAGIC;
(ctlblk_ptr->subctlblks[i]).driver = NULL;
(ctlblk_ptr->subctlblks[i]).ctlblk = NULL;
(ctlblk_ptr->subctlblks[i]).done = FALSE;
(ctlblk_ptr->subctlblks[i]).finished = FALSE;
}
*ctlblk_ptr_ptr = ctlblk_ptr;
done:
if(ret_value != SUCCEED)
if(ctlblk_ptr != NULL) {
/* only way we should be able to get here is if the
* allocation of the H5FD_family_aio_ctlblk_t succeeded,
* but the allocation of the array of
* H5FD_family_aio_subctlblk_t failed. Thus, all we need to
* do is discard the instance of H5FD_family_aio_ctlblk_t
* before we return.
*/
HDassert( ctlblk_ptr->subctlblks == NULL );
if(NULL != (ctlblk_ptr = H5FL_FREE(H5FD_family_aio_ctlblk_t, ctlblk_ptr)))
HDONE_ERROR(H5E_RESOURCE, H5E_CANTFREE, FAIL,
"base ctlblk de-allocation failed")
}
FUNC_LEAVE_NOAPI(ret_value)
} /* H5FD_family_aio_alloc_ctlblk() */
/*-------------------------------------------------------------------------
* Function: H5FD_family_aio_discard_ctlblk
*
* Purpose: Free the control block pointed to by ctlblk_ptr, marking
* it as invalid in passing.
*
* Return: Success: zero
* Failure: Negative
*
* Programmer: John Mainzer
* 6/20/10
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_aio_discard_ctlblk(H5FD_family_aio_ctlblk_t *ctlblk_ptr)
{
herr_t ret_value = SUCCEED; /* Return value */
hbool_t bad_subctlblk_magic = FALSE;
unsigned int i;
unsigned int array_len = 0;
H5FD_family_aio_subctlblk_t * subctlblks = NULL;
FUNC_ENTER_NOAPI(H5FD_family_aio_discard_ctlblk, FAIL)
if(ctlblk_ptr == NULL)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "ctlblk_ptr NULL on entry")
if(ctlblk_ptr->magic != H5FD_FAMILY_AIO_CTLBLK_T__MAGIC)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "bad ctlblk magic")
if((ctlblk_ptr->subctlblks == NULL) || (ctlblk_ptr->array_len < 1))
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "subctlblks fields corrupt?")
array_len = ctlblk_ptr->array_len;
subctlblks = ctlblk_ptr->subctlblks;
for(i = 0; i < array_len; i++) {
if(subctlblks[i].magic != H5FD_FAMILY_AIO_SUBCTLBLK_T__MAGIC)
bad_subctlblk_magic = TRUE;
}
if(bad_subctlblk_magic)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "bad subctlblk magic(s)")
/* mark the control block as invalid, and null out its fields */
ctlblk_ptr->magic = 0;
ctlblk_ptr->array_len = 0;
ctlblk_ptr->num_subctlblks = 0;
ctlblk_ptr->subctlblks = NULL;
for(i = 0; i < array_len; i++) {
(subctlblks[i]).magic = 0;
(subctlblks[i]).driver = NULL;
(subctlblks[i]).ctlblk = NULL;
(subctlblks[i]).done = FALSE;
(subctlblks[i]).finished = FALSE;
}
/* now free the data */
ctlblk_ptr = H5FL_FREE(H5FD_family_aio_ctlblk_t, ctlblk_ptr);
/* recall that we use the free list for singleton instaces of
* H5FD_family_aio_subctlblk_t, and malloc to allocate larger
* arrays.
*/
if(array_len == 1)
subctlblks = H5FL_FREE(H5FD_family_aio_subctlblk_t, subctlblks);
else
subctlblks = (H5FD_family_aio_subctlblk_t *)H5MM_xfree(subctlblks);
if((ctlblk_ptr != NULL) || (subctlblks != NULL))
HGOTO_ERROR(H5E_RESOURCE, H5E_CANTFREE, FAIL, "control block free(s) failed")
done:
FUNC_LEAVE_NOAPI(ret_value)
} /* H5FD_family_aio_discard_ctlblk */
/*-------------------------------------------------------------------------
* Function: H5FD_family_aio_extend_ctlblk
*
* Purpose: Double the size of the array of sub aio control blocks
* in the control block. Ensure that the entries currently
* in use contain the same data after the doubling as before,
* and that new entries are all correctly initialized.
*
* Return: Success: SUCCEED
* Failure: Negative
*
* Programmer: John Mainzer
* 6/20/10
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_aio_extend_ctlblk(H5FD_family_aio_ctlblk_t *ctlblk_ptr)
{
herr_t ret_value = SUCCEED; /* Return value */
hbool_t bad_subctlblk_magic = FALSE;
unsigned int i;
unsigned int old_array_len;
unsigned int new_array_len;
H5FD_family_aio_subctlblk_t * old_subctlblks = NULL;
H5FD_family_aio_subctlblk_t * new_subctlblks = NULL;
FUNC_ENTER_NOAPI(H5FD_family_aio_extend_ctlblk, FAIL)
if(ctlblk_ptr == NULL)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "ctlblk_ptr NULL on entry")
if(ctlblk_ptr->magic != H5FD_FAMILY_AIO_CTLBLK_T__MAGIC)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "bad ctlblk magic")
if((ctlblk_ptr->subctlblks == NULL) || (ctlblk_ptr->array_len < 1))
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "subctlblks fields corrupt?")
old_array_len = ctlblk_ptr->array_len;
old_subctlblks = ctlblk_ptr->subctlblks;
for(i = 0; i < old_array_len; i++)
if(old_subctlblks[i].magic != H5FD_FAMILY_AIO_SUBCTLBLK_T__MAGIC )
bad_subctlblk_magic = TRUE;
if(bad_subctlblk_magic)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "bad subctlblk magic(s)")
/* everything looks good. Allocate the new array of sub control blocks */
new_array_len = 2 * old_array_len;
HDassert( new_array_len > 1);
if(NULL == (new_subctlblks = (H5FD_family_aio_subctlblk_t *)
H5MM_malloc(((size_t)new_array_len) * sizeof(H5FD_family_aio_subctlblk_t))))
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed")
/* copy existing data from old_subctlblks to new_sub_cltblks, and
* initialize the remaining new fields.
*/
for(i = 0; i < old_array_len; i++) {
new_subctlblks[i].magic = old_subctlblks[i].magic;
new_subctlblks[i].driver = old_subctlblks[i].driver;
new_subctlblks[i].ctlblk = old_subctlblks[i].ctlblk;
new_subctlblks[i].done = old_subctlblks[i].done;
new_subctlblks[i].finished = old_subctlblks[i].finished;
}
for(i = old_array_len; i < new_array_len; i++) {
new_subctlblks[i].magic = H5FD_FAMILY_AIO_SUBCTLBLK_T__MAGIC;
new_subctlblks[i].driver = NULL;
new_subctlblks[i].ctlblk = NULL;
new_subctlblks[i].done = FALSE;
new_subctlblks[i].finished = FALSE;
}
/* replace the old subctlblks array for the new */
ctlblk_ptr->array_len = new_array_len;
ctlblk_ptr->subctlblks = new_subctlblks;
/* null out the old subctlblks array prior to discarding it */
for(i = 0; i < old_array_len; i++) {
old_subctlblks[i].magic = 0;
old_subctlblks[i].driver = NULL;
old_subctlblks[i].ctlblk = NULL;
old_subctlblks[i].done = FALSE;
old_subctlblks[i].finished = FALSE;
}
/* free the old sub control blocks array */
if(old_array_len == 1)
old_subctlblks = H5FL_FREE(H5FD_family_aio_subctlblk_t, old_subctlblks);
else
old_subctlblks = (H5FD_family_aio_subctlblk_t *)H5MM_xfree(old_subctlblks);
if(old_subctlblks != NULL)
HGOTO_ERROR(H5E_RESOURCE, H5E_CANTFREE, FAIL, "old sub control blocks free failed")
done:
FUNC_LEAVE_NOAPI(ret_value)
} /* H5FD_family_aio_extend_ctlblk() */
/*-------------------------------------------------------------------------
* Function: H5FD_family_aio_read
*
* Purpose: Initiate an asynchronous read from the indicated file of
* the specified number of bytes starting at the specified
* offset and loading the data into the provided buffer.
*
* The buffer must be large enough to contain the requested
* data, and is undefined and must not be read or modified
* until the read completes successfully. Completion is
* determined via either a call to H5FD_family_aio_test() or a
* call to H5FD_family_aio_wait(), and success via a call to
* H5FD_family_aio_finish().
*
* If successful, the H5FD_family_aio_read routine will return
* a pointer to an internal control block in *ctlblk_ptr_ptr.
* This pointer must be used in all subsequent
* H5FD_family_aio_test() / H5FD_family_aio_wait() /
* H5FD_family_aio_finish() calls referring to this request.
*
* Note that a successful return from this function does not
* imply a successful read -- simply that no errors were
* immediately evident.
*
* As the family file driver does no direct file I/O itself,
* it must pass the aio read call through to the appropriate
* file driver. As all calls to the underlying files will be
* make through the public H5FD interface, which will fake
* AIO if it is not supported, this function presumes that
* AIO is supported.
*
* If the call is successful, it returns a pointer to an
* instance of H5FD_sec2_family_discard_ctlblk, loaded
* with the address(s) of the target driver's instance of
* H5FD_t, along with the address(s) of the aio control block(s)
* returned by the driver(s).
*
* Return: Success: SUCCEED
* Failure: FAIL
*
* Programmer: John Mainzer
* 6/12/10
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_aio_read(H5FD_t *file, H5FD_mem_t type, hid_t dxpl_id,
haddr_t addr, size_t size, void *buffer, void **ctlblk_ptr_ptr)
{
herr_t ret_value = SUCCEED; /* Return value */
hbool_t success = FALSE;
unsigned i;
unsigned sub_file_num; /* Local index variable */
hid_t memb_dxpl_id = H5P_DATASET_XFER_DEFAULT;
size_t size_remaining;
size_t subfile_size;
hsize_t temp_subfile_size;
haddr_t addr_of_remainder;
haddr_t subfile_addr;
H5P_genplist_t * plist; /* Property list pointer */
H5FD_family_t * family_file;
void * buffer_remaining;
void * subctlblk_ptr = NULL;
H5FD_family_aio_ctlblk_t * ctlblk_ptr = NULL;
FUNC_ENTER_NOAPI(H5FD_family_aio_read, FAIL)
if((file == NULL) ||
(file->cls == NULL) ||
(addr == HADDR_UNDEF) ||
(size <= 0) ||
(buffer == NULL) ||
(ctlblk_ptr_ptr == NULL) ||
(*ctlblk_ptr_ptr != NULL))
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "bad arg(s) on entry")
family_file = (H5FD_family_t *)file;
/* Get the member data transfer property list. If the transfer property
* list does not belong to this driver then assume defaults
*/
if(NULL == (plist = (H5P_genplist_t *)H5I_object(dxpl_id)))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a file access property list")
if((dxpl_id != H5P_DATASET_XFER_DEFAULT) && (H5P_get_driver(plist) == H5FD_FAMILY)) {
H5FD_family_dxpl_t *dx;
dx = (H5FD_family_dxpl_t *)H5P_get_driver_info(plist);
HDassert( H5P_isa_class(dxpl_id, H5P_DATASET_XFER) == TRUE );
HDassert( dx != NULL );
memb_dxpl_id = dx->memb_dxpl_id;
}
/* allocate the family file AIO control block */
if(H5FD_family_aio_alloc_ctlblk(H5FD_FAMILY_AIO_SUBCTLBLK_INIT_ARRAY_SIZE,
&ctlblk_ptr) != SUCCEED)
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "can't allocate aio control block")
else if((ctlblk_ptr == NULL) || (ctlblk_ptr->magic != H5FD_FAMILY_AIO_CTLBLK_T__MAGIC))
HGOTO_ERROR(H5E_INTERNAL, H5E_SYSTEM, FAIL, "NULL ctlblk_ptr or bad ctlblk magic")
else if(( ctlblk_ptr->array_len < 1) ||
(ctlblk_ptr->num_subctlblks != 0) ||
(ctlblk_ptr->subctlblks == NULL) ||
((ctlblk_ptr->subctlblks)[0].magic != H5FD_FAMILY_AIO_SUBCTLBLK_T__MAGIC))
HGOTO_ERROR(H5E_INTERNAL, H5E_SYSTEM, FAIL, "bad sub control block array")
/* Queue async reads for each member that handles a chunk of the data */
size_remaining = size;
addr_of_remainder = addr;
buffer_remaining = buffer;
while(size_remaining > 0) {
H5_ASSIGN_OVERFLOW(sub_file_num, addr_of_remainder/family_file->memb_size,
hsize_t, unsigned);
subfile_addr = addr_of_remainder % family_file->memb_size;
/* This check is for mainly for IA32 architecture whose size_t's size
* is 4 bytes, to prevent overflow when user application is trying to
* write files bigger than 4GB. */
temp_subfile_size = family_file->memb_size - subfile_addr;
if(temp_subfile_size > SIZET_MAX)
temp_subfile_size = SIZET_MAX;
subfile_size = MIN(size_remaining, (size_t)temp_subfile_size);
HDassert(sub_file_num < family_file->nmembs);
/* check to see if we have a slot in the aio control block
* for this sub file -- if not, extend the control block.
*/
if(ctlblk_ptr->array_len <= ctlblk_ptr->num_subctlblks) {
if(H5FD_family_aio_extend_ctlblk(ctlblk_ptr) != SUCCEED)
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "can't extend aio control block")
else if(ctlblk_ptr->array_len <= ctlblk_ptr->num_subctlblks)
HGOTO_ERROR(H5E_INTERNAL, H5E_SYSTEM, FAIL,
"sub control block array still full?!?")
}
subctlblk_ptr = NULL;
if(H5FDaio_read(family_file->memb[sub_file_num], type, memb_dxpl_id, subfile_addr,
subfile_size, buffer_remaining, &subctlblk_ptr) < 0)
HGOTO_ERROR(H5E_IO, H5E_AIOREADERROR, FAIL, "member file aio read failed")
i = ctlblk_ptr->num_subctlblks;
(ctlblk_ptr->subctlblks[i]).driver = family_file->memb[sub_file_num];
(ctlblk_ptr->subctlblks[i]).ctlblk = subctlblk_ptr;
(ctlblk_ptr->subctlblks[i]).done = FALSE;
(ctlblk_ptr->subctlblks[i]).finished = FALSE;
(ctlblk_ptr->num_subctlblks)++;
HDassert(ctlblk_ptr->num_subctlblks <= ctlblk_ptr->array_len);
addr_of_remainder += subfile_size;
size_remaining -= subfile_size;
buffer_remaining = (void *)(((char *)(buffer_remaining)) + subfile_size );
}
/* pass back the address of the control block */
*ctlblk_ptr_ptr = ctlblk_ptr;
/* make note of success */
success = TRUE;
done:
/* discard the control block if not successful */
if(( ctlblk_ptr != NULL) && (!success)) {
if(H5FD_family_aio_discard_ctlblk(ctlblk_ptr) != SUCCEED)
HDONE_ERROR(H5E_RESOURCE, H5E_CANTFREE, FAIL, "ctlblk de-allocation failed")
ctlblk_ptr = NULL;
}
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5FD_family_aio_read() */
/*-------------------------------------------------------------------------
* Function: H5FD_family_aio_write
*
* Purpose: Initiate an asynchronous write to the indicated file of
* the specified number of bytes from the supplied buffer
* to the indicated location.
*
* The buffer must not be discarded or modified until the
* write completes successfully. Completion is determined
* via either H5FD_family_aio_test() or H5FD_family_aio_wait(),
* and success via H5FD_family_aio_finish().
*
* Note that a successful return from this function does not
* imply a successful read -- simply that no errors were
* immediately evident.
*
* As the family file driver does no direct file I/O itself,
* it must pass the aio write call through to the appropriate
* file driver. As all calls to the underlying files will be
* make through the public H5FD interface, which will fake
* AIO if it is not supported, this function presumes that
* AIO is supported.
*
* If the call is successful, it returns a pointer to an
* instance of H5FD_family_aio_ctlblk_t, loaded
* with the address(s) of the target driver's instances of
* H5FD_t, along with the address(s) of the aio control block(s)
* returned by the driver(s).
*
* Return: Success: SUCCEED
* Failure: FAIL
*
* Programmer: John Mainzer
* 6/12/10
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_aio_write(H5FD_t *file, H5FD_mem_t type, hid_t dxpl_id,
haddr_t addr, size_t size, void *buffer, void **ctlblk_ptr_ptr)
{
herr_t ret_value = SUCCEED; /* Return value */
hbool_t success = FALSE;
unsigned i;
unsigned sub_file_num; /* Local index variable */
hid_t memb_dxpl_id = H5P_DATASET_XFER_DEFAULT;
size_t size_remaining;
size_t subfile_size;
hsize_t temp_subfile_size;
haddr_t addr_of_remainder;
haddr_t subfile_addr;
H5P_genplist_t * plist; /* Property list pointer */
H5FD_family_t * family_file;
void * buffer_remaining;
void * subctlblk_ptr;
H5FD_family_aio_ctlblk_t * ctlblk_ptr = NULL;
FUNC_ENTER_NOAPI(H5FD_family_aio_write, FAIL)
if((file == NULL) ||
(file->cls == NULL) ||
(addr == HADDR_UNDEF) ||
(size <= 0) ||
(buffer == NULL) ||
(ctlblk_ptr_ptr == NULL) ||
(*ctlblk_ptr_ptr != NULL))
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "bad arg(s) on entry")
family_file = (H5FD_family_t *)file;
/* Get the member data transfer property list. If the transfer property
* list does not belong to this driver then assume defaults
*/
if(NULL == (plist = (H5P_genplist_t *)H5I_object(dxpl_id)))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a file access property list")
if((dxpl_id != H5P_DATASET_XFER_DEFAULT) && (H5P_get_driver(plist) == H5FD_FAMILY)) {
H5FD_family_dxpl_t *dx;
dx = (H5FD_family_dxpl_t *)H5P_get_driver_info(plist);
HDassert(H5P_isa_class(dxpl_id, H5P_DATASET_XFER) == TRUE);
HDassert(dx != NULL);
memb_dxpl_id = dx->memb_dxpl_id;
}
/* allocate the family file AIO control block */
if(H5FD_family_aio_alloc_ctlblk(H5FD_FAMILY_AIO_SUBCTLBLK_INIT_ARRAY_SIZE,
&ctlblk_ptr) != SUCCEED)
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "can't allocate aio control block")
else if((ctlblk_ptr == NULL) || (ctlblk_ptr->magic != H5FD_FAMILY_AIO_CTLBLK_T__MAGIC))
HGOTO_ERROR(H5E_INTERNAL, H5E_SYSTEM, FAIL, "NULL ctlblk_ptr or bad ctlblk magic")
else if((ctlblk_ptr->array_len < 1) ||
(ctlblk_ptr->num_subctlblks != 0) ||
(ctlblk_ptr->subctlblks == NULL) ||
((ctlblk_ptr->subctlblks)[0].magic != H5FD_FAMILY_AIO_SUBCTLBLK_T__MAGIC))
HGOTO_ERROR(H5E_INTERNAL, H5E_SYSTEM, FAIL, "bad sub control block array")
/* Queue async writes for each member that handles a chunk of the data */
size_remaining = size;
addr_of_remainder = addr;
buffer_remaining = buffer;
while(size_remaining > 0) {
H5_ASSIGN_OVERFLOW(sub_file_num, addr_of_remainder/family_file->memb_size,
hsize_t, unsigned);
subfile_addr = addr_of_remainder % family_file->memb_size;
/* This check is for mainly for IA32 architecture whose size_t's size
* is 4 bytes, to prevent overflow when user application is trying to
* write files bigger than 4GB. */
temp_subfile_size = family_file->memb_size - subfile_addr;
if(temp_subfile_size > SIZET_MAX)
temp_subfile_size = SIZET_MAX;
subfile_size = MIN(size_remaining, (size_t)temp_subfile_size);
HDassert( sub_file_num < family_file->nmembs );
/* check to see if we have a slot in the aio control block
* for this sub file -- if not, extend the control block.
*/
if(ctlblk_ptr->array_len <= ctlblk_ptr->num_subctlblks) {
if(H5FD_family_aio_extend_ctlblk(ctlblk_ptr) != SUCCEED)
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "can't extend aio control block")
else if(ctlblk_ptr->array_len <= ctlblk_ptr->num_subctlblks)
HGOTO_ERROR(H5E_INTERNAL, H5E_SYSTEM, FAIL,
"sub control block array still full?!?")
}
subctlblk_ptr = NULL;
if(H5FDaio_write(family_file->memb[sub_file_num], type, memb_dxpl_id, subfile_addr,
subfile_size, buffer_remaining, &subctlblk_ptr) < 0)
HGOTO_ERROR(H5E_IO, H5E_AIOWRITEERROR, FAIL, "member file aio write failed")
i = ctlblk_ptr->num_subctlblks;
(ctlblk_ptr->subctlblks[i]).driver = family_file->memb[sub_file_num];
(ctlblk_ptr->subctlblks[i]).ctlblk = subctlblk_ptr;
(ctlblk_ptr->subctlblks[i]).done = FALSE;
(ctlblk_ptr->subctlblks[i]).finished = FALSE;
(ctlblk_ptr->num_subctlblks)++;
HDassert(ctlblk_ptr->num_subctlblks <= ctlblk_ptr->array_len);
addr_of_remainder += subfile_size;
size_remaining -= subfile_size;
buffer_remaining = (void *)(((char *)(buffer_remaining)) + subfile_size);
}
/* pass back the address of the control block */
*ctlblk_ptr_ptr = ctlblk_ptr;
/* make note of success */
success = TRUE;
done:
/* discard the control block if not successful */
if(( ctlblk_ptr != NULL) && (!success)) {
if(H5FD_family_aio_discard_ctlblk(ctlblk_ptr) != SUCCEED)
HDONE_ERROR(H5E_RESOURCE, H5E_CANTFREE, FAIL, "ctlblk de-allocation failed")
ctlblk_ptr = NULL;
}
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5FD_family_aio_write() */
/*-------------------------------------------------------------------------
* Function: H5FD_family_aio_test
*
* Purpose: This function is used to determine if the asynchronous
* operation associated with the supplied control block
* pointer is done. If it is, *done_ptr should be set
* to TRUE, if it isn't, *done_ptr should be set to FALSE.
* In all cases, there function should return immediately.
*
* Note that the return value only reflects errors in the
* process of testing whether the operation is complete.
*
* After the operation is done, a call to
* H5FD_family_aio_finish() must be made to determine whether
* the operation completed successfully and to allow the
* driver to tidy its data structures.
*
* Note that all calls to the underlying files will be
* through the public H5FD interface, which will fake
* AIO if it is not supported. Thus, this function
* presumes that AIO is supported.
*
* However, it is possible that multiple underlying
* files may be involved.
*
* For each underlying file / driver first check the
* control block, and see if that driver is done with
* the operation. If it is, go on to the next file /
* driver pair.
*
* If the file / driver pair is not marked as being
* done, call H5FDaio_test with the target driver. If the
* call fails, fail.
*
* If the call indicates that the aio operation on the
* target file/driver pair is still in progress, set *done_ptr
* to FALSE, and return. Otherwise go onto the next
* file / driver pair and repeat. If all underlying
* file / driver pairs report the operation complete,
* set *done_ptr to TRUE and then return.
*
* Return: Success: Non-negative
* Failure: Negative
*
* Programmer: John Mainzer
* 6/12/10
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_aio_test(hbool_t *done_ptr, void *ctlblk_ptr)
{
herr_t ret_value = SUCCEED; /* Return value */
hbool_t done = TRUE;
hbool_t tgt_done;
hbool_t already_done = TRUE;
unsigned i = 0;
H5FD_family_aio_ctlblk_t * family_ctlblk_ptr;
H5FD_t * tgt_file;
void * subctlblk_ptr;
FUNC_ENTER_NOAPI(H5FD_family_aio_test, FAIL)
if((done_ptr == NULL) || (ctlblk_ptr == NULL))
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "bad arg(s) on entry")
family_ctlblk_ptr = (H5FD_family_aio_ctlblk_t *)ctlblk_ptr;
if(family_ctlblk_ptr->magic != H5FD_FAMILY_AIO_CTLBLK_T__MAGIC)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "bad ctlblk magic")
else if(family_ctlblk_ptr->num_subctlblks < 1)
HGOTO_ERROR(H5E_ARGS, H5E_SYSTEM, FAIL, "empty control block on entry.")
while((done) && (i < family_ctlblk_ptr->num_subctlblks)) {
if((family_ctlblk_ptr->subctlblks[i]).magic != H5FD_FAMILY_AIO_SUBCTLBLK_T__MAGIC)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "bad subctlblk magic")
tgt_file = (family_ctlblk_ptr->subctlblks[i]).driver;
subctlblk_ptr = (family_ctlblk_ptr->subctlblks[i]).ctlblk;
if((tgt_file == NULL) || (subctlblk_ptr == NULL))
HGOTO_ERROR(H5E_ARGS, H5E_SYSTEM, FAIL, "NULL tgt file or sub ctl blk.")
if((family_ctlblk_ptr->subctlblks[i]).finished)
HGOTO_ERROR(H5E_ARGS, H5E_SYSTEM, FAIL, "sub op already finished?!?!")
if(!((family_ctlblk_ptr->subctlblks[i]).done)) {
already_done = FALSE;
tgt_done = FALSE;
if(H5FDaio_test(tgt_file, &tgt_done, subctlblk_ptr) < 0)
HGOTO_ERROR(H5E_VFL, H5E_AIOTESTFAIL, FAIL, "aio test sub-request failed")
if(tgt_done)
(family_ctlblk_ptr->subctlblks[i]).done = TRUE;
else
done = FALSE;
}
i++;
}
if(already_done)
HGOTO_ERROR(H5E_ARGS, H5E_SYSTEM, FAIL, "operation already done?!?!?")
*done_ptr = done;
done:
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5FD_family_aio_test() */
/*-------------------------------------------------------------------------
* Function: H5FD_family_aio_wait
*
* Purpose: Wait until the asynchronous read, write, or fsync operation
* indicated by *ctlblk_ptr has completed (successfully or
* otherwise).
*
* Note that the error code returned refers only to the
* operation of waiting until the read/write/fsync is
* complete -- Success does not imply that the read, write,
* or fsync operation completed successfully, only that
* no error was encountered while waiting for the operation
* to finish.
*
* Note that all calls to the underlying files will be
* through the public H5FD interface, which will fake
* AIO if it is not supported. Thus, this function
* presumes that AIO is supported.
*
* However, it is possible that multiple underlying
* files may be involved.
*
* For each underlying file / driver listed in the control
* block, first check the control block particular to the
* file / driver pair, and then wait until the associated
* operation is done -- if it is not done already.
*
* Return: Success: Non-negative
* Failure: Negative
*
* Programmer: John Mainzer
* 6/12/10
*
* Changes: None.
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_aio_wait(void *ctlblk_ptr)
{
herr_t ret_value = SUCCEED; /* Return value */
hbool_t already_done = TRUE;
unsigned i;
H5FD_family_aio_ctlblk_t * family_ctlblk_ptr;
H5FD_t * tgt_file;
void * subctlblk_ptr;
FUNC_ENTER_NOAPI(H5FD_family_aio_wait, FAIL)
if(ctlblk_ptr == NULL)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "NULL ctlblk_ptr on entry")
family_ctlblk_ptr = (H5FD_family_aio_ctlblk_t *)ctlblk_ptr;
if(family_ctlblk_ptr->magic != H5FD_FAMILY_AIO_CTLBLK_T__MAGIC)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "bad ctlblk magic")
else if(family_ctlblk_ptr->num_subctlblks < 1)
HGOTO_ERROR(H5E_ARGS, H5E_SYSTEM, FAIL, "empty control block on entry.")
i = 0;
while(i < family_ctlblk_ptr->num_subctlblks) {
if((family_ctlblk_ptr->subctlblks[i]).magic != H5FD_FAMILY_AIO_SUBCTLBLK_T__MAGIC)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "bad subctlblk magic")
tgt_file = (family_ctlblk_ptr->subctlblks[i]).driver;
subctlblk_ptr = (family_ctlblk_ptr->subctlblks[i]).ctlblk;
if((tgt_file == NULL) || (subctlblk_ptr == NULL))
HGOTO_ERROR(H5E_ARGS, H5E_SYSTEM, FAIL, "NULL tgt file or sub ctl blk.")
if((family_ctlblk_ptr->subctlblks[i]).finished)
HGOTO_ERROR(H5E_ARGS, H5E_SYSTEM, FAIL, "sub op already finished?!?!")
if(!((family_ctlblk_ptr->subctlblks[i]).done)) {
already_done = FALSE;
if(H5FDaio_wait(tgt_file, subctlblk_ptr) < 0)
HGOTO_ERROR(H5E_VFL, H5E_AIOTESTFAIL, FAIL, "aio wait sub-request failed")
(family_ctlblk_ptr->subctlblks[i]).done = TRUE;
}
i++;
}
if(already_done)
HGOTO_ERROR(H5E_ARGS, H5E_SYSTEM, FAIL, "operation already done?!?!?")
done:
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5FD_family_aio_wait() */
/*-------------------------------------------------------------------------
* Function: H5FD_family_aio_finish
*
* Purpose: Determine whether the read, write, or fsync operation
* indicated by *ctlblk_ptr completed successfully. If it
* did, set *errno_ptr to 0. If if didn't, set *errno_ptr
* to the appropriate error code.
*
* Return SUCCEED if successful, and the appropriate error
* code if not.
*
* Note that the returned error code only refers to the
* success or failure of the finish operation. The caller
* must examine *errno_ptr to determine if the underlying
* asynchronous operation succeeded.
*
* Note that all calls to the underlying files will be
* through the public H5FD interface, which will fake
* AIO if it is not supported. Thus, this function
* presumes that AIO is supported.
*
* However, it is possible that multiple underlying
* files may be involved.
*
* For each underlying file / driver listed in the control
* block, first check the control block particular to the
* file / driver pair and verify that it is listed as being
* done but not finished. Then call the associated aio
* finish function for each file -- set *errno_ptr to 0
* if no errors are detected, and to the last non-zero
* errno reported if any error is reported.
*
* Return: Success: Non-negative
* Failure: Negative
*
* Programmer: John Mainzer
* 6/12/10
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_aio_finish(int *errno_ptr, void *ctlblk_ptr)
{
herr_t ret_value = SUCCEED; /* Return value */
unsigned i;
int error_num = 0;
int sub_errno;
H5FD_family_aio_ctlblk_t * family_ctlblk_ptr;
H5FD_t * tgt_file;
void * subctlblk_ptr;
FUNC_ENTER_NOAPI(H5FD_family_aio_finish, FAIL)
if((errno_ptr == NULL) || (ctlblk_ptr == NULL))
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "bad arg(s) on entry")
family_ctlblk_ptr = (H5FD_family_aio_ctlblk_t *)ctlblk_ptr;
if(family_ctlblk_ptr->magic != H5FD_FAMILY_AIO_CTLBLK_T__MAGIC)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "bad ctlblk magic")
else if(family_ctlblk_ptr->num_subctlblks < 1)
HGOTO_ERROR(H5E_ARGS, H5E_SYSTEM, FAIL, "empty control block on entry.")
/* finish all the sub operations */
i = 0;
while(i < family_ctlblk_ptr->num_subctlblks) {
if((family_ctlblk_ptr->subctlblks[i]).magic != H5FD_FAMILY_AIO_SUBCTLBLK_T__MAGIC)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "bad subctlblk magic")
tgt_file = (family_ctlblk_ptr->subctlblks[i]).driver;
subctlblk_ptr = (family_ctlblk_ptr->subctlblks[i]).ctlblk;
if((tgt_file == NULL) || (subctlblk_ptr == NULL))
HGOTO_ERROR(H5E_ARGS, H5E_SYSTEM, FAIL, "NULL tgt file or sub ctl blk.")
if(!((family_ctlblk_ptr->subctlblks[i]).done))
HGOTO_ERROR(H5E_ARGS, H5E_SYSTEM, FAIL, "sub op not done?!?!")
if((family_ctlblk_ptr->subctlblks[i]).finished)
HGOTO_ERROR(H5E_ARGS, H5E_SYSTEM, FAIL, "sub op already finished?!?!")
sub_errno = 0;
if(H5FDaio_finish(tgt_file, &sub_errno, subctlblk_ptr) < 0)
HGOTO_ERROR(H5E_VFL, H5E_AIOTESTFAIL, FAIL, "aio finish sub-request failed")
if(sub_errno != 0)
error_num = sub_errno;
(family_ctlblk_ptr->subctlblks[i]).finished = TRUE;
i++;
}
/* discard the control block */
if(H5FD_family_aio_discard_ctlblk(family_ctlblk_ptr) < 0)
HGOTO_ERROR(H5E_RESOURCE, H5E_CANTFREE, FAIL, "Attempt to discard control block failed")
*errno_ptr = error_num;
done:
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5FD_family_aio_finish() */
/*-------------------------------------------------------------------------
* Function: H5FD_family_aio_fsync
*
* Purpose: Queue a sync of all asynchronous writes outstanding as of
* the time this function is called. Return zero if no
* errors are encountered, but note that a good error return
* from H5FD_family_aio_fsync() does not imply a successful
* operation, only that no immediate errors were detected.
*
* The sync is not known to be successful until reported
* complete by either H5FD_family_aio_test or
* H5FD_family_aio_wait, and reported successful by
* H5FD_family_aio_finish.
*
* Note that all calls to the underlying files will be
* through the public H5FD interface, which will fake
* AIO if it is not supported. Thus, this function
* presumes that AIO is supported.
*
* To implement the aio_fsync, we must send an aio fsync
* to each of the underlying files, construct a control
* block containing pointers to all the sub control block
* returned, and return the constructed control block
* to the users.
*
* To do this, first allocate a control block with sufficient
* space to contain references to all underlying files.
*
* Then, pass the aio_fsync to each underlying file,
* recording the pointer to the associated instance of
* H5FD_t and the returned aio control block for each
* underlying file in the family file aio control block.
*
* If all calls complete without error, return the
* address of the control block in *ctlblk_ptr_ptr.
*
* If any errors are detected, simply fail.
*
* Return: Success: Non-negative
* Failure: Negative
*
* Programmer: John Mainzer
* 6/12/10
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_aio_fsync(H5FD_t *file, void **ctlblk_ptr_ptr)
{
herr_t ret_value = SUCCEED; /* Return value */
hbool_t success = FALSE;
unsigned int i;
unsigned int num_sub_files;
H5FD_family_t * family_file;
H5FD_t * tgt_file;
H5FD_family_aio_ctlblk_t * ctlblk_ptr = NULL;
void * subctlblk_ptr;
FUNC_ENTER_NOAPI(H5FD_family_aio_fsync, FAIL)
if((file == NULL) ||
(file->cls == NULL) ||
(ctlblk_ptr_ptr == NULL) ||
(*ctlblk_ptr_ptr != NULL))
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "bad arg(s) on entry")
family_file = (H5FD_family_t *)file;
num_sub_files = family_file->nmembs;
/* allocate an aio control block large enough to contain refereces to
* all the members of the family file.
*/
if(H5FD_family_aio_alloc_ctlblk(num_sub_files, &ctlblk_ptr) != SUCCEED)
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "can't allocate aio control block")
else if((ctlblk_ptr == NULL) || (ctlblk_ptr->magic != H5FD_FAMILY_AIO_CTLBLK_T__MAGIC))
HGOTO_ERROR(H5E_INTERNAL, H5E_SYSTEM, FAIL, "NULL ctlblk_ptr or bad ctlblk magic")
else if((ctlblk_ptr->array_len != num_sub_files) ||
(ctlblk_ptr->num_subctlblks != 0) ||
(ctlblk_ptr->subctlblks == NULL) ||
((ctlblk_ptr->subctlblks)[0].magic != H5FD_FAMILY_AIO_SUBCTLBLK_T__MAGIC))
HGOTO_ERROR(H5E_INTERNAL, H5E_SYSTEM, FAIL, "bad sub control block array")
for(i = 0; i < num_sub_files; i++) {
if((ctlblk_ptr->subctlblks[i]).magic != H5FD_FAMILY_AIO_SUBCTLBLK_T__MAGIC)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "bad subctlblk magic")
tgt_file = family_file->memb[i];
subctlblk_ptr = NULL;
if(H5FDaio_fsync(tgt_file, &subctlblk_ptr) < 0)
HGOTO_ERROR(H5E_VFL, H5E_AIOSYNCFAIL, FAIL, "sub aio fsync request failed.")
(ctlblk_ptr->subctlblks[i]).driver = tgt_file;
(ctlblk_ptr->subctlblks[i]).ctlblk = subctlblk_ptr;
(ctlblk_ptr->subctlblks[i]).done = FALSE;
(ctlblk_ptr->subctlblks[i]).finished = FALSE;
(ctlblk_ptr->num_subctlblks)++;
HDassert( ctlblk_ptr->num_subctlblks <= ctlblk_ptr->array_len );
}
HDassert(ctlblk_ptr->num_subctlblks == ctlblk_ptr->array_len);
*ctlblk_ptr_ptr = (void *)ctlblk_ptr;
success = TRUE;
done:
/* discard the control block if not successful */
if((ctlblk_ptr != NULL) && (!success)) {
if(H5FD_family_aio_discard_ctlblk(ctlblk_ptr) != SUCCEED)
HDONE_ERROR(H5E_RESOURCE, H5E_CANTFREE, FAIL, "ctlblk de-allocation failed")
ctlblk_ptr = NULL;
}
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5FD_family_aio_fsync() */
/*-------------------------------------------------------------------------
* Function: H5FD_fmily_aio_cancel
*
* Purpose: Attempt to cancel the asynchronous operation associated
* with the control block pointed to by ctlblk_ptr.
*
* Note that this operation may have completed, but it is
* an error if H5FD_family_aio_finish() has been called on
* it.
*
* As part of the cancel, free the associated control blocks.
*
* Return SUCCEED if successful, and the appropriate error
* code otherwise.
*
* Note that all calls to the underlying files will be
* through the public H5FD interface, which will fake
* AIO if it is not supported. Thus, this function
* presumes that AIO is supported.
*
* However, it is possible that multiple underlying
* files may be involved.
*
* For each underlying file / driver listed in the control
* block, first check the control block particular to the
* file / driver pair and verify that it is not listed as
* being finished. Then call the associated aio cancel
* function for each file.
*
* Return: Success: Non-negative
* Failure: Negative
*
* Programmer: John Mainzer
* 6/12/10
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_aio_cancel(void *ctlblk_ptr)
{
herr_t ret_value = SUCCEED; /* Return value */
unsigned i;
H5FD_family_aio_ctlblk_t * family_ctlblk_ptr;
H5FD_t * tgt_file;
void * subctlblk_ptr;
FUNC_ENTER_NOAPI(H5FD_family_aio_cancel, FAIL)
if(ctlblk_ptr == NULL)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "NULL ctlblk_ptr on entry")
family_ctlblk_ptr = (H5FD_family_aio_ctlblk_t *)ctlblk_ptr;
if(family_ctlblk_ptr->magic != H5FD_FAMILY_AIO_CTLBLK_T__MAGIC)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "bad ctlblk magic")
else if(family_ctlblk_ptr->num_subctlblks < 1)
HGOTO_ERROR(H5E_ARGS, H5E_SYSTEM, FAIL, "empty control block on entry.")
i = 0;
while(i < family_ctlblk_ptr->num_subctlblks) {
if((family_ctlblk_ptr->subctlblks[i]).magic != H5FD_FAMILY_AIO_SUBCTLBLK_T__MAGIC)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "bad subctlblk magic")
tgt_file = (family_ctlblk_ptr->subctlblks[i]).driver;
subctlblk_ptr = (family_ctlblk_ptr->subctlblks[i]).ctlblk;
if((tgt_file == NULL) || (subctlblk_ptr == NULL))
HGOTO_ERROR(H5E_ARGS, H5E_SYSTEM, FAIL, "NULL tgt file or sub ctl blk.")
if((family_ctlblk_ptr->subctlblks[i]).finished)
HGOTO_ERROR(H5E_ARGS, H5E_SYSTEM, FAIL, "sub op already finished?!?!")
if(H5FDaio_cancel(tgt_file, subctlblk_ptr) < 0)
HGOTO_ERROR(H5E_VFL, H5E_AIOTESTFAIL, FAIL, "aio cance sub-request failed")
(family_ctlblk_ptr->subctlblks[i]).driver = NULL;
(family_ctlblk_ptr->subctlblks[i]).ctlblk = NULL;
(family_ctlblk_ptr->subctlblks[i]).done = FALSE;
(family_ctlblk_ptr->subctlblks[i]).finished = FALSE;
i++;
}
/* discard the control block */
if(H5FD_family_aio_discard_ctlblk(family_ctlblk_ptr) < 0)
HGOTO_ERROR(H5E_RESOURCE, H5E_CANTFREE, FAIL,
"Attempt to discard control block failed")
done:
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5FD_family_aio_cancel() */
#endif /* H5_HAVE_AIO */
/*-------------------------------------------------------------------------
* Function: H5FD_family_fsync
*
* Purpose: Sync out all underlying files.
*
* Return: Success: Non-negative
* Failure: Negative
*
* Programmer: John Mainzer
* 6/12/10
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_fsync(H5FD_t *file, hid_t dxpl_id)
{
herr_t ret_value = SUCCEED; /* Return value */
unsigned int i;
unsigned int num_sub_files;
H5FD_family_t * family_file;
H5FD_t * tgt_file;
FUNC_ENTER_NOAPI(H5FD_family_fsync, FAIL)
if(file == NULL)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "bad arg(s) on entry")
family_file = (H5FD_family_t *)file;
num_sub_files = family_file->nmembs;
for(i = 0; i < num_sub_files; i++ ) {
tgt_file = family_file->memb[i];
if(tgt_file == NULL)
HGOTO_ERROR(H5E_ARGS, H5E_SYSTEM, FAIL, "NULL tgt file.")
else if (tgt_file->cls == NULL)
HGOTO_ERROR(H5E_ARGS, H5E_SYSTEM, FAIL, "NULL tgt_file->cls.")
if(H5FDfsync(tgt_file, dxpl_id) < 0)
HGOTO_ERROR(H5E_VFL, H5E_SYNCFAIL, FAIL, "family sub fsync request failed.")
}
done:
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5FD_family_fsync() */
/*-------------------------------------------------------------------------
* Function: H5FD_family_get_stats
*
* Purpose: Obtain stats from all underlying files, construct
* aggregate stats if possible, and return them in *stats_ptr.
*
* If any errors are detected, simply fail.
*
* Return: Success: Non-negative
* Failure: Negative
*
* Programmer: John Mainzer
* 3/30/11
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_get_stats(H5FD_t *file, H5FD_stats_t *stats_ptr)
{
herr_t ret_value = SUCCEED; /* Return value */
hbool_t defined = FALSE;
unsigned int i;
unsigned int num_sub_files;
H5FD_family_t * family_file;
H5FD_t * tgt_file;
H5FD_stats_t subfile_stats;
FUNC_ENTER_NOAPI(H5FD_family_get_stats, FAIL)
if((file == NULL) ||
(file->cls == NULL) ||
(stats_ptr == NULL) ||
(stats_ptr->magic != H5FD__H5FD_STATS_T_MAGIC))
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "bad arg(s) on entry")
if(H5FD_initialize_stats(stats_ptr) < 0)
HGOTO_ERROR(H5E_INTERNAL, H5E_SYSTEM, FAIL, "H5FD_initialize_stats(1) failed.")
family_file = (H5FD_family_t *)file;
num_sub_files = family_file->nmembs;
for(i = 0; i < num_sub_files; i++) {
subfile_stats.magic = H5FD__H5FD_STATS_T_MAGIC;
if(H5FD_initialize_stats(&subfile_stats) < 0)
HGOTO_ERROR(H5E_ARGS, H5E_SYSTEM, FAIL, "H5FD_initialize_stats(1) failed.")
tgt_file = family_file->memb[i];
if(H5FD_get_stats(tgt_file, &subfile_stats) < 0)
HGOTO_ERROR(H5E_INTERNAL, H5E_SYSTEM, FAIL, "H5FD_get_stats() failed")
if ( subfile_stats.defined )
defined = TRUE;
if ( H5FD_aggregate_stats(stats_ptr,&subfile_stats)<0)
HGOTO_ERROR(H5E_INTERNAL, H5E_SYSTEM, FAIL, "H5FD_aggregate_stats() failed")
}
stats_ptr->defined = defined;
done:
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5FD_family_get_stats() */
/*-------------------------------------------------------------------------
* Function: H5FD_family_reset_stats
*
* Purpose: Reset the stats of all the underlying files.
*
* If any errors are detected, simply fail.
*
* Return: Success: Non-negative
* Failure: Negative
*
* Programmer: John Mainzer
* 3/30/11
*
*-------------------------------------------------------------------------
*/
static herr_t
H5FD_family_reset_stats(H5FD_t *file)
{
herr_t ret_value = SUCCEED; /* Return value */
unsigned int i;
unsigned int num_sub_files;
H5FD_family_t * family_file;
H5FD_t * tgt_file;
FUNC_ENTER_NOAPI(H5FD_family_reset_stats, FAIL)
if((file == NULL) || (file->cls == NULL))
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "bad arg(s) on entry")
family_file = (H5FD_family_t *)file;
num_sub_files = family_file->nmembs;
for(i = 0; i < num_sub_files; i++) {
tgt_file = family_file->memb[i];
if(H5FD_reset_stats(tgt_file) < 0)
HGOTO_ERROR(H5E_INTERNAL, H5E_SYSTEM, FAIL, "H5FD_reset_stats() failed")
}
done:
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5FD_family_reset_stats() */
|