blob: 280c780fdc2647d4d0b93473cca6ab159ae96331 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
// file : bpkg/rep-add.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <bpkg/rep-add.hxx>
#include <bpkg/package.hxx>
#include <bpkg/package-odb.hxx>
#include <bpkg/database.hxx>
#include <bpkg/diagnostics.hxx>
#include <bpkg/manifest-utility.hxx>
using namespace std;
using namespace butl;
namespace bpkg
{
shared_ptr<repository>
rep_add (const common_options& o,
transaction& t,
const repository_location& rl)
{
const string& rn (rl.canonical_name ());
database& db (t.database ());
shared_ptr<repository> r (db.find<repository> (rn));
bool updated (false);
if (r == nullptr)
{
r.reset (new repository (rl));
db.persist (r);
}
else if (r->location.url () != rl.url ())
{
r->location = rl;
db.update (r);
updated = true;
}
shared_ptr<repository_fragment> root (db.load<repository_fragment> (""));
bool added (
root->complements.insert (lazy_shared_ptr<repository> (db, r)).second);
if (added)
db.update (root);
if (verb && !o.no_result ())
text << (added ? "added " : updated ? "updated " : "unchanged ") << rn;
return r;
}
int
rep_add (const rep_add_options& o, cli::scanner& args)
{
tracer trace ("rep_add");
dir_path c (o.directory ());
l4 ([&]{trace << "configuration: " << c;});
if (!args.more ())
fail << "repository location argument expected" <<
info << "run 'bpkg help rep-add' for more information";
database db (open (c, trace));
transaction t (db);
session s; // Repository dependencies can have cycles.
while (args.more ())
{
repository_location rl (
parse_location (args.next (),
o.type_specified ()
? optional<repository_type> (o.type ())
: nullopt));
rep_add (o, t, rl);
}
t.commit ();
return 0;
}
}
|