libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
main.hxx
1#pragma once
2
3// C++
4#include <exception>
5#include <iostream>
6#include <type_traits>
7
8// cosmos
9#include <cosmos/dso_export.h>
10#include <cosmos/cosmos.hxx>
11#include <cosmos/proc/types.hxx>
12#include <cosmos/string.hxx>
13#include <cosmos/utils.hxx>
14
15namespace cosmos {
16
19protected: // functions
20
21 virtual ExitStatus main() = 0;
22
23 template <typename MAIN>
24 friend int main(const int argc, const char **argv);
25};
26
29protected: // functions
30
31 virtual ExitStatus main(const int argc, const char **argv) = 0;
32
33 template <typename MAIN>
34 friend int main(const int argc, const char **argv);
35};
36
39protected: // functions
40
41 virtual ExitStatus main(const std::string_view argv0, const StringViewVector &args) = 0;
42
43 template <typename MAIN>
44 friend int main(const int argc, const char **argv);
45};
46
48
71template <typename MAIN>
72int main(const int argc, const char **argv) {
73 try {
74 cosmos::Init m_init;
75 MAIN instance;
76
77 try {
78 ExitStatus status;
79
80 if constexpr (std::is_base_of_v<MainNoArgs, MAIN>) {
81 status = static_cast<MainNoArgs&>(instance).main();
82 } else if constexpr (std::is_base_of_v<MainPlainArgs, MAIN>) {
83 status = static_cast<MainPlainArgs&>(instance).main(argc, argv);
84 } else if constexpr (std::is_base_of_v<MainContainerArgs, MAIN>) {
85 status = static_cast<MainContainerArgs&>(instance).main(
86 std::string_view{argv[0]},
87 StringViewVector{argv+1, argv+argc});
88 } else {
89 // we cannot use `false` here, because if the
90 // condition does not depend on the template
91 // parameter then it will still be evaluated,
92 // even if the else branch doesn't match
93 // during compile time!
94 static_assert(sizeof(MAIN) == 0, "MAIN type does not implement a main function interface");
95 }
96
97 return to_integral(status);
98 } catch (const cosmos::ExitStatus status) {
99 return to_integral(status);
100 } catch (const std::exception &ex) {
101 std::cerr << "Unhandled exception: " << ex.what() << std::endl;
102 return to_integral(ExitStatus::FAILURE);
103 }
104 } catch (const std::exception &ex) {
105 // this outer exception handler handles exception thrown from
106 // Init or MAIN constructors.
107 std::cerr << "Error starting program: " << ex.what() << std::endl;
108 return to_integral(ExitStatus::FAILURE);
109 }
110}
111
112}; // end ns
Class based main() entry point that passes STL style command line arguments.
Definition main.hxx:38
friend int main(const int argc, const char **argv)
C++ wrapper for the main() application entry point.
Definition main.hxx:72
Class based main entry point that passes no command line arguments.
Definition main.hxx:18
Class based entry point that passes C-style command line arguments.
Definition main.hxx:28
friend int main(const int argc, const char **argv)
C++ wrapper for the main() application entry point.
Definition main.hxx:72
ExitStatus
Represents an exit status code from a child process.
Definition types.hxx:43
std::vector< std::string_view > StringViewVector
A vector of std::string_view.
Definition string.hxx:20
Convenience initialization object.
Definition cosmos.hxx:34