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

#include <bpkg/system-repository.hxx>

namespace bpkg
{
  system_repository_type system_repository;

  const version& system_repository_type::
  insert (const package_name& name, const version& v, bool authoritative)
  {
    auto p (map_.emplace (name, system_package {v, authoritative}));

    if (!p.second)
    {
      system_package& sp (p.first->second);

      // We should not override authoritative information.
      //
      assert (!(authoritative && sp.authoritative));

      if (authoritative >= sp.authoritative)
      {
        sp.authoritative = authoritative;
        sp.version = v;
      }
    }

    return p.first->second.version;
  }
}