FLAMCLE/P-API
Command Line Executor/Parser Application Programming Interface
CLEDEF.h
Go to the documentation of this file.
1 
29 #ifdef __cplusplus
30  extern "C" {
31 #endif
32 
33 #ifndef INC_CLEDEF_H
34 #define INC_CLEDEF_H
35 
37 #include "stdio.h"
38 #include "CLPDEF.h"
39 
40 /**********************************************************************/
46 #define CLE_DOCTYP_COVER 1U
47 #define CLE_DOCTYP_CHAPTER 2U
48 #define CLE_DOCTYP_PROGRAM 10U
49 #define CLE_DOCTYP_PGMSYNOPSIS 11U
50 #define CLE_DOCTYP_PGMSYNTAX 12U
51 #define CLE_DOCTYP_PGMHELP 13U
52 #define CLE_DOCTYP_COMMANDS 20U
53 #define CLE_DOCTYP_OTHERCLP 21U
54 #define CLE_DOCTYP_BUILTIN 22U
55 #define CLE_DOCTYP_LEXEMES 30U
56 #define CLE_DOCTYP_GRAMMAR 31U
57 #define CLE_DOCTYP_VERSION 32U
58 #define CLE_DOCTYP_ABOUT 33U
59 #define CLE_DOCTYP_PROPREMAIN 41U
60 #define CLE_DOCTYP_PROPDEFAULTS 42U
61 #define CLE_DOCTYP_SPECIALCODES 51U
62 #define CLE_DOCTYP_REASONCODES 52U
70 #define CLE_DOCKYW_PREFACE "preface"
71 #define CLE_DOCKYW_APPENDIX "appendix"
72 #define CLE_DOCKYW_GLOSSARY "glossary"
73 #define CLE_DOCKYW_COLOPHON "colophon"
84 #define CLE_ANCHOR_BUILTIN_FUNCTIONS "CLEP.BUILTIN.FUNCTIONS"
85 #define CLE_ANCHOR_APPENDIX_ABOUT "CLEP.APPENDIX.ABOUT"
86 #define CLE_ANCHOR_APPENDIX_VERSION "CLEP.APPENDIX.VERSION"
87 #define CLE_ANCHOR_APPENDIX_LEXEMES "CLEP.APPENDIX.LEXEMES"
88 #define CLE_ANCHOR_APPENDIX_GRAMMAR "CLEP.APPENDIX.GRAMMAR"
89 #define CLE_ANCHOR_APPENDIX_RETURNCODES "CLEP.APPENDIX.RETURNCODES"
90 #define CLE_ANCHOR_APPENDIX_REASONCODES "CLEP.APPENDIX.REASONCODES"
91 #define CLE_ANCHOR_APPENDIX_PROPERTIES "CLEP.APPENDIX.PROPERTIES"
107 typedef struct CleDoc {
108  unsigned int uiTyp;
109  unsigned int uiLev;
110  const char* pcNum;
111  const char* pcKyw;
112  const char* pcAnc;
113  const char* pcHdl;
114  const char* pcMan;
115  const char* pcIdt;
117 
123 #define CLEDOC_OPN(name) TsCleDoc name[]
124 
137 #define CLETAB_DOC(typ,lev,num,kyw,anc,hdl,man,idt) {(typ),(lev),(num),(kyw),(anc),(hdl),(man),(idt)},
138 
142 #define CLEDOC_CLS { 0 , 0 , NULL, NULL, NULL, NULL, NULL, NULL}
143 
178 typedef void* (TfCleOpenPrint)(FILE* pfOut, FILE* pfErr, const char* pcPat, const char* pcOwn, const char* pcPgm, const char* pcBld, int* piHdr, int* piAnc, int* piIdt, int* piPat, int* psPs1, int* piPs2, int* piPr3);
179 
196 typedef int (TfCleClosePrint)(void* pvHdl);
197 
198 /**********************************************************************/
199 
224 typedef int (TfIni)(
225  void* pvHdl,
226  FILE* pfOut,
227  FILE* pfTrc,
228  void* pvGbl,
229  const char* pcOwn,
230  const char* pcPgm,
231  void* pvClp);
232 
270 typedef int (TfMap)(
271  void* pvHdl,
272  FILE* pfOut,
273  FILE* pfTrc,
274  void* pvGbl,
275  int* piOid,
276  void* pvClp,
277  void* pvPar);
278 
314 typedef int (TfRun)(
315  void* pvHdl,
316  FILE* pfOut,
317  FILE* pfTrc,
318  void* pvGbl,
319  const char* pcOwn,
320  const char* pcPgm,
321  const char* pcVsn,
322  const char* pcAbo,
323  const char* pcLic,
324  const char* pcFkt,
325  const char* pcCmd,
326  const char* pcLst,
327  const void* pvPar,
328  int* piWrn,
329  int* piScc);
330 
344 typedef int (TfFin)(
345  FILE* pfOut,
346  FILE* pfTrc,
347  void* pvGbl,
348  void* pvPar);
349 
365 typedef const char* (TfMsg)(const int siRsn);
366 
368 /**********************************************************************/
369 
382 typedef struct CleCommand {
383  const char* pcKyw;
385  void* pvClp;
386  void* pvPar;
387  int* piOid;
393  int siFlg;
394  const char* pcMan;
397  const char* pcHlp;
399 /**********************************************************************/
400 
406 #define CLECMD_OPN(name) TsCleCommand name[]
407 
429 #define CLETAB_CMD(kyw,tab,clp,par,oid,ini,map,run,fin,flg,man,hlp) {(kyw),(tab),(clp),(par),(oid),(ini),(map),(run),(fin),(flg),(man),(hlp)},
430 
434 #define CLECMD_CLS { NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0 , NULL, NULL}
435 
448 typedef struct CleOtherClp {
449  const char* pcRot;
450  const char* pcKyw;
452  const char* pcMan;
457  const char* pcHlp;
458  const int isOvl;
460 /**********************************************************************/
461 
467 #define CLEOTH_OPN(name) TsCleOtherClp name[]
468 
483 #define CLETAB_OTH(rot,kyw,tab,man,hlp,ovl) {(rot),(kyw),(tab),(man),(hlp),(ovl)},
484 
489 #define CLEOTH_CLS { NULL, NULL, NULL, NULL, NULL, 0}
490 
492 /**********************************************************************/
493 
495 #endif /*INC_CLEDEF_H*/
496 
497 #ifdef __cplusplus
498 }
499 #endif
500 
CleCommand::pcMan
const char * pcMan
Pointer to a null-terminated string for a detailed description of this command (in ASCIDOC format,...
Definition: CLEDEF.h:394
TfRun
int() TfRun(void *pvHdl, FILE *pfOut, FILE *pfTrc, void *pvGbl, const char *pcOwn, const char *pcPgm, const char *pcVsn, const char *pcAbo, const char *pcLic, const char *pcFkt, const char *pcCmd, const char *pcLst, const void *pvPar, int *piWrn, int *piScc)
Type definition for CLE run function.
Definition: CLEDEF.h:314
CleOtherClp::isOvl
const int isOvl
True if provided table must be interpreted as overlay else as object.
Definition: CLEDEF.h:458
CleCommand::siFlg
int siFlg
Flag to indicate a hidden (==0) or visible (!=0) command. For correct numbering, put hidden commands ...
Definition: CLEDEF.h:393
CleCommand::pvClp
void * pvClp
Pointer to the corresponding argument structure (filled up by the parser).
Definition: CLEDEF.h:385
TsCleDoc
struct CleDoc TsCleDoc
CLE Structure for documentation table.
TfFin
int() TfFin(FILE *pfOut, FILE *pfTrc, void *pvGbl, void *pvPar)
Type definition for the CLE fin function.
Definition: CLEDEF.h:344
CleDoc::pcKyw
const char * pcKyw
Optional ASCIIDOC key word (printed in front of headline in single square brackets).
Definition: CLEDEF.h:111
CleOtherClp::pcHlp
const char * pcHlp
String for a short context sensitive help for this CLP string (converted on EBCDIC systems).
Definition: CLEDEF.h:457
TfCleClosePrint
int() TfCleClosePrint(void *pvHdl)
Function 'clsHtmlDoc' of library 'libhtmldoc' called if built-in function HTMLDOC used.
Definition: CLEDEF.h:196
TfIni
int() TfIni(void *pvHdl, FILE *pfOut, FILE *pfTrc, void *pvGbl, const char *pcOwn, const char *pcPgm, void *pvClp)
Type definition for initialization FLAMCLE command structure.
Definition: CLEDEF.h:224
CleCommand::piOid
int * piOid
Pointer to the object identifier for overlay commands (filled up by the parser, see siCleExecute()).
Definition: CLEDEF.h:387
CleOtherClp
CLE table structure for other CLP strings.
Definition: CLEDEF.h:448
CleCommand
CLE structure for command table.
Definition: CLEDEF.h:382
TsCleOtherClp
struct CleOtherClp TsCleOtherClp
CLE table structure for other CLP strings.
CleOtherClp::psTab
const TsClpArgument * psTab
Pointer to the main argument table for this command (defines the semantic for the parser).
Definition: CLEDEF.h:451
CleCommand::pfRun
TfRun * pfRun
Pointer to the executed function (use the mapped parameter structure to execute the command....
Definition: CLEDEF.h:390
CleDoc::pcAnc
const char * pcAnc
Optional anchor for this chapter (printed in front of headline in double square brackets).
Definition: CLEDEF.h:112
CleDoc::uiLev
unsigned int uiLev
The level of the chapter in the document (cover page is 1 all other chapter > 1).
Definition: CLEDEF.h:109
CleCommand::pfMap
TfMap * pfMap
Pointer to the mapping function (transfers the argument structure to the parameter structure).
Definition: CLEDEF.h:389
CleCommand::pcKyw
const char * pcKyw
Pointer to the key word for this command (:alpha:[:alnum:|'_']*).
Definition: CLEDEF.h:383
CleCommand::pcHlp
const char * pcHlp
String for a short context sensitive help to this command (converted on EBCDIC systems).
Definition: CLEDEF.h:397
TsCleCommand
struct CleCommand TsCleCommand
CLE structure for command table.
TfMsg
const char *() TfMsg(const int siRsn)
Type definition for the CLE message function.
Definition: CLEDEF.h:365
CleOtherClp::pcKyw
const char * pcKyw
Pointer to the key word for this string (:alpha:[:alnum:|'_']*).
Definition: CLEDEF.h:450
CleDoc::pcHdl
const char * pcHdl
Headline for this chapter.
Definition: CLEDEF.h:113
CleCommand::pvPar
void * pvPar
Pointer to the corresponding parameter structure (filled up by the mapping function).
Definition: CLEDEF.h:386
TfMap
int() TfMap(void *pvHdl, FILE *pfOut, FILE *pfTrc, void *pvGbl, int *piOid, void *pvClp, void *pvPar)
Type definition for mapping parsed values from the FLAMCLP structure.
Definition: CLEDEF.h:270
CleCommand::pfFin
TfFin * pfFin
Pointer to the finish function for cleanup (free memory, close files in parameter structure).
Definition: CLEDEF.h:392
CleDoc::pcNum
const char * pcNum
String for numbering or NULL for no number prefix.
Definition: CLEDEF.h:110
CLPDEF.h
Definitions for Command Line Parsing.
CleDoc::pcIdt
const char * pcIdt
Optional new line separated list of index term for this chapter (printed at the end (indexterm:[])).
Definition: CLEDEF.h:115
CleOtherClp::pcMan
const char * pcMan
Pointer to a null-terminated string for a detailed description for this CLP string (in ASCIDOC format...
Definition: CLEDEF.h:452
CleDoc::pcMan
const char * pcMan
Optional or required manual page with the content of this chapter).
Definition: CLEDEF.h:114
ClpArgument
Table structure for arguments.
Definition: CLPDEF.h:271
CleCommand::psTab
const TsClpArgument * psTab
Pointer to the main argument table for this command (defines the semantic for the parser).
Definition: CLEDEF.h:384
CleDoc::uiTyp
unsigned int uiTyp
One of the documentation types above.
Definition: CLEDEF.h:108
TfCleOpenPrint
void *() TfCleOpenPrint(FILE *pfOut, FILE *pfErr, const char *pcPat, const char *pcOwn, const char *pcPgm, const char *pcBld, int *piHdr, int *piAnc, int *piIdt, int *piPat, int *psPs1, int *piPs2, int *piPr3)
Function 'opnHtmlDoc' of library 'libhtmldoc' called if built-in function HTMLDOC used.
Definition: CLEDEF.h:178
CleCommand::pfIni
TfIni * pfIni
Pointer to the initialization function (initialize the argument structure in front of parsing).
Definition: CLEDEF.h:388
CleOtherClp::pcRot
const char * pcRot
Pointer to the program/root key word for this string (:alpha:[:alnum:|'_']*).
Definition: CLEDEF.h:449