EtaMOO: A new implementation of the LambdaMOO server

[ bsd3, network, program ] [ Propose Tags ]

LambdaMOO is a network-accessible, multi-user, programmable, interactive system well-suited to the construction of text-based adventure games, conferencing systems, and other collaborative software.

EtaMOO is an experimental multithreaded implementation of LambdaMOO in Haskell with LMDB-backed persistence and anticipated ready support for Unicode MOO strings and 64-bit MOO integers. The implementation follows the specifications of the LambdaMOO Programmer's Manual, and should be compatible with most LambdaMOO databases as of about version 1.8.3 of the LambdaMOO server code.

N.B. This software is still under development and not fully complete.


[Skip to Readme]

Flags

Automatic Flags
NameDescriptionDefault
llvm

Use GHC's LLVM backend to compile the code

Disabled
64bit

Enable 64-bit MOO integers

Disabled
outbound-network

Enable open_network_connection() by default

Disabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.0, 0.2.0.0, 0.3.0.0
Dependencies array, async, base (>=4.7 && <5), bytestring, case-insensitive, containers (>=0.4), cryptonite, hashable, haskeline, memory, mtl, network, parsec, pipes, pipes-bytestring, pipes-concurrency (>=2.0.3), pipes-network, random, stm, stm-chans, text (>=1.2.1.2), time (>=1.5), transformers, unix, unordered-containers, vcache, vector (>=0.7) [details]
License BSD-3-Clause
Copyright © 2014–2016 Robert Leslie
Author Rob Leslie <rob@mars.org>
Maintainer Rob Leslie <rob@mars.org>
Category Network
Home page http://verement.github.io/etamoo
Bug tracker https://github.com/verement/etamoo/issues
Source repo head: git clone https://github.com/verement/etamoo.git
Uploaded by RobLeslie at 2016-02-06T09:45:49Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables etamoo
Downloads 2720 total (9 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
Last success reported on 2016-10-25 [all 11 reports]

Readme for EtaMOO-0.3.0.0

[back to package description]

Important!

This is experimental software. While it is now mostly functional, it is not yet fully complete.

Until such time as the EtaMOO database format is well tested and considered stable, please make and keep LambdaMOO-format backup copies of your EtaMOO databases.

About

EtaMOO is a new implementation of the LambdaMOO server written in Haskell.

LambdaMOO is a network-accessible, multi-user, programmable, interactive system well-suited to the construction of text-based adventure games, conferencing systems, and other collaborative software.

EtaMOO differs from LambdaMOO in a few significant ways:

  • EtaMOO is multi-threaded. MOO tasks run concurrently, producing network output and changes to the database in isolated transactions that are committed only when not in conflict with any other transaction. (In cases of conflict, transactions are automatically retried.) Separate threads are also used for network connection management, so for example name lookups do not block the entire server.

  • EtaMOO uses LMDB as a persistent backing store for the MOO database. Changes are committed on an ongoing basis for instantaneous crash recovery; checkpoints merely perform a quick synchronization, and are otherwise unnecessary. EtaMOO provides mechanisms for importing and exporting LambdaMOO-format databases to and from the EtaMOO-native format.

  • EtaMOO is Unicode-aware, and will eventually include support for Unicode MOO strings via compile-time build option.

  • EtaMOO supports 64-bit MOO integers via compile-time build option.

  • EtaMOO natively supports string-key association lists with efficient lookup and update operations; the list index syntax has been extended to allow alist[key] and alist[key] = value for string *key*s whenever alist is a well-formed association list.

  • EtaMOO supports several additional hashing algorithms besides MD5, including SHA-1, SHA-2, SHA-3, and RIPEMD-160, via optional argument to string_hash(), binary_hash(), and value_hash(). Hash digests may also optionally be returned as binary strings.

  • EtaMOO internally handles binary strings in an efficient manner, and only translates to and from the special MOO binary string syntax upon demand. For example, passing a binary string read from the network directly to decode_binary() does not suffer a round trip through the binary string representation.

  • EtaMOO supports fractional second delays in suspend() and fork.

  • EtaMOO supports IPv6.

The implementation of EtaMOO otherwise closely follows the specifications of the LambdaMOO Programmer's Manual, and should be compatible with most LambdaMOO databases as of about version 1.8.3 of the LambdaMOO server code.

Installing

EtaMOO is built with Cabal, the Haskell package manager. In the simplest case, running:

cabal install EtaMOO

should automatically download, build, and install the etamoo executable after doing the same for all of its Haskell dependencies.

Cabal itself is part of the Haskell Platform which is available for many distributions and platforms.

There are a few options you can give to cabal install to customize your build:

Option Feature
-j Build in parallel using multiple processors
-f llvm Use GHC's LLVM backend to compile the code
-f 64bit Enable 64-bit MOO integers

EtaMOO has non-Haskell dependencies on three external libraries: liblmdb for database persistence, libpcre (with UTF-8 support enabled) for regular expression matching, and, possibly, libcrypt (often part of the standard libraries) for the MOO crypt() built-in function. You should ensure you have these available before installing EtaMOO (e.g. on Debian-derived systems, sudo apt-get install liblmdb-dev libpcre3-dev).

Running

etamoo is nearly a drop-in replacement for the LambdaMOO moo executable; the main difference is that etamoo takes a single database path, rather than both input and output paths. You can run etamoo --help for a command-line synopsis.

EtaMOO uses a native binary database format that allows quick loading and checkpointing, and instantaneous crash recovery. You can create a native database from a LambdaMOO-format database by using etamoo --import. You can also go the other way and convert an EtaMOO database back to a LambdaMOO-format database with etamoo --export.

If you don't already have a database, you can find LambdaMOO-format cores for various MOOs online -- for example there is the venerable LambdaCore, or you can request a character on Waterpoint and then perform a live JHCore extraction. (Note that Waterpoint's core extraction process requires running an actual LambdaMOO server executable on the precore database to obtain the final core database; EtaMOO cannot yet do this itself.)

By default, EtaMOO will make use of all available CPUs for maximum parallelism. If you'd rather limit the number of processors EtaMOO uses, you can use the command-line option +RTS -Nn -RTS where n is the number of processors to use.

If you want to enable statistics from the memory_usage() built-in function, you will need to add +RTS -T -RTS to the command line options.

Limitations

The following LambdaMOO features are currently unsupported:

  • The .program intrinsic command
  • The verb_cache_stats() and log_cache_stats() built-in functions
  • Importing, exporting, or checkpointing of queued tasks in the database file
  • Task time limits (ticks are counted, but seconds are not)
  • The NP_SINGLE and NP_LOCAL network protocols (i.e. stdin/stdout, UNIX-domain sockets, and/or named pipes; only TCP/IP is supported)
  • Customizing OUT_OF_BAND_PREFIX and OUT_OF_BAND_QUOTE_PREFIX (these are currently fixed as #$# and #$", respectively)
  • The IGNORE_PROP_PROTECTED compilation option
  • $server_options.name_lookup_timeout

See also the DIFFERENCES.md file for other differences between EtaMOO and LambdaMOO.

Hacking

Documentation is available for the various types, data structures, and functions used internally by EtaMOO.