FLAMCLE/P-API
Command Line Executor/Parser Application Programming Interface
CLE Functions

The function provided by CLE. More...

Functions

const char * pcCleVersion (const int l, const int s, char *b)
 Get CLE-version information. More...
 
const char * pcCleAbout (const int l, const int s, char *b)
 Get about CLE-information. More...
 
int siCleExecute (void *pvGbl, const TsCleCommand *psCmd, int argc, char *argv[], const char *pcOwn, const char *pcPgm, const char *pcAut, const char *pcAdr, const int isCas, const int isPfl, const int isRpl, const int isEnv, const int siMkl, FILE *pfOut, FILE *pfTrc, const char *pcDep, const char *pcOpt, const char *pcEnt, const char *pcLic, const char *pcBld, const char *pcVsn, const char *pcAbo, const char *pcHlp, const char *pcDef, TfMsg *pfMsg, const TsCleOtherClp *psOth, void *pvF2S, TfF2S *pfF2S, void *pvSaf, TfSaf *pfSaf, const char *pcDpa, const int siNoR, const TsCleDoc *psDoc)
 Execute CLE-command line. More...
 

Detailed Description

The function provided by CLE.

Function Documentation

◆ pcCleVersion()

const char* pcCleVersion ( const int  l,
const int  s,
char *  b 
)

Get CLE-version information.

The function returns the version information for this library

Parameters
[in]llevel of visible hierarchy in the first 2 numbers of the string the number can later be used to better visualize the hierarchy
[in]ssize of the provided string buffer (including space for null termination)
[in,out]bbuffer for the version string must contain a null-terminated string the version string will be concatenated the size including the 0-byte is the limit if (strlen(b)==s-1) then more space is required for the complete version string a good size for the version string is 256 byte
Returns
pointer to a null-terminated version string (return(b))

◆ pcCleAbout()

const char* pcCleAbout ( const int  l,
const int  s,
char *  b 
)

Get about CLE-information.

The function returns the about information for this library

Parameters
llevel of visible hierarchy in the first 2 numbers of the string the number can later be used to better visualize the hierarchy
ssize of the provided string buffer (including space for null termination)
bbuffer for the about string must contain a null-terminated string the about string will be concatenated the size including the 0-byte is the limit if (strlen(b)==s-1) then more space is required for the complete about string a good size for the about string is 1024 byte
Returns
pointer to a null-terminated about string (return(b))

◆ siCleExecute()

int siCleExecute ( void *  pvGbl,
const TsCleCommand psCmd,
int  argc,
char *  argv[],
const char *  pcOwn,
const char *  pcPgm,
const char *  pcAut,
const char *  pcAdr,
const int  isCas,
const int  isPfl,
const int  isRpl,
const int  isEnv,
const int  siMkl,
FILE *  pfOut,
FILE *  pfTrc,
const char *  pcDep,
const char *  pcOpt,
const char *  pcEnt,
const char *  pcLic,
const char *  pcBld,
const char *  pcVsn,
const char *  pcAbo,
const char *  pcHlp,
const char *  pcDef,
TfMsg pfMsg,
const TsCleOtherClp psOth,
void *  pvF2S,
TfF2S pfF2S,
void *  pvSaf,
TfSaf pfSaf,
const char *  pcDpa,
const int  siNoR,
const TsCleDoc psDoc 
)

Execute CLE-command line.

The function uses the command line parsers to execute different commands based on argc and argv given in the main function of a program and provides the additional built-in functions below:

  • SYNTAX [command[.path] [DEPTH1 | ... | DEPTH9 | ALL]]
  • HELP [command[.path] [DEPTH1 | ... | DEPTH9 | ALL]] [MAN]
  • MANPAGE [function | command[.path][=filename]] | [filename]
  • GENDOCU [command[.path]=]filename [NONBR] [SHORT]
  • HTMLDOC [path] [NUMBERS]
  • GENPROP [command=]filename
  • SETPROP [command=]filename
  • CHGPROP command [path[=value]]*
  • DELPROP [command]
  • GETPROP [command[.path] [DEPTH1 | ... | DEPTH9 | DEPALL | DEFALL]]
  • SETOWNER name
  • GETOWNER
  • SETENV variable=name
  • GETENV
  • DELENV variable
  • TRACE ON | OFF | FILE=filename
  • CONFIG [CLEAR]
  • GRAMMAR
  • LEXEMES
  • LICENSE
  • VERSION
  • ABOUT
  • ERRORS
Parameters
[in]pvGblPointer to a global handle given to called functions in the command table
[in]psCmdPointer to the table which defines the commands
[in]argcNumber of command line parameters (argc of main(int argc, char* argv[]))
[in]argvList of pointers to the command line parameters (argv of main(int argc, char* argv[]))
[in]pcOwnDefault owner id (owner ids are used to identify properties and other things "com.company")
[in]pcPgmLogical program name (can be different from argv[0] and will be used in the root "com.company.program")
[in]pcAutName of the author for ASCIIDOC header (required for header generation)
[in]pcAdrMail address of the author for the ASCIIDOC header (optional)
[in]isCasSwitch to enable case sensitive interpretation of the command line (recommended is FALSE)
[in]isPflSwitch to enable parameter file support for object, overlays and arrays (recommended is TRUE)
[in]isRplSwitch to enable replacement of environment variables (recommended is TRUE)
[in]isEnvSwitch to load environment variables from default files (recommended is TRUE if no own load done else FALSE)
[in]siMklInteger defining the minimal key word length (siMkl<=0 --> full length, no auto abbreviation)
[in]pfOutFile pointer for help and error messages (if not defined stderr will be used)
[in]pfTrcDefault trace file if no trace file is defined with the configuration data management (recommended: NULL, stdout or stderr)
[in]pcDepString to visualize hierarchies (recommended: "--|" converted on EBCDIC systems (don't use S_IDT))
[in]pcOptString to separate options (recommended: "/" converted on EBCDIC systems)
[in]pcEntString to separate list entries (recommended: "," converted on EBCDIC systems)
[in]pcLicString containing the license information for this program (used by built-in function LICENSE - not converted on EBCDIC systems (don't use dia-critical characters))
[in]pcBldString containing the build number / raw version for this program (optional, can be NULL) used in final message and replacements - converted on EBCDIC systems
[in]pcVsnString containing the version information for this program (used by built-in function VERSION - not converted on EBCDIC systems (don't use dia-critical characters))
[in]pcAboString containing the about message for this program (used by built-in function ABOUT - not converted on EBCDIC systems (don't use dia-critical characters))
[in]pcHlpShort help message for the whole program (converted on EBCDIC systems)
[in]pcDefDefault command or built-in function, which is executed if the first keyword (argv[1]) don't match (if NULL then no default)
[in]pfMsgPointer to a function which prints a message for an reason code (use to generate the corresponding appendix)
[in]psOthPointer to the table with other CLP strings to print (optional could be NULL)
[in]pvF2SPointer to a handle which can be used in file 2 string callback function (if not required then NULL)
[in]pfF2SCallback function which reads a file into a null-terminated string in memory (if NULL then default implementation is used)
[in]pvSafPointer to a handle which can be used in authorization callback function (if not required then NULL)
[in]pfSafCallback function for additional authorization by CLP or NULL if no authorization is requested
[in]pcDpaPointer to a file name for a default parameter file (e.g. "DD:FLAMPAR") or NULL/empty string for nothing, The file name is used if only a command without assignment or parameter is provided
[in]siNoRDefine this reason code to the values the mapping function returns if no run is requested (0 is nothing)
[in]psDocTable for documentation generation (must be defined)
Returns
signed integer with the condition codes below:
0 - command line, command syntax, mapping, execution and finish of the command was successful
1 - command line, command syntax, mapping, execution and finish of the command was successful but a warning can be found in the log
2 - command line, command syntax, mapping, execution was successful but cleanup of the command failed (may not happened)
4 - command line, command syntax and mapping was successful but execution of the command returns with a warning
8 - command line, command syntax and mapping was successful but execution of the command returns with an error
12 - command line and command syntax was OK but mapping failed
16 - command line was OK but command syntax was wrong
20 - command line was wrong (user error)
24 - initialization of parameter structure for the command failed (may not happened)
28 - configuration is wrong (user error)
32 - table error (something within the predefined tables is wrong)
36 - system error (mainly memory allocation or some thing like this failed)
40 - access control or license error
44 - interface error (parameter pointer equals to NULL or something like this)
48 - memory allocation failed (e.g. dynamic string handling)
64 - fatal error (basic things are damaged)
>64 - Special condition code for job control