| |
| |
| |
| |
| |
|
|
| #ifndef MAMBA_CORE_ACTIVATION_HPP |
| #define MAMBA_CORE_ACTIVATION_HPP |
|
|
| #include <string> |
| #include <unordered_map> |
| #include <utility> |
| #include <vector> |
|
|
| #include "mamba/fs/filesystem.hpp" |
|
|
| |
|
|
| namespace mamba |
| { |
| class Context; |
|
|
| enum class ActivationType |
| { |
| ACTIVATE, |
| DEACTIVATE, |
| REACTIVATE |
| }; |
|
|
| struct EnvironmentTransform |
| { |
| std::string export_path; |
| std::vector<std::string> unset_vars; |
| std::vector<std::pair<std::string, std::string>> set_vars; |
| std::vector<std::pair<std::string, std::string>> export_vars; |
| std::vector<fs::u8path> activate_scripts; |
| std::vector<fs::u8path> deactivate_scripts; |
| }; |
|
|
| class Activator |
| { |
| public: |
|
|
| virtual ~Activator() = default; |
|
|
| Activator(const Activator&) = delete; |
| Activator& operator=(const Activator&) = delete; |
| Activator(Activator&&) = delete; |
| Activator& operator=(Activator&&) = delete; |
|
|
| virtual std::string script(const EnvironmentTransform& env) = 0; |
| virtual std::pair<std::string, std::string> |
| update_prompt(const std::string& conda_prompt_modifier) = 0; |
| virtual std::string shell_extension() = 0; |
| virtual std::string shell() = 0; |
|
|
| std::vector<fs::u8path> get_activate_scripts(const fs::u8path& prefix); |
| std::vector<fs::u8path> get_deactivate_scripts(const fs::u8path& prefix); |
|
|
| std::string get_default_env(const fs::u8path& prefix); |
| std::vector<std::pair<std::string, std::string>> |
| get_environment_vars(const fs::u8path& prefix); |
|
|
| std::string get_prompt_modifier( |
| const fs::u8path& prefix, |
| const std::string& conda_default_env, |
| int old_conda_shlvl |
| ); |
|
|
| std::vector<fs::u8path> get_PATH(); |
|
|
| std::string add_prefix_to_path(const fs::u8path& prefix, int old_conda_shlvl); |
| std::string |
| replace_prefix_in_path(const fs::u8path& old_prefix, const fs::u8path& new_prefix); |
| std::string remove_prefix_from_path(const fs::u8path& prefix); |
|
|
| void get_export_unset_vars( |
| EnvironmentTransform& envt, |
| const std::vector<std::pair<std::string, std::string>>& to_export |
| ); |
|
|
| EnvironmentTransform build_reactivate(); |
| EnvironmentTransform build_deactivate(); |
| EnvironmentTransform build_activate(const fs::u8path& prefix); |
|
|
| std::string activate(const fs::u8path& prefix, bool stack); |
| std::string reactivate(); |
| std::string deactivate(); |
|
|
| virtual std::string hook_preamble() = 0; |
| virtual std::string hook_postamble() = 0; |
| virtual fs::u8path hook_source_path() = 0; |
|
|
| std::string hook(const std::string& shell_type); |
|
|
| protected: |
|
|
| explicit Activator(const Context& context); |
|
|
| const Context& m_context; |
| bool m_stack = false; |
| ActivationType m_action; |
|
|
| std::unordered_map<std::string, std::string> m_env; |
| }; |
|
|
| class PosixActivator : public Activator |
| { |
| public: |
|
|
| explicit PosixActivator(const Context& context) |
| : Activator(context) |
| { |
| } |
|
|
| virtual ~PosixActivator() = default; |
|
|
| std::string script(const EnvironmentTransform& env_transform) override; |
| std::pair<std::string, std::string> |
| update_prompt(const std::string& conda_prompt_modifier) override; |
| std::string shell_extension() override; |
| std::string shell() override; |
|
|
| std::string hook_preamble() override; |
| std::string hook_postamble() override; |
| fs::u8path hook_source_path() override; |
| }; |
|
|
| class CshActivator : public Activator |
| { |
| public: |
|
|
| explicit CshActivator(const Context& context) |
| : Activator(context) |
| { |
| } |
|
|
| virtual ~CshActivator() = default; |
|
|
| std::string script(const EnvironmentTransform& env_transform) override; |
| std::pair<std::string, std::string> |
| update_prompt(const std::string& conda_prompt_modifier) override; |
| std::string shell_extension() override; |
| std::string shell() override; |
|
|
| std::string hook_preamble() override; |
| std::string hook_postamble() override; |
| fs::u8path hook_source_path() override; |
| }; |
|
|
| class CmdExeActivator : public Activator |
| { |
| public: |
|
|
| explicit CmdExeActivator(const Context& context) |
| : Activator(context) |
| { |
| } |
|
|
| virtual ~CmdExeActivator() = default; |
|
|
| std::string script(const EnvironmentTransform& env_transform) override; |
| std::pair<std::string, std::string> |
| update_prompt(const std::string& conda_prompt_modifier) override; |
| std::string shell_extension() override; |
| std::string shell() override; |
|
|
| std::string hook_preamble() override; |
| std::string hook_postamble() override; |
| fs::u8path hook_source_path() override; |
| }; |
|
|
| class PowerShellActivator : public Activator |
| { |
| public: |
|
|
| explicit PowerShellActivator(const Context& context) |
| : Activator(context) |
| { |
| } |
|
|
| virtual ~PowerShellActivator() = default; |
|
|
| std::string script(const EnvironmentTransform& env_transform) override; |
| std::pair<std::string, std::string> |
| update_prompt(const std::string& conda_prompt_modifier) override; |
| std::string shell_extension() override; |
| std::string shell() override; |
|
|
| std::string hook_preamble() override; |
| std::string hook_postamble() override; |
| fs::u8path hook_source_path() override; |
| }; |
|
|
| class XonshActivator : public Activator |
| { |
| public: |
|
|
| explicit XonshActivator(const Context& context) |
| : Activator(context) |
| { |
| } |
|
|
| virtual ~XonshActivator() = default; |
|
|
| std::string script(const EnvironmentTransform& env_transform) override; |
| std::pair<std::string, std::string> |
| update_prompt(const std::string& conda_prompt_modifier) override; |
| std::string shell_extension() override; |
| std::string shell() override; |
|
|
| std::string hook_preamble() override; |
| std::string hook_postamble() override; |
| fs::u8path hook_source_path() override; |
| }; |
|
|
| class FishActivator : public Activator |
| { |
| public: |
|
|
| explicit FishActivator(const Context& context) |
| : Activator(context) |
| { |
| } |
|
|
| virtual ~FishActivator() = default; |
|
|
| std::string script(const EnvironmentTransform& env_transform) override; |
| std::pair<std::string, std::string> |
| update_prompt(const std::string& conda_prompt_modifier) override; |
| std::string shell_extension() override; |
| std::string shell() override; |
|
|
| std::string hook_preamble() override; |
| std::string hook_postamble() override; |
| fs::u8path hook_source_path() override; |
| }; |
|
|
| class NuActivator : public Activator |
| { |
| public: |
|
|
| explicit NuActivator(const Context& context) |
| : Activator(context) |
| { |
| } |
|
|
| virtual ~NuActivator() = default; |
|
|
| std::string script(const EnvironmentTransform& env_transform) override; |
| std::pair<std::string, std::string> |
| update_prompt(const std::string& conda_prompt_modifier) override; |
| std::string shell_extension() override; |
| std::string shell() override; |
|
|
| std::string hook_preamble() override; |
| std::string hook_postamble() override; |
| fs::u8path hook_source_path() override; |
| }; |
|
|
| } |
|
|
| #endif |
|
|