/lua-amalg

Amalgamation of Lua modules/scripts

Primary LanguageLua

Amalg -- Amalgamation of Lua Modules/Scripts

Introduction

Deploying a Lua application that is split among multiple modules is a challenge. A tool that can package a Lua script and its modules into a single file is a valuable help. This is such a tool.

Features:

  • Pure Lua (compatible with Lua 5.1 and up), no other external dependencies. (Even works for modules using the deprecated module function.)
  • You don't have to take care of the order in which the modules are require'd.
  • Can embed compiled C modules.
  • Can collect require'd Lua (and C) modules automatically.
  • Can compress/decompress or precompile using plugin modules.

What it doesn't do:

  • It doesn't do static analysis of Lua code to collect require'd modules. That won't work reliably anyway. You can write your own program for that (using the output of luac -p -l), or use squish, or soar instead.
  • It doesn't handle the dependencies of C modules, so it is best used on C modules without dependencies (e.g. LuaSocket, LFS, etc.).

There are alternatives to this program: See squish, LOOP, soar, luac.lua, and bundle.lua (and probably some more).

Getting Started

You can bundle a collection of modules in a single file by calling the amalg.lua script and passing the module names on the commandline.

./amalg.lua module1 module2

The modules are collected using package.path, so they have to be available there. The resulting merged Lua code will be written to the standard output stream. You have to run the code to make the embedded Lua modules available for require.

You can specify an output file to use instead of the standard output stream.

./amalg.lua -o out.lua module1 module2

You can also embed the main script of your application in the merged Lua code as well. Of course the embedded Lua modules can be require'd in the main script.

./amalg.lua -o out.lua -s main.lua module1 module2

If you want the original file names and line numbers to appear in error messages, you have to activate debug mode. This will require slightly more memory, however.

./amalg.lua -o out.lua -d -s main.lua module1 module2

To collect all Lua (and C) modules used by a program, you can load the amalg.lua script as a module, and it will intercept calls to require and save the necessary Lua module names in a file amalg.cache in the current directory.

lua -lamalg main.lua

Multiple calls will add to this module cache. But don't access it from multiple concurrent processes!

You can use the cache (in addition to all module names given on the commandline) using the -c flag.

./amalg.lua -o out.lua -s main.lua -c

To use a custom file as cache specify -C <file>:

./amalg.lua -o out.lua -s main.lua -C myamalg.cache

However, this will only embed the Lua modules. To also embed C modules (both from the cache and from the command line), you have to specify the -x flag:

./amalg.lua -o out.lua -s main.lua -c -x

This will make the amalgamated script platform-dependent, obviously!

In some cases you may want to ignore automatically listed modules in the cache without editing the cache file. Use the -i option for that and specify a Lua pattern:

./amalg.lua -o out.lua -s main.lua -c -i "^luarocks%."

The -i option can be used multiple times to specify multiple patterns.

Usually, the amalgamated modules take precedence over locally installed (possibly newer) versions of the same modules. If you want to use local modules when available and only fall back to the amalgamated code otherwise, you can specify the -f flag.

./amalg.lua -o out.lua -s main.lua -c -f

This installs another searcher/loader function at the end of the package.searchers (or package.loaders on Lua 5.1) and adds a new table package.postload that serves the same purpose as the standard package.preload table.

To fix a compatibility issue with Lua 5.1's vararg handling, amalg.lua by default adds a local alias to the global arg table to every loaded module. If for some reason you don't want that, use the -a flag (but be aware that in Lua 5.1 with LUA_COMPAT_VARARG defined (the default) your modules can only access the global arg table as _G.arg).

./amalg.lua -o out.lua -a -s main.lua -c

There is also some compression/decompression support handled via plugins to amalg. To select a transformation us the -z option. Multiple compression/transformation steps are possible, and they are executed in the given order. The necessary decompression code is embedded in the result and executed automatically.

./amalg.lua -o out.lua -s main.lua -c -z luac -z zlib

Some plugin generate valid Lua code (text or binary) and thus don't need a decompression step. For those modules the -t option should be used instead to avoid embedding no-op decompression code in the final amalgamation file.

./amalg.lua -o out.lua -s main.lua -c -t luasrcdiet -t luac -z zlib

That's it. For further info consult the source (there's a nice annotated HTML file rendered with Docco on the GitHub pages). Have fun!

Contact

Philipp Janda, siffiejoe(a)gmx.net

Comments and feedback are always welcome.

License

amalg is copyrighted free software distributed under the MIT license (the same license as Lua 5.1). The full license text follows:

amalg (c) 2013-2020 Philipp Janda

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHOR OR COPYRIGHT HOLDER BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.