attributes
attributes.cpp
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 | |
generated.h
struct.h
utils.hpp
README.md
While HDF5 attributes are not standard HDF5 datasets, they have much in common:
- An attribute has a user-defined dataspace and the included metadata has a user-assigned datatype
- Metadata can be of any valid HDF5 datatype
- Attributes are addressed by name
But there are some very important differences:
- There is no provision for special storage such as compression or chunking
- There is no partial I/O or sub-setting capability for attribute data
- Attributes cannot be shared
- Attributes cannot have attributes
- Being small, an attribute is stored in the object header of the object it describes and is thus attached directly to that object
Objects
pod := arbitrary plain old dataype - consequtive memory region:
automatic compiler assisted reflection or manual handling
integral := [ unsigned | signed ] [int_8 | int_16 | int_32 | int_64 | float | double ]
string := std::string | char*
scalar := integral | pod_struct | string
vector := std::vector<scalar>
initializer_list:= std::initializer_list<scalar>{}
linalg := armadillo | eigen | ...
T ::= scalar | vector | initializer_list | linalg
IO Templates
Single Objects
parent ::= h5::gr_t | h5::ds_t | h5::dt_t | h5::at_t;
[open]
h5::at_t h5::aopen(parent, const std::string& name [, const & acpl] );
[create]
h5::at_t acreate<T>( parent, const std::string& name
[, const h5::current_dims{...} ] [, const h5::acpl_t& acpl]);
[read]
T aread( parent, const std::string& name [, const h5::acpl_t& acpl]) const;
[write]
void awrite( parent, const std::string &name, const T& obj [, const h5::acpl_t& acpl]);
Multiple Objects
Passing std::tuple<std::string 0, T0 V_0, std::string 1, T1 V1, ..., std::string n, Tn Vn> a sequence of name - value pairs, a meta template
breaks up the call into a sequence of awrite calls at compile time.
void awrite( parent, const std::string &name, const std::tuple<T...>& objects [, const h5::acpl_t& acpl]);
std::tuple<...> type seems to be natural:
...
h5::gr_t gr = h5::gcreate(fd, "my-group" );
arma::mat matrix = arma::zeros(3,4);
std::vector<sn::example::Record> vector = h5::utils::get_test_data<sn::example::Record>(40);
sn::example::Record& record = vector[0];
h5::awrite(gr, std::make_tuple(
"temperature", 18.0,
"pressure", 0.5,
"matrix", matrix, // linear algebra object
"vector", vector, // std::vector of POD type
"pod struct", record // single POD type
));
Examples:
The examples are to demonstrate how to use HDF5 attribute with various object types
- writing attributes to dataset with
ds_t['attribute_name'] = attribute; - using:
h5::awrite,h5::aread,h5::create - compiler assisted reflection with
h5cppcode transformation tool - bundling objects for single shot write with
std::tuple<T...>
**Makefile**
```make linenums="1"
# _____________________________________________________________________________
# Copyright (c) 2018-2020 Steven Varga, Toronto,ON Canada
# Author: Varga, Steven <steven@vargaconsulting.ca>
# _____________________________________________________________________________
apps = attributes
CXXFLAGS = -std=c++17
LIBS = -lhdf5 -lz -ldl -lm
INCLUDES = -I/usr/local/include -I/usr/include
test: $(apps)
@./attributes
#h5dump -pH 001.h5
%.o : $(SRC_DIR)/%.cpp
$(CXX) -$(INCLUDES) -o $@ $(CPPFLAGS) $(CXXFLAGS) -c $^
all: $(apps)
# compiler assisted introspection will scan TU translation unit, which is the
# collection of files you're compiling into an object, generates desired output
# from topologically ordered dependency graph.
# currently POD structs, arrays and integral types are supported, in arbitrary deep
# embedding
#
# with -Dmyfile.h specifies the generated output, which must be sandwiched between
# <h5cpp/core> and <h5cpp/io>
generated.h: struct.h
h5cpp attributes.cpp -- $(CXXFLAGS) -Dgenerated.h
attributes.o : attributes.cpp generated.h
$(CXX) -o attributes.o $(CXXFLAGS) -c attributes.cpp
attributes: attributes.o
$(CXX) $^ $(LIBS) -o $@
clean:
@$(RM) *.o *.prof *.h5 $(apps)
dist-clean: clean
@$(RM) generated.h
.PHONY: test
basics
basics.cpp
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 | |
Makefile
compound
struct.cpp
generated.h
struct.h
utils.hpp
Makefile
container
container.cpp
README.md
Makefile
csv
csv2hdf5.cpp
csv.h
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 | |
generated.h
struct.h
input.csv
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 | |
README.md
ifndef CSV2H5_H
define CSV2H5_H
/define C++ representation as POD struct/ struct input_t { long MasterRecordNumber; unsigned int Hour; double Latitude; double Longitude; char ReportedLocation[20]; // character arrays are supported };
endif
Reading the CSV is rather easy thanks to [Fast C++ CSV Parser](https://github.com/ben-strasser/fast-cpp-csv-parser), a single header file `csv.h` is attached to the project. Not only fast and simple but also elegantly allows to specify specific columns marked as ncols: `N_COLS`
The TU translation unit is scanned with LLVM based `h5cpp` compiler and the necessary hdf5 specific type descriptors are produced:
ifndef H5CPP_GUARD_mzMuQ
define H5CPP_GUARD_mzMuQ
namespace h5{
//template specialization of input_t to create HDF5 COMPOUND type
template<> hid_t inline register_struct
//closing all hid_t allocations to prevent resource leakage
H5Tclose(at_00);
//if not used with h5cpp framework, but as a standalone code generator then
//the returned 'hid_t ct_00' must be closed: H5Tclose(ct_00);
return ct_00;
};
} H5CPP_REGISTER_STRUCT(input_t);
endif
The entire project can be [downloaded from this link](https://github.com/steven-varga/HDFGroup-mailinglist/tree/master/csv-2020-03-03) but for completeness here is the source file:
include "csv.h"
// data structure include file: struct.h must precede 'generated.h' as the latter contains dependencies
// from previous
include "struct.h"
include // has handle + type descriptors
// sandwiched: as h5cpp/io depends on henerated.h which needs h5cpp/core
#include "generated.h" // uses type descriptors
include // uses generated.h + core
int main(){
// create HDF5 container
h5::fd_t fd = h5::create("output.h5",H5F_ACC_TRUNC);
// create dataset
// chunk size is unrealistically small, usually you would set this such that ~= 1MB or an ethernet jumbo frame size
h5::ds_t ds = h5::create<input_t>(fd, "simple approach/dataset.csv",
h5::max_dims{H5S_UNLIMITED}, h5::chunk{10} | h5::gzip{9} );
// `h5::ds_t` handle is seamlessly cast to `h5::pt_t` packet table handle, this could have been done in single step
// but we need `h5::ds_t` handle to add attributes
h5::pt_t pt = ds;
// attributes may be added to `h5::ds_t` handle
ds["data set"] = "monroe-county-crash-data2003-to-2015.csv";
ds["cvs parser"] = "https://github.com/ben-strasser/fast-cpp-csv-parser"; // thank you!
constexpr unsigned N_COLS = 5;
io::CSVReader<N_COLS> in("input.csv"); // number of cols may be less, than total columns in a row, we're to read only 5
in.read_header(io::ignore_extra_column, "Master Record Number", "Hour", "Reported_Location","Latitude","Longitude");
input_t row; // buffer to read line by line
char* ptr; // indirection, as `read_row` doesn't take array directly
while(in.read_row(row.MasterRecordNumber, row.Hour, ptr, row.Latitude, row.Longitude)){
strncpy(row.ReportedLocation, ptr, STR_ARRAY_SIZE); // defined in struct.h
h5::append(pt, row);
std::cout << std::string(ptr) << "\n";
}
// RAII closes all allocated resources
}
the output of `h5dump -pH output.h5`
HDF5 "output.h5" {
GROUP "/" {
GROUP "simple approach" {
DATASET "dataset.csv" {
DATATYPE H5T_COMPOUND {
H5T_STD_I64LE "MasterRecordNumber";
H5T_STD_U32LE "Hour";
H5T_IEEE_F64LE "Latitude";
H5T_IEEE_F64LE "Longitude";
H5T_ARRAY { [20] H5T_STD_I8LE } "ReportedLocation";
}
DATASPACE SIMPLE { ( 199 ) / ( H5S_UNLIMITED ) }
STORAGE_LAYOUT {
CHUNKED ( 10 )
SIZE 7347 (1.517:1 COMPRESSION)
}
FILTERS {
COMPRESSION DEFLATE { LEVEL 9 }
}
FILLVALUE {
FILL_TIME H5D_FILL_TIME_IFSET
VALUE H5D_FILL_VALUE_DEFAULT
}
ALLOCATION_TIME {
H5D_ALLOC_TIME_INCR
}
ATTRIBUTE "cvs parser" {
DATATYPE H5T_STRING {
STRSIZE H5T_VARIABLE;
STRPAD H5T_STR_NULLTERM;
CSET H5T_CSET_UTF8;
CTYPE H5T_C_S1;
}
DATASPACE SCALAR
}
ATTRIBUTE "data set" {
DATATYPE H5T_STRING {
STRSIZE H5T_VARIABLE;
STRPAD H5T_STR_NULLTERM;
CSET H5T_CSET_UTF8;
CTYPE H5T_C_S1;
}
DATASPACE SCALAR
}
}
}
}
}
Makefile
custom_pipeline
pipeline.cpp
Makefile
datasets
datasets.cpp
README.md
Makefile
datatypes
n-bit.cpp
n-bit.hpp
two-bit.cpp
two-bit.hpp
README.md
Makefile
groups
groups.cpp
README.md
Example: adding attributes to a group
auto gr = h5::gopen(fd, "/mygroup");
std::initializer_list list = {1,2,3,4,5};
h5::awrite(gr, std::make_tuple(
"temperature", 42.0,
"unit", "C",
"vector of ints", std::vector<int>({1,2,3,4,5}),
"initializer list", list,
"strings", std::initializer_list({"first", "second", "third","..."})
));
Examples:
The examples are to demonstrate how to use HDF5 groups as well as how to add attributes to them
- creating groups with an
h5::fd_tfile handle andh5::gr_tgroup handle as parents - error handling:
- catching specific
h5::error::io::group::create - using umbrella exception
h5::error::any
- catching specific
- how to open a group and add complex set of attributes with a single call
**Makefile**
```make linenums="1"
# _________________________________________________________
# Copyright (c) 2018-2020 Steven Varga, Toronto,ON Canada
# Author: Varga, Steven <steven@vargaconsulting.ca>
# _________________________________________________________
apps = groups
CXXFLAGS = -std=c++17 -Wno-deprecated
LIBS = -lhdf5 -lz -ldl -lm
test: $(apps)
@./groups
%.o : $(SRC_DIR)/%.cpp
$(CXX) -$(INCLUDES) -o $@ $(CPPFLAGS) $(CXXFLAGS) -c $^
all: $(apps)
groups: groups.o
$(CXX) $^ $(LIBS) -o $@
clean:
@$(RM) *.o *.prof *.h5 $(apps)
dist-clean: clean
.PHONY: test
kita
kita.cpp
README.md
Makefile
linalg
arma.cpp
blaze.cpp
blitz.cpp
dlib.cpp
eigen3.cpp
itpp.cpp
ublas.cpp
Makefile
mpi
collective.cpp
independent.cpp
throughput.cpp
README.md
multi-tu
main.cpp
tu-01.cpp
tu-01.h
tu-02.cpp
tu-02.h
struct.h
utils.hpp
Makefile
optimized
optimized.cpp
Makefile
packet-table
packettable.cpp
packet_batches.cpp
generated.h
struct.h
utils.hpp
Makefile
raw_memory
raw.cpp
Makefile
reference
reference.cpp
Makefile
sparse
arma.cpp
README.md
H5PY
h5sparse
Julia
_refs directory. The screen shot shows A,B sparse matrices saved in Julia, and a Pyhton h5sparse to compare. On the bright side the julia HDF5 package is feature full, it is possible loading sparse matrices to H5PY.
using JLD, SparseArrays
A = sprand(Float64, 10,20, 0.1)
B = sprand(Float64, 10,20, 0.1)
@save "interop.h5" "data-01/A" A "data-02/B" B
R
Bio Informatics
Loompy
is an efficient file format for large omics datasets. Loom files contain a main matrix, optional additional layers, a variable number of row and column annotations, and sparse graph objects. Under the hood, Loom files are HDF5 and can be opened from many programming languages, including Python, R, C, C++, Java, MATLAB, Mathematica, and Julia.
10x Genomics
The top level of the file contains a single HDF5 group, called matrix, and metadata stored as HDF5 attributes. Within the matrix group are datasets containing the dimensions of the matrix, the matrix entries, as well as the features and cell-barcodes associated with the matrix rows and columns, respectively. format
| Column | Type | Description |
|---|---|---|
| barcodes | string | Barcode sequences and their corresponding GEM wells (e.g. AAACGGGCAGCTCGAC-1) |
| data | uint32 | Nonzero UMI counts in column-major order |
| indices | uint32 | Zero-based row index of corresponding element in data |
| indptr | uint32 | Zero-based index into data / indices of the start of each column, i.e., the data corresponding to each barcode sequence |
| shape | uint64 | Tuple of (# rows, # columns) indicating the matrix dimensions |
**Makefile**
```make linenums="1"
# _________________________________________________________
# Copyright (c) 2018-2020 Steven Varga, Toronto,ON Canada
# Author: Varga, Steven <steven@vargaconsulting.ca>
# _________________________________________________________
#
apps = arma
CXXFLAGS = -Wno-deprecated -Wall
LIBS = -lhdf5 -lz -ldl -lm
test: clean $(apps)
@./arma
all: $(apps)
arma: arma.cpp
$(CXX) $^ $(LIBS) -o $@
clean:
@$(RM) *.o *.prof *.h5 $(apps)
dist-clean: clean
.PHONY: test
stl
vector.cpp
generated.h
struct.h
utils.hpp
Makefile
string
string.cpp
Makefile
transform
transform.cpp
Makefile
utf
utf.cpp
Makefile
-
Material based on Netlib Documentation ↩