Module package
Package standard library.
Provides basic facilities for loading and building modules in Lua.
It exports two of its functions directly in the global environment: require and module. Everything else is exported in a table package.
Functions
| cpath () | The path used by require to search for a C loader. |
| loaded () | A table used by require to control which modules are already
loaded. |
| loaders () | A table used by require to control how to load modules. |
| loadlib (libname, funcname) | Dynamically links the host program with the C library libname. |
| path () | The path used by require to search for a Lua loader. |
| preload () | A table to store loaders for specific modules (see require). |
| seeall (module) | Sets a metatable for module with its __index field referring to the
global environment, so that this module inherits values from the global
environment. |
Functions
- cpath ()
-
The path used by
requireto search for a C loader. Lua initializes the C pathpackage.cpathin the same way it initializes the Lua pathpackage.path, using the environment variableLUA_CPATHor a default path defined inluaconf.h. - loaded ()
-
A table used by
requireto control which modules are already loaded. When you require a modulemodnameandpackage.loaded[modname]is not false,requiresimply returns the value stored there. - loaders ()
-
A table used by
requireto control how to load modules. Each entry in this table is a searcher function. When looking for a module,requirecalls each of these searchers in ascending order, with the module name (the argument given torequire) as its sole parameter. The function can return another function (the module loader) or a string explaining why it did not find that module (or nil if it has nothing to say). Lua initializes this table with four functions. The first searcher simply looks for a loader in thepackage.preloadtable. The second searcher looks for a loader as a Lua library, using the path stored atpackage.path. A path is a sequence of templates separated by semicolons. For each template, the searcher will change each interrogation mark in the template byfilename, which is the module name with each dot replaced by a "directory separator" (such as "/" in Unix); then it will try to open the resulting file name. So, for instance, if the Lua path is the string "./?.lua;./?.lc;/usr/local/?/init.lua" the search for a Lua file for modulefoowill try to open the files./foo.lua,./foo.lc, and/usr/local/foo/init.lua, in that order. The third searcher looks for a loader as a C library, using the path given by the variablepackage.cpath. For instance, if the C path is the string "./?.so;./?.dll;/usr/local/?/init.so" the searcher for modulefoowill try to open the files./foo.so,./foo.dll, and/usr/local/foo/init.so, in that order. Once it finds a C library, this searcher first uses a dynamic link facility to link the application with the library. Then it tries to find a C function inside the library to be used as the loader. The name of this C function is the string "luaopen_" concatenated with a copy of the module name where each dot is replaced by an underscore. Moreover, if the module name has a hyphen, its prefix up to (and including) the first hyphen is removed. For instance, if the module name isa.v1-b.c, the function name will beluaopen_b_c. The fourth searcher tries an all-in-one loader. It searches the C path for a library for the root name of the given module. For instance, when requiringa.b.c, it will search for a C library fora. If found, it looks into it for an open function for the submodule; in our example, that would beluaopen_a_b_c. With this facility, a package can pack several C submodules into one single library, with each submodule keeping its original open function. - loadlib (libname, funcname)
-
Dynamically links the host program with the C library
libname. Inside this library, looks for a functionfuncnameand returns this function as a C function. (So,funcnamemust follow the protocol (seelua_CFunction)). This is a low-level function. It completely bypasses the package and module system. Unlikerequire, it does not perform any path searching and does not automatically adds extensions.libnamemust be the complete file name of the C library, including if necessary a path and extension.funcnamemust be the exact name exported by the C library (which may depend on the C compiler and linker used). This function is not supported by ANSI C. As such, it is only available on some platforms (Windows, Linux, Mac OS X, Solaris, BSD, plus other Unix systems that support thedlfcnstandard).Parameters:
- libname
- funcname
- path ()
-
The path used by
requireto search for a Lua loader. At start-up, Lua initializes this variable with the value of the environment variableLUA_PATHor with a default path defined inluaconf.h, if the environment variable is not defined. Any ";;" in the value of the environment variable is replaced by the default path. - preload ()
-
A table to store loaders for specific modules (see
require). - seeall (module)
-
Sets a metatable for
modulewith its__indexfield referring to the global environment, so that this module inherits values from the global environment. To be used as an option to functionmodule.Parameters:
- module
