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"
52 #include "layouts/tile.h"
53 #include "common/socket.h"
54 #include "common/buffer.h"
56 extern awesome_t globalconf
;
58 extern const struct luaL_reg awesome_hooks_lib
[];
59 extern const struct luaL_reg awesome_keygrabber_lib
[];
60 extern const struct luaL_reg awesome_button_methods
[];
61 extern const struct luaL_reg awesome_button_meta
[];
62 extern const struct luaL_reg awesome_image_methods
[];
63 extern const struct luaL_reg awesome_image_meta
[];
64 extern const struct luaL_reg awesome_mouse_methods
[];
65 extern const struct luaL_reg awesome_mouse_meta
[];
66 extern const struct luaL_reg awesome_screen_methods
[];
67 extern const struct luaL_reg awesome_screen_meta
[];
68 extern const struct luaL_reg awesome_client_methods
[];
69 extern const struct luaL_reg awesome_client_meta
[];
70 extern const struct luaL_reg awesome_titlebar_methods
[];
71 extern const struct luaL_reg awesome_titlebar_meta
[];
72 extern const struct luaL_reg awesome_tag_methods
[];
73 extern const struct luaL_reg awesome_tag_meta
[];
74 extern const struct luaL_reg awesome_widget_methods
[];
75 extern const struct luaL_reg awesome_widget_meta
[];
76 extern const struct luaL_reg awesome_statusbar_methods
[];
77 extern const struct luaL_reg awesome_statusbar_meta
[];
78 extern const struct luaL_reg awesome_wibox_methods
[];
79 extern const struct luaL_reg awesome_wibox_meta
[];
80 extern const struct luaL_reg awesome_keybinding_methods
[];
81 extern const struct luaL_reg awesome_keybinding_meta
[];
83 static struct sockaddr_un
*addr
;
84 static ev_io csio
= { .fd
= -1 };
86 #define XDG_CONFIG_HOME_DEFAULT "/.config"
88 /** Get or set global mouse bindings.
89 * This binding will be available when you'll click on root window.
90 * \param L The Lua VM state.
91 * \return The number of element pushed on stack.
94 * \lparam An array of mouse button bindings objects, or nothing.
95 * \return The array of mouse button bindings objects of this client.
98 luaA_buttons(lua_State
*L
)
100 button_array_t
*buttons
= &globalconf
.buttons
;
102 if(lua_gettop(L
) == 1)
103 luaA_button_array_set(L
, 1, buttons
);
105 return luaA_button_array_get(L
, buttons
);
109 * \param L The Lua VM state.
110 * \return The number of elements pushed on stack.
113 luaA_quit(lua_State
*L
__attribute__ ((unused
)))
115 ev_unloop(globalconf
.loop
, 1);
119 /** Execute another application, probably a window manager, to replace
121 * \param L The Lua VM state.
122 * \return The number of elements pushed on stack.
124 * \lparam The command line to execute.
127 luaA_exec(lua_State
*L
)
129 const char *cmd
= luaL_checkstring(L
, 1);
140 luaA_restart(lua_State
*L
__attribute__ ((unused
)))
146 /** Set default font. (DEPRECATED)
147 * \param L The Lua VM state.
148 * \return The number of elements pushed on stack.
150 * \lparam A string with a font name in Pango format.
153 luaA_font_set(lua_State
*L
)
155 deprecate(L
, "awesome.font attribute");
156 if(lua_gettop(L
) == 1)
158 const char *newfont
= luaL_checkstring(L
, 1);
159 draw_font_delete(&globalconf
.font
);
160 globalconf
.font
= draw_font_new(newfont
);
163 char *font
= pango_font_description_to_string(globalconf
.font
->desc
);
164 lua_pushstring(L
, font
);
169 /** Set default colors (DEPRECATED).
170 * \param L The Lua VM state.
171 * \return The number of elements pushed on stack.
173 * \lparam A table with `fg' and `bg' elements, containing colors.
174 * \lreturn A table with `fg' and `bg' elements, containing colors.
177 luaA_colors(lua_State
*L
)
179 deprecate(L
, "awesome.fg and awesome.bg attributes");
180 if(lua_gettop(L
) == 1)
184 int8_t colors_nbr
= -1, i
;
185 xcolor_init_request_t reqs
[2];
187 luaA_checktable(L
, 1);
189 if((buf
= luaA_getopt_lstring(L
, 1, "fg", NULL
, &len
)))
190 reqs
[++colors_nbr
] = xcolor_init_unchecked(&globalconf
.colors
.fg
, buf
, len
);
192 if((buf
= luaA_getopt_lstring(L
, 1, "bg", NULL
, &len
)))
193 reqs
[++colors_nbr
] = xcolor_init_unchecked(&globalconf
.colors
.bg
, buf
, len
);
195 for(i
= 0; i
<= colors_nbr
; i
++)
196 xcolor_init_reply(reqs
[i
]);
200 luaA_pushcolor(L
, &globalconf
.colors
.fg
);
201 lua_setfield(L
, -2, "fg");
202 luaA_pushcolor(L
, &globalconf
.colors
.bg
);
203 lua_setfield(L
, -2, "bg");
208 /** Set default colors. (DEPRECATED)
209 * \param L The Lua VM state.
210 * \return The number of elements pushed on stack.
213 * \lparam A table with `fg' and `bg' elements, containing colors.
216 luaA_colors_set(lua_State
*L
)
218 return luaA_colors(L
);
222 luaA_openlib(lua_State
*L
, const char *name
,
223 const struct luaL_reg methods
[],
224 const struct luaL_reg meta
[])
226 luaL_newmetatable(L
, name
); /* 1 */
227 lua_pushvalue(L
, -1); /* dup metatable 2 */
228 lua_setfield(L
, -2, "__index"); /* metatable.__index = metatable 1 */
230 luaL_register(L
, NULL
, meta
); /* 1 */
231 luaL_register(L
, name
, methods
); /* 2 */
232 lua_pushvalue(L
, -1); /* dup self as metatable 3 */
233 lua_setmetatable(L
, -2); /* set self as metatable 2 */
237 /** UTF-8 aware string length computing.
238 * \param L The Lua VM state.
239 * \return The number of elements pushed on stack.
242 luaA_mbstrlen(lua_State
*L
)
244 const char *cmd
= luaL_checkstring(L
, 1);
245 lua_pushnumber(L
, mbstowcs(NULL
, NONULL(cmd
), 0));
249 /** Overload standard Lua next function to use __next key on metatable.
250 * \param L The Lua VM state.
251 * \param The number of elements pushed on stack.
254 luaAe_next(lua_State
*L
)
256 if(luaL_getmetafield(L
, 1, "__next"))
259 lua_call(L
, lua_gettop(L
) - 1, LUA_MULTRET
);
260 return lua_gettop(L
);
263 luaL_checktype(L
, 1, LUA_TTABLE
);
271 /** Overload lua_next() function by using __next metatable field
272 * to get next elements.
273 * \param L The Lua VM stack.
274 * \param idx The index number of elements in stack.
275 * \return 1 if more elements to come, 0 otherwise.
278 luaA_next(lua_State
*L
, int idx
)
280 if(luaL_getmetafield(L
, idx
, "__next"))
282 /* if idx is relative, reduce it since we got __next */
284 /* copy table and then move key */
285 lua_pushvalue(L
, idx
);
286 lua_pushvalue(L
, -3);
288 lua_pcall(L
, 2, 2, 0);
289 /* next returned nil, it's the end */
299 return lua_next(L
, idx
);
302 /** Generic pairs function.
303 * \param L The Lua VM state.
304 * \return The number of elements pushed on stack.
307 luaA_generic_pairs(lua_State
*L
)
309 lua_pushvalue(L
, lua_upvalueindex(1)); /* return generator, */
310 lua_pushvalue(L
, 1); /* state, */
311 lua_pushnil(L
); /* and initial value */
315 /** Overload standard pairs function to use __pairs field of metatables.
316 * \param L The Lua VM state.
317 * \return The number of elements pushed on stack.
320 luaAe_pairs(lua_State
*L
)
322 if(luaL_getmetafield(L
, 1, "__pairs"))
325 lua_call(L
, lua_gettop(L
) - 1, LUA_MULTRET
);
326 return lua_gettop(L
);
329 luaL_checktype(L
, 1, LUA_TTABLE
);
330 return luaA_generic_pairs(L
);
334 luaA_ipairs_aux(lua_State
*L
)
336 int i
= luaL_checkint(L
, 2) + 1;
337 luaL_checktype(L
, 1, LUA_TTABLE
);
338 lua_pushinteger(L
, i
);
339 lua_rawgeti(L
, 1, i
);
340 return (lua_isnil(L
, -1)) ? 0 : 2;
343 /** Overload standard ipairs function to use __ipairs field of metatables.
344 * \param L The Lua VM state.
345 * \return The number of elements pushed on stack.
348 luaAe_ipairs(lua_State
*L
)
350 if(luaL_getmetafield(L
, 1, "__ipairs"))
353 lua_call(L
, lua_gettop(L
) - 1, LUA_MULTRET
);
354 return lua_gettop(L
);
357 luaL_checktype(L
, 1, LUA_TTABLE
);
358 lua_pushvalue(L
, lua_upvalueindex(1));
360 lua_pushinteger(L
, 0); /* and initial value */
364 /** Replace various standards Lua functions with our own.
365 * \param L The Lua VM state.
368 luaA_fixups(lua_State
*L
)
370 /* replace string.len */
371 lua_getglobal(L
, "string");
372 lua_pushcfunction(L
, luaA_mbstrlen
);
373 lua_setfield(L
, -2, "len");
376 lua_pushliteral(L
, "next");
377 lua_pushcfunction(L
, luaAe_next
);
378 lua_settable(L
, LUA_GLOBALSINDEX
);
380 lua_pushliteral(L
, "pairs");
381 lua_pushcfunction(L
, luaAe_next
);
382 lua_pushcclosure(L
, luaAe_pairs
, 1); /* pairs get next as upvalue */
383 lua_settable(L
, LUA_GLOBALSINDEX
);
385 lua_pushliteral(L
, "ipairs");
386 lua_pushcfunction(L
, luaA_ipairs_aux
);
387 lua_pushcclosure(L
, luaAe_ipairs
, 1);
388 lua_settable(L
, LUA_GLOBALSINDEX
);
391 /** __next function for wtable objects.
392 * \param L The Lua VM state.
393 * \return The number of elements pushed on stack.
396 luaA_wtable_next(lua_State
*L
)
398 /* upvalue 1 is content table */
399 if(lua_next(L
, lua_upvalueindex(1)))
405 /** __ipairs function for wtable objects.
406 * \param L The Lua VM state.
407 * \return The number of elements pushed on stack.
410 luaA_wtable_ipairs(lua_State
*L
)
412 /* push ipairs_aux */
413 lua_pushvalue(L
, lua_upvalueindex(2));
414 /* push content table */
415 lua_pushvalue(L
, lua_upvalueindex(1));
416 lua_pushinteger(L
, 0); /* and initial value */
420 /** Index function of wtable objects.
421 * \param L The Lua VM state.
422 * \return The number of elements pushed on stack.
425 luaA_wtable_index(lua_State
*L
)
431 /* check for size, waiting lua 5.2 and __len on tables */
432 if((buf
= lua_tolstring(L
, -1, &len
)))
433 if(a_tokenize(buf
, len
) == A_TK_LEN
)
435 lua_pushnumber(L
, lua_objlen(L
, lua_upvalueindex(1)));
440 /* upvalue 1 is content table */
441 lua_rawget(L
, lua_upvalueindex(1));
445 /** Newndex function of wtable objects.
446 * \param L The Lua VM state.
447 * \return The number of elements pushed on stack.
450 luaA_wtable_newindex(lua_State
*L
)
452 bool invalid
= false;
454 /* push key on top */
456 /* get current key value in content table */
457 lua_rawget(L
, lua_upvalueindex(1));
458 /* if value is a widget, notify change */
459 if(lua_istable(L
, -1) || luaA_toudata(L
, -1, "widget"))
462 lua_pop(L
, 1); /* remove value */
464 /* if new value is a widget or a table */
465 if(lua_istable(L
, 3))
467 luaA_table2wtable(L
);
470 else if(!invalid
&& luaA_toudata(L
, 3, "widget"))
473 /* upvalue 1 is content table */
474 lua_rawset(L
, lua_upvalueindex(1));
477 luaA_wibox_invalidate_byitem(L
, lua_topointer(L
, 1));
482 /** Convert the top element of the stack to a proxied wtable.
483 * \param L The Lua VM state.
486 luaA_table2wtable(lua_State
*L
)
488 if(!lua_istable(L
, -1))
491 lua_newtable(L
); /* create *real* content table */
492 lua_newtable(L
); /* metatable */
493 lua_pushvalue(L
, -2); /* copy content table */
494 lua_pushcfunction(L
, luaA_ipairs_aux
); /* push ipairs aux */
495 lua_pushcclosure(L
, luaA_wtable_ipairs
, 2);
496 lua_pushvalue(L
, -3); /* copy content table */
497 lua_pushcclosure(L
, luaA_wtable_next
, 1); /* __next has the content table as upvalue */
498 lua_pushvalue(L
, -4); /* copy content table */
499 lua_pushcclosure(L
, luaA_wtable_index
, 1); /* __index has the content table as upvalue */
500 lua_pushvalue(L
, -5); /* copy content table */
501 lua_pushcclosure(L
, luaA_wtable_newindex
, 1); /* __newindex has the content table as upvalue */
502 /* set metatable field with just pushed closure */
503 lua_setfield(L
, -5, "__newindex");
504 lua_setfield(L
, -4, "__index");
505 lua_setfield(L
, -3, "__next");
506 lua_setfield(L
, -2, "__ipairs");
507 /* set metatable impossible to touch */
508 lua_pushliteral(L
, "wtable");
509 lua_setfield(L
, -2, "__metatable");
510 /* set new metatable on original table */
511 lua_setmetatable(L
, -3);
515 /* go through original table */
516 while(lua_next(L
, -3))
518 /* if convert value to wtable */
519 luaA_table2wtable(L
);
521 lua_pushvalue(L
, -2);
522 /* move key before value */
524 /* set same value in content table */
527 lua_pushvalue(L
, -1);
528 /* push the new value :-> */
530 /* set orig[k] = nil */
533 /* remove content table */
537 /** Look for an item: table, function, etc.
538 * \param L The Lua VM state.
539 * \param item The pointer item.
542 luaA_hasitem(lua_State
*L
, const void *item
)
545 while(luaA_next(L
, -2))
547 if(lua_topointer(L
, -1) == item
)
549 /* remove value and key */
553 if(lua_istable(L
, -1))
554 if(luaA_hasitem(L
, item
))
556 /* remove key and value */
566 /** Check if a table is a loop. When using table as direct acyclic digram,
568 * \param L The Lua VM state.
569 * \param idx The index of the table in the stack
570 * \return True if the table loops.
573 luaA_isloop(lua_State
*L
, int idx
)
575 if(lua_istable(L
, idx
))
577 lua_pushvalue(L
, idx
); /* push table on top */
578 if(luaA_hasitem(L
, lua_topointer(L
, -1)))
580 lua_pop(L
, 1); /* remove pushed table */
584 while(luaA_next(L
, -2))
586 /* check for recursivity */
587 if(luaA_isloop(L
, -1))
589 lua_pop(L
, 2); /* remove key and value */
592 lua_pop(L
, 1); /* remove value */
594 lua_pop(L
, 1); /* remove pushed table */
600 * This table can use safely object as key.
601 * \param L The Lua VM state.
602 * \return The number of elements pushed on stack.
605 luaA_otable_index(lua_State
*L
)
609 if((obj
= lua_touserdata(L
, 2)))
613 while(lua_next(L
, 1))
615 /* check the key against the key if the key is a userdata,
616 * otherwise check it again the value. */
617 if((v
= lua_touserdata(L
, -2))
621 else if((v
= lua_touserdata(L
, -1))
628 /* removes 'value'; keeps 'key' for next iteration */
639 * This table can use safely object as key.
640 * \param L The Lua VM state.
641 * \return The number of elements pushed on stack.
644 luaA_otable_newindex(lua_State
*L
)
648 if((obj
= lua_touserdata(L
, 2)))
652 while(lua_next(L
, 1))
654 if((v
= lua_touserdata(L
, -2))
659 /* push new value on top */
661 /* set in table key = value */
665 /* removes 'value'; keeps 'key' for next iteration */
676 * This function is multi-head (Zaphod) aware and will set display to
677 * the right screen according to mouse position.
678 * \param L The Lua VM state.
679 * \return The number of elements pushed on stack
681 * \lparam The command to launch.
682 * \lparam The optional screen number to spawn the command on.
685 luaA_spawn(lua_State
*L
)
687 char *host
, newdisplay
[128];
689 int screen
= 0, screenp
, displayp
;
691 if(lua_gettop(L
) == 2)
693 screen
= luaL_checknumber(L
, 2) - 1;
694 luaA_checkscreen(screen
);
697 cmd
= luaL_checkstring(L
, 1);
699 if(!globalconf
.xinerama_is_active
)
701 xcb_parse_display(NULL
, &host
, &displayp
, &screenp
);
702 snprintf(newdisplay
, sizeof(newdisplay
), "%s:%d.%d", host
, displayp
, screen
);
703 setenv("DISPLAY", newdisplay
, 1);
707 /* The double-fork construct avoids zombie processes and keeps the code
708 * clean from stupid signal handlers. */
713 if(globalconf
.connection
)
714 xcb_disconnect(globalconf
.connection
);
717 warn("execl '%s' failed: %s\n", cmd
, strerror(errno
));
726 /** Deprecated function, does nothing.
729 luaA_mouse_add(lua_State
*L
)
731 deprecate(L
, "awesome.buttons()");
735 /** awesome global table.
736 * \param L The Lua VM state.
737 * \return The number of elements pushed on stack.
739 * \lfield font The default font.
740 * \lfield conffile The configuration file which has been loaded.
743 luaA_awesome_index(lua_State
*L
)
745 if(luaA_usemetatable(L
, 1, 2))
749 const char *buf
= luaL_checklstring(L
, 2, &len
);
751 switch(a_tokenize(buf
, len
))
755 char *font
= pango_font_description_to_string(globalconf
.font
->desc
);
756 lua_pushstring(L
, font
);
761 lua_pushstring(L
, globalconf
.conffile
);
764 luaA_pushcolor(L
, &globalconf
.colors
.fg
);
767 luaA_pushcolor(L
, &globalconf
.colors
.bg
);
776 /** Newindex function for the awesome global table.
777 * \param L The Lua VM state.
778 * \return The number of elements pushed on stack.
781 luaA_awesome_newindex(lua_State
*L
)
783 if(luaA_usemetatable(L
, 1, 2))
787 const char *buf
= luaL_checklstring(L
, 2, &len
);
789 switch(a_tokenize(buf
, len
))
793 const char *newfont
= luaL_checkstring(L
, 3);
794 draw_font_delete(&globalconf
.font
);
795 globalconf
.font
= draw_font_new(newfont
);
799 if((buf
= luaL_checklstring(L
, 3, &len
)))
800 xcolor_init_reply(xcolor_init_unchecked(&globalconf
.colors
.fg
, buf
, len
));
803 if((buf
= luaL_checklstring(L
, 3, &len
)))
804 xcolor_init_reply(xcolor_init_unchecked(&globalconf
.colors
.bg
, buf
, len
));
813 /** Initialize the Lua VM
820 static const struct luaL_reg otable_methods
[] =
822 { "__call", luaA_otable_new
},
825 static const struct luaL_reg otable_meta
[] =
827 { "__index", luaA_otable_index
},
828 { "__newindex", luaA_otable_newindex
},
831 static const struct luaL_reg awesome_lib
[] =
833 { "quit", luaA_quit
},
834 { "exec", luaA_exec
},
835 { "spawn", luaA_spawn
},
836 { "restart", luaA_restart
},
837 { "buttons", luaA_buttons
},
838 { "font_set", luaA_font_set
},
839 { "colors_set", luaA_colors_set
},
840 { "colors", luaA_colors
},
841 { "__index", luaA_awesome_index
},
842 { "__newindex", luaA_awesome_newindex
},
844 { "mouse_add", luaA_mouse_add
},
848 L
= globalconf
.L
= luaL_newstate();
854 /* Export awesome lib */
855 luaA_openlib(L
, "awesome", awesome_lib
, awesome_lib
);
857 /* Export hooks lib */
858 luaL_register(L
, "hooks", awesome_hooks_lib
);
860 /* Export keygrabber lib */
861 luaL_register(L
, "keygrabber", awesome_keygrabber_lib
);
863 /* Export otable lib */
864 luaA_openlib(L
, "otable", otable_methods
, otable_meta
);
867 luaA_openlib(L
, "screen", awesome_screen_methods
, awesome_screen_meta
);
870 luaA_openlib(L
, "mouse", awesome_mouse_methods
, awesome_mouse_meta
);
873 luaA_openlib(L
, "button", awesome_button_methods
, awesome_button_meta
);
876 luaA_openlib(L
, "image", awesome_image_methods
, awesome_image_meta
);
879 luaA_openlib(L
, "tag", awesome_tag_methods
, awesome_tag_meta
);
881 /* Export statusbar */
882 luaA_openlib(L
, "statusbar", awesome_statusbar_methods
, awesome_statusbar_meta
);
885 luaA_openlib(L
, "wibox", awesome_wibox_methods
, awesome_wibox_meta
);
888 luaA_openlib(L
, "widget", awesome_widget_methods
, awesome_widget_meta
);
891 luaA_openlib(L
, "client", awesome_client_methods
, awesome_client_meta
);
893 /* Export titlebar */
894 luaA_openlib(L
, "titlebar", awesome_titlebar_methods
, awesome_titlebar_meta
);
897 luaA_openlib(L
, "keybinding", awesome_keybinding_methods
, awesome_keybinding_meta
);
899 lua_pushliteral(L
, "AWESOME_VERSION");
900 lua_pushstring(L
, AWESOME_VERSION
);
901 lua_settable(L
, LUA_GLOBALSINDEX
);
903 lua_pushliteral(L
, "AWESOME_RELEASE");
904 lua_pushstring(L
, AWESOME_RELEASE
);
905 lua_settable(L
, LUA_GLOBALSINDEX
);
908 globalconf
.hooks
.manage
= LUA_REFNIL
;
909 globalconf
.hooks
.unmanage
= LUA_REFNIL
;
910 globalconf
.hooks
.focus
= LUA_REFNIL
;
911 globalconf
.hooks
.unfocus
= LUA_REFNIL
;
912 globalconf
.hooks
.mouse_enter
= LUA_REFNIL
;
913 globalconf
.hooks
.arrange
= LUA_REFNIL
;
914 globalconf
.hooks
.clients
= LUA_REFNIL
;
915 globalconf
.hooks
.tags
= LUA_REFNIL
;
916 globalconf
.hooks
.tagged
= LUA_REFNIL
;
917 globalconf
.hooks
.property
= LUA_REFNIL
;
918 globalconf
.hooks
.timer
= LUA_REFNIL
;
920 /* add Lua lib path (/usr/share/awesome/lib by default) */
921 luaA_dostring(L
, "package.path = package.path .. \";" AWESOME_LUA_LIB_PATH
"/?.lua\"");
922 luaA_dostring(L
, "package.path = package.path .. \";" AWESOME_LUA_LIB_PATH
"/?/init.lua\"");
924 /* add XDG_CONFIG_DIR (/etc/xdg/awesome by default) as include path */
925 luaA_dostring(L
, "package.path = package.path .. \";" XDG_CONFIG_DIR
"/awesome/?.lua\"");
926 luaA_dostring(L
, "package.path = package.path .. \";" XDG_CONFIG_DIR
"/awesome/?/init.lua\"");
928 /* add either XDG_CONFIG_HOME/awesome or HOME/.config/awesome to path */
930 if((dir
= getenv("XDG_CONFIG_HOME")))
933 a_asprintf(&path
, "package.path = package.path .. \";%s/awesome/?.lua;%s/awesome/?/init.lua\"", dir
, dir
);
934 luaA_dostring(globalconf
.L
, path
);
939 char *path
, *homedir
= getenv("HOME");
941 "package.path = package.path .. \";%s" XDG_CONFIG_HOME_DEFAULT
"/awesome/?.lua;%s" XDG_CONFIG_HOME_DEFAULT
"/awesome/?/init.lua\"",
943 luaA_dostring(globalconf
.L
, path
);
947 /* add XDG_CONFIG_DIRS to include paths */
948 char *xdg_config_dirs
= getenv("XDG_CONFIG_DIRS");
951 if((len
= a_strlen(xdg_config_dirs
)))
953 char **buf
, **xdg_files
= a_strsplit(xdg_config_dirs
, len
, ':');
955 for(buf
= xdg_files
; *buf
; buf
++)
958 a_asprintf(&confpath
, "package.path = package.path .. \";%s/awesome/?.lua;%s/awesome/?/init.lua\"",
960 luaA_dostring(globalconf
.L
, confpath
);
964 for(buf
= xdg_files
; *buf
; buf
++)
966 p_delete(&xdg_files
);
970 #define AWESOME_CONFIG_FILE "/awesome/rc.lua"
973 luaA_loadrc(const char *confpath
, bool run
)
977 if(!luaL_loadfile(globalconf
.L
, confpath
))
981 if(lua_pcall(globalconf
.L
, 0, LUA_MULTRET
, 0))
982 fprintf(stderr
, "%s\n", lua_tostring(globalconf
.L
, -1));
985 globalconf
.conffile
= a_strdup(confpath
);
990 lua_pop(globalconf
.L
, 1);
994 fprintf(stderr
, "%s\n", lua_tostring(globalconf
.L
, -1));
999 /** Load a configuration file.
1000 * \param confpatharg The configuration file to load.
1001 * \param run Run the configuration file.
1004 luaA_parserc(const char *confpatharg
, bool run
)
1007 const char *confdir
, *xdg_config_dirs
;
1008 char *confpath
= NULL
, **xdg_files
= NULL
, **buf
;
1012 /* try to load, return if it's ok */
1013 if(luaA_loadrc(confpatharg
, run
))
1019 if((confdir
= getenv("XDG_CONFIG_HOME")))
1020 a_asprintf(&confpath
, "%s" AWESOME_CONFIG_FILE
, confdir
);
1022 a_asprintf(&confpath
, "%s" XDG_CONFIG_HOME_DEFAULT AWESOME_CONFIG_FILE
, getenv("HOME"));
1024 /* try to run XDG_CONFIG_HOME/awesome/rc.lua */
1025 if(luaA_loadrc(confpath
, run
))
1031 p_delete(&confpath
);
1033 xdg_config_dirs
= getenv("XDG_CONFIG_DIRS");
1035 if(!(len
= a_strlen(xdg_config_dirs
)))
1037 xdg_config_dirs
= XDG_CONFIG_DIR
;
1038 len
= sizeof(XDG_CONFIG_DIR
) - 1;
1041 xdg_files
= a_strsplit(xdg_config_dirs
, len
, ':');
1043 for(buf
= xdg_files
; *buf
&& !ret
; buf
++)
1045 a_asprintf(&confpath
, "%s" AWESOME_CONFIG_FILE
, *buf
);
1046 if(luaA_loadrc(confpath
, run
))
1051 p_delete(&confpath
);
1056 p_delete(&confpath
);
1060 for(buf
= xdg_files
; *buf
; buf
++)
1062 p_delete(&xdg_files
);
1065 /* Assure there's at least one tag */
1066 for(screen
= 0; screen
< globalconf
.nscreen
; screen
++)
1067 if(!globalconf
.screens
[screen
].tags
.len
)
1068 tag_append_to_screen(tag_new("default", sizeof("default") - 1, layout_tile
, 0.5, 1, 0),
1069 &globalconf
.screens
[screen
]);
1073 /** Parse a command.
1074 * \param cmd The buffer to parse.
1075 * \return the number of elements pushed on the stack by the last statement in cmd.
1076 * If there's an error, the message is pushed onto the stack and this returns 1.
1079 luaA_docmd(const char *cmd
)
1082 int newtop
, oldtop
= lua_gettop(globalconf
.L
);
1084 while((p
= strchr(cmd
, '\n')))
1086 newtop
= lua_gettop(globalconf
.L
);
1087 lua_pop(globalconf
.L
, newtop
- oldtop
);
1091 if (luaL_dostring(globalconf
.L
, cmd
))
1093 warn("error executing Lua code: %s", lua_tostring(globalconf
.L
, -1));
1098 return lua_gettop(globalconf
.L
) - oldtop
;
1101 /** Pushes a Lua array containing the top n elements of the stack.
1102 * \param n The number of elements to put in the array.
1108 lua_createtable(globalconf
.L
, n
, 0);
1109 lua_insert(globalconf
.L
, -n
- 1);
1111 for (i
= n
; i
> 0; i
--)
1112 lua_rawseti(globalconf
.L
, -i
- 1, i
);
1115 /** Maps the top n elements of the stack to the result of
1116 * applying a function to that element.
1117 * \param n The number of elements to map.
1119 * \lparam The function to map the elements by. This should be
1120 * at position -(n + 1).
1126 for (i
= 0; i
< n
; i
++)
1128 lua_pushvalue(globalconf
.L
, -n
- 1); /* copy of the function */
1129 lua_pushvalue(globalconf
.L
, -n
- 1); /* value to map */
1130 lua_pcall(globalconf
.L
, 1, 1, 0); /* call function */
1131 lua_remove(globalconf
.L
, -n
- 1); /* remove old value */
1133 lua_remove(globalconf
.L
, -n
- 1); /* remove function */
1136 static void luaA_conn_cleanup(EV_P_ ev_io
*w
)
1138 ev_ref(EV_DEFAULT_UC
);
1139 ev_io_stop(EV_DEFAULT_UC_ w
);
1141 warn("error closing UNIX domain socket: %s", strerror(errno
));
1146 luaA_cb(EV_P_ ev_io
*w
, int revents
)
1153 switch(r
= recv(w
->fd
, buf
, sizeof(buf
)-1, MSG_TRUNC
))
1156 warn("error reading UNIX domain socket: %s", strerror(errno
));
1157 case 0: /* 0 bytes are only transferred when the connection is closed */
1158 luaA_conn_cleanup(EV_DEFAULT_UC_ w
);
1161 if(r
>= ssizeof(buf
))
1164 lua_getglobal(globalconf
.L
, "table");
1165 lua_getfield(globalconf
.L
, -1, "concat");
1166 lua_remove(globalconf
.L
, -2); /* remove table */
1168 lua_getglobal(globalconf
.L
, "tostring");
1169 els
= luaA_docmd(buf
);
1170 luaA_map(els
); /* map results to strings */
1171 luaA_array(els
); /* put strings in an array */
1173 lua_pushstring(globalconf
.L
, "\t");
1174 lua_pcall(globalconf
.L
, 2, 1, 0); /* concatenate results with tabs */
1176 s
= lua_tolstring(globalconf
.L
, -1, &len
);
1178 /* ignore ENOENT because the client may not read */
1179 if (send(w
->fd
, s
, len
, MSG_DONTWAIT
) == -1)
1186 warn("can't send back to client via domain socket: %s", strerror(errno
));
1190 lua_pop(globalconf
.L
, 1); /* pop the string */
1192 awesome_refresh(globalconf
.connection
);
1197 luaA_conn_cb(EV_P_ ev_io
*w
, int revents
)
1199 ev_io
*csio_conn
= p_new(ev_io
, 1);
1200 int csfd
= accept(w
->fd
, NULL
, NULL
);
1202 ev_io_init(csio_conn
, &luaA_cb
, csfd
, EV_READ
);
1203 ev_io_start(EV_DEFAULT_UC_ csio_conn
);
1204 ev_unref(EV_DEFAULT_UC
);
1210 int csfd
= socket_getclient();
1212 if (csfd
< 0 || fcntl(csfd
, F_SETFD
, FD_CLOEXEC
) == -1)
1215 addr
= socket_getaddr(getenv("DISPLAY"));
1217 if(bind(csfd
, (const struct sockaddr
*) addr
, SUN_LEN(addr
)))
1219 if(errno
== EADDRINUSE
)
1221 if(unlink(addr
->sun_path
))
1222 warn("error unlinking existing file: %s", strerror(errno
));
1223 if(bind(csfd
, (const struct sockaddr
*) addr
, SUN_LEN(addr
)))
1224 return warn("error binding UNIX domain socket: %s", strerror(errno
));
1227 return warn("error binding UNIX domain socket: %s", strerror(errno
));
1231 ev_io_init(&csio
, &luaA_conn_cb
, csfd
, EV_READ
);
1232 ev_io_start(EV_DEFAULT_UC_
&csio
);
1233 ev_unref(EV_DEFAULT_UC
);
1237 luaA_cs_cleanup(void)
1241 ev_ref(EV_DEFAULT_UC
);
1242 ev_io_stop(EV_DEFAULT_UC_
&csio
);
1244 warn("error closing UNIX domain socket: %s", strerror(errno
));
1245 if(unlink(addr
->sun_path
))
1246 warn("error unlinking UNIX domain socket: %s", strerror(errno
));
1252 luaA_on_timer(EV_P_ ev_timer
*w
, int revents
)
1254 if(globalconf
.hooks
.timer
!= LUA_REFNIL
)
1255 luaA_dofunction(globalconf
.L
, globalconf
.hooks
.timer
, 0, 0);
1256 awesome_refresh(globalconf
.connection
);
1259 /** Push a color as a string onto the stack
1260 * \param L The Lua VM state.
1261 * \param c The color to push.
1262 * \return The number of elements pushed on stack.
1265 luaA_pushcolor(lua_State
*L
, const xcolor_t
*c
)
1267 uint8_t r
= (unsigned)c
->red
* 0xff / 0xffff;
1268 uint8_t g
= (unsigned)c
->green
* 0xff / 0xffff;
1269 uint8_t b
= (unsigned)c
->blue
* 0xff / 0xffff;
1270 uint8_t a
= (unsigned)c
->alpha
* 0xff / 0xffff;
1273 /* do not print alpha if it's full */
1275 len
= snprintf(s
, sizeof(s
), "#%02x%02x%02x", r
, g
, b
);
1277 len
= snprintf(s
, sizeof(s
), "#%02x%02x%02x%02x", r
, g
, b
, a
);
1278 lua_pushlstring(L
, s
, len
);