| |
| |
| |
| |
| |
|
|
| #ifndef MAMBA_CORE_TRANSACTION_HPP |
| #define MAMBA_CORE_TRANSACTION_HPP |
|
|
| #include <string> |
| #include <tuple> |
| #include <vector> |
|
|
| #include "mamba/api/install.hpp" |
| #include "mamba/core/package_cache.hpp" |
| #include "mamba/core/prefix_data.hpp" |
| #include "mamba/fs/filesystem.hpp" |
| #include "mamba/solver/libsolv/database.hpp" |
| #include "mamba/solver/solution.hpp" |
| #include "mamba/specs/match_spec.hpp" |
| #include "mamba/specs/package_info.hpp" |
|
|
| namespace mamba |
| { |
| namespace solver |
| { |
| struct Request; |
| } |
|
|
| class ChannelContext; |
| class Context; |
|
|
| class MTransaction |
| { |
| public: |
|
|
| MTransaction( |
| const Context& ctx, |
| solver::libsolv::Database& database, |
| std::vector<specs::PackageInfo> pkgs_to_remove, |
| std::vector<specs::PackageInfo> pkgs_to_install, |
| MultiPackageCache& caches |
| ); |
|
|
| MTransaction( |
| const Context& ctx, |
| solver::libsolv::Database& database, |
| const solver::Request& request, |
| solver::Solution solution, |
| MultiPackageCache& caches |
| ); |
|
|
| |
| MTransaction( |
| const Context& ctx, |
| solver::libsolv::Database& database, |
| std::vector<specs::PackageInfo> packages, |
| MultiPackageCache& caches |
| ); |
|
|
| MTransaction(const MTransaction&) = delete; |
| MTransaction(MTransaction&&) = delete; |
| MTransaction& operator=(const MTransaction&) = delete; |
| MTransaction& operator=(MTransaction&&) = delete; |
|
|
| using to_install_type = std::vector<std::tuple<std::string, std::string, std::string>>; |
| using to_remove_type = std::vector<std::tuple<std::string, std::string>>; |
| using to_specs_type = std::tuple<std::vector<std::string>, std::vector<std::string>>; |
| using to_conda_type = std::tuple<to_specs_type, to_install_type, to_remove_type>; |
|
|
| to_conda_type to_conda(); |
| void log_json(); |
| bool fetch_extract_packages(const Context& ctx, ChannelContext& channel_context); |
| bool empty(); |
| bool prompt(const Context& ctx, ChannelContext& channel_context); |
| void print(const Context& ctx, ChannelContext& channel_context); |
| bool execute(const Context& ctx, ChannelContext& channel_context, PrefixData& prefix); |
|
|
| private: |
|
|
| MultiPackageCache m_multi_cache; |
| History::UserRequest m_history_entry; |
| solver::Solution m_solution; |
|
|
| |
| std::pair<std::string, std::string> m_py_versions; |
| |
| |
| |
| |
| |
| |
| |
| std::string m_python_site_packages_path; |
| std::vector<specs::MatchSpec> m_requested_specs; |
|
|
| MTransaction(const CommandParams& command_params, MultiPackageCache&); |
| }; |
|
|
| MTransaction create_explicit_transaction_from_urls( |
| const Context& ctx, |
| solver::libsolv::Database& database, |
| const std::vector<std::string>& urls, |
| MultiPackageCache& package_caches, |
| std::vector<detail::other_pkg_mgr_spec>& other_specs |
| ); |
|
|
| MTransaction create_explicit_transaction_from_lockfile( |
| const Context& ctx, |
| solver::libsolv::Database& database, |
| const fs::u8path& env_lockfile_path, |
| const std::vector<std::string>& categories, |
| MultiPackageCache& package_caches, |
| std::vector<detail::other_pkg_mgr_spec>& other_specs |
| ); |
|
|
| } |
|
|
| #endif |
|
|