2 * lua.c - Lua configuration management
4 * Copyright © 2008 Julien Danjou <julien@danjou.info>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include "common/util.h"
25 #include <sys/socket.h>
28 #include <sys/types.h>
42 #include "awesome-version-internal.h"
51 #include "layouts/tile.h"
52 #include "common/socket.h"
53 #include "common/buffer.h"
55 extern awesome_t globalconf
;
57 extern const struct luaL_reg awesome_hooks_lib
[];
58 extern const struct luaL_reg awesome_dbus_lib
[];
59 extern const struct luaL_reg awesome_keygrabber_lib
[];
60 extern const struct luaL_reg awesome_mousegrabber_lib
[];
61 extern const struct luaL_reg awesome_button_methods
[];
62 extern const struct luaL_reg awesome_button_meta
[];
63 extern const struct luaL_reg awesome_image_methods
[];
64 extern const struct luaL_reg awesome_image_meta
[];
65 extern const struct luaL_reg awesome_mouse_methods
[];
66 extern const struct luaL_reg awesome_mouse_meta
[];
67 extern const struct luaL_reg awesome_screen_methods
[];
68 extern const struct luaL_reg awesome_screen_meta
[];
69 extern const struct luaL_reg awesome_client_methods
[];
70 extern const struct luaL_reg awesome_client_meta
[];
71 extern const struct luaL_reg awesome_tag_methods
[];
72 extern const struct luaL_reg awesome_tag_meta
[];
73 extern const struct luaL_reg awesome_widget_methods
[];
74 extern const struct luaL_reg awesome_widget_meta
[];
75 extern const struct luaL_reg awesome_wibox_methods
[];
76 extern const struct luaL_reg awesome_wibox_meta
[];
77 extern const struct luaL_reg awesome_keybinding_methods
[];
78 extern const struct luaL_reg awesome_keybinding_meta
[];
80 static struct sockaddr_un
*addr
;
81 static ev_io csio
= { .fd
= -1 };
83 #define XDG_CONFIG_HOME_DEFAULT "/.config"
85 /** Get or set global mouse bindings.
86 * This binding will be available when you'll click on root window.
87 * \param L The Lua VM state.
88 * \return The number of element pushed on stack.
91 * \lparam An array of mouse button bindings objects, or nothing.
92 * \return The array of mouse button bindings objects of this client.
95 luaA_buttons(lua_State
*L
)
97 button_array_t
*buttons
= &globalconf
.buttons
;
99 if(lua_gettop(L
) == 1)
100 luaA_button_array_set(L
, 1, buttons
);
102 return luaA_button_array_get(L
, buttons
);
106 * \param L The Lua VM state.
107 * \return The number of elements pushed on stack.
110 luaA_quit(lua_State
*L
__attribute__ ((unused
)))
112 ev_unloop(globalconf
.loop
, 1);
116 /** Execute another application, probably a window manager, to replace
118 * \param L The Lua VM state.
119 * \return The number of elements pushed on stack.
121 * \lparam The command line to execute.
124 luaA_exec(lua_State
*L
)
126 const char *cmd
= luaL_checkstring(L
, 1);
137 luaA_restart(lua_State
*L
__attribute__ ((unused
)))
144 luaA_openlib(lua_State
*L
, const char *name
,
145 const struct luaL_reg methods
[],
146 const struct luaL_reg meta
[])
148 luaL_newmetatable(L
, name
); /* 1 */
149 lua_pushvalue(L
, -1); /* dup metatable 2 */
150 lua_setfield(L
, -2, "__index"); /* metatable.__index = metatable 1 */
152 luaL_register(L
, NULL
, meta
); /* 1 */
153 luaL_register(L
, name
, methods
); /* 2 */
154 lua_pushvalue(L
, -1); /* dup self as metatable 3 */
155 lua_setmetatable(L
, -2); /* set self as metatable 2 */
159 /** UTF-8 aware string length computing.
160 * \param L The Lua VM state.
161 * \return The number of elements pushed on stack.
164 luaA_mbstrlen(lua_State
*L
)
166 const char *cmd
= luaL_checkstring(L
, 1);
167 lua_pushnumber(L
, mbstowcs(NULL
, NONULL(cmd
), 0));
171 /** Overload standard Lua next function to use __next key on metatable.
172 * \param L The Lua VM state.
173 * \param The number of elements pushed on stack.
176 luaAe_next(lua_State
*L
)
178 if(luaL_getmetafield(L
, 1, "__next"))
181 lua_call(L
, lua_gettop(L
) - 1, LUA_MULTRET
);
182 return lua_gettop(L
);
185 luaL_checktype(L
, 1, LUA_TTABLE
);
193 /** Overload lua_next() function by using __next metatable field
194 * to get next elements.
195 * \param L The Lua VM stack.
196 * \param idx The index number of elements in stack.
197 * \return 1 if more elements to come, 0 otherwise.
200 luaA_next(lua_State
*L
, int idx
)
202 if(luaL_getmetafield(L
, idx
, "__next"))
204 /* if idx is relative, reduce it since we got __next */
206 /* copy table and then move key */
207 lua_pushvalue(L
, idx
);
208 lua_pushvalue(L
, -3);
210 lua_pcall(L
, 2, 2, 0);
211 /* next returned nil, it's the end */
220 else if(lua_istable(L
, idx
))
221 return lua_next(L
, idx
);
227 /** Generic pairs function.
228 * \param L The Lua VM state.
229 * \return The number of elements pushed on stack.
232 luaA_generic_pairs(lua_State
*L
)
234 lua_pushvalue(L
, lua_upvalueindex(1)); /* return generator, */
235 lua_pushvalue(L
, 1); /* state, */
236 lua_pushnil(L
); /* and initial value */
240 /** Overload standard pairs function to use __pairs field of metatables.
241 * \param L The Lua VM state.
242 * \return The number of elements pushed on stack.
245 luaAe_pairs(lua_State
*L
)
247 if(luaL_getmetafield(L
, 1, "__pairs"))
250 lua_call(L
, lua_gettop(L
) - 1, LUA_MULTRET
);
251 return lua_gettop(L
);
254 luaL_checktype(L
, 1, LUA_TTABLE
);
255 return luaA_generic_pairs(L
);
259 luaA_ipairs_aux(lua_State
*L
)
261 int i
= luaL_checkint(L
, 2) + 1;
262 luaL_checktype(L
, 1, LUA_TTABLE
);
263 lua_pushinteger(L
, i
);
264 lua_rawgeti(L
, 1, i
);
265 return (lua_isnil(L
, -1)) ? 0 : 2;
268 /** Overload standard ipairs function to use __ipairs field of metatables.
269 * \param L The Lua VM state.
270 * \return The number of elements pushed on stack.
273 luaAe_ipairs(lua_State
*L
)
275 if(luaL_getmetafield(L
, 1, "__ipairs"))
278 lua_call(L
, lua_gettop(L
) - 1, LUA_MULTRET
);
279 return lua_gettop(L
);
282 luaL_checktype(L
, 1, LUA_TTABLE
);
283 lua_pushvalue(L
, lua_upvalueindex(1));
285 lua_pushinteger(L
, 0); /* and initial value */
289 /** Replace various standards Lua functions with our own.
290 * \param L The Lua VM state.
293 luaA_fixups(lua_State
*L
)
295 /* replace string.len */
296 lua_getglobal(L
, "string");
297 lua_pushcfunction(L
, luaA_mbstrlen
);
298 lua_setfield(L
, -2, "len");
301 lua_pushliteral(L
, "next");
302 lua_pushcfunction(L
, luaAe_next
);
303 lua_settable(L
, LUA_GLOBALSINDEX
);
305 lua_pushliteral(L
, "pairs");
306 lua_pushcfunction(L
, luaAe_next
);
307 lua_pushcclosure(L
, luaAe_pairs
, 1); /* pairs get next as upvalue */
308 lua_settable(L
, LUA_GLOBALSINDEX
);
310 lua_pushliteral(L
, "ipairs");
311 lua_pushcfunction(L
, luaA_ipairs_aux
);
312 lua_pushcclosure(L
, luaAe_ipairs
, 1);
313 lua_settable(L
, LUA_GLOBALSINDEX
);
316 /** __next function for wtable objects.
317 * \param L The Lua VM state.
318 * \return The number of elements pushed on stack.
321 luaA_wtable_next(lua_State
*L
)
323 /* upvalue 1 is content table */
324 if(lua_next(L
, lua_upvalueindex(1)))
330 /** __ipairs function for wtable objects.
331 * \param L The Lua VM state.
332 * \return The number of elements pushed on stack.
335 luaA_wtable_ipairs(lua_State
*L
)
337 /* push ipairs_aux */
338 lua_pushvalue(L
, lua_upvalueindex(2));
339 /* push content table */
340 lua_pushvalue(L
, lua_upvalueindex(1));
341 lua_pushinteger(L
, 0); /* and initial value */
345 /** Index function of wtable objects.
346 * \param L The Lua VM state.
347 * \return The number of elements pushed on stack.
350 luaA_wtable_index(lua_State
*L
)
356 /* check for size, waiting lua 5.2 and __len on tables */
357 if((buf
= lua_tolstring(L
, -1, &len
)))
358 if(a_tokenize(buf
, len
) == A_TK_LEN
)
360 lua_pushnumber(L
, lua_objlen(L
, lua_upvalueindex(1)));
365 /* upvalue 1 is content table */
366 lua_rawget(L
, lua_upvalueindex(1));
370 /** Newndex function of wtable objects.
371 * \param L The Lua VM state.
372 * \return The number of elements pushed on stack.
375 luaA_wtable_newindex(lua_State
*L
)
377 bool invalid
= false;
379 /* push key on top */
381 /* get current key value in content table */
382 lua_rawget(L
, lua_upvalueindex(1));
383 /* if value is a widget, notify change */
384 if(lua_istable(L
, -1) || luaA_toudata(L
, -1, "widget"))
387 lua_pop(L
, 1); /* remove value */
389 /* if new value is a widget or a table */
390 if(lua_istable(L
, 3))
392 luaA_table2wtable(L
);
395 else if(!invalid
&& luaA_toudata(L
, 3, "widget"))
398 /* upvalue 1 is content table */
399 lua_rawset(L
, lua_upvalueindex(1));
402 luaA_wibox_invalidate_byitem(L
, lua_topointer(L
, 1));
407 /** Convert the top element of the stack to a proxied wtable.
408 * \param L The Lua VM state.
411 luaA_table2wtable(lua_State
*L
)
413 if(!lua_istable(L
, -1))
416 lua_newtable(L
); /* create *real* content table */
417 lua_newtable(L
); /* metatable */
418 lua_pushvalue(L
, -2); /* copy content table */
419 lua_pushcfunction(L
, luaA_ipairs_aux
); /* push ipairs aux */
420 lua_pushcclosure(L
, luaA_wtable_ipairs
, 2);
421 lua_pushvalue(L
, -3); /* copy content table */
422 lua_pushcclosure(L
, luaA_wtable_next
, 1); /* __next has the content table as upvalue */
423 lua_pushvalue(L
, -4); /* copy content table */
424 lua_pushcclosure(L
, luaA_wtable_index
, 1); /* __index has the content table as upvalue */
425 lua_pushvalue(L
, -5); /* copy content table */
426 lua_pushcclosure(L
, luaA_wtable_newindex
, 1); /* __newindex has the content table as upvalue */
427 /* set metatable field with just pushed closure */
428 lua_setfield(L
, -5, "__newindex");
429 lua_setfield(L
, -4, "__index");
430 lua_setfield(L
, -3, "__next");
431 lua_setfield(L
, -2, "__ipairs");
432 /* set metatable impossible to touch */
433 lua_pushliteral(L
, "wtable");
434 lua_setfield(L
, -2, "__metatable");
435 /* set new metatable on original table */
436 lua_setmetatable(L
, -3);
440 /* go through original table */
441 while(lua_next(L
, -3))
443 /* if convert value to wtable */
444 luaA_table2wtable(L
);
446 lua_pushvalue(L
, -2);
447 /* move key before value */
449 /* set same value in content table */
452 lua_pushvalue(L
, -1);
453 /* push the new value :-> */
455 /* set orig[k] = nil */
458 /* remove content table */
462 /** Look for an item: table, function, etc.
463 * \param L The Lua VM state.
464 * \param item The pointer item.
467 luaA_hasitem(lua_State
*L
, const void *item
)
470 while(luaA_next(L
, -2))
472 if(lua_topointer(L
, -1) == item
)
474 /* remove value and key */
478 if(lua_istable(L
, -1))
479 if(luaA_hasitem(L
, item
))
481 /* remove key and value */
491 /** Check if a table is a loop. When using table as direct acyclic digram,
493 * \param L The Lua VM state.
494 * \param idx The index of the table in the stack
495 * \return True if the table loops.
498 luaA_isloop(lua_State
*L
, int idx
)
500 if(lua_istable(L
, idx
))
502 lua_pushvalue(L
, idx
); /* push table on top */
503 if(luaA_hasitem(L
, lua_topointer(L
, -1)))
505 lua_pop(L
, 1); /* remove pushed table */
509 while(luaA_next(L
, -2))
511 /* check for recursivity */
512 if(luaA_isloop(L
, -1))
514 lua_pop(L
, 2); /* remove key and value */
517 lua_pop(L
, 1); /* remove value */
519 lua_pop(L
, 1); /* remove pushed table */
525 * This table can use safely object as key.
526 * \param L The Lua VM state.
527 * \return The number of elements pushed on stack.
530 luaA_otable_index(lua_State
*L
)
534 if((obj
= lua_touserdata(L
, 2)))
538 while(lua_next(L
, 1))
540 /* check the key against the key if the key is a userdata,
541 * otherwise check it again the value. */
542 if((v
= lua_touserdata(L
, -2))
546 else if((v
= lua_touserdata(L
, -1))
553 /* removes 'value'; keeps 'key' for next iteration */
564 * This table can use safely object as key.
565 * \param L The Lua VM state.
566 * \return The number of elements pushed on stack.
569 luaA_otable_newindex(lua_State
*L
)
573 if((obj
= lua_touserdata(L
, 2)))
577 while(lua_next(L
, 1))
579 if((v
= lua_touserdata(L
, -2))
584 /* push new value on top */
586 /* set in table key = value */
590 /* removes 'value'; keeps 'key' for next iteration */
601 * This function is multi-head (Zaphod) aware and will set display to
602 * the right screen according to mouse position.
603 * \param L The Lua VM state.
604 * \return The number of elements pushed on stack
606 * \lparam The command to launch.
607 * \lparam The optional screen number to spawn the command on.
610 luaA_spawn(lua_State
*L
)
612 char *host
, newdisplay
[128];
614 int screen
= 0, screenp
, displayp
;
616 if(lua_gettop(L
) == 2)
618 screen
= luaL_checknumber(L
, 2) - 1;
619 luaA_checkscreen(screen
);
622 cmd
= luaL_checkstring(L
, 1);
624 if(!globalconf
.xinerama_is_active
)
626 xcb_parse_display(NULL
, &host
, &displayp
, &screenp
);
627 snprintf(newdisplay
, sizeof(newdisplay
), "%s:%d.%d", host
, displayp
, screen
);
628 setenv("DISPLAY", newdisplay
, 1);
632 /* The double-fork construct avoids zombie processes and keeps the code
633 * clean from stupid signal handlers. */
638 if(globalconf
.connection
)
639 xcb_disconnect(globalconf
.connection
);
642 warn("execl '%s' failed: %s\n", cmd
, strerror(errno
));
651 /** awesome global table.
652 * \param L The Lua VM state.
653 * \return The number of elements pushed on stack.
655 * \lfield font The default font.
656 * \lfield conffile The configuration file which has been loaded.
659 luaA_awesome_index(lua_State
*L
)
661 if(luaA_usemetatable(L
, 1, 2))
665 const char *buf
= luaL_checklstring(L
, 2, &len
);
667 switch(a_tokenize(buf
, len
))
671 char *font
= pango_font_description_to_string(globalconf
.font
->desc
);
672 lua_pushstring(L
, font
);
677 lua_pushstring(L
, globalconf
.conffile
);
680 luaA_pushcolor(L
, &globalconf
.colors
.fg
);
683 luaA_pushcolor(L
, &globalconf
.colors
.bg
);
692 /** Newindex function for the awesome global table.
693 * \param L The Lua VM state.
694 * \return The number of elements pushed on stack.
697 luaA_awesome_newindex(lua_State
*L
)
699 if(luaA_usemetatable(L
, 1, 2))
703 const char *buf
= luaL_checklstring(L
, 2, &len
);
705 switch(a_tokenize(buf
, len
))
709 const char *newfont
= luaL_checkstring(L
, 3);
710 draw_font_delete(&globalconf
.font
);
711 globalconf
.font
= draw_font_new(newfont
);
715 if((buf
= luaL_checklstring(L
, 3, &len
)))
716 xcolor_init_reply(xcolor_init_unchecked(&globalconf
.colors
.fg
, buf
, len
));
719 if((buf
= luaL_checklstring(L
, 3, &len
)))
720 xcolor_init_reply(xcolor_init_unchecked(&globalconf
.colors
.bg
, buf
, len
));
729 /** Initialize the Lua VM
736 static const struct luaL_reg otable_methods
[] =
738 { "__call", luaA_otable_new
},
741 static const struct luaL_reg otable_meta
[] =
743 { "__index", luaA_otable_index
},
744 { "__newindex", luaA_otable_newindex
},
747 static const struct luaL_reg awesome_lib
[] =
749 { "quit", luaA_quit
},
750 { "exec", luaA_exec
},
751 { "spawn", luaA_spawn
},
752 { "restart", luaA_restart
},
753 { "buttons", luaA_buttons
},
754 { "__index", luaA_awesome_index
},
755 { "__newindex", luaA_awesome_newindex
},
759 L
= globalconf
.L
= luaL_newstate();
765 /* Export awesome lib */
766 luaA_openlib(L
, "awesome", awesome_lib
, awesome_lib
);
768 /* Export hooks lib */
769 luaL_register(L
, "hooks", awesome_hooks_lib
);
771 /* Export D-Bus lib */
772 luaL_register(L
, "dbus", awesome_dbus_lib
);
774 /* Export keygrabber lib */
775 luaL_register(L
, "keygrabber", awesome_keygrabber_lib
);
777 /* Export mousegrabber lib */
778 luaL_register(L
, "mousegrabber", awesome_mousegrabber_lib
);
780 /* Export otable lib */
781 luaA_openlib(L
, "otable", otable_methods
, otable_meta
);
784 luaA_openlib(L
, "screen", awesome_screen_methods
, awesome_screen_meta
);
787 luaA_openlib(L
, "mouse", awesome_mouse_methods
, awesome_mouse_meta
);
790 luaA_openlib(L
, "button", awesome_button_methods
, awesome_button_meta
);
793 luaA_openlib(L
, "image", awesome_image_methods
, awesome_image_meta
);
796 luaA_openlib(L
, "tag", awesome_tag_methods
, awesome_tag_meta
);
799 luaA_openlib(L
, "wibox", awesome_wibox_methods
, awesome_wibox_meta
);
802 luaA_openlib(L
, "widget", awesome_widget_methods
, awesome_widget_meta
);
805 luaA_openlib(L
, "client", awesome_client_methods
, awesome_client_meta
);
808 luaA_openlib(L
, "keybinding", awesome_keybinding_methods
, awesome_keybinding_meta
);
810 lua_pushliteral(L
, "AWESOME_VERSION");
811 lua_pushstring(L
, AWESOME_VERSION
);
812 lua_settable(L
, LUA_GLOBALSINDEX
);
814 lua_pushliteral(L
, "AWESOME_RELEASE");
815 lua_pushstring(L
, AWESOME_RELEASE
);
816 lua_settable(L
, LUA_GLOBALSINDEX
);
819 globalconf
.hooks
.manage
= LUA_REFNIL
;
820 globalconf
.hooks
.unmanage
= LUA_REFNIL
;
821 globalconf
.hooks
.focus
= LUA_REFNIL
;
822 globalconf
.hooks
.unfocus
= LUA_REFNIL
;
823 globalconf
.hooks
.mouse_enter
= LUA_REFNIL
;
824 globalconf
.hooks
.arrange
= LUA_REFNIL
;
825 globalconf
.hooks
.clients
= LUA_REFNIL
;
826 globalconf
.hooks
.tags
= LUA_REFNIL
;
827 globalconf
.hooks
.tagged
= LUA_REFNIL
;
828 globalconf
.hooks
.property
= LUA_REFNIL
;
829 globalconf
.hooks
.timer
= LUA_REFNIL
;
831 globalconf
.hooks
.dbus
= LUA_REFNIL
;
834 /* add Lua lib path (/usr/share/awesome/lib by default) */
835 luaA_dostring(L
, "package.path = package.path .. \";" AWESOME_LUA_LIB_PATH
"/?.lua\"");
836 luaA_dostring(L
, "package.path = package.path .. \";" AWESOME_LUA_LIB_PATH
"/?/init.lua\"");
838 /* add XDG_CONFIG_DIR (/etc/xdg/awesome by default) as include path */
839 luaA_dostring(L
, "package.path = package.path .. \";" XDG_CONFIG_DIR
"/awesome/?.lua\"");
840 luaA_dostring(L
, "package.path = package.path .. \";" XDG_CONFIG_DIR
"/awesome/?/init.lua\"");
842 /* add either XDG_CONFIG_HOME/awesome or HOME/.config/awesome to path */
844 if((dir
= getenv("XDG_CONFIG_HOME")))
847 a_asprintf(&path
, "package.path = package.path .. \";%s/awesome/?.lua;%s/awesome/?/init.lua\"", dir
, dir
);
848 luaA_dostring(globalconf
.L
, path
);
853 char *path
, *homedir
= getenv("HOME");
855 "package.path = package.path .. \";%s" XDG_CONFIG_HOME_DEFAULT
"/awesome/?.lua;%s" XDG_CONFIG_HOME_DEFAULT
"/awesome/?/init.lua\"",
857 luaA_dostring(globalconf
.L
, path
);
861 /* add XDG_CONFIG_DIRS to include paths */
862 char *xdg_config_dirs
= getenv("XDG_CONFIG_DIRS");
865 if((len
= a_strlen(xdg_config_dirs
)))
867 char **buf
, **xdg_files
= a_strsplit(xdg_config_dirs
, len
, ':');
869 for(buf
= xdg_files
; *buf
; buf
++)
872 a_asprintf(&confpath
, "package.path = package.path .. \";%s/awesome/?.lua;%s/awesome/?/init.lua\"",
874 luaA_dostring(globalconf
.L
, confpath
);
878 for(buf
= xdg_files
; *buf
; buf
++)
880 p_delete(&xdg_files
);
884 #define AWESOME_CONFIG_FILE "/awesome/rc.lua"
887 luaA_loadrc(const char *confpath
, bool run
)
891 if(!luaL_loadfile(globalconf
.L
, confpath
))
895 if(lua_pcall(globalconf
.L
, 0, LUA_MULTRET
, 0))
896 fprintf(stderr
, "%s\n", lua_tostring(globalconf
.L
, -1));
899 globalconf
.conffile
= a_strdup(confpath
);
904 lua_pop(globalconf
.L
, 1);
908 fprintf(stderr
, "%s\n", lua_tostring(globalconf
.L
, -1));
913 /** Load a configuration file.
914 * \param confpatharg The configuration file to load.
915 * \param run Run the configuration file.
918 luaA_parserc(const char *confpatharg
, bool run
)
921 const char *confdir
, *xdg_config_dirs
;
922 char *confpath
= NULL
, **xdg_files
= NULL
, **buf
;
926 /* try to load, return if it's ok */
927 if(luaA_loadrc(confpatharg
, run
))
933 if((confdir
= getenv("XDG_CONFIG_HOME")))
934 a_asprintf(&confpath
, "%s" AWESOME_CONFIG_FILE
, confdir
);
936 a_asprintf(&confpath
, "%s" XDG_CONFIG_HOME_DEFAULT AWESOME_CONFIG_FILE
, getenv("HOME"));
938 /* try to run XDG_CONFIG_HOME/awesome/rc.lua */
939 if(luaA_loadrc(confpath
, run
))
947 xdg_config_dirs
= getenv("XDG_CONFIG_DIRS");
949 if(!(len
= a_strlen(xdg_config_dirs
)))
951 xdg_config_dirs
= XDG_CONFIG_DIR
;
952 len
= sizeof(XDG_CONFIG_DIR
) - 1;
955 xdg_files
= a_strsplit(xdg_config_dirs
, len
, ':');
957 for(buf
= xdg_files
; *buf
&& !ret
; buf
++)
959 a_asprintf(&confpath
, "%s" AWESOME_CONFIG_FILE
, *buf
);
960 if(luaA_loadrc(confpath
, run
))
974 for(buf
= xdg_files
; *buf
; buf
++)
976 p_delete(&xdg_files
);
979 /* Assure there's at least one tag */
980 for(screen
= 0; screen
< globalconf
.nscreen
; screen
++)
981 if(!globalconf
.screens
[screen
].tags
.len
)
982 tag_append_to_screen(tag_new("default", sizeof("default") - 1, layout_tile
, 0.5, 1, 0),
983 &globalconf
.screens
[screen
]);
988 * \param cmd The buffer to parse.
989 * \return the number of elements pushed on the stack by the last statement in cmd.
990 * If there's an error, the message is pushed onto the stack and this returns 1.
993 luaA_docmd(const char *cmd
)
996 int newtop
, oldtop
= lua_gettop(globalconf
.L
);
998 while((p
= strchr(cmd
, '\n')))
1000 newtop
= lua_gettop(globalconf
.L
);
1001 lua_pop(globalconf
.L
, newtop
- oldtop
);
1005 if (luaL_dostring(globalconf
.L
, cmd
))
1007 warn("error executing Lua code: %s", lua_tostring(globalconf
.L
, -1));
1012 return lua_gettop(globalconf
.L
) - oldtop
;
1015 /** Pushes a Lua array containing the top n elements of the stack.
1016 * \param n The number of elements to put in the array.
1022 lua_createtable(globalconf
.L
, n
, 0);
1023 lua_insert(globalconf
.L
, -n
- 1);
1025 for (i
= n
; i
> 0; i
--)
1026 lua_rawseti(globalconf
.L
, -i
- 1, i
);
1029 /** Maps the top n elements of the stack to the result of
1030 * applying a function to that element.
1031 * \param n The number of elements to map.
1033 * \lparam The function to map the elements by. This should be
1034 * at position -(n + 1).
1040 for (i
= 0; i
< n
; i
++)
1042 lua_pushvalue(globalconf
.L
, -n
- 1); /* copy of the function */
1043 lua_pushvalue(globalconf
.L
, -n
- 1); /* value to map */
1044 lua_pcall(globalconf
.L
, 1, 1, 0); /* call function */
1045 lua_remove(globalconf
.L
, -n
- 1); /* remove old value */
1047 lua_remove(globalconf
.L
, -n
- 1); /* remove function */
1050 static void luaA_conn_cleanup(EV_P_ ev_io
*w
)
1052 ev_ref(EV_DEFAULT_UC
);
1053 ev_io_stop(EV_DEFAULT_UC_ w
);
1055 warn("error closing UNIX domain socket: %s", strerror(errno
));
1060 luaA_cb(EV_P_ ev_io
*w
, int revents
)
1067 switch(r
= recv(w
->fd
, buf
, sizeof(buf
)-1, MSG_TRUNC
))
1070 warn("error reading UNIX domain socket: %s", strerror(errno
));
1071 case 0: /* 0 bytes are only transferred when the connection is closed */
1072 luaA_conn_cleanup(EV_DEFAULT_UC_ w
);
1075 if(r
>= ssizeof(buf
))
1078 lua_getglobal(globalconf
.L
, "table");
1079 lua_getfield(globalconf
.L
, -1, "concat");
1080 lua_remove(globalconf
.L
, -2); /* remove table */
1082 lua_getglobal(globalconf
.L
, "tostring");
1083 els
= luaA_docmd(buf
);
1084 luaA_map(els
); /* map results to strings */
1085 luaA_array(els
); /* put strings in an array */
1087 lua_pushstring(globalconf
.L
, "\t");
1088 lua_pcall(globalconf
.L
, 2, 1, 0); /* concatenate results with tabs */
1090 s
= lua_tolstring(globalconf
.L
, -1, &len
);
1092 /* ignore ENOENT because the client may not read */
1093 if (send(w
->fd
, s
, len
, MSG_DONTWAIT
) == -1)
1100 warn("can't send back to client via domain socket: %s", strerror(errno
));
1104 lua_pop(globalconf
.L
, 1); /* pop the string */
1106 awesome_refresh(globalconf
.connection
);
1111 luaA_conn_cb(EV_P_ ev_io
*w
, int revents
)
1113 ev_io
*csio_conn
= p_new(ev_io
, 1);
1114 int csfd
= accept(w
->fd
, NULL
, NULL
);
1116 ev_io_init(csio_conn
, &luaA_cb
, csfd
, EV_READ
);
1117 ev_io_start(EV_DEFAULT_UC_ csio_conn
);
1118 ev_unref(EV_DEFAULT_UC
);
1124 int csfd
= socket_getclient();
1126 if (csfd
< 0 || fcntl(csfd
, F_SETFD
, FD_CLOEXEC
) == -1)
1129 addr
= socket_getaddr(getenv("DISPLAY"));
1131 if(bind(csfd
, (const struct sockaddr
*) addr
, SUN_LEN(addr
)))
1133 if(errno
== EADDRINUSE
)
1135 if(unlink(addr
->sun_path
))
1136 warn("error unlinking existing file: %s", strerror(errno
));
1137 if(bind(csfd
, (const struct sockaddr
*) addr
, SUN_LEN(addr
)))
1138 return warn("error binding UNIX domain socket: %s", strerror(errno
));
1141 return warn("error binding UNIX domain socket: %s", strerror(errno
));
1145 ev_io_init(&csio
, &luaA_conn_cb
, csfd
, EV_READ
);
1146 ev_io_start(EV_DEFAULT_UC_
&csio
);
1147 ev_unref(EV_DEFAULT_UC
);
1151 luaA_cs_cleanup(void)
1155 ev_ref(EV_DEFAULT_UC
);
1156 ev_io_stop(EV_DEFAULT_UC_
&csio
);
1158 warn("error closing UNIX domain socket: %s", strerror(errno
));
1159 if(unlink(addr
->sun_path
))
1160 warn("error unlinking UNIX domain socket: %s", strerror(errno
));
1166 luaA_on_timer(EV_P_ ev_timer
*w
, int revents
)
1168 if(globalconf
.hooks
.timer
!= LUA_REFNIL
)
1169 luaA_dofunction(globalconf
.L
, globalconf
.hooks
.timer
, 0, 0);
1170 awesome_refresh(globalconf
.connection
);
1173 /** Push a color as a string onto the stack
1174 * \param L The Lua VM state.
1175 * \param c The color to push.
1176 * \return The number of elements pushed on stack.
1179 luaA_pushcolor(lua_State
*L
, const xcolor_t
*c
)
1181 uint8_t r
= (unsigned)c
->red
* 0xff / 0xffff;
1182 uint8_t g
= (unsigned)c
->green
* 0xff / 0xffff;
1183 uint8_t b
= (unsigned)c
->blue
* 0xff / 0xffff;
1184 uint8_t a
= (unsigned)c
->alpha
* 0xff / 0xffff;
1187 /* do not print alpha if it's full */
1189 len
= snprintf(s
, sizeof(s
), "#%02x%02x%02x", r
, g
, b
);
1191 len
= snprintf(s
, sizeof(s
), "#%02x%02x%02x%02x", r
, g
, b
, a
);
1192 lua_pushlstring(L
, s
, len
);