File size: 1,606 Bytes
2492322
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// 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_PREFIX_DATA_HPP
#define MAMBA_CORE_PREFIX_DATA_HPP

#include <map>
#include <string>

#include "mamba/core/error_handling.hpp"
#include "mamba/core/history.hpp"
#include "mamba/specs/package_info.hpp"

namespace mamba
{
    class ChannelContext;

    class PrefixData
    {
    public:

        using package_map = std::map<std::string, specs::PackageInfo>;

        static expected_t<PrefixData>
        create(const fs::u8path& prefix_path, ChannelContext& channel_context, bool no_pip = false);

        void add_packages(const std::vector<specs::PackageInfo>& packages);
        void load_single_record(const fs::u8path& path);

        const package_map& records() const;
        const package_map& pip_records() const;
        package_map all_pkg_mgr_records() const;

        History& history();
        const fs::u8path& path() const;
        std::vector<specs::PackageInfo> sorted_records() const;

        ChannelContext& channel_context() const
        {
            return m_channel_context;
        }

    private:

        PrefixData(const fs::u8path& prefix_path, ChannelContext& channel_context, bool no_pip);

        void load_site_packages();

        History m_history;
        package_map m_package_records;
        package_map m_pip_package_records;
        fs::u8path m_prefix_path;

        ChannelContext& m_channel_context;
    };
}  // namespace mamba

#endif