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 /// \file engine/prepare/prepare_all.hpp 30*edb230c4SIgor Ostapenko /// The requirement preparation handler which runs all registered handlers. 31*edb230c4SIgor Ostapenko 32*edb230c4SIgor Ostapenko #if !defined(ENGINE_PREPARE_ALL_HPP) 33*edb230c4SIgor Ostapenko #define ENGINE_PREPARE_ALL_HPP 34*edb230c4SIgor Ostapenko 35*edb230c4SIgor Ostapenko #include "engine/prepare/prepare.hpp" 36*edb230c4SIgor Ostapenko 37*edb230c4SIgor Ostapenko namespace engine { 38*edb230c4SIgor Ostapenko namespace prepare { 39*edb230c4SIgor Ostapenko 40*edb230c4SIgor Ostapenko 41*edb230c4SIgor Ostapenko class prepare_all : public prepare::handler { 42*edb230c4SIgor Ostapenko public: 43*edb230c4SIgor Ostapenko const std::string& name() const; 44*edb230c4SIgor Ostapenko const std::string& description() const; 45*edb230c4SIgor Ostapenko int exec(cmdline::ui*, const cmdline::parsed_cmdline&, 46*edb230c4SIgor Ostapenko const config::tree&) const; 47*edb230c4SIgor Ostapenko }; 48*edb230c4SIgor Ostapenko 49*edb230c4SIgor Ostapenko 50*edb230c4SIgor Ostapenko } // namespace prepare 51*edb230c4SIgor Ostapenko } // namespace engine 52*edb230c4SIgor Ostapenko 53*edb230c4SIgor Ostapenko #endif // !defined(ENGINE_PREPARE_ALL_HPP) 54