2021-04-05 01:21:05 +00:00
|
|
|
/*
|
2021-04-05 01:32:00 +00:00
|
|
|
Rex - A configuration management and workflow automation tool that
|
|
|
|
compiles and runs in minimal environments.
|
|
|
|
© SILO GROUP and Chris Punches, 2020.
|
2021-04-05 01:21:05 +00:00
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as
|
|
|
|
published by the Free Software Foundation, either version 3 of the
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <getopt.h>
|
2023-02-15 23:44:21 +00:00
|
|
|
#include "src/logger/Logger.h"
|
|
|
|
#include "src/config/Config.h"
|
|
|
|
#include "src/suite/Suite.h"
|
|
|
|
#include "src/plan/Plan.h"
|
2021-04-05 01:21:05 +00:00
|
|
|
|
|
|
|
void version_info()
|
|
|
|
{
|
|
|
|
std::cout << "pre-release alpha" << std::endl;
|
|
|
|
}
|
|
|
|
|
2023-02-15 23:44:21 +00:00
|
|
|
// helper function to print out commandline arguments for print_usage()
|
|
|
|
void print_arg(const char *short_opt, const char *long_opt, const char *desc)
|
|
|
|
{
|
|
|
|
fprintf(stderr, " %-3s %-25s %s\n", short_opt, long_opt, desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
void print_section_header(const std::string &header_title)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "\n%s:\n", header_title.c_str());
|
|
|
|
}
|
|
|
|
|
2021-04-05 01:21:05 +00:00
|
|
|
void print_usage()
|
|
|
|
{
|
2023-02-15 23:44:21 +00:00
|
|
|
fprintf(stderr, "\nUsage:\n\trex [ -h | --help ] [ -v | --verbose ] ( ( ( -c | --config ) CONFIG_PATH ) ( -p | plan ) PLAN_PATH ) )\n");
|
|
|
|
|
|
|
|
print_section_header("Optional Arguments");
|
|
|
|
print_arg( "-h", "--help", "This usage screen. Mutually exclusive to all other options.");
|
|
|
|
print_arg( "-v", "--verbose", "Sets verbose output. Generally more than you want to see.");
|
|
|
|
print_arg( "-i", "--version_info", "Prints version information and exits. Mutually exclusive to all other options.");
|
|
|
|
|
|
|
|
print_section_header("Required Arguments");
|
|
|
|
print_arg( "-c", "--config", "Supply the path for the configuration file.");
|
|
|
|
print_arg( "-p", "--plan", "Supply the path for the plan file to execute.");
|
|
|
|
|
|
|
|
fprintf(stderr, "\n");
|
2021-04-05 01:21:05 +00:00
|
|
|
}
|
|
|
|
|
2023-02-15 23:44:21 +00:00
|
|
|
|
|
|
|
|
2021-04-05 01:21:05 +00:00
|
|
|
int main( int argc, char * argv[] )
|
|
|
|
{
|
|
|
|
// default verbosity setting
|
|
|
|
int verbose_flag = false;
|
|
|
|
|
|
|
|
// whether to show usage screen
|
|
|
|
int help_flag = false;
|
|
|
|
|
|
|
|
// did the user supply an argument to config
|
|
|
|
int config_flag = false;
|
|
|
|
|
|
|
|
// did the user supply an argument to plan
|
|
|
|
int plan_flag = false;
|
|
|
|
|
|
|
|
// did the user ask for the version info
|
|
|
|
int version_flag = false;
|
|
|
|
|
|
|
|
// default config path
|
|
|
|
std::string config_path;
|
|
|
|
|
|
|
|
// default plan path
|
|
|
|
std::string plan_path;
|
|
|
|
|
|
|
|
// initialise for commandline argument processing
|
|
|
|
int c;
|
|
|
|
int digit_optind = 0;
|
|
|
|
|
|
|
|
if ( argc <= 1 )
|
|
|
|
{
|
|
|
|
help_flag = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// process commandline arguments
|
|
|
|
while ( 1 )
|
|
|
|
{
|
|
|
|
int this_option_optind = optind ? optind : 1;
|
|
|
|
int option_index = 0;
|
|
|
|
|
|
|
|
// commandline argument structure
|
|
|
|
static struct option long_options[] = {
|
|
|
|
{"verbose_flag", no_argument, 0, 'v' },
|
|
|
|
{"version_info", no_argument, 0, 'i' },
|
|
|
|
{"help", no_argument, 0, 'h' },
|
|
|
|
{"config", required_argument, 0, 'c' },
|
|
|
|
{"plan", required_argument, 0, 'p' },
|
|
|
|
{0,0,0,0}
|
|
|
|
};
|
|
|
|
|
|
|
|
c = getopt_long(argc, argv, "vihc:p:", long_options, &option_index );
|
|
|
|
if ( c == -1 )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ( c )
|
|
|
|
{
|
|
|
|
case 'i':
|
|
|
|
version_flag = true;
|
|
|
|
case 'h':
|
|
|
|
help_flag = true;
|
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
verbose_flag = true;
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
config_flag = true;
|
|
|
|
config_path = std::string( optarg );
|
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
plan_flag = true;
|
|
|
|
plan_path = std::string( optarg );
|
|
|
|
break;
|
|
|
|
case '?':
|
|
|
|
help_flag = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
} // end switch
|
|
|
|
} // end opts while
|
|
|
|
if ( version_flag ) {
|
|
|
|
version_info();
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2023-02-15 23:44:21 +00:00
|
|
|
// if the user wants the help screen, just show it and leave
|
|
|
|
if ( (help_flag) | (! config_flag) | (! plan_flag) )
|
|
|
|
{
|
|
|
|
print_usage();
|
|
|
|
exit( 0 );
|
|
|
|
}
|
|
|
|
|
2021-04-05 01:21:05 +00:00
|
|
|
// if the user supplied no config file, there's nothing to do but teach the user how to use this tool
|
|
|
|
if (! config_flag ) {
|
|
|
|
std::cerr << "NOT SUPPLIED: CONFIG_PATH" << std::endl;
|
|
|
|
help_flag = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if the user supplied no plan file, there's nothing to do but teach the user how to use this tool
|
|
|
|
if (! plan_flag ) {
|
|
|
|
std::cerr << "NOT SUPPLIED: PLAN_PATH" << std::endl;
|
|
|
|
help_flag = true;
|
|
|
|
}
|
|
|
|
|
2022-01-23 09:47:15 +00:00
|
|
|
interpolate( config_path );
|
|
|
|
interpolate( plan_path );
|
|
|
|
|
2021-04-05 01:21:05 +00:00
|
|
|
// default logging level
|
|
|
|
int L_LEVEL = E_INFO;
|
|
|
|
|
|
|
|
// if set to verbose_flag mode, output with DEBUG level verbosity
|
|
|
|
if ( verbose_flag )
|
|
|
|
{
|
|
|
|
std::cout << "Setting verbosity level to 'DBUG'..." << std::endl;
|
|
|
|
L_LEVEL = E_DEBUG;
|
|
|
|
}
|
|
|
|
|
|
|
|
// the main scope logger
|
|
|
|
Logger slog = Logger( L_LEVEL, "_main_" );
|
2023-02-15 23:44:21 +00:00
|
|
|
slog.log_task( E_DEBUG, "INIT", "Logging initialised." );
|
2021-04-05 01:21:05 +00:00
|
|
|
|
|
|
|
// configuration object that reads from config_path
|
|
|
|
Conf configuration = Conf( config_path, L_LEVEL );
|
2023-02-15 23:44:21 +00:00
|
|
|
slog.log_task(E_DEBUG, "INIT", "Configuration initialised.");
|
2021-04-05 01:21:05 +00:00
|
|
|
|
2023-02-15 23:44:21 +00:00
|
|
|
// load the paths to definitions of units.
|
|
|
|
std::string unit_definitions_path = configuration.get_units_path();
|
2021-04-05 01:21:05 +00:00
|
|
|
|
|
|
|
// initialise an empty suite (unit definitions library)
|
2023-02-15 23:44:21 +00:00
|
|
|
slog.log_task( E_DEBUG, "SUITE_INIT", "Initialising Suite...");
|
2021-04-05 01:21:05 +00:00
|
|
|
Suite available_definitions = Suite( L_LEVEL );
|
|
|
|
|
|
|
|
// load units into suite
|
2023-02-15 23:44:21 +00:00
|
|
|
slog.log_task( E_INFO, "LOAD", "Loading all actionable Units into Suite..." );
|
|
|
|
available_definitions.load_units_file( unit_definitions_path );
|
|
|
|
|
|
|
|
// A Plan contains what units are executed and a Suite contains the definitions of those units.
|
|
|
|
std::string plan_file = plan_path;
|
2021-04-05 01:21:05 +00:00
|
|
|
|
|
|
|
// initialise an empty plan
|
2023-02-15 23:44:21 +00:00
|
|
|
slog.log_task( E_DEBUG, "PLAN_INIT", "Initialising Plan..." );
|
2021-04-05 01:21:05 +00:00
|
|
|
Plan plan = Plan( &configuration, L_LEVEL );
|
|
|
|
|
|
|
|
plan.load_plan_file( plan_file );
|
|
|
|
|
2023-02-15 23:44:21 +00:00
|
|
|
|
2021-04-05 01:21:05 +00:00
|
|
|
// ingest the suitable Tasks from the Suite into the Plan
|
2023-02-15 23:44:21 +00:00
|
|
|
slog.log_task( E_INFO, "LOAD", "Loading planned Tasks from Suite to Plan." );
|
2021-04-05 01:21:05 +00:00
|
|
|
plan.load_definitions( available_definitions );
|
|
|
|
|
2023-02-15 23:44:21 +00:00
|
|
|
slog.log_task( E_INFO, "main", "Ready to execute all actionable Tasks in Plan." );
|
2021-04-05 01:21:05 +00:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
plan.execute();
|
|
|
|
}
|
|
|
|
|
|
|
|
catch ( std::exception& e)
|
|
|
|
{
|
|
|
|
slog.log( E_FATAL, "Caught exception.");
|
|
|
|
slog.log( E_FATAL, e.what() );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|