Fungsi ini memungkinkan kita untuk menanyakan kumpulan rutinitas dalam DLL yang terdaftar dengan R untuk meningkatkan pencarian dinamis, penanganan kesalahan saat memanggil rutinitas asli, dan kemungkinan keamanan di masa depan. Fungsi ini memberikan deskripsi setiap rutinitas yang terdaftar di DLL untuk antarmuka yang berbeda, yaitu C, .Call, .Fortran dan .External.
getDLLRegisteredRoutines(dll, addNames = TRUE)
| Parameter | Deskripsi |
|---|---|
dll |
a character string or DLLInfo object. The character string specifies the file name of the DLL of interest, and is given without the file name extension (e.g., the .dll or .so) and with no directory/path information. So a file MyPackage/libs/MyPackage.so would be specified as MyPackage. The DLLInfo objects can be obtained directly in calls to dyn.load and library.dynam, or can be found after the DLL has been loaded using getLoadedDLLs, which returns a list of DLLInfo objects (index-able by DLL file name). The DLLInfo approach avoids any ambiguities related to two DLLs having the same name but corresponding to files in different directories. |
addNames |
a logical value. If this is TRUE, the elements of the returned lists are named using the names of the routines (as seen by R via registration or raw name). If FALSE, these names are not computed and assigned to the lists. As a result, the call should be quicker. The name information is also available in the NativeSymbolInfo objects in the lists. |
# NOT RUN {
dlls <- getLoadedDLLs()
getDLLRegisteredRoutines(dlls[["base"]])
getDLLRegisteredRoutines("stats")
# }