// Copyright (c) 2023, QuantStack and Mamba Contributors // // Distributed under the terms of the BSD 3-Clause License. // // The full license is in the file LICENSE, distributed with this software. #ifndef MAMBA_CORE_SOLUTION_HPP #define MAMBA_CORE_SOLUTION_HPP #include #include #include #include "mamba/specs/package_info.hpp" #include "mamba/util/loop_control.hpp" #include "mamba/util/type_traits.hpp" namespace mamba::solver { struct Solution { struct Omit { specs::PackageInfo what; }; struct Upgrade { specs::PackageInfo remove; specs::PackageInfo install; }; struct Downgrade { specs::PackageInfo remove; specs::PackageInfo install; }; struct Change { specs::PackageInfo remove; specs::PackageInfo install; }; struct Reinstall { specs::PackageInfo what; }; struct Remove { specs::PackageInfo remove; }; struct Install { specs::PackageInfo install; }; template inline static constexpr bool has_remove_v = util::is_any_of_v; template inline static constexpr bool has_install_v = util::is_any_of_v; using Action = std::variant; using action_list = std::vector; action_list actions = {}; }; template void for_each_to_remove(Iter first, Iter last, UnaryFunc&& func); template void for_each_to_remove(Range&& actions, UnaryFunc&& func); template void for_each_to_install(Iter first, Iter last, UnaryFunc&& func); template void for_each_to_install(Range&& actions, UnaryFunc&& func); template void for_each_to_omit(Iter first, Iter last, UnaryFunc&& func); template void for_each_to_omit(Range&& actions, UnaryFunc&& func); /******************************** * Implementation of Solution * ********************************/ namespace detail { template auto to_remove_ptr(Action& action) { using PackageInfoPtr = std:: conditional_t, const specs::PackageInfo*, specs::PackageInfo*>; return std::visit( [](auto& a) -> PackageInfoPtr { using A = std::decay_t; if constexpr (Solution::has_remove_v) { return &(a.remove); } else if constexpr (std::is_same_v) { return &(a.what); } else { return nullptr; } }, action ); } } // TODO(C++20): Poor man's replacement to range filter transform template void for_each_to_remove(Iter first, Iter last, UnaryFunc&& func) { for (; first != last; ++first) { if (auto* const ptr = detail::to_remove_ptr(*first)) { if constexpr (std::is_same_v) { if (func(*ptr) == util::LoopControl::Break) { break; } } else { func(*ptr); } } } } template void for_each_to_remove(Range&& actions, UnaryFunc&& func) { return for_each_to_remove(actions.begin(), actions.end(), std::forward(func)); } namespace detail { template auto to_install_ptr(Action& action) { using PackageInfoPtr = std:: conditional_t, const specs::PackageInfo*, specs::PackageInfo*>; return std::visit( [](auto& a) -> PackageInfoPtr { using A = std::decay_t; if constexpr (Solution::has_install_v) { return &(a.install); } else if constexpr (std::is_same_v) { return &(a.what); } else { return nullptr; } }, action ); } } template void for_each_to_install(Iter first, Iter last, UnaryFunc&& func) { for (; first != last; ++first) { if (auto* const ptr = detail::to_install_ptr(*first)) { if constexpr (std::is_same_v) { if (func(*ptr) == util::LoopControl::Break) { break; } } else { func(*ptr); } } } } // TODO(C++20): Poor man's replacement to range filter transform template void for_each_to_install(Range&& actions, UnaryFunc&& func) { return for_each_to_install(actions.begin(), actions.end(), std::forward(func)); } namespace detail { template auto to_omit_ptr(Action& action) { using PackageInfoPtr = std:: conditional_t, const specs::PackageInfo*, specs::PackageInfo*>; return std::visit( [](auto& a) -> PackageInfoPtr { using A = std::decay_t; if constexpr (std::is_same_v) { return &(a.what); } else { return nullptr; } }, action ); } } // TODO(C++20): Poor man's replacement to range filter transform template void for_each_to_omit(Iter first, Iter last, UnaryFunc&& func) { for (; first != last; ++first) { if (auto* const ptr = detail::to_omit_ptr(*first)) { if constexpr (std::is_same_v) { if (func(*ptr) == util::LoopControl::Break) { break; } } else { func(*ptr); } } } } template void for_each_to_omit(Range&& actions, UnaryFunc&& func) { return for_each_to_omit(actions.begin(), actions.end(), std::forward(func)); } } #endif