/************************************************************************ * EOS - the CERN Disk Storage System * * Copyright (C) 2018 CERN/Switzerland * * * * This program is free software: you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation, either version 3 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program. If not, see .* ************************************************************************/ //------------------------------------------------------------------------------ //! @author Georgios Bitzes //! @brief Utility to resolve files and containers based on proto messages //------------------------------------------------------------------------------ #include "namespace/Resolver.hh" #include "common/ParseUtils.hh" #include "common/FileId.hh" #include EOSNSNAMESPACE_BEGIN //------------------------------------------------------------------------------ // Resolve a container specification message to a ContainerMD. // Assumes caller holds eosViewRWMutex. //------------------------------------------------------------------------------ IContainerMDPtr Resolver::resolveContainer(IView* view, const ContainerSpecificationProto& proto) { ContainerSpecificationProto::ContainerCase type = proto.container_case(); switch (type) { case ContainerSpecificationProto::kPath: { return view->getContainer(proto.path()); } case ContainerSpecificationProto::kCid: { int64_t cid; if (!eos::common::ParseInt64(proto.cid(), cid)) { throw_mdexception(EINVAL, "Unable to parse Container ID: " << proto.cid()); } return view->getContainerMDSvc()->getContainerMD(cid); } case ContainerSpecificationProto::kCxid: { int64_t cid; if (!eos::common::ParseInt64(proto.cxid(), cid, 16)) { throw_mdexception(EINVAL, "Unable to parse Container ID: " << proto.cxid()); } return view->getContainerMDSvc()->getContainerMD(cid); } default: { throw_mdexception(EINVAL, "Provided protobuf message is empty, " "unable to resolve container"); } } } //------------------------------------------------------------------------------ // Parse FileIdentifier based on an string. // Recognizes "fid:", "fxid:", "ino:" //------------------------------------------------------------------------------ FileIdentifier Resolver::retrieveFileIdentifier(XrdOucString& str) { uint64_t ret; if (str.beginswith("fid:")) { return FileIdentifier(strtoull(str.c_str() + 4, 0, 10)); } if (str.beginswith("fxid:")) { return FileIdentifier(strtoull(str.c_str() + 5, 0, 16)); } if (str.beginswith("/.fxid:")) { return FileIdentifier(strtoull(str.c_str() + 7, 0, 16)); } if (str.beginswith("ino:")) { ret = strtoull(str.c_str() + 4, 0, 16); if (!eos::common::FileId::IsFileInode(ret)) { return FileIdentifier(0); } return FileIdentifier(eos::common::FileId::InodeToFid(ret)); } return FileIdentifier(0); } EOSNSNAMESPACE_END