// Copyright (c) 2019, 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_ACTIVATION_HPP #define MAMBA_CORE_ACTIVATION_HPP #include #include #include #include #include "mamba/fs/filesystem.hpp" // TODO write a map that keeps insertion order namespace mamba { class Context; enum class ActivationType { ACTIVATE, DEACTIVATE, REACTIVATE }; struct EnvironmentTransform { std::string export_path; std::vector unset_vars; std::vector> set_vars; std::vector> export_vars; std::vector activate_scripts; std::vector 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 update_prompt(const std::string& conda_prompt_modifier) = 0; virtual std::string shell_extension() = 0; virtual std::string shell() = 0; std::vector get_activate_scripts(const fs::u8path& prefix); std::vector get_deactivate_scripts(const fs::u8path& prefix); std::string get_default_env(const fs::u8path& prefix); std::vector> 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 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>& 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 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 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 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 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 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 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 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 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; }; } // namespace mamba #endif