//------------------------------------------------------------------------------ // File: ConversionInfo.hh // Author: Mihai Patrascoiu - CERN //------------------------------------------------------------------------------ /************************************************************************ * EOS - the CERN Disk Storage System * * Copyright (C) 2019 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 .* ************************************************************************/ #pragma once #include "mgm/Namespace.hh" #include "common/FileId.hh" #include "common/LayoutId.hh" #include "common/FileSystem.hh" EOSMGMNAMESPACE_BEGIN //------------------------------------------------------------------------------ //! @brief Structure holding conversion details //------------------------------------------------------------------------------ struct ConversionInfo { ///! Marker for ctime update of the converted file static constexpr char UPDATE_CTIME = '+'; //---------------------------------------------------------------------------- //! Constructor //---------------------------------------------------------------------------- ConversionInfo(const eos::common::FileId::fileid_t fid, const eos::common::LayoutId::layoutid_t lid, const eos::common::GroupLocator& location, const std::string& plct_policy, const bool update_ctime, const std::string& app_tag); //---------------------------------------------------------------------------- //! Destructor //---------------------------------------------------------------------------- ~ConversionInfo() = default; //---------------------------------------------------------------------------- //! String representation of the conversion info //---------------------------------------------------------------------------- inline std::string ToString() const { return mConversionString; } //---------------------------------------------------------------------------- //! Parse a conversion string representation into a conversion info object. //! //! A conversion string has the following format: //! :#[^app_tag^][~][!] //! //! //! @param sconversion the conversion string representation //! @param conversion the conversion info object to fill //! //! @return a shared_ptr holding ConversionInfo on success or nullptr //---------------------------------------------------------------------------- static std::shared_ptr parseConversionString( std::string sconversion); const eos::common::FileId::fileid_t mFid; ///< File id const eos::common::LayoutId::layoutid_t mLid; ///< Target layout id const eos::common::GroupLocator mLocation; ///< Target space/group placement const std::string mPlctPolicy; ///< Placement policy const bool mUpdateCtime; ///< Update ctime of converted file const std::string mAppTag; ///< application tag of submitting application private: std::string mConversionString; ///< Conversion string representation }; EOSMGMNAMESPACE_END