// // Created by patrik on 10.08.17. // #include #include #include #include #include hdf4cpp::HdfFile::HdfFile(const std::string& path) : HdfObject(HFILE, FILE) { sId = SDstart(path.c_str(), DFACC_READ); vId = Hopen(path.c_str(), DFACC_READ, 0); if(sId == FAIL || vId == FAIL) { throw HdfException(getType(), getClassType(), INVALID_ID); } Vstart(vId); chain.push_back(new HdfFileDestroyer(sId, vId)); int32 loneSize = Vlone(vId, nullptr, 0); std::vector refs((size_t) loneSize); Vlone(vId, refs.data(), loneSize); for(const auto& ref : refs) { loneRefs.push_back(std::pair(ref, VGROUP)); } int32 loneVdata = VSlone(vId, nullptr, 0); refs.resize((size_t) loneVdata); VSlone(vId, refs.data(), loneVdata); for(const auto& ref : refs) { loneRefs.push_back(std::pair(ref, VDATA)); } } hdf4cpp::HdfFile::HdfFile(HdfFile&& file) : HdfObject(file.getType(), file.getClassType()) { sId = file.sId; vId = file.vId; loneRefs = file.loneRefs; file.sId = file.vId = FAIL; loneRefs.clear(); } hdf4cpp::HdfFile& hdf4cpp::HdfFile::operator=(HdfFile&& file) { setType(file.getType()); setClassType(file.getClassType()); sId = file.sId; vId = file.vId; loneRefs = file.loneRefs; file.sId = file.vId = FAIL; file.loneRefs.clear(); return *this; } hdf4cpp::HdfFile::~HdfFile() { } int32 hdf4cpp::HdfFile::getSId() const { return sId; } int32 hdf4cpp::HdfFile::getVId() const { return vId; } int32 hdf4cpp::HdfFile::getDatasetId(const std::string &name) const { int32 index = SDnametoindex(sId, name.c_str()); return (index == FAIL) ? (FAIL) : (SDselect(sId, index)); } int32 hdf4cpp::HdfFile::getGroupId(const std::string &name) const { int32 ref = Vfind(vId, name.c_str()); return (!ref) ? (FAIL) : (Vattach(vId, ref, "r")); } int32 hdf4cpp::HdfFile::getDataId(const std::string &name) const { int32 ref = VSfind(vId, name.c_str()); return (!ref) ? (FAIL) : (VSattach(vId, ref, "r")); } hdf4cpp::HdfItem hdf4cpp::HdfFile::get(const std::string& name) const { int32 id = getDatasetId(name); if(id == FAIL) { id = getGroupId(name); if(id == FAIL) { id = getDataId(name); if(id == FAIL) { raiseException(INVALID_ID); } return HdfItem(new HdfDataItem(id, chain), sId, vId); } return HdfItem(new HdfGroupItem(id, chain), sId, vId); } return HdfItem(new HdfDatasetItem(id, chain), sId, vId); } std::vector hdf4cpp::HdfFile::getDatasetIds(const std::string &name) const { std::vector ids; char nameDataset[MAX_NAME_LENGTH]; int32 datasets, waste; SDfileinfo(sId, &datasets, &waste); for(int32 i = 0; i < datasets; ++i) { int32 id = SDselect(sId, i); SDgetinfo(id, nameDataset, nullptr, nullptr, nullptr, nullptr); if(id != FAIL && name == std::string(nameDataset)) { ids.push_back(id); } else { SDendaccess(id); } } return ids; } std::vector hdf4cpp::HdfFile::getGroupIds(const std::string &name) const { 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 hdf4cpp::HdfFile::getAll(const std::string& name) const { std::vector items; std::vector ids; ids = getDatasetIds(name); for(const auto& id : ids) { items.push_back(HdfItem(new HdfDatasetItem(id, chain), sId, vId)); } ids = getGroupIds(name); for(const auto& id : ids) { items.push_back(HdfItem(new HdfGroupItem(id, chain), sId, vId)); } return std::move(items); } hdf4cpp::HdfAttribute hdf4cpp::HdfFile::getAttribute(const std::string &name) { return HdfAttribute(new HdfDatasetAttribute(sId, name, chain)); } hdf4cpp::HdfFile::Iterator hdf4cpp::HdfFile::begin() const { return Iterator(this, 0, chain); } hdf4cpp::HdfFile::Iterator hdf4cpp::HdfFile::end() const { return Iterator(this, (int32) loneRefs.size(), chain); }