lm.c
author Myhailo Danylenko <isbear@ukrpost.net>
Sun, 05 Apr 2009 14:55:51 +0300
changeset 17 ab4470465a0c
parent 16 09b375e9ce32
child 19 d775d7289fe4
permissions -rw-r--r--
Create message in C * Pre-formatted text in docgen * Replace lua_pushconststring with lua_pushliteral * Create message in C * Add forgotten name node method to message * Default message type and subtype


#include <lua.h>

#include "config.h"
#include "lm_types.h"
#include "lm_message_node.h"
#include "lm_message.h"
#include "lm_message_handler.h"
#include "lm_proxy.h"
#include "lm_ssl.h"
#include "lm_connection.h"

/// Some common principles:
/// Most methods can be used in two way:
/// * to get value they are invoked without their last argument. Returned value is either a value or pair of nil and error message.
/// * to set value they are invoked with last arg (value) specified. Returned value in most cases is an object, on which operation is performed (to allow chain-initialization).
/// Every object have pointer method to return pointer (lightuserdata) to underlying C loudmouth structure.
/// Every module have a bless method to convert given pointer (lightuserdata) to corresponding lua object.
/// Every unique C loudmouth object have only one corresponding lua object. Thus, result of "lm.message.bless ( message1:pointer () )" will be exactly message1 object (not its copy).
/// Where message handler object is expected, message handler function can be specified. However, you can unregister handler only if you have message handler object.

int luaopen_loudmouth (lua_State *L)
{
	lua_pushliteral (L, LLM_OBJREGISTRY); // 1 registry key
	lua_newtable (L);                    // 2 registry value (table)
	lua_createtable (L, 0, 1);           // 3 metatable
	lua_pushliteral (L, "__mode");        // 4 metatable key
	lua_pushliteral (L, "v");             // 5 metatable value
	lua_settable (L, -3);                // 3 metatable
	lua_setmetatable (L, -2);            // 2 registry value
	lua_rawset (L, LUA_REGISTRYINDEX);   // 0
	
	lua_createtable (L, 6, 0);

	lua_pushliteral (L, "message_node");
	luaopen_lm_message_node (L);
	lua_settable (L, -3);
	lua_pushliteral (L, "message");
	luaopen_lm_message (L);
	lua_settable (L, -3);
	lua_pushliteral (L, "message_handler");
	luaopen_lm_message_handler (L);
	lua_settable (L, -3);
	lua_pushliteral (L, "proxy");
	luaopen_lm_proxy (L);
	lua_settable (L, -3);
	lua_pushliteral (L, "ssl");
	luaopen_lm_ssl (L);
	lua_settable (L, -3);
	lua_pushliteral (L, "connection");
	luaopen_lm_connection (L);
	lua_settable (L, -3);

	return 1;
}