Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix smpi_execute_benched.
[simgrid.git] / src / bindings / lua / lua_utils.h
1 /* Copyright (c) 2010-2017. 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_H
9 #define LUA_UTILS_H
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 typedef struct s_sglua_buffer {
21   char* data;
22   size_t size;
23   size_t capacity;
24 } s_sglua_buffer_t, *sglua_buffer_t;
25
26 const char* sglua_tostring(lua_State* L, int index);
27 const char* sglua_keyvalue_tostring(lua_State* L, int key_index, int value_index);
28 void sglua_stack_dump(lua_State* L, const char *msg);
29 static int sglua_dump_table(lua_State* L);
30 void* sglua_checkudata_debug(lua_State* L, int ud, const char* tname);
31 const char* sglua_get_spaces(int length);
32 int sglua_memory_writer(lua_State* L, const void* source, size_t size, void* userdata);
33
34 }
35
36 #endif