#include "bbSlicerCommandLineModuleTest.h" #include "bbSlicerPackage.h" namespace bbSlicer { BBTK_ADD_BLACK_BOX_TO_PACKAGE ( Slicer, CommandLineModuleTest ) BBTK_BLACK_BOX_IMPLEMENTATION ( CommandLineModuleTest, bbtk::AtomicBlackBox ); void CommandLineModuleTest::Process ( ) { // GENERATED int _argc =4; std::string lib = "/home/riveros/.slicer/Slicer4-bin/Slicer-build/lib/Slicer-4.0/cli-modules/libCLIModule4TestLib.so"; char * _argv[ ] = { Mthd::Aux::toCharArrray( Mthd::Aux::toString( "--inputvalue1" ) + Mthd::Aux::toString( bbGetInputInputValue1( ) ) ), Mthd::Aux::toCharArrray( Mthd::Aux::toString( "--inputvalue2" ) + Mthd::Aux::toString( bbGetInputInputValue2( ) ) ), Mthd::Aux::toCharArrray( Mthd::Aux::toString( "--operationtype" ) + Mthd::Aux::toString( bbGetInputOperationType( ) ) ), Mthd::Aux::toCharArrray( Mthd::Aux::toString( bbGetInputOutputFile( ) ) ) }; // EO GENERATED this->execute( lib, _argc, _argv ); } void CommandLineModuleTest::execute ( std::string lib, int _argc, char * _argv[] ) { void* handle = dlopen( lib.c_str( ), RTLD_NOW | RTLD_GLOBAL ); if ( ! handle ) { std::cerr << "CAN'T OPEN LIBRARY: " << dlerror( ) << '\n'; return; } typedef int (*method_t )( int argc, char * argv[] ); // RESET ERROR dlerror( ); // PROTOTYPE method_t myMethod = ( method_t ) dlsym( handle, "ModuleEntryPoint" ); const char *dlsym_error = dlerror( ); if ( dlsym_error ) { std::cerr << "CAN'T LOAD SYMBOL 'ModuleEntryPoint':" << dlsym_error << '\n'; dlclose( handle ); return; } // METHOD CALL myMethod( _argc, _argv ); // CLOSING LIB dlclose( handle ); } void CommandLineModuleTest::bbUserSetDefaultValues ( ) { } void CommandLineModuleTest::bbUserInitializeProcessing ( ) { } void CommandLineModuleTest::bbUserFinalizeProcessing ( ) { } } // EO namespace bbSlicer