Calling C functions from programs
C-Extensions functions can be called from the program in the same way that you call a BDL function.
int function-name( int )
Here function-name must be written in lowercase letters. The
fglcomp compiler converts all BDL function names (following a
CALL
keyword) to lowercase.
The C function must be referenced in the usrFunctions
array of the C interface
file. For more details, see The C interface file.
The (int)
parameter of the C function defines the number of parameters on the
FGL runtime stack, that can be popped.
The (int)
return value of the C function is ignored by the runtime system: the
number of returned values is defined by the number of calls to push* functions. However, a good
practice is to return the number of values pushed on the FGL runtime stack.
Parameters and return values must be popped from / pushed on the FGL runtime stack, by using the FGL stack functions.
- Parameters passed to the C function must be popped in the reverse order of the BDL call list:
CALL c_fct( A, B, C ) => pop C, B, A
. - Values returned from the C function must be pushed in the same order as in the BDL
RETURNING
clause:push A, B, C => CALL c_fct() RETURNING A, B, C
.
In this code example, the C-Extension module mycext.c defines the
c_fct()
function:
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "f2c/fglExt.h"
int c_fct( int n );
UsrFunction usrFunctions[]={
{"c_fct",c_fct,2,2},
{0,0,0,0}
};
int c_fct( int n )
{
int rc;
float price;
char name[31];
if (n != 2) exit(1);
popflo(&price);
popvchar(name, sizeof(name));
printf(">> [%s] price:%f\n", name, price);
pushint( strlen(name) );
price = price * 2;
pushflo( &price );
return 2;
}
The C-Extension library is imported by the BDL module with IMPORT
:
IMPORT mycext
MAIN
DEFINE len INT, price2 FLOAT
CALL c_fct("Hand gloves", 120.50)
RETURNING len, price2
DISPLAY "len = ", len
DISPLAY "price2 = ", price2
END MAIN
$ fglmkext -o mycext.so mycext.c
$ fglcomp myprog.4gl
$ fglrun myprog.42m
>> [Hand gloves] price:120.500000
len = 11
price2 = 241.0