Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright headers.
[simgrid.git] / src / bindings / lua / lua_utils.hpp
1 /* Copyright (c) 2010-2018. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 /* SimGrid Lua helper functions                                             */
7
8 #ifndef LUA_UTILS_HPP
9 #define LUA_UTILS_HPP
10
11 extern "C" {
12
13 #include <lua.h>
14
15 /**
16  * @brief A chunk of memory.
17  *
18  * This structure is used as the userdata parameter of lua_Writer.
19  */
20 struct s_sglua_buffer_t {
21   char* data;
22   size_t size;
23   size_t capacity;
24 };
25 typedef s_sglua_buffer_t* sglua_buffer_t;
26
27 const char* sglua_tostring(lua_State* L, int index);
28 const char* sglua_keyvalue_tostring(lua_State* L, int key_index, int value_index);
29 void sglua_stack_dump(lua_State* L, const char* msg);
30 static int sglua_dump_table(lua_State* L);
31 void* sglua_checkudata_debug(lua_State* L, int ud, const char* tname);
32 const char* sglua_get_spaces(int length);
33 int sglua_memory_writer(lua_State* L, const void* source, size_t size, void* userdata);
34 }
35
36 #endif