libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::MainContainerArgs Class Referenceabstract

Class based main() entry point that passes STL style command line arguments. More...

#include <main.hxx>

Protected Member Functions

virtual ExitStatus main (const std::string_view argv0, const StringViewVector &args)=0
 

Friends

template<typename MAIN >
int main (const int argc, const char **argv)
 C++ wrapper for the main() application entry point.
 

Detailed Description

Class based main() entry point that passes STL style command line arguments.

Definition at line 38 of file main.hxx.

Friends And Related Symbol Documentation

◆ main

template<typename MAIN >
int main ( const int argc,
const char ** argv )
friend

C++ wrapper for the main() application entry point.

This wrapper can be used to invoke a class member function to gain a libcosmos C++ style entry point into the program along with automatic library initialization and handling of uncaught exceptions as well as ExitStatus propagation.

Use this wrapper in the actual main() entry point of your program to instantiate the MAIN class type. This type needs to implement one of the main class interfaces MainNoArgs, MainPlainArgs or MainContainerArgs.

These classes use the cosmos::ExitStatus strong type instead of the plain int exit code. This offers improved readability and less room for mistakes. To allow quick exit paths in the application you can throw a plain cosmos::ExitStatus, which will be catched in the wrapper and results in a regular return of the integer value from the actual main() entry point.

Any other exceptions derived from std::exception will also be catched and lead to an output on stderr and an exit status of ExitStatus::FAILURE. This should be a last resort only, though, and you should handle non-fatal exceptions in the implementation of your program to provide context aware error messages.

Definition at line 72 of file main.hxx.

72 {
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}
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

The documentation for this class was generated from the following file: