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
|
// file : mod/mod-ci.hxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#ifndef MOD_MOD_CI_HXX
#define MOD_MOD_CI_HXX
#include <web/xhtml/fragment.hxx>
#include <libbrep/types.hxx>
#include <libbrep/utility.hxx>
#include <libbrep/build.hxx>
#include <libbrep/common.hxx> // tenant_service
#include <mod/module.hxx>
#include <mod/module-options.hxx>
#include <mod/ci-common.hxx>
#ifdef BREP_CI_TENANT_SERVICE
# include <mod/tenant-service.hxx>
#endif
namespace brep
{
class ci: public handler,
private ci_start
#ifdef BREP_CI_TENANT_SERVICE
, public tenant_service_build_queued,
public tenant_service_build_building,
public tenant_service_build_built
#endif
{
public:
#ifdef BREP_CI_TENANT_SERVICE
explicit
ci (tenant_service_map&);
// Create a shallow copy (handling instance) if initialized and a deep
// copy (context exemplar) otherwise.
//
ci (const ci&, tenant_service_map&);
#else
ci () = default;
// Create a shallow copy (handling instance) if initialized and a deep
// copy (context exemplar) otherwise.
//
explicit
ci (const ci&);
#endif
virtual bool
handle (request&, response&) override;
virtual const cli::options&
cli_options () const override {return options::ci::description ();}
#ifdef BREP_CI_TENANT_SERVICE
virtual function<optional<string> (const tenant_service&)>
build_queued (const tenant_service&,
const vector<build>&,
optional<build_state> initial_state,
const build_queued_hints&,
const diag_epilogue& log_writer) const noexcept override;
virtual function<optional<string> (const tenant_service&)>
build_building (const tenant_service&,
const build&,
const diag_epilogue& log_writer) const noexcept override;
virtual function<optional<string> (const tenant_service&)>
build_built (const tenant_service&,
const build&,
const diag_epilogue& log_writer) const noexcept override;
#endif
private:
virtual void
init (cli::scanner&) override;
private:
shared_ptr<options::ci> options_;
shared_ptr<web::xhtml::fragment> form_;
#ifdef BREP_CI_TENANT_SERVICE
tenant_service_map& tenant_service_map_;
#endif
};
}
#endif // MOD_MOD_CI_HXX
|