aboutsummaryrefslogtreecommitdiff
path: root/bdep/init.cxx
blob: 435c3cc1c3a2a05b8e2477c581f118e31155c410 (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
// file      : bdep/init.cxx -*- C++ -*-
// license   : MIT; see accompanying LICENSE file

#include <bdep/init.hxx>

#include <bdep/project.hxx>
#include <bdep/project-odb.hxx>
#include <bdep/database.hxx>
#include <bdep/diagnostics.hxx>

#include <bdep/sync.hxx>
#include <bdep/config.hxx>

using namespace std;

namespace bdep
{
  void
  mk_bdep_dir (const dir_path& d)
  {
    dir_path sd (d / bdep_dir);

    if (!exists (sd))
    {
      mk (sd);

      // Create the .gitignore file that ignores everything under .bdep/
      // effectively making git ignore it (this prevents people from
      // accidentally adding this directory to a git repository).
      //
      path f (sd / ".gitignore");
      try
      {
        ofdstream os (f);
        os << "# This directory should not be version-controlled." << '\n'
           << "#"                                                  << '\n'
           << "*"                                                  << '\n';
        os.close ();
      }
      catch (const io_error& e)
      {
        fail << "unable to write to " << f << ": " << e;
      }
    }
  }

  shared_ptr<configuration>
  cmd_init_config (const configuration_name_options& o,
                   const configuration_add_options& ao,
                   const dir_path& prj,
                   const package_locations& ps,
                   database& db,
                   const dir_path& cfg,
                   const strings& args,
                   bool ca,
                   optional<string> cc)
  {
    const char* m (!ca ? "--config-create" :
                   !cc ? "--config-add"    : nullptr);

    if (m == nullptr)
      fail << "both --config-add and --config-create specified";

    optional<string> nm;
    optional<uint64_t> id;
    cmd_config_validate_add (o, m, nm, id);

    return ca
      ? cmd_config_add (o,
                        ao,
                        prj,
                        ps,
                        db,
                        cfg,
                        move (nm),
                        nullopt    /* type */,
                        move (id))
      : cmd_config_create (o,
                           ao,
                           prj,
                           ps,
                           db,
                           cfg,
                           args,
                           move (nm),
                           move (*cc),
                           move (id));
  }

  void
  cmd_init (const common_options& o,
            const dir_path& prj,
            database& db,
            const configurations& cfgs,
            const package_locations& pkgs,
            const strings& pkg_args,
            bool sync,
            const sys_options& so,
            bool create_host_config,
            bool create_build2_config)
  {
    // Return true if a package is initialized in the specified configuration.
    //
    auto initialized = [] (const package_location& p,
                           const shared_ptr<configuration>& c)
    {
      return find_if (c->packages.begin (),
                      c->packages.end (),
                      [&p] (const package_state& s)
                      {
                        return p.name == s.name;
                      }) != c->packages.end ();
    };

    // Verify that as a result of this operation, none of the packages will be
    // initialized in multiple default or forwarded configurations and fail if
    // that's not the case.
    //
    // Note that we perform verification in a separate loop to make sure that
    // no actual bpkg commands are executed and no database changes are
    // committed by the time of potential failure.
    //
    {
      transaction t (db.begin ());

      // For the sake of simplicity, add packages to the configuration
      // objects, updating their state in the database (so that the changes
      // are seen by the queries) and rollback the transaction in the
      // end. Note that by doing so, we can end up modifying passed
      // configuration objects and then failing, which is probably ok.
      //
      for (const shared_ptr<configuration>& c: cfgs)
      {
        for (const package_location& p: pkgs)
        {
          // Skip the package if it is already initialized in this
          // configuration.
          //
          if (initialized (p, c))
            continue;

          // Verify that there is no other default or forwarded configuration
          // that also has this package.
          //
          using query = bdep::query<configuration>;

          auto verify = [&c, &p, &db, &initialized] (const query& q,
                                                     const char* what)
          {
            for (const shared_ptr<configuration>& o:
                   pointer_result (db.query<configuration> (q)))
            {
              if (initialized (p, o))
              {
                // Differ, since the package is not initialized in `c` (see
                // above).
                //
                assert (o->id != c->id);

                fail << what << " configuration " << *o << " also has package "
                     << p.name << " initialized" <<
                  info << "while initializing in " << what << " configuration "
                     << *c <<
                  info << "specify packages and configurations explicitly";
              }
            }
          };

          if (c->default_)
            verify (query::default_, "default");

          if (c->forward)
            verify (query::forward, "forwarded");

          c->packages.push_back (package_state {p.name});
        }

        db.update (c);
      }

      t.rollback ();
    }

    // Now, execute the actual bpkg commands and update configurations for
    // real.
    //
    // We do each configuration in a separate transaction so that our state
    // reflects the bpkg configuration as closely as possible.
    //
    bool first (true);
    for (const shared_ptr<configuration>& c: cfgs)
    {
      // If we are initializing in multiple configurations, separate them with
      // a blank line and print the configuration name/directory.
      //
      if (verb && cfgs.size () > 1)
      {
        text << (first ? "" : "\n")
             << "in configuration " << *c << ':';

        first = false;
      }

      // Add project repository to the configuration. Note that we don't fetch
      // it since sync is going to do it anyway.
      //
      run_bpkg (3,
                o,
                "add",
                "-d", c->path,
                "--type", "dir",
                prj);

      vector<pair<dir_path, string>> created_cfgs;

      try
      {
        transaction t (db.begin ());

        // Reload the configuration object that could have been changed during
        // verification. This is required for skipping the already initialized
        // packages.
        //
        db.reload (*c);

        bool first (c->packages.empty ()); // First init for this project.

        for (const package_location& p: pkgs)
        {
          if (initialized (p, c))
          {
            if (verb)
              info << "package " << p.name << " is already initialized";

            continue;
          }

          // If we are initializing multiple packages or there will be no sync,
          // print their names.
          //
          if (verb && (pkgs.size () > 1 || !sync))
            text << "initializing package " << p.name;

          c->packages.push_back (package_state {p.name});
        }

        // Should we sync then commit the database or commit and then sync?
        // Either way we can end up with an inconsistent state. Note, however,
        // that the state in the build configuration can in most cases be
        // corrected with a retry (e.g., "upgrade" the package to the fixed
        // version, etc) while if we think (from the database state) that the
        // package has already been initialized, then there will be no way to
        // retry anything (though it could probably be corrected with a sync
        // or, failed that, deinit/init).
        //
        // However, there is a drawback to doing it this way: if we trigger an
        // implicit sync (e.g., via a hook) of something that uses the same
        // database, we will get the "database is used by another process"
        // error. This can be worked around by disabling the implicit sync
        // (BDEP_SYNC=0).
        //
        // Note: semantically equivalent to the first form of the sync
        // command.
        //
        // If this is the first initialization of this project, also force
        // full repository refetch for good measure (see GH issue #343 for
        // details).
        //
        if (sync)
          cmd_sync (o,
                    prj,
                    c,
                    false                /* implicit */,
                    pkg_args,
                    first ? true : false /* fetch (full/shallow) */,
                    true                 /* yes */,
                    false                /* name_cfg */,
                    pkgs,
                    so,
                    create_host_config,
                    create_build2_config,
                    &t,
                    &created_cfgs);

        db.update (c);
        t.commit ();
      }
      catch (const failed&)
      {
        if (!created_cfgs.empty ())
        {
          transaction t (db.begin ());

          for (const auto& c: created_cfgs)
            cmd_config_add (prj,
                            t,
                            c.first  /* path */,
                            c.second /* name */,
                            c.second /* type */);

          t.commit ();
        }

        throw;
      }
    }
  }

  int
  cmd_init (const cmd_init_options& o, cli::group_scanner& args)
  {
    tracer trace ("init");

    bool ca (o.config_add_specified ());

    // Type of configuration being created, if --config-create is specified.
    //
    optional<string> cc (o.config_create_specified ()
                         ? o.type ()
                         : optional<string> ());

    if (o.empty ())
    {
      if (ca)           fail << "both --empty and --config-add specified";
      if (cc)           fail << "both --empty and --config-create specified";
      if (o.no_sync ()) fail << "both --empty and --no-sync specified";
    }

    if (const char* n = cmd_config_validate_add (o))
    {
      if (!ca && !cc)
        fail << n << " specified without --config-(add|create)";

      if (o.type_specified () && !cc)
        fail << "--type|--config-type specified without --config-create";

      if (o.existing () && !cc)
        fail << "--existing|-e specified without --config-create";

      if (o.wipe () && !cc)
        fail << "--wipe specified without --config-create";
    }

    project_packages pp (
      find_project_packages (o, o.empty () /* ignore_packages */));

    const dir_path& prj (pp.project);

    if (verb)
      text << "initializing in project " << prj;

    // Create .bdep/.
    //
    mk_bdep_dir (prj);

    // Open the database creating it if necessary.
    //
    database db (open (prj, trace, true /* create */));

    // --empty
    //
    if (o.empty ())
    {
      //@@ TODO: what should we do if the database already exists?

      return 0;
    }

    // Skip the first `--` separator, if any.
    //
    bool sep (false);
    if (args.more () && args.peek () == string ("--"))
    {
      sep = true;
      args.next ();
    }

    configurations cfgs;
    {
      // --config-add/create
      //
      if (ca || cc)
      {
        strings cfg_args;
        if (cc)
        {
          // Read the configuration arguments until we reach the second `--`
          // separator or eos.
          //
          // Also make sure that there is at least one module unless the `--`
          // separator is specified (see cmd_config_create() for details).
          //
          bool module (false);
          while (args.more ())
          {
            string a (args.next ());

            if (a == "--")
            {
              sep = true;
              break;
            }
            else
            {
              if (!sep)
              {
                if (a.find ('=') == string::npos)
                  module = true;
              }

              cfg_args.push_back (move (a));
            }
          }

          if (!sep && !module)
            fail << "no build system module(s) specified for configuration "
                 << "to be created" <<
              info << "for example, for C/C++ configuration, specify 'cc'" <<
              info << "use '--' to create configuration without modules" <<
              info << "for example: bdep init -C ... --";
        }

        cfgs.push_back (
          cmd_init_config (
            o,
            o,
            prj,
            load_packages (prj),
            db,
            ca ? o.config_add () : o.config_create (),
            cfg_args,
            ca,
            move (cc)));
      }
      else
      {
        // If this is the default mode, then find the configurations the user
        // wants us to use.
        //
        transaction t (db.begin ());
        cfgs = find_configurations (o, prj, t).first;
        t.commit ();
      }
    }

    // Initialize each package in each configuration.
    //
    cmd_init (o,
              prj,
              db,
              cfgs,
              pp.packages,
              scan_arguments (args) /* pkg_args */,
              !o.no_sync (),
              sys_options (o),
              o.create_host_config (),
              o.create_build2_config ());

    return 0;
  }

  default_options_files
  options_files (const char*, const cmd_init_options& o, const strings&)
  {
    // NOTE: remember to update the documentation if changing anything here.

    // bdep.options
    // bdep-{config config-add}.options               # -A
    // bdep-{config config-add config-create}.options # -C
    // bdep-init.options

    default_options_files r {{path ("bdep.options")}, find_project (o)};

    auto add = [&r] (const string& n)
    {
      r.files.push_back (path ("bdep-" + n + ".options"));
    };

    if (o.config_add_specified () || o.config_create_specified ())
    {
      add ("config");
      add ("config-add");
    }

    if (o.config_create_specified ())
      add ("config-create");

    add ("init");

    return r;
  }

  cmd_init_options
  merge_options (const default_options<cmd_init_options>& defs,
                 const cmd_init_options& cmd)
  {
    // NOTE: remember to update the documentation if changing anything here.

    return merge_default_options (
      defs,
      cmd,
      [] (const default_options_entry<cmd_init_options>& e,
          const cmd_init_options&)
      {
        const cmd_init_options& o (e.options);

        auto forbid = [&e] (const char* opt, bool specified)
        {
          if (specified)
            fail (e.file) << opt << " in default options file";
        };

        forbid ("--directory|-d",     o.directory_specified ());
        forbid ("--config-add|-A",    o.config_add_specified ());
        forbid ("--config-create|-C", o.config_create_specified ());
        forbid ("--wipe",             o.wipe ()); // Dangerous.
      });
  }
}