aboutsummaryrefslogtreecommitdiff
path: root/bpkg/system-repository.hxx
blob: 83a43ea00a619cb6512fab542afba77e0099a6cc (plain)
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
// file      : bpkg/system-repository.hxx -*- C++ -*-
// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#ifndef BPKG_SYSTEM_REPOSITORY_HXX
#define BPKG_SYSTEM_REPOSITORY_HXX

#include <map>

#include <libbpkg/manifest.hxx>     // version
#include <libbpkg/package-name.hxx>

#include <bpkg/types.hxx>
#include <bpkg/utility.hxx>

namespace bpkg
{
  // A map of discovered system package versions. The information can be
  // authoritative (i.e., it was provided by the user or auto-discovered
  // on this run) or non-authoritative (i.e., comes from selected_packages
  // that are present in the database; in a sence it was authoritative but
  // on some previous run.
  //
  // Note that in our model we assume that once an authoritative version has
  // been discovered, it does not change (on this run; see caching logic in
  // available package).
  //
  struct system_package
  {
    using version_type = bpkg::version;

    version_type version;
    bool authoritative;
  };

  class system_repository_type
  {
  public:
    const version&
    insert (const package_name& name, const version&, bool authoritative);

    const system_package*
    find (const package_name& name)
    {
      auto i (map_.find (name));
      return i != map_.end () ? &i->second : nullptr;
    }

  private:
    std::map<package_name, system_package> map_;
  };

  extern system_repository_type system_repository;
}

#endif // BPKG_SYSTEM_REPOSITORY_HXX