B4A.BASE.JOBI.RUN-CUSTOM-SOLUTION@UNIX
Description
Details
Property | Value |
---|---|
Type | JOBI |
Folder | PACKAGES/BEST4AUTOMIC/B4A.BASE/SOURCE/RUN |
Title | Generic include for run b4A Custom Solutions on UNIX systems |
Archive Key 1 | - |
Archive Key 2 | - |
Created | Timon Schnakenberg am: 2025-03-04 15:59:26 |
Last Modified | Andreas Büsching am: 2025-07-01 16:48:38 3 x |
Last Used | - |
Process
:set &script# = "$SCRIPT$"
:define ¶m#, string, 2
:fill ¶m#[] = str_split( &script#, ":" )
:set &script# = ¶m#[ 1 ]
:set &configs# = ¶m#[ 2 ]
:define &config#, string, 10
:fill &config#[] = str_split( &configs#, "," )
! publish module name
:set &B4AB_CUSTOM_SOLUTION_O# = "&script#"
:publish &B4AB_CUSTOM_SOLUTION_O#, , TASK
! create configuration file
conffile=$(mktemp)
cat > $conffile << EOF
:set &num# = 1
:while &config#[ &num# ] <> ""
: set &vara# = "B4A.BASE.VARA.CONFIG#&config#[ &num# ]"
: set &hnd# = prep_process_var( &vara# )
: process &hnd#
: set &key# = get_process_line( &hnd#, 1 )
: set &value# = get_process_line( &hnd#, 2 )
&key# = &value#
: endprocess
: close_process &hnd#
: set &num# = add( &num#, 1 )
:endwhile
EOF
cat $b4a_config_file >> $conffile
! show the configuration
echo "-- b4A Custom Solution"
echo "&script#"
echo "-- b4A configuration"
cat $conffile | grep -v password=
echo "-- b4A configuration"
! activate configuration file
export B4J_CONF_FILE=$conffile
:set &B4AB_ARGUMENTS_I# = "&B4AB_ARGUMENTS_I#"
! java settings
:if &B4AB_JAVA_OPTS_O# ne ""
export JAVA_OPTS="&B4AB_JAVA_OPTS_O#"
:endif
:if &B4AB_JAVA_HOME_O# ne ""
export JAVA_HOME="&B4AB_JAVA_HOME_O#"
:endif
! b4A Custom Solution directory
:if &B4AB_SCRIPT_DIR_I# ne ""
export B4J_SCRIPT_DIR="&B4AB_SCRIPT_DIR_I#"
:endif
! start the module
cd &B4AB_BIN_DIR_O#
./b4A-cli --custom-solution &script# &B4AB_ARGUMENTS_I#
b4a_exitcode=$?
! remove configuration file
rm $conffile
rm -f $b4a_config_file
Variable Publications
Found 1 variable publications (TASK)
Zeilennummer | Scriptzeile |
---|---|
11 | :publish &B4AB_CUSTOM_SOLUTION_O#, , TASK |