In the following sections we discuss how to create a library, and how to use these libraries in programs.
Creation of libraries is supported in any mode of the Free Pascal compiler, but it may be that the arguments or return values differ if the library is compiled in 2 different modes.
A library can be created just as a program, only it uses the library keyword, and it has an exports section. The following listing demonstrates a simple library:
{ Example library } library subs; function SubStr(CString: PChar;FromPos,ToPos: Longint): PChar; cdecl; export; var Length: Integer; begin Length := StrLen(CString); SubStr := CString + Length; if (FromPos > 0) and (ToPos >= FromPos) then begin if Length >= FromPos then SubStr := CString + FromPos - 1; if Length > ToPos then CString[ToPos] := #0; end; end; exports SubStr; end.
The function SubStr does not have to be declared in the library file itself. It can also be declared in the interface section of a unit that is used by the library.
Compilation of this source will result in the creation of a library called libsubs.so on LINUX, or subs.dll on WINDOWS. The compiler will take care of any additional linking that is required to create a shared library.
The library exports one function: SubStr. The case is important. The case as it appears in the exports clause is used to export the function.
Creation of libraries is supported in any mode of the Free Pascal compiler, but it may be that the arguments or return values differ if the library is compiled in 2 different modes. E.g. if your function expects an Integer argument, then the library will expect different integer sizes if you compile it in Delphi mode or in TP mode.
If you want your library to be called from C programs, it is important to specify the C calling convention for the exported functions, with the cdecl modifier. Since a C compiler doesn't know about the Free Pascal calling conventions, your functions would be called incorrectly, resulting in a corrupted stack.
On WINDOWS, most libraries use the stdcall convention, so it may be better to use that one if your library is to be used on WINDOWS systems.
In order to use a function that resides in a library, it is sufficient to declare the function as it exists in the library as an external function, with correct arguments and return type. The calling convention used by the function should be declared correctly as well. The compiler will then link the library as specified in the external statement to your program11.1.
For example, to use the library as defined above from a pascal program, you can use the following pascal program:
program testsubs; function SubStr(const CString: PChar; FromPos, ToPos: longint): PChar; cdecl; external 'subs'; var s: PChar; FromPos, ToPos: Integer; begin s := 'Test'; FromPos := 2; ToPos := 3; WriteLn(SubStr(s, FromPos, ToPos)); end.
This program can be compiled without any additional command-switches, and should run just like that, provided the library is placed where the system can find it. On LINUX, this is /usr/lib or any directory listed in the /etc/ld.so.conf file. On WINDOWS, this can be the program directory, the Windows system directory, or any directoy mentioned in the PATH.
Using the library in this way links the library to your program at compile time. This means that
It is therefore also possible to load the library at run-time, store the function address in a procedural variable, and use this procedural variable to access the function in the library.
The following example demonstrates this technique:
program testsubs; Type TSubStrFunc = function(const CString:PChar;FromPos,ToPos: longint):PChar;cdecl; Function dlopen(name: pchar;mode: longint):pointer;cdecl;external 'dl'; Function dlsym(lib: pointer; name: pchar):pointer;cdecl;external 'dl'; Function dlclose(lib: pointer):longint;cdecl;external 'dl'; var s: PChar; FromPos, ToPos: Integer; lib : pointer; SubStr : TSubStrFunc; begin s := 'Test'; FromPos := 2; ToPos := 3; lib:=dlopen('libsubs.so',1); Pointer(Substr):=dlsym(lib,'SubStr'); WriteLn(SubStr(s, FromPos, ToPos)); dlclose(lib); end.
Remark: The examples in this section assume a LINUX system; similar commands as the ones below exist for WINDOWS, though.
You can also call a Free Pascal generated library from a C program: ctest To compile this example, the following command can be used:
gcc -o ctest ctest.c -lsubsprovided the code is in ctest.c.
The library can also be loaded dynamically from C, as shown in the following example: ctest2 This can be compiled using the following command:
gcc -o ctest2 ctest2.c -ldllanguage=delphi The -ldl tells gcc that the program needs the libdl.so library to load dynamical libraries.