// Copyright (C) 2022 Check Point Software Technologies Ltd. All rights reserved. // Licensed under the Apache License, Version 2.0 (the "License"); // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #ifndef __PACKAGE_H__ #define __PACKAGE_H__ #include #include #include "cereal/archives/json.hpp" #include "cereal/types/string.hpp" #include "cereal/types/vector.hpp" #include "debug.h" #include "maybe_res.h" class Package { public: enum class ChecksumTypes { SHA1, SHA256, SHA512, MD5 }; enum class PackageType { Service, SharedObject }; const std::string & getDownloadPath() const { return download_path; } const std::string & getRelativeDownloadPath() const { return relative_path; } const std::string & getName() const { return name; } const std::string & getVersion() const { return version; } const std::string & getChecksum() const { return checksum_value; } const std::string & getErrorMessage() const { return error_message; } const PackageType & getType() const { return package_type; } const std::vector & getRequire() const { return require_packages; } const ChecksumTypes & getChecksumType() const { return checksum_type; } const bool & isInstallable() const { return installable; } bool operator==(const Package &other) const; bool operator!=(const Package &other) const; void serialize(cereal::JSONOutputArchive & out_archive) const; void serialize(cereal::JSONInputArchive & in_archive); private: template std::string mapTypeToString(const T &type, const std::map &type_mapper) const { for (auto &mapped_type : type_mapper) { if (mapped_type.second == type) return mapped_type.first; } dbgAssert(false) << AlertInfo(AlertTeam::CORE, "packaging") << "Unsupported type " << static_cast(type); // Just satisfying the compiler, this return never reached return std::string(); } bool installable = true; std::string error_message; std::string mirror; std::string name; std::string version; std::string download_path; std::string relative_path; ChecksumTypes checksum_type; std::string checksum_value; PackageType package_type; std::vector require_packages; }; #endif // __PACKAGE_H__