File: HDF5CompoundMemberMapping.java

package info (click to toggle)
libsis-jhdf5-java 19.04.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 8,668 kB
  • sloc: java: 79,644; ansic: 18,986; sh: 309; makefile: 49; xml: 12
file content (1494 lines) | stat: -rw-r--r-- 60,009 bytes parent folder | download | duplicates (2)
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
/*
 * Copyright 2007 - 2018 ETH Zuerich, CISD and SIS.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package ch.systemsx.cisd.hdf5;

import java.lang.reflect.Array;
import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.BitSet;
import java.util.Collection;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.IdentityHashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;

import hdf.hdf5lib.exceptions.HDF5JavaException;

import org.apache.commons.lang3.StringUtils;

import ch.systemsx.cisd.base.exceptions.CheckedExceptionTunnel;
import ch.systemsx.cisd.base.mdarray.MDAbstractArray;

/**
 * A class that maps a Java field to a member of a HDF5 compound data type.
 * <p>
 * Example on how to use:
 * 
 * <pre>
 * static class Record
 *     {
 *         int i;
 * 
 *         String s;
 * 
 *         HDF5EnumerationValue e;
 * 
 *         Record(int i, String s, HDF5EnumerationValue e)
 *         {
 *             this.i = i;
 *             this.e = e;
 *             this.s = s;
 *         }
 * 
 *         Record()
 *         {
 *         }
 * 
 *         static HDF5CompoundType&lt;Record&gt; getHDF5Type(HDF5Reader reader)
 *         {
 *             final HDF5EnumerationType enumType = reader.getEnumType(&quot;someEnumType&quot;, new String[]
 *                 { &quot;1&quot;, &quot;Two&quot;, &quot;THREE&quot; });
 *             return reader.getCompoundType(Record.class, mapping(&quot;i&quot;), 
 *                      mapping(&quot;s&quot;, 20), mapping(&quot;e&quot;, enumType));
 *         }
 * 
 *     }
 *         
 *     ...
 *         
 *     final HDF5Writer writer = new HDF5Writer(new File(&quot;test.h5&quot;).open();
 *     final HDF5CompoundType&lt;Record&gt; compoundType = Record.getHDF5Type(writer);
 *     final HDF5EnumerationType enumType = writer.getEnumType(&quot;someEnumType&quot;);
 *     Record[] array =
 *             new Record[]
 *                 {
 *                         new Record(1, &quot;some text&quot;,
 *                                 new HDF5EnumerationValue(enumType, &quot;THREE&quot;)),
 *                         new Record(2, &quot;some note&quot;,
 *                                 new HDF5EnumerationValue(enumType, &quot;1&quot;)), };
 *     writer.writeCompound(&quot;/testCompound&quot;, compoundType, recordWritten);
 *     writer.close();
 * </pre>
 * 
 * A simpler form is to let JHDF5 infer the mapping between fields in the Java object and members of
 * the compound data type, see {@link #inferMapping(Class)} and {@link #inferMapping(Class, Map)}
 * 
 * @author Bernd Rinn
 */
public final class HDF5CompoundMemberMapping
{
    private final String memberName;

    private final long storageDataTypeId;

    private final Field fieldOrNull;

    private String fieldName;

    private Class<?> memberClassOrNull;

    private String enumTypeNameOrNull;

    private int memberTypeLength;

    private boolean unsigned;

    private boolean variableLength;

    private boolean reference;

    private int[] memberTypeDimensions;

    private HDF5EnumerationType enumTypeOrNull;

    private HDF5DataTypeVariant typeVariantOrNull;

    private HDF5CompoundMappingHints hintsOrNull;

    /**
     * Adds a member mapping for <var>memberName</var>.
     * 
     * @param memberName The name of the member in the compound type. field in the Java class. Will
     *            also be used to find the name of the field in the Java class if not overridden by
     *            {@link #fieldName(String)}.
     */
    public static HDF5CompoundMemberMapping mapping(String memberName)
    {
        return new HDF5CompoundMemberMapping(memberName);
    }

    /**
     * Adds a member mapping for <var>fieldName</var>.
     * 
     * @param fieldName The name of the field in the Java class.
     * @param memberName The name of the member in the compound type.
     * @param memberClass The class of the member. Only used if the compound pojo class is a map.
     *            For restrictions on the type, see above.
     * @param memberDimensions The dimensions of the compound type (i.e. length of the String or
     *            dimensions of the array).
     * @param storageDataTypeId The storage data type id of the member, if known, or -1 else
     * @param unsigned If <code>true</code>, map to an unsigned integer type.
     * @param variableLength if <code>true</code>, map to a variable-length string type.
     * @param reference if <code>true</code>, map to a reference type.
     * @param typeVariantOrNull The data type variant of this mapping or <code>null</code>
     */
    static HDF5CompoundMemberMapping mappingArrayWithStorageId(String fieldName, String memberName,
            Class<?> memberClass, int[] memberDimensions, long storageDataTypeId, boolean unsigned,
            boolean variableLength, boolean reference, HDF5DataTypeVariant typeVariantOrNull)
    {
        return new HDF5CompoundMemberMapping(fieldName, null, memberClass, memberName, null, null,
                memberDimensions, storageDataTypeId, unsigned, variableLength, reference,
                typeVariantOrNull);
    }

    /**
     * Adds a member mapping for <var>fieldName</var>. Only suitable for Enumeration arrays.
     * 
     * @param fieldName The name of the field in the Java class.
     * @param memberName The name of the member in the compound type.
     * @param enumType The enumeration type in the HDF5 file.
     * @param memberTypeDimensions The dimensions of the array in the compound type.
     * @param storageTypeId the id of the storage type of this member.
     * @param typeVariantOrNull The data type variant of this mapping or <code>null</code>
     */
    static HDF5CompoundMemberMapping mappingWithStorageTypeId(String fieldName, String memberName,
            HDF5EnumerationType enumType, int[] memberTypeDimensions, long storageTypeId,
            HDF5DataTypeVariant typeVariantOrNull)
    {
        assert enumType != null;
        return new HDF5CompoundMemberMapping(fieldName, null, HDF5EnumerationValueArray.class,
                memberName, enumType, null, memberTypeDimensions, storageTypeId, false, false,
                false, typeVariantOrNull);
    }

    /**
     * Returns the inferred compound member mapping for the given <var>pojoClass</var>. This method
     * honors the annotations {@link CompoundType} and {@link CompoundElement}.
     * <p>
     * <em>Note 1:</em> All fields that correspond to members with a variable length (e.g. Strings,
     * primitive arrays and matrices and objects of type <code>MDXXXArray</code>) need to be
     * annotated with {@link CompoundElement} specifying their dimensions using
     * {@link CompoundElement#dimensions()}. .
     * <p>
     * <em>Note 2:</em> <var>pojoClass</var> containing HDF5 enumerations cannot have their mapping
     * inferred as the HDF5 enumeration type needs to be explicitly specified in the mapping.
     * <p>
     * <em>Example 1:</em>
     * 
     * <pre>
     * class Record1
     * {
     *     &#064;CompoundElement(dimension = 10)
     *     String s;
     * 
     *     float f;
     * }
     * </pre>
     * 
     * will lead to:
     * 
     * <pre>
     * inferMapping(Record1.class) -> { mapping("s", 10), mapping("f") }
     * </pre>
     * 
     * <em>Example 2:</em>
     * 
     * <pre>
     * &#064;CompoundType(mapAllFields = false)
     * class Record2
     * {
     *     &#064;CompoundElement(memberName = &quot;someString&quot;, dimension = 10)
     *     String s;
     * 
     *     float f;
     * }
     * </pre>
     * 
     * will lead to:
     * 
     * <pre>
     * inferMapping(Record2.class) -> { mapping("s", "someString", 10) }
     * </pre>
     */
    public static HDF5CompoundMemberMapping[] inferMapping(final Class<?> pojoClass)
    {
        return inferMapping(pojoClass, (HDF5CompoundMappingHints) null);
    }

    /**
     * Returns the inferred compound member mapping for the given <var>pojoClass</var>. This method
     * honors the annotations {@link CompoundType} and {@link CompoundElement}.
     * <p>
     * <em>Note 1:</em> All fields that correspond to members with a dimension (e.g. Strings,
     * primitive arrays and matrices and objects of type <code>MDXXXArray</code>) need to be
     * annotated with {@link CompoundElement} specifying their dimensions using
     * {@link CompoundElement#dimensions()}. Strings can alternatively also be annotated as
     * <code>CompoundElement.variableLength = true</code>.
     * <p>
     * <em>Note 2:</em> <var>pojoClass</var> containing HDF5 enumerations need to have their
     * {@link HDF5EnumerationType} specified in the <var>fieldNameToEnumTypeMapOrNull</var>. You may
     * use {@link #inferEnumerationTypeMap(Object, IHDF5EnumTypeRetriever)} to create
     * <var>fieldNameToEnumTypeMapOrNull</var>.
     * <p>
     * <em>Example 1:</em>
     * 
     * <pre>
     * class Record1
     * {
     *     &#064;CompoundElement(dimension = 10)
     *     String s;
     * 
     *     float f;
     * }
     * </pre>
     * 
     * will lead to:
     * 
     * <pre>
     * inferMapping(Record1.class) -> { mapping("s", 10), mapping("f") }
     * </pre>
     * 
     * <em>Example 2:</em>
     * 
     * <pre>
     * &#064;CompoundType(mapAllFields = false)
     * class Record2
     * {
     *     &#064;CompoundElement(memberName = &quot;someString&quot;, dimension = 10)
     *     String s;
     * 
     *     float f;
     * }
     * </pre>
     * 
     * will lead to:
     * 
     * <pre>
     * inferMapping(Record2.class) -> { mapping("s", "someString", 10) }
     * </pre>
     */
    public static HDF5CompoundMemberMapping[] inferMapping(final Class<?> pojoClass,
            final Map<String, HDF5EnumerationType> fieldNameToEnumTypeMapOrNull)
    {
        return inferMapping(pojoClass,
                new HDF5CompoundMappingHints().enumTypeMapping(fieldNameToEnumTypeMapOrNull));
    }

    /**
     * Returns the inferred compound member mapping for the given <var>pojoClass</var>. This method
     * honors the annotations {@link CompoundType} and {@link CompoundElement}.
     * <p>
     * <em>Note 1:</em> All fields that correspond to members with a dimension (e.g. Strings,
     * primitive arrays and matrices and objects of type <code>MDXXXArray</code>) need to be
     * annotated with {@link CompoundElement} specifying their dimensions using
     * {@link CompoundElement#dimensions()}. Strings can alternatively also be annotated as
     * <code>CompoundElement.variableLength = true</code>.
     * <p>
     * <em>Note 2:</em> <var>pojoClass</var> containing HDF5 enumerations need to have their
     * {@link HDF5EnumerationType} specified in the <var>fieldNameToEnumTypeMapOrNull</var>. You may
     * use {@link #inferEnumerationTypeMap(Object, IHDF5EnumTypeRetriever)} to create
     * <var>fieldNameToEnumTypeMapOrNull</var>.
     * <p>
     * <em>Example 1:</em>
     * 
     * <pre>
     * class Record1
     * {
     *     &#064;CompoundElement(dimension = 10)
     *     String s;
     * 
     *     float f;
     * }
     * </pre>
     * 
     * will lead to:
     * 
     * <pre>
     * inferMapping(Record1.class) -> { mapping("s", 10), mapping("f") }
     * </pre>
     * 
     * <em>Example 2:</em>
     * 
     * <pre>
     * &#064;CompoundType(mapAllFields = false)
     * class Record2
     * {
     *     &#064;CompoundElement(memberName = &quot;someString&quot;, dimension = 10)
     *     String s;
     * 
     *     float f;
     * }
     * </pre>
     * 
     * will lead to:
     * 
     * <pre>
     * inferMapping(Record2.class) -> { mapping("s", "someString", 10) }
     * </pre>
     */
    public static HDF5CompoundMemberMapping[] inferMapping(final Class<?> pojoClass,
            final HDF5CompoundMappingHints hintsOrNull)
    {
        final List<HDF5CompoundMemberMapping> result =
                new ArrayList<HDF5CompoundMemberMapping>(pojoClass.getDeclaredFields().length);
        final CompoundType ct = pojoClass.getAnnotation(CompoundType.class);
        final boolean includeAllFields = (ct != null) ? ct.mapAllFields() : true;
        for (Class<?> c = pojoClass; c != null; c = c.getSuperclass())
        {
            for (Field f : c.getDeclaredFields())
            {
                final HDF5EnumerationType enumTypeOrNull =
                        (hintsOrNull != null) ? hintsOrNull.tryGetEnumType(f.getName()) : null;
                final CompoundElement e = f.getAnnotation(CompoundElement.class);
                if (e != null)
                {
                    result.add(new HDF5CompoundMemberMapping(f.getName(), f, f.getType(),
                            StringUtils.defaultIfEmpty(e.memberName(), f.getName()),
                            enumTypeOrNull, e.typeName(), e.dimensions(), e.unsigned(), e
                                    .variableLength(), e.reference(), HDF5DataTypeVariant
                                    .unmaskNone(e.typeVariant())));
                } else if (includeAllFields)
                {
                    final boolean variableLength =
                            (hintsOrNull == null) ? false : hintsOrNull
                                    .isUseVariableLengthStrings();
                    result.add(new HDF5CompoundMemberMapping(f.getName(), f, f.getType(), f
                            .getName(), enumTypeOrNull, null, new int[0], false, variableLength,
                            false, null));
                }
            }
        }
        return result.toArray(new HDF5CompoundMemberMapping[result.size()]);
    }

    /**
     * @see #inferMapping(Class, Map) <p>
     *      This method is using <var>pojo</var> to infer length and dimension information.
     */
    public static HDF5CompoundMemberMapping[] inferMapping(final Object pojo,
            final Map<String, HDF5EnumerationType> fieldNameToEnumTypeMapOrNull)
    {
        return inferMapping(pojo, fieldNameToEnumTypeMapOrNull, false);
    }

    /**
     * This method is using <var>pojo</var> to infer length and dimension information.
     * 
     * @param pojo The popo to infer member names, length and dimension information from.
     * @param fieldNameToEnumTypeMapOrNull The map to get member name to enumeration type mapping
     *            from.
     * @param useVariableLengthStringTypes If <code>true</code>, use variable-length string types
     *            for all strings in the <var>pojo</var> template.
     * @see #inferMapping(Class, Map) <p>
     */
    public static HDF5CompoundMemberMapping[] inferMapping(final Object pojo,
            final Map<String, HDF5EnumerationType> fieldNameToEnumTypeMapOrNull,
            final boolean useVariableLengthStringTypes)
    {
        final HDF5CompoundMemberMapping[] result =
                inferMapping(pojo.getClass(), fieldNameToEnumTypeMapOrNull);
        for (HDF5CompoundMemberMapping m : result)
        {
            try
            {
                final Class<?> memberClass = m.tryGetMemberClass();
                if (m.getMemberTypeDimensions().length == 0)
                {
                    if (memberClass == String.class)
                    {
                        ReflectionUtils.ensureAccessible(m.fieldOrNull);
                        if (useVariableLengthStringTypes)
                        {
                            m.variableLength(true);
                        } else
                        {
                            final String value = (String) (m.fieldOrNull.get(pojo));
                            m.length(value != null ? value.length() : 0);
                        }
                    } else if (memberClass.isArray())
                    {
                        if (memberClass.isArray())
                        {
                            ReflectionUtils.ensureAccessible(m.fieldOrNull);
                            final Object o = m.fieldOrNull.get(pojo);
                            final int dimX = Array.getLength(o);
                            if (memberClass.getComponentType().isArray() == false)
                            {
                                m.length(dimX);
                            } else if (dimX > 0)
                            {
                                final Object firstElement = Array.get(o, 0);
                                if (firstElement != null)
                                {
                                    final int dimY = Array.getLength(firstElement);
                                    m.dimensions(new int[]
                                        { dimX, dimY });
                                }
                            }
                        }
                    } else if (MDAbstractArray.class.isAssignableFrom(memberClass))
                    {
                        ReflectionUtils.ensureAccessible(m.fieldOrNull);
                        final Object o = m.fieldOrNull.get(pojo);
                        m.dimensions(((MDAbstractArray<?>) o).dimensions());
                    }
                }
            } catch (IllegalAccessException ex)
            {
                throw CheckedExceptionTunnel.wrapIfNecessary(ex);
            }
        }
        return result;
    }

    /**
     * This method is using <var>pojo</var> to infer length and dimension information.
     * 
     * @param pojo The popo arrau to infer member names, length and dimension information from.
     * @param fieldNameToEnumTypeMapOrNull The map to get member name to enumeration type mapping
     *            from.
     * @see #inferMapping(Class, Map) <p>
     */
    public static HDF5CompoundMemberMapping[] inferMapping(final Object[] pojo,
            final Map<String, HDF5EnumerationType> fieldNameToEnumTypeMapOrNull)
    {
        return inferMapping(pojo, fieldNameToEnumTypeMapOrNull);
    }

    /**
     * This method is using <var>pojo</var> to infer length and dimension information.
     * 
     * @param pojo The popo arrau to infer member names, length and dimension information from.
     * @param fieldNameToEnumTypeMapOrNull The map to get member name to enumeration type mapping
     *            from.
     * @param useVariableLengthStringTypes If <code>true</code>, use variable-length string types
     *            for all strings in the <var>pojo</var> template.
     * @see #inferMapping(Class, Map) <p>
     */
    public static HDF5CompoundMemberMapping[] inferMapping(final Object[] pojo,
            final Map<String, HDF5EnumerationType> fieldNameToEnumTypeMapOrNull,
            final boolean useVariableLengthStringTypes)
    {
        final HDF5CompoundMemberMapping[] result =
                inferMapping(pojo.getClass().getComponentType(), fieldNameToEnumTypeMapOrNull);
        for (HDF5CompoundMemberMapping m : result)
        {
            try
            {
                final Class<?> memberClass = m.tryGetMemberClass();
                if (m.getMemberTypeDimensions().length == 0)
                {
                    if (memberClass == String.class)
                    {
                        ReflectionUtils.ensureAccessible(m.fieldOrNull);
                        if (useVariableLengthStringTypes)
                        {
                            m.variableLength(true);
                        } else
                        {
                            int maxLen = 0;
                            for (int i = 0; i < pojo.length; ++i)
                            {
                                maxLen =
                                        Math.max(maxLen,
                                                ((String) (m.fieldOrNull.get(pojo[i]))).length());
                            }
                            m.length(maxLen);
                        }
                    } else if (memberClass.isArray())
                    {
                        if (memberClass.isArray() && pojo.length > 0)
                        {
                            ReflectionUtils.ensureAccessible(m.fieldOrNull);
                            final Object o = m.fieldOrNull.get(pojo[0]);
                            final int dimX = Array.getLength(o);
                            if (memberClass.getComponentType().isArray() == false)
                            {
                                m.length(dimX);
                            } else if (dimX > 0)
                            {
                                final Object firstElement = Array.get(o, 0);
                                if (firstElement != null)
                                {
                                    final int dimY = Array.getLength(firstElement);
                                    m.dimensions(new int[]
                                        { dimX, dimY });
                                }
                            }
                        }
                    } else if (MDAbstractArray.class.isAssignableFrom(memberClass)
                            && pojo.length > 0)
                    {
                        ReflectionUtils.ensureAccessible(m.fieldOrNull);
                        final Object o = m.fieldOrNull.get(pojo[0]);
                        m.dimensions(((MDAbstractArray<?>) o).dimensions());
                    }
                }
            } catch (IllegalAccessException ex)
            {
                throw CheckedExceptionTunnel.wrapIfNecessary(ex);
            }
        }
        return result;
    }

    /**
     * Adds the given <var>hintsOrNull</var> to all <var>mapping</var>.
     * 
     * @return <var>mapping</var>.
     */
    public static HDF5CompoundMemberMapping[] addHints(HDF5CompoundMemberMapping[] mapping,
            HDF5CompoundMappingHints hintsOrNull)
    {
        if (hintsOrNull != null)
        {
            for (HDF5CompoundMemberMapping m : mapping)
            {
                m.hints(hintsOrNull);
            }
        }
        return mapping;
    }

    /**
     * Returns the inferred compound member mapping for the given <var>compoundMap</var>. All
     * entries that correspond to members with length or dimension information take this information
     * from the values supplied.
     * <p>
     * <em>Example:</em>
     * 
     * <pre>
     * Map&lt;String, Object&gt; mw = new HashMap&lt;String, Object&gt;();
     * mw.put(&quot;date&quot;, new Date());
     * mw.put(&quot;temperatureInDegreeCelsius&quot;, 19.5f);
     * mw.put(&quot;voltagesInMilliVolts&quot;, new double[][] { 1, 2, 3 }, { 4, 5, 6 } });
     * </pre>
     * 
     * will lead to:
     * 
     * <pre>
     * inferMapping(mw) -> { mapping("date").memberClass(Date.class), 
     *                       mapping("temperatureInDegreeCelsius").memberClass(float.class), 
     *                       mapping("voltagesInMilliVolts").memberClass(double[][].class).dimensions(new int[] { 3, 3 } }
     * </pre>
     */
    public static HDF5CompoundMemberMapping[] inferMapping(final Map<String, Object> compoundMap)
    {
        return inferMapping(compoundMap, (HDF5CompoundMappingHints) null);
    }

    /**
     * Returns the inferred compound member mapping for the given <var>compoundMap</var>. All
     * entries that correspond to members with length or dimension information take this information
     * from the values supplied.
     * <p>
     * <em>Example:</em>
     * 
     * <pre>
     * Map&lt;String, Object&gt; mw = new HashMap&lt;String, Object&gt;();
     * mw.put(&quot;date&quot;, new Date());
     * mw.put(&quot;temperatureInDegreeCelsius&quot;, 19.5f);
     * mw.put(&quot;voltagesInMilliVolts&quot;, new double[][] { 1, 2, 3 }, { 4, 5, 6 } });
     * </pre>
     * 
     * will lead to:
     * 
     * <pre>
     * inferMapping(mw) -> { mapping("date").memberClass(Date.class), 
     *                       mapping("temperatureInDegreeCelsius").memberClass(float.class), 
     *                       mapping("voltagesInMilliVolts").memberClass(double[][].class).dimensions(new int[] { 3, 3 } }
     * </pre>
     */
    public static HDF5CompoundMemberMapping[] inferMapping(final Map<String, Object> compoundMap,
            final HDF5CompoundMappingHints hintsOrNull)
    {
        final List<HDF5CompoundMemberMapping> result =
                inferMapping(compoundMap.size(), compoundMap.entrySet(), hintsOrNull);
        Collections.sort(result, new Comparator<HDF5CompoundMemberMapping>()
            {
                @Override
                public int compare(HDF5CompoundMemberMapping o1, HDF5CompoundMemberMapping o2)
                {
                    return o1.memberName.compareTo(o2.memberName);
                }
            });
        return result.toArray(new HDF5CompoundMemberMapping[result.size()]);
    }

    /**
     * Returns the inferred compound member mapping for the given <var>memberNames</var> and
     * <var>memberValues</var>. All entries that correspond to members with length or dimension
     * information take this information from the values supplied.
     * <p>
     * <em>Example:</em>
     * 
     * <pre>
     * List&lt;String&gt; n = Arrays.asList("date", "temperatureInDegreeCelsius", "voltagesInMilliVolts");
     * List&lt;Object&gt; l = Arrays. &lt;Object&gt;asList(new Date(), 19.5f, new double[][] { 1, 2, 3 }, { 4, 5, 6 } });
     * </pre>
     * 
     * will lead to:
     * 
     * <pre>
     * inferMapping(n, l) -> { mapping("date").memberClass(Date.class), 
     *                       mapping("temperatureInDegreeCelsius").memberClass(float.class), 
     *                       mapping("voltagesInMilliVolts").memberClass(double[][].class).dimensions(new int[] { 3, 3 } }
     * </pre>
     */
    public static HDF5CompoundMemberMapping[] inferMapping(final List<String> memberNames,
            final List<?> memberValues)
    {
        return inferMapping(memberNames, memberValues, (HDF5CompoundMappingHints) null);
    }

    /**
     * Returns the inferred compound member mapping for the given <var>memberNames</var> and
     * <var>memberValues</var>. All entries that correspond to members with length or dimension
     * information take this information from the values supplied.
     * <p>
     * <em>Example:</em>
     * 
     * <pre>
     * List&lt;String&gt; n = Arrays.asList("date", "temperatureInDegreeCelsius", "voltagesInMilliVolts");
     * List&lt;Object&gt; l = Arrays. &lt;Object&gt;asList(new Date(), 19.5f, new double[][] { 1, 2, 3 }, { 4, 5, 6 } });
     * </pre>
     * 
     * will lead to:
     * 
     * <pre>
     * inferMapping(n, l) -> { mapping("date").memberClass(Date.class), 
     *                       mapping("temperatureInDegreeCelsius").memberClass(float.class), 
     *                       mapping("voltagesInMilliVolts").memberClass(double[][].class).dimensions(new int[] { 3, 3 } }
     * </pre>
     */
    public static HDF5CompoundMemberMapping[] inferMapping(final List<String> memberNames,
            final List<?> memberValues, final HDF5CompoundMappingHints hintsOrNull)
    {
        assert memberNames != null;
        assert memberValues != null;
        assert memberNames.size() == memberValues.size();

        final List<HDF5CompoundMemberMapping> result =
                inferMapping(memberNames.size(), createEntryIterable(memberNames, memberValues),
                        hintsOrNull);
        return result.toArray(new HDF5CompoundMemberMapping[result.size()]);
    }

    /**
     * Returns the inferred compound member mapping for the given <var>memberNames</var> and
     * <var>memberValues</var>. All entries that correspond to members with length or dimension
     * information take this information from the values supplied.
     * <p>
     * <em>Example:</em>
     * 
     * <pre>
     * String[] n = new String[] { "date", "temperatureInDegreeCelsius", "voltagesInMilliVolts" };
     * Object[] l = new Object[] { new Date(), 19.5f, new double[][] { 1, 2, 3 }, { 4, 5, 6 } } };
     * </pre>
     * 
     * will lead to:
     * 
     * <pre>
     * inferMapping(n, l) -> { mapping("date").memberClass(Date.class), 
     *                       mapping("temperatureInDegreeCelsius").memberClass(float.class), 
     *                       mapping("voltagesInMilliVolts").memberClass(double[][].class).dimensions(new int[] { 3, 3 } }
     * </pre>
     */
    public static HDF5CompoundMemberMapping[] inferMapping(final String[] memberNames,
            final Object[] memberValues)
    {
        return inferMapping(memberNames, memberValues, (HDF5CompoundMappingHints) null);
    }

    /**
     * Returns the inferred compound member mapping for the given <var>memberNames</var> and
     * <var>memberValues</var>. All entries that correspond to members with length or dimension
     * information take this information from the values supplied.
     * <p>
     * <em>Example:</em>
     * 
     * <pre>
     * String[] n = new String[] { "date", "temperatureInDegreeCelsius", "voltagesInMilliVolts" };
     * Object[] l = new Object[] { new Date(), 19.5f, new double[][] { 1, 2, 3 }, { 4, 5, 6 } } };
     * </pre>
     * 
     * will lead to:
     * 
     * <pre>
     * inferMapping(n, l) -> { mapping("date").memberClass(Date.class), 
     *                       mapping("temperatureInDegreeCelsius").memberClass(float.class), 
     *                       mapping("voltagesInMilliVolts").memberClass(double[][].class).dimensions(new int[] { 3, 3 } }
     * </pre>
     */
    public static HDF5CompoundMemberMapping[] inferMapping(final String[] memberNames,
            final Object[] memberValues, final HDF5CompoundMappingHints hints)
    {
        assert memberNames != null;
        assert memberValues != null;
        assert memberNames.length == memberValues.length;

        final List<HDF5CompoundMemberMapping> result =
                inferMapping(memberNames.length, createEntryIterable(memberNames, memberValues),
                        hints);
        return result.toArray(new HDF5CompoundMemberMapping[result.size()]);
    }

    private static Iterable<Entry<String, Object>> createEntryIterable(
            final List<String> memberNames, final List<?> memberValues)
    {
        return new Iterable<Map.Entry<String, Object>>()
            {
                @Override
                public Iterator<Entry<String, Object>> iterator()
                {
                    return new Iterator<Map.Entry<String, Object>>()
                        {
                            int idx = -1;

                            @Override
                            public boolean hasNext()
                            {
                                return idx < memberNames.size() - 1;
                            }

                            @Override
                            public Entry<String, Object> next()
                            {
                                ++idx;
                                return new Entry<String, Object>()
                                    {
                                        @Override
                                        public String getKey()
                                        {
                                            return memberNames.get(idx);
                                        }

                                        @Override
                                        public Object getValue()
                                        {
                                            return memberValues.get(idx);
                                        }

                                        @Override
                                        public Object setValue(Object value)
                                        {
                                            throw new UnsupportedOperationException();
                                        }
                                    };
                            }

                            @Override
                            public void remove()
                            {
                                throw new UnsupportedOperationException();
                            }
                        };
                }
            };
    }

    private static Iterable<Entry<String, Object>> createEntryIterable(final String[] memberNames,
            final Object[] memberValues)
    {
        return new Iterable<Map.Entry<String, Object>>()
            {
                @Override
                public Iterator<Entry<String, Object>> iterator()
                {
                    return new Iterator<Map.Entry<String, Object>>()
                        {
                            int idx = -1;

                            @Override
                            public boolean hasNext()
                            {
                                return idx < memberNames.length - 1;
                            }

                            @Override
                            public Entry<String, Object> next()
                            {
                                ++idx;
                                return new Entry<String, Object>()
                                    {
                                        @Override
                                        public String getKey()
                                        {
                                            return memberNames[idx];
                                        }

                                        @Override
                                        public Object getValue()
                                        {
                                            return memberValues[idx];
                                        }

                                        @Override
                                        public Object setValue(Object value)
                                        {
                                            throw new UnsupportedOperationException();
                                        }
                                    };
                            }

                            @Override
                            public void remove()
                            {
                                throw new UnsupportedOperationException();
                            }
                        };
                }
            };
    }

    private static List<HDF5CompoundMemberMapping> inferMapping(final int size,
            final Iterable<Map.Entry<String, Object>> entries,
            final HDF5CompoundMappingHints hintsOrNull)
    {
        final List<HDF5CompoundMemberMapping> result =
                new ArrayList<HDF5CompoundMemberMapping>(size);
        for (Map.Entry<String, Object> entry : entries)
        {
            final String memberName = entry.getKey();
            final Object memberValue = entry.getValue();
            final Class<?> memberClass = HDF5Utils.unwrapClass(memberValue.getClass());
            HDF5DataTypeVariant variantOrNull;
            if (memberClass == HDF5TimeDuration.class)
            {
                variantOrNull = ((HDF5TimeDuration) memberValue).getUnit().getTypeVariant();
            } else
            {
                variantOrNull = null;
            }
            if (memberClass.isArray())
            {
                final int lenx = Array.getLength(memberValue);
                if (lenx > 0 && Array.get(memberValue, 0).getClass().isArray())
                {
                    final int leny = Array.getLength(Array.get(memberValue, 0));
                    result.add(new HDF5CompoundMemberMapping(memberName, memberClass, memberName,
                            null, null, new int[]
                                { lenx, leny }, variantOrNull));
                } else
                {
                    result.add(new HDF5CompoundMemberMapping(memberName, memberClass, memberName,
                            null, null, new int[]
                                { lenx }, variantOrNull));
                }
            } else if (MDAbstractArray.class.isInstance(memberValue))
            {
                result.add(new HDF5CompoundMemberMapping(memberName, memberClass, memberName, null,
                        null, ((MDAbstractArray<?>) memberValue).dimensions(), variantOrNull));
            } else
            {
                HDF5EnumerationType enumTypeOrNull = null;
                final boolean variableLength =
                        (hintsOrNull == null) ? false : hintsOrNull.isUseVariableLengthStrings();
                final int[] dimensions;
                if (memberClass == HDF5EnumerationValue.class)
                {
                    enumTypeOrNull = ((HDF5EnumerationValue) memberValue).getType();
                    dimensions = new int[0];
                } else if (memberClass == HDF5EnumerationValueArray.class)
                {
                    enumTypeOrNull = ((HDF5EnumerationValueArray) memberValue).getType();
                    dimensions = new int[]
                        { ((HDF5EnumerationValueArray) memberValue).getLength() };
                } else if (memberClass == String.class)
                {
                    dimensions = (variableLength) ? new int[0] : new int[]
                        { ((String) memberValue).length() };
                } else if (memberClass == BitSet.class)
                {
                    final int len = ((BitSet) memberValue).length();
                    dimensions = new int[]
                        { len > 0 ? len : 1 };
                } else
                {
                    dimensions = new int[0];
                }
                result.add(new HDF5CompoundMemberMapping(memberName, memberClass, memberName,
                        enumTypeOrNull, null, dimensions, false, variableLength, variantOrNull)
                        .hints(hintsOrNull));
            }
        }
        return result;
    }

    /**
     * Infers a name for a compound type from the given <var>memberNames</var> by concatenating
     * them.
     * 
     * @param memberNames The names of the members to use to build the compound type name from.
     * @param sort If <code>true</code>, the names will be sorted before they are concatenated.
     */
    public static String constructCompoundTypeName(final Collection<String> memberNames,
            boolean sort)
    {
        final Collection<String> names = sort ? sort(memberNames) : memberNames;
        final StringBuilder b = new StringBuilder();
        for (String name : names)
        {
            b.append(name);
            b.append(':');
        }
        b.setLength(b.length() - 1);
        return b.toString();
    }

    private static List<String> sort(Collection<String> memberNames)
    {
        final List<String> names = new ArrayList<String>(memberNames);
        Collections.sort(names);
        return names;
    }

    /**
     * Infers the map from field names to {@link HDF5EnumerationType}s for the given <var>pojo</var>
     * object.
     */
    public static <T> Map<String, HDF5EnumerationType> inferEnumerationTypeMap(T pojo,
            IHDF5EnumTypeRetriever enumTypeRetriever)
    {
        Map<String, HDF5EnumerationType> resultOrNull = null;
        for (Class<?> c = pojo.getClass(); c != null; c = c.getSuperclass())
        {
            for (Field f : c.getDeclaredFields())
            {
                if (f.getType() == HDF5EnumerationValue.class)
                {
                    ReflectionUtils.ensureAccessible(f);
                    try
                    {
                        if (resultOrNull == null)
                        {
                            resultOrNull = new HashMap<String, HDF5EnumerationType>();
                        }
                        resultOrNull.put(f.getName(),
                                ((HDF5EnumerationValue) f.get(pojo)).getType());
                    } catch (IllegalArgumentException ex)
                    {
                        throw new Error(ex);
                    } catch (IllegalAccessException ex)
                    {
                        throw new Error(ex);
                    }
                }
                if (f.getType().isEnum())
                {
                    ReflectionUtils.ensureAccessible(f);
                    try
                    {
                        if (resultOrNull == null)
                        {
                            resultOrNull = new HashMap<String, HDF5EnumerationType>();
                        }
                        resultOrNull.put(f.getName(), enumTypeRetriever.getType(f.getType()
                                .getSimpleName(), ReflectionUtils.getEnumOptions(asEnumClass(f))));
                    } catch (IllegalArgumentException ex)
                    {
                        throw new Error(ex);
                    }
                }
                if (f.getType() == HDF5EnumerationValueArray.class)
                {
                    ReflectionUtils.ensureAccessible(f);
                    try
                    {
                        if (resultOrNull == null)
                        {
                            resultOrNull = new HashMap<String, HDF5EnumerationType>();
                        }
                        resultOrNull.put(f.getName(),
                                ((HDF5EnumerationValueArray) f.get(pojo)).getType());
                    } catch (IllegalArgumentException ex)
                    {
                        throw new Error(ex);
                    } catch (IllegalAccessException ex)
                    {
                        throw new Error(ex);
                    }
                }
            }
        }
        return resultOrNull;
    }

    @SuppressWarnings("unchecked")
    private static Class<? extends Enum<?>> asEnumClass(Field f)
    {
        return (Class<? extends Enum<?>>) f.getType();
    }

    @SuppressWarnings("rawtypes")
    private final static IdentityHashMap<Class, HDF5DataTypeVariant> typeVariantMap =
            new IdentityHashMap<Class, HDF5DataTypeVariant>();

    static
    {
        typeVariantMap.put(java.util.Date.class,
                HDF5DataTypeVariant.TIMESTAMP_MILLISECONDS_SINCE_START_OF_THE_EPOCH);
        typeVariantMap.put(HDF5TimeDuration.class, HDF5DataTypeVariant.TIME_DURATION_MICROSECONDS);
    }

    /**
     * A {@link HDF5CompoundMemberMapping} that allows to provide an explicit <var>memberName</var>
     * that differs from the <var>fieldName</var> and the maximal length in case of a String member.
     * 
     * @param fieldName The name of the field in the <var>clazz</var>
     * @param memberClassOrNull The class of the member, if a map is used as the compound pojo.
     * @param memberName The name of the member in the HDF5 compound data type.
     * @param memberTypeDimensions The dimensions of the member type, or 0 for a scalar value.
     */
    private HDF5CompoundMemberMapping(String fieldName)
    {
        this(fieldName, null, null, fieldName, null, null, new int[0], -1, false, false, false,
                null);
    }

    /**
     * A {@link HDF5CompoundMemberMapping} that allows to provide an explicit <var>memberName</var>
     * that differs from the <var>fieldName</var> and the maximal length in case of a String member.
     * 
     * @param fieldName The name of the field in the <var>clazz</var>
     * @param memberClassOrNull The class of the member, if a map is used as the compound pojo.
     * @param memberName The name of the member in the HDF5 compound data type.
     * @param enumTypeOrNull The HDF5 enumeration type of this member.
     * @param enumTypeNameOrNull The name to be used for the HDF5 enumeration type.
     * @param memberTypeDimensions The dimensions of the member type, or 0 for a scalar value.
     * @param unsigned If <code>true</code>, the type will be mapped to an unsigned integer type.
     * @param typeVariantOrNull The data type variant of this mapping, or <code>null</code> if this
     *            mapping has no type variant.
     */
    private HDF5CompoundMemberMapping(String fieldName, Class<?> memberClassOrNull,
            String memberName, HDF5EnumerationType enumTypeOrNull, String enumTypeNameOrNull,
            int[] memberTypeDimensions, HDF5DataTypeVariant typeVariantOrNull)
    {
        this(fieldName, null, memberClassOrNull, memberName, enumTypeOrNull, enumTypeNameOrNull,
                memberTypeDimensions, -1, false, false, false, typeVariantOrNull);
    }

    /**
     * A {@link HDF5CompoundMemberMapping} that allows to provide an explicit <var>memberName</var>
     * that differs from the <var>fieldName</var> and the maximal length in case of a String member.
     * 
     * @param fieldName The name of the field in the <var>clazz</var>
     * @param memberClassOrNull The class of the member, if a map is used as the compound pojo.
     * @param memberName The name of the member in the HDF5 compound data type.
     * @param enumTypeOrNull The HDF5 enumeration type of this member.
     * @param enumTypeNameOrNull The name to be used for the HDF5 enumeration type.
     * @param memberTypeDimensions The dimensions of the member type, or 0 for a scalar value.
     * @param unsigned If <code>true</code>, the type will be mapped to an unsigned integer type.
     * @param variableLength If <code>true</code>, the type will be mapped to a variable-length
     *            type.
     * @param typeVariantOrNull The data type variant of this mapping, or <code>null</code> if this
     *            mapping has no type variant.
     */
    private HDF5CompoundMemberMapping(String fieldName, Class<?> memberClassOrNull,
            String memberName, HDF5EnumerationType enumTypeOrNull, String enumTypeNameOrNull,
            int[] memberTypeDimensions, boolean unsigned, boolean variableLength,
            HDF5DataTypeVariant typeVariantOrNull)
    {
        this(fieldName, null, memberClassOrNull, memberName, enumTypeOrNull, enumTypeNameOrNull,
                memberTypeDimensions, -1, unsigned, variableLength, false, typeVariantOrNull);
    }

    /**
     * A {@link HDF5CompoundMemberMapping} that allows to provide an explicit <var>memberName</var>
     * that differs from the <var>fieldName</var> and the maximal length in case of a String member.
     * 
     * @param fieldName The name of the field in the <var>clazz</var>
     * @param fieldOrNull The {@link Field} in the compound class (may be <code>null</code>)
     * @param memberClassOrNull The class of the member, if a map is used as the compound pojo.
     * @param memberName The name of the member in the HDF5 compound data type.
     * @param enumTypeOrNull The HDF5 enumeration type of this member.
     * @param enumTypeNameOrNull The name to be used for the HDF5 enumeration type.
     * @param memberTypeDimensions The dimensions of the member type, or 0 for a scalar value.
     * @param unsigned If <code>true</code>, the type will be mapped to an unsigned integer type.
     * @param variableLength If <code>true</code>, the type will be mapped to a variable-length
     *            type.
     * @param reference If <code>true</code>, the type will be mapped to a reference type. type.
     * @param typeVariantOrNull The data type variant of this mapping, or <code>null</code> if this
     *            mapping has no type variant.
     */
    private HDF5CompoundMemberMapping(String fieldName, Field fieldOrNull,
            Class<?> memberClassOrNull, String memberName, HDF5EnumerationType enumTypeOrNull,
            String enumTypeNameOrNull, int[] memberTypeDimensions, boolean unsigned,
            boolean variableLength, boolean reference, HDF5DataTypeVariant typeVariantOrNull)
    {
        this(fieldName, fieldOrNull, memberClassOrNull, memberName, enumTypeOrNull,
                enumTypeNameOrNull, memberTypeDimensions, -1, unsigned, variableLength, reference,
                typeVariantOrNull);
    }

    /**
     * A {@link HDF5CompoundMemberMapping} that allows to provide an explicit <var>memberName</var>
     * that differs from the <var>fieldName</var> and the maximal length in case of a String member.
     * 
     * @param fieldName The name of the field in the <var>clazz</var>
     * @param fieldOrNull The {@link Field} in the compound class (may be <code>null</code>)
     * @param memberClassOrNull The class of the member, if a map is used as the compound pojo.
     * @param memberName The name of the member in the HDF5 compound data type.
     * @param enumTypeOrNull The enumeation type (only for enumerations, obviously).
     * @param enumTypeNameOrNull The name of the committed HDF5 enum type.
     * @param memberTypeDimensions The dimensions of the member type, or 0 for a scalar value.
     * @param unsigned If <code>true</code>, the type will be mapped to an unsigned integer type.
     * @param variableLength If <code>true</code>, the type will be mapped to a variable-length
     *            string type.
     * @param reference If <code>true</code>, the type will be mapped to a reference type.
     * @param storageMemberTypeId The storage data type id of member, or -1, if not available
     */
    @SuppressWarnings("unlikely-arg-type")
    private HDF5CompoundMemberMapping(String fieldName, Field fieldOrNull,
            Class<?> memberClassOrNull, String memberName, HDF5EnumerationType enumTypeOrNull,
            String enumTypeNameOrNull, int[] memberTypeDimensions, long storageMemberTypeId,
            boolean unsigned, boolean variableLength, boolean reference,
            HDF5DataTypeVariant typeVariantOrNull)
    {
        this.fieldOrNull = fieldOrNull;
        this.fieldName = fieldName;
        this.memberClassOrNull = memberClassOrNull;
        this.memberName = memberName;
        this.enumTypeOrNull = enumTypeOrNull;
        this.enumTypeNameOrNull = enumTypeNameOrNull;
        this.memberTypeDimensions = memberTypeDimensions;
        this.memberTypeLength = MDAbstractArray.getLength(memberTypeDimensions);
        this.storageDataTypeId = storageMemberTypeId;
        this.unsigned = unsigned;
        this.variableLength = variableLength;
        this.reference = reference;
        this.typeVariantOrNull = typeVariantMap.get(typeVariantOrNull);
        if (this.typeVariantOrNull == null)
        {
            this.typeVariantOrNull = HDF5DataTypeVariant.maskNull(typeVariantOrNull);
        }
    }

    /**
     * Sets the field name in the Java class to use for the mapping, overriding the member name
     * which is used by default to find the field.
     */
    @SuppressWarnings("hiding")
    public HDF5CompoundMemberMapping fieldName(String fieldName)
    {
        this.fieldName = fieldName;
        return this;
    }

    /**
     * Sets the name to be used for the comitted HDF5 datatype (for Java enum types only, overriding
     * the simple class name which is used by default as the type name.
     */
    public HDF5CompoundMemberMapping enumTypeName(String enumTypeName)
    {
        this.enumTypeNameOrNull =
                (enumTypeName != null && enumTypeName.length() == 0) ? null : enumTypeName;
        return this;
    }

    String tryGetEnumTypeName()
    {
        return enumTypeNameOrNull;
    }

    Field tryGetField(Class<?> clazz, boolean skipChecks) throws HDF5JavaException
    {
        return tryGetField(clazz, clazz, skipChecks);
    }

    Field tryGetField(Class<?> clazz) throws HDF5JavaException
    {
        return tryGetField(clazz, clazz, false);
    }

    private Field tryGetField(Class<?> clazz, Class<?> searchClass, boolean skipChecks)
            throws HDF5JavaException
    {
        try
        {
            final Field field = clazz.getDeclaredField(fieldName);
            final boolean isArray = isArray(field);
            if (skipChecks == false)
            {
                if (memberTypeLength > 1)
                {

                    if (field.getType() != String.class && false == isArray)
                    {
                        throw new HDF5JavaException("Field '" + fieldName + "' of class '"
                                + clazz.getCanonicalName()
                                + "' is no String or array, but a length > 1 is given.");
                    }

                } else if (memberTypeLength == 0 && (isFixedLengthString(field) || isArray))
                {
                    throw new HDF5JavaException("Field '" + fieldName + "' of class '"
                            + clazz.getCanonicalName()
                            + "' is a String or array, but a length == 0 is given.");
                }
            }
            return field;
        } catch (NoSuchFieldException ex)
        {
            final Class<?> superClassOrNull = clazz.getSuperclass();
            if (superClassOrNull == null || superClassOrNull == Object.class)
            {
                return null;
            } else
            {
                return tryGetField(superClassOrNull, searchClass, skipChecks);
            }
        }
    }

    private boolean isArray(final Field field)
    {
        final Class<?> fieldType = field.getType();
        return fieldType.isArray() || MDAbstractArray.class.isAssignableFrom(fieldType)
                || field.getType() == java.util.BitSet.class
                || field.getType() == HDF5EnumerationValueArray.class;
    }

    private boolean isFixedLengthString(final Field field)
    {
        return (field.getType() == String.class && false == variableLength && false == reference)
                && (hintsOrNull != null && false == hintsOrNull.isUseVariableLengthStrings());
    }

    String getMemberName()
    {
        return memberName;
    }

    /**
     * Sets the member class to use for the mapping.
     */
    public HDF5CompoundMemberMapping memberClass(Class<?> memberClass)
    {
        this.memberClassOrNull = memberClass;
        return this;
    }

    public Class<?> tryGetMemberClass()
    {
        return memberClassOrNull;
    }

    /**
     * Sets the length of the member type to use for the mapping. Must be set for String, BitSet.
     * Can be used as a convenience method replacing {@link #dimensions(int[])} for array members of
     * rank 1.
     */
    @SuppressWarnings("hiding")
    public HDF5CompoundMemberMapping length(int memberTypeLength)
    {
        return dimensions(new int[]
            { memberTypeLength });
    }

    int getMemberTypeLength()
    {
        return memberTypeLength;
    }

    /**
     * Sets the dimensions of the member type to use for the mapping. Convenience method replacing
     * {@link #dimensions(int[])} for array members of rank 2.
     */
    public HDF5CompoundMemberMapping dimensions(int memberTypeDimensionX, int memberTypeDimensionY)
    {
        this.memberTypeDimensions = new int[]
            { memberTypeDimensionX, memberTypeDimensionY };
        this.memberTypeLength = MDAbstractArray.getLength(memberTypeDimensions);
        return this;
    }

    /**
     * Sets the dimensions of the member type to use for the mapping. Must be set for array members
     * of rank N.
     */
    @SuppressWarnings("hiding")
    public HDF5CompoundMemberMapping dimensions(int[] memberTypeDimensions)
    {
        this.memberTypeDimensions = memberTypeDimensions;
        this.memberTypeLength = MDAbstractArray.getLength(memberTypeDimensions);
        if (enumTypeOrNull != null)
        {
            checkEnumArrayRank();
            this.memberClassOrNull = HDF5EnumerationValueArray.class;
        }
        return this;
    }

    /**
     * Sets this field to an unsigned type. Must be an integer.
     */
    public HDF5CompoundMemberMapping unsigned()
    {
        this.unsigned = true;
        return this;
    }

    /**
     * Sets this field to an unsigned type, if <var>unsigned</var> is <code>true</code>. Must be an
     * integer.
     */
    public HDF5CompoundMemberMapping unsigned(@SuppressWarnings("hiding")
    boolean unsigned)
    {
        this.unsigned = unsigned;
        return this;
    }

    /**
     * Returns <code>true</code> if this field should be mapped to an unsigned integer.
     */
    boolean isUnsigned()
    {
        return this.unsigned;
    }

    /**
     * Sets this field to a variable-length type. Must be a string.
     */
    public HDF5CompoundMemberMapping variableLength()
    {
        this.variableLength = true;
        return this;
    }

    /**
     * Sets this field to a variable-length type, if <var>variableLength</var> is <code>true</code>.
     * Must be a string.
     */
    public HDF5CompoundMemberMapping variableLength(@SuppressWarnings("hiding")
    boolean variableLength)
    {
        this.variableLength = variableLength;
        return this;
    }

    /**
     * Returns <code>true</code> if this field should be mapped to a variable-length string.
     */
    public boolean isVariableLength()
    {
        return this.variableLength;
    }

    /**
     * Sets this field to a reference type. Must be a string.
     */
    public HDF5CompoundMemberMapping reference()
    {
        this.reference = true;
        return this;
    }

    /**
     * Sets this field to a reference type, if <var>reference</var> is <code>true</code>. Must be a
     * string.
     */
    public HDF5CompoundMemberMapping reference(@SuppressWarnings("hiding")
    boolean reference)
    {
        this.reference = reference;
        return this;
    }

    /**
     * Returns <code>true</code> if this field should be mapped to a refernce type.
     */
    public boolean isReference()
    {
        return this.reference;
    }

    /**
     * Sets mapping hints for this mapping.
     */
    public HDF5CompoundMemberMapping hints(HDF5CompoundMappingHints hints)
    {
        this.hintsOrNull = hints;
        return this;
    }

    private void checkEnumArrayRank()
    {
        if (memberTypeDimensions != null && memberTypeDimensions.length > 1)
        {
            throw new HDF5JavaException("Enumeration arrays only supported with rank 1 [rank="
                    + memberTypeDimensions.length + "]");
        }
    }

    int[] getMemberTypeDimensions()
    {
        return memberTypeDimensions;
    }

    long getStorageDataTypeId()
    {
        return storageDataTypeId;
    }

    /**
     * Sets the enumeration type to use for the mapping. Must be set for enumeration members.
     */
    public HDF5CompoundMemberMapping enumType(HDF5EnumerationType enumType)
    {
        this.enumTypeOrNull = enumType;
        checkEnumArrayRank();
        this.memberClassOrNull =
                (memberTypeLength == 0) ? HDF5EnumerationValue.class
                        : HDF5EnumerationValueArray.class;
        return this;
    }

    HDF5EnumerationType tryGetEnumerationType()
    {
        return enumTypeOrNull;
    }

    void setEnumerationType(HDF5EnumerationType enumType)
    {
        this.enumTypeOrNull = enumType;
    }

    HDF5CompoundMappingHints tryGetHints()
    {
        return hintsOrNull;
    }

    /**
     * Sets the data type variant to use for the mapping.
     */
    public HDF5CompoundMemberMapping typeVariant(HDF5DataTypeVariant typeVariant)
    {
        this.typeVariantOrNull = typeVariant;
        return this;
    }

    HDF5DataTypeVariant tryGetTypeVariant()
    {
        return typeVariantOrNull;
    }
}