xref: /freebsd/contrib/kyua/cli/cmd_prepare.cpp (revision edb230c4af499203d7a6894b3711fe6574b26040)
1*edb230c4SIgor Ostapenko // Copyright 2024 The Kyua Authors.
2*edb230c4SIgor Ostapenko // All rights reserved.
3*edb230c4SIgor Ostapenko //
4*edb230c4SIgor Ostapenko // Redistribution and use in source and binary forms, with or without
5*edb230c4SIgor Ostapenko // modification, are permitted provided that the following conditions are
6*edb230c4SIgor Ostapenko // met:
7*edb230c4SIgor Ostapenko //
8*edb230c4SIgor Ostapenko // * Redistributions of source code must retain the above copyright
9*edb230c4SIgor Ostapenko //   notice, this list of conditions and the following disclaimer.
10*edb230c4SIgor Ostapenko // * Redistributions in binary form must reproduce the above copyright
11*edb230c4SIgor Ostapenko //   notice, this list of conditions and the following disclaimer in the
12*edb230c4SIgor Ostapenko //   documentation and/or other materials provided with the distribution.
13*edb230c4SIgor Ostapenko // * Neither the name of Google Inc. nor the names of its contributors
14*edb230c4SIgor Ostapenko //   may be used to endorse or promote products derived from this software
15*edb230c4SIgor Ostapenko //   without specific prior written permission.
16*edb230c4SIgor Ostapenko //
17*edb230c4SIgor Ostapenko // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18*edb230c4SIgor Ostapenko // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19*edb230c4SIgor Ostapenko // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20*edb230c4SIgor Ostapenko // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21*edb230c4SIgor Ostapenko // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22*edb230c4SIgor Ostapenko // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23*edb230c4SIgor Ostapenko // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24*edb230c4SIgor Ostapenko // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25*edb230c4SIgor Ostapenko // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26*edb230c4SIgor Ostapenko // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27*edb230c4SIgor Ostapenko // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28*edb230c4SIgor Ostapenko 
29*edb230c4SIgor Ostapenko #include "cli/cmd_prepare.hpp"
30*edb230c4SIgor Ostapenko 
31*edb230c4SIgor Ostapenko #include "cli/common.ipp"
32*edb230c4SIgor Ostapenko #include "engine/prepare/prepare.hpp"
33*edb230c4SIgor Ostapenko #include "utils/cmdline/options.hpp"
34*edb230c4SIgor Ostapenko 
35*edb230c4SIgor Ostapenko namespace cmdline = utils::cmdline;
36*edb230c4SIgor Ostapenko namespace config = utils::config;
37*edb230c4SIgor Ostapenko namespace prepare = engine::prepare;
38*edb230c4SIgor Ostapenko 
39*edb230c4SIgor Ostapenko using cli::cmd_prepare;
40*edb230c4SIgor Ostapenko 
41*edb230c4SIgor Ostapenko 
42*edb230c4SIgor Ostapenko /// Default constructor for cmd_prepare.
cmd_prepare(void)43*edb230c4SIgor Ostapenko cmd_prepare::cmd_prepare(void) : cli_command(
44*edb230c4SIgor Ostapenko     "prepare", "[handler-name ...]", 0, -1,
45*edb230c4SIgor Ostapenko     "Prepares environment and declared requirements before testing")
46*edb230c4SIgor Ostapenko {
47*edb230c4SIgor Ostapenko     add_option(kyuafile_option);
48*edb230c4SIgor Ostapenko     add_option(build_root_option);
49*edb230c4SIgor Ostapenko     add_option(cmdline::bool_option('n', "dry-run", "Do not alter the system"));
50*edb230c4SIgor Ostapenko }
51*edb230c4SIgor Ostapenko 
52*edb230c4SIgor Ostapenko 
53*edb230c4SIgor Ostapenko /// Entry point for the "prepare" subcommand.
54*edb230c4SIgor Ostapenko ///
55*edb230c4SIgor Ostapenko /// \param ui Object to interact with the I/O of the program.
56*edb230c4SIgor Ostapenko /// \param cmdline Representation of the command line to the subcommand.
57*edb230c4SIgor Ostapenko /// \param user_config The runtime configuration of the program.
58*edb230c4SIgor Ostapenko ///
59*edb230c4SIgor Ostapenko /// \return 0 if successful, 1 otherwise.
60*edb230c4SIgor Ostapenko int
run(cmdline::ui * ui,const cmdline::parsed_cmdline & cmdline,const config::tree & user_config)61*edb230c4SIgor Ostapenko cmd_prepare::run(cmdline::ui* ui, const cmdline::parsed_cmdline& cmdline,
62*edb230c4SIgor Ostapenko             const config::tree& user_config)
63*edb230c4SIgor Ostapenko {
64*edb230c4SIgor Ostapenko     // List available preparation handlers
65*edb230c4SIgor Ostapenko     if (cmdline.arguments().empty()) {
66*edb230c4SIgor Ostapenko         for (auto& h : prepare::handlers()) {
67*edb230c4SIgor Ostapenko             ui->out(h->name(), false);
68*edb230c4SIgor Ostapenko             ui->out("\t\t\t", false);
69*edb230c4SIgor Ostapenko             ui->out(h->description());
70*edb230c4SIgor Ostapenko         }
71*edb230c4SIgor Ostapenko         return EXIT_SUCCESS;
72*edb230c4SIgor Ostapenko     }
73*edb230c4SIgor Ostapenko 
74*edb230c4SIgor Ostapenko     // Or run the given ones
75*edb230c4SIgor Ostapenko     return prepare::run(cmdline.arguments(), ui, cmdline, user_config);
76*edb230c4SIgor Ostapenko }
77