GO2cam Javascript API  6.11
GO2SUtil Class Reference

Class of utility functions. More...

Inherits QObject.

Static Public Member Functions

static Number ExecuteProgram (String filename, Array< String > arg=Array< String >())
 
static Number ExecuteProgram (String filename, String arg)
 
static String GenerateName (String name="", String prefix="", String suffix="")
 
static void ImportJS (String dir, String name)
 
static void ImportJS (String name)
 

Detailed Description

Class of utility functions.

Member Function Documentation

◆ ExecuteProgram() [1/2]

static Number GO2SUtil::ExecuteProgram ( String filename,
Array< String > arg = Array< String >() )
static

Execute an external program, and waits the program exits

GO2SUtil.ExecuteProgram('program1.exe');
GO2SUtil.ExecuteProgram('program2.exe', [arg1, arg2]);
Class of utility functions.
Definition GO2SUtil.hpp:10
static Number ExecuteProgram(String filename, Array< String > arg=Array< String >())
Returns
the exit code of the program
Parameters
[in]filenamepath of the executable
[in]argoptional arguments for the executable

◆ ExecuteProgram() [2/2]

static Number GO2SUtil::ExecuteProgram ( String filename,
String arg )
static

Execute an external program with arguments formatted in a single string

GO2SUtil.ExecuteProgram('program.exe', 'arg1, arg2');
Returns
the exit code of the program
Version
6.12
Parameters
[in]filenamepath of the executable
[in]argstring of arguments

◆ GenerateName()

static String GO2SUtil::GenerateName ( String name = "",
String prefix = "",
String suffix = "" )
static

Generate a name not already existing in database

var name = GO2SUtil.GenerateName("GO2cam", "robot");
static String GenerateName(String name="", String prefix="", String suffix="")

Output: GO2cam_robot, if already exist in Bdd -> GO2cam_robot_1

Returns
a String name.
Parameters
[in]name
[in]prefix
[in]suffix

◆ ImportJS() [1/2]

static void GO2SUtil::ImportJS ( String dir,
String name )
static

Import another script and execute it

Warning
if 2 variables or functions have the same name, the last one is kept
Parameters
[in]dirpath of the include file
[in]namefile name of the include file

◆ ImportJS() [2/2]

static void GO2SUtil::ImportJS ( String name)
static

Import another script and execute it

Warning
if 2 variables or functions have the same name, the last one is kept
Parameters
[in]namefullName of the include file