// // Created by patrik on 10.08.17. // #include #include #include #include HdfFile::HdfFile(const std::string& path) { sId = SDstart(path.c_str(), DFACC_READ); vId = Hopen(path.c_str(), DFACC_READ, 0); Vstart(vId); } HdfFile::~HdfFile() { SDend(sId); Vend(vId); Hclose(vId); } int32 HdfFile::getDatasetId(const std::string &name) { int32 index = SDnametoindex(sId, name.c_str()); return (index == FAIL) ? (FAIL) : (SDselect(sId, index)); } int32 HdfFile::getGroupId(const std::string &name) { int32 ref = Vfind(vId, name.c_str()); return (!ref) ? (FAIL) : (Vattach(vId, ref, "r")); } HdfItem HdfFile::get(const std::string& name) { int32 id = getDatasetId(name); if(id == FAIL) { id = getGroupId(name); if(id == FAIL) { return HdfItem(nullptr, sId, vId); } return HdfItem(new HdfGroupItem(id), sId, vId); } return HdfItem(new HdfDatasetItem(id), sId, vId); } std::vector HdfFile::getDatasetIds(const std::string &name) { std::vector ids; char nameDataset[MAX_NAME_LENGTH]; int32 datasets, attrs; SDfileinfo(sId, &datasets, &attrs); for(int32 i = 0; i < datasets; ++i) { int32 id = SDselect(sId, i); int32 rank, dimSize, nt, nAttr; SDgetinfo(id, nameDataset, &rank, &dimSize, &nt, &nAttr); if(name == std::string(nameDataset)) { ids.push_back(id); } else { SDendaccess(id); } } return ids; } std::vector HdfFile::getGroupIds(const std::string &name) { std::vector ids; char nameGroup[MAX_NAME_LENGTH]; int32 ref = Vgetid(vId, -1); while(ref != FAIL) { int32 id = Vattach(vId, ref, "r"); Vgetname(id, nameGroup); if(Visvg(id, ref) && name == std::string(nameGroup)) { ids.push_back(id); } else { Vdetach(id); } ref = Vgetid(vId, ref); } return ids; } std::vector HdfFile::getAll(const std::string& name) { std::vector items; std::vector ids; ids = getDatasetIds(name); for(const auto& id : ids) { items.push_back(HdfItem(new HdfDatasetItem(id), sId, vId)); } ids = getGroupIds(name); for(const auto& id : ids) { items.push_back(HdfItem(new HdfGroupItem(id), sId, vId)); } return std::move(items); } HdfAttribute HdfFile::getAttribute(const std::string &name) { return HdfAttribute(new HdfDatasetAttribute(sId, name)); } bool HdfFile::isValid() { return sId != FAIL || vId != FAIL; } HdfItem::Iterator HdfFile::begin() const { return HdfItem::Iterator(sId, vId, vId, 0); } HdfItem::Iterator HdfFile::end() const { // FIXME get the number of items in the root int32 size = Vntagrefs(vId); if(size == FAIL) { size = 0; } return HdfItem::Iterator(sId, vId, vId, size); }