libs/iwinfo: conditionally compile wl.o or madwifi support, make it depend on $(CRAP)
[project/luci.git] / libs / iwinfo / src / iwinfo_lualib.h
1 /*
2  * iwinfo - Wireless Information Library - Lua Headers
3  *
4  *   Copyright (C) 2009 Jo-Philipp Wich <xm@subsignal.org>
5  *
6  * The iwinfo library is free software: you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License version 2
8  * as published by the Free Software Foundation.
9  *
10  * The iwinfo library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13  * See the GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with the iwinfo library. If not, see http://www.gnu.org/licenses/.
17  */
18
19 #ifndef __IWINFO_LUALUB_H_
20 #define __IWINFO_LUALIB_H_
21
22 #include <lua.h>
23 #include <lualib.h>
24 #include <lauxlib.h>
25
26 #include "iwinfo.h"
27 #include "iwinfo_wext_scan.h"
28
29
30 #define IWINFO_META                     "iwinfo"
31 #define IWINFO_WEXT_META        "iwinfo.wext"
32
33 #ifdef USE_WL
34 #define IWINFO_WL_META          "iwinfo.wl"
35 #endif
36
37 #ifdef USE_MADWIFI
38 #define IWINFO_MADWIFI_META     "iwinfo.madwifi"
39 #endif
40
41
42 #define LUA_REG(type,op) \
43         { #op, iwinfo_L_##type##_##op }
44
45 #define LUA_WRAP_INT(type,op)                                                   \
46         static int iwinfo_L_##type##_##op(lua_State *L)         \
47         {                                                                                                       \
48                 const char *ifname = luaL_checkstring(L, 1);    \
49                 int rv;                                                                                 \
50                 if( !type##_get_##op(ifname, &rv) )                             \
51                         lua_pushnumber(L, rv);                                          \
52                 else                                                                                    \
53                         lua_pushnil(L);                                                         \
54                 return 1;                                                                               \
55         }
56
57 #define LUA_WRAP_STRING(type,op)                                                \
58         static int iwinfo_L_##type##_##op(lua_State *L)         \
59         {                                                                                                       \
60                 const char *ifname = luaL_checkstring(L, 1);    \
61                 char rv[IWINFO_BUFSIZE];                                                \
62                 memset(rv, 0, IWINFO_BUFSIZE);                                  \
63                 if( !type##_get_##op(ifname, rv) )                              \
64                         lua_pushstring(L, rv);                                          \
65                 else                                                                                    \
66                         lua_pushnil(L);                                                         \
67                 return 1;                                                                               \
68         }
69
70 #define LUA_WRAP_LIST(type,op)                                                  \
71         static int iwinfo_L_##type##_##op(lua_State *L)         \
72         {                                                                                                       \
73                 return iwinfo_L_##op(L, type##_get_##op);               \
74         }
75
76 #endif
77