awesome/awesome.c

472 lines
16 KiB
C
Raw Normal View History

/*
2007-09-12 14:29:51 +02:00
* awesome.c - awesome main functions
*
* Copyright © 2007 Julien Danjou <julien@danjou.info>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
*/
2007-09-05 20:15:00 +02:00
#include <errno.h>
#include <locale.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/select.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <fcntl.h>
2007-09-05 20:15:00 +02:00
#include <X11/cursorfont.h>
#include <X11/keysym.h>
#include <X11/Xatom.h>
#include <X11/Xproto.h>
#include <X11/Xutil.h>
#include <X11/extensions/shape.h>
#include <X11/extensions/Xrandr.h>
2007-09-05 20:15:00 +02:00
2007-09-10 12:06:54 +02:00
#include "awesome.h"
2007-09-05 20:15:00 +02:00
#include "event.h"
#include "layout.h"
#include "tag.h"
2007-09-15 12:45:55 +02:00
#include "screen.h"
#include "util.h"
#include "statusbar.h"
#include "uicb.h"
#include "window.h"
2007-09-05 20:15:00 +02:00
#define CONTROL_FIFO_PATH ".awesome_ctl"
#define CONTROL_UNIX_SOCKET_PATH ".awesome_so_ctl"
2007-09-05 20:15:00 +02:00
static int (*xerrorxlib) (Display *, XErrorEvent *);
static Bool running = True;
2007-09-05 20:15:00 +02:00
2007-09-16 22:51:11 +02:00
/** Cleanup everything on quit
* \param awesomeconf awesome config
*/
2007-09-05 20:15:00 +02:00
static void
2007-10-10 14:09:36 +02:00
cleanup(awesome_config *awesomeconf)
2007-09-05 20:15:00 +02:00
{
int screen, i;
2007-09-16 00:36:56 +02:00
2007-10-11 23:17:12 +02:00
while(*awesomeconf->clients)
2007-09-05 20:15:00 +02:00
{
2007-10-11 23:17:12 +02:00
unban(*awesomeconf->clients);
client_unmanage(*awesomeconf->clients, NormalState, awesomeconf);
2007-09-05 20:15:00 +02:00
}
2007-09-16 00:36:56 +02:00
2007-10-01 15:31:43 +02:00
for(screen = 0; screen < get_screen_count(awesomeconf->display); screen++)
{
2007-10-10 13:34:25 +02:00
XftFontClose(awesomeconf->display, awesomeconf->font);
XUngrabKey(awesomeconf->display, AnyKey, AnyModifier, RootWindow(awesomeconf->display, awesomeconf[screen].phys_screen));
2007-10-01 15:31:43 +02:00
XFreePixmap(awesomeconf->display, awesomeconf[screen].statusbar.drawable);
XDestroyWindow(awesomeconf->display, awesomeconf[screen].statusbar.window);
2007-10-10 13:29:46 +02:00
XFreeCursor(awesomeconf->display, awesomeconf[screen].cursor[CurNormal]);
XFreeCursor(awesomeconf->display, awesomeconf[screen].cursor[CurResize]);
XFreeCursor(awesomeconf->display, awesomeconf[screen].cursor[CurMove]);
for(i = 0; i < awesomeconf[screen].ntags; i++)
2007-10-25 22:18:32 +02:00
{
2007-09-24 15:37:52 +02:00
p_delete(&awesomeconf[screen].tags[i].name);
2007-10-25 22:18:32 +02:00
p_delete(&awesomeconf[screen].tags[i].client_sel);
}
for(i = 0; i < awesomeconf[screen].nkeys; i++)
p_delete(&awesomeconf[screen].keys[i].arg);
for(i = 0; i < awesomeconf[screen].nlayouts; i++)
p_delete(&awesomeconf[screen].layouts[i].symbol);
for(i = 0; i < awesomeconf[screen].nrules; i++)
{
p_delete(&awesomeconf[screen].rules[i].prop);
p_delete(&awesomeconf[screen].rules[i].tags);
}
2007-09-16 14:03:51 +02:00
p_delete(&awesomeconf[screen].tags);
p_delete(&awesomeconf[screen].layouts);
p_delete(&awesomeconf[screen].rules);
p_delete(&awesomeconf[screen].keys);
}
2007-10-01 15:31:43 +02:00
XSetInputFocus(awesomeconf->display, PointerRoot, RevertToPointerRoot, CurrentTime);
XSync(awesomeconf->display, False);
2007-10-11 21:50:32 +02:00
p_delete(&awesomeconf->clients);
2007-10-11 23:12:05 +02:00
p_delete(&awesomeconf->client_sel);
2007-09-16 14:03:51 +02:00
p_delete(&awesomeconf);
2007-09-05 20:15:00 +02:00
}
2007-09-16 22:51:11 +02:00
/** Scan X to find windows to manage
* \param screen Screen number
* \param awesomeconf awesome config
*/
2007-09-05 20:15:00 +02:00
static void
2007-10-10 14:09:36 +02:00
scan(awesome_config *awesomeconf)
2007-09-05 20:15:00 +02:00
{
unsigned int i, num;
2007-09-27 19:21:47 +02:00
int screen, real_screen;
Window *wins = NULL, d1, d2;
2007-09-05 20:15:00 +02:00
XWindowAttributes wa;
2007-10-01 15:31:43 +02:00
for(screen = 0; screen < ScreenCount(awesomeconf->display); screen++)
2007-09-16 00:36:56 +02:00
{
2007-10-01 15:31:43 +02:00
if(XQueryTree(awesomeconf->display, RootWindow(awesomeconf->display, screen), &d1, &d2, &wins, &num))
2007-09-05 20:15:00 +02:00
{
2007-09-27 19:21:47 +02:00
real_screen = screen;
for(i = 0; i < num; i++)
{
2007-10-01 15:31:43 +02:00
if(!XGetWindowAttributes(awesomeconf->display, wins[i], &wa)
2007-09-27 19:21:47 +02:00
|| wa.override_redirect
2007-10-01 15:31:43 +02:00
|| XGetTransientForHint(awesomeconf->display, wins[i], &d1))
2007-09-27 19:21:47 +02:00
continue;
if(wa.map_state == IsViewable || window_getstate(awesomeconf->display, wins[i]) == IconicState)
2007-09-27 19:21:47 +02:00
{
if(screen == 0)
2007-10-01 15:31:43 +02:00
real_screen = get_screen_bycoord(awesomeconf->display, wa.x, wa.y);
client_manage(wins[i], &wa, &awesomeconf[real_screen]);
2007-09-27 19:21:47 +02:00
}
}
/* now the transients */
for(i = 0; i < num; i++)
{
2007-10-01 15:31:43 +02:00
if(!XGetWindowAttributes(awesomeconf->display, wins[i], &wa))
2007-09-27 19:21:47 +02:00
continue;
2007-10-01 15:31:43 +02:00
if(XGetTransientForHint(awesomeconf->display, wins[i], &d1)
&& (wa.map_state == IsViewable || window_getstate(awesomeconf->display, wins[i]) == IconicState))
2007-09-27 19:21:47 +02:00
{
if(screen == 0)
2007-10-01 15:31:43 +02:00
real_screen = get_screen_bycoord(awesomeconf->display, wa.x, wa.y);
client_manage(wins[i], &wa, &awesomeconf[real_screen]);
2007-09-27 19:21:47 +02:00
}
}
2007-09-05 20:15:00 +02:00
}
2007-09-27 19:21:47 +02:00
if(wins)
XFree(wins);
2007-09-05 20:15:00 +02:00
}
}
2007-09-07 11:38:03 +02:00
/** Setup everything before running
2007-09-10 12:06:54 +02:00
* \param awesomeconf awesome config ref
2007-09-07 11:38:03 +02:00
* \todo clean things...
*/
2007-09-05 20:15:00 +02:00
static void
2007-10-10 14:09:36 +02:00
setup(awesome_config *awesomeconf)
2007-09-05 20:15:00 +02:00
{
XSetWindowAttributes wa;
/* init cursors */
2007-10-10 13:29:46 +02:00
awesomeconf->cursor[CurNormal] = XCreateFontCursor(awesomeconf->display, XC_left_ptr);
awesomeconf->cursor[CurResize] = XCreateFontCursor(awesomeconf->display, XC_sizing);
awesomeconf->cursor[CurMove] = XCreateFontCursor(awesomeconf->display, XC_fleur);
2007-09-16 22:51:11 +02:00
2007-09-05 20:15:00 +02:00
/* select for events */
wa.event_mask = SubstructureRedirectMask | SubstructureNotifyMask
| EnterWindowMask | LeaveWindowMask | StructureNotifyMask;
2007-10-10 13:29:46 +02:00
wa.cursor = awesomeconf->cursor[CurNormal];
2007-09-16 22:51:11 +02:00
2007-10-01 15:31:43 +02:00
XChangeWindowAttributes(awesomeconf->display, RootWindow(awesomeconf->display, awesomeconf->phys_screen), CWEventMask | CWCursor, &wa);
2007-09-16 22:51:11 +02:00
2007-10-01 15:31:43 +02:00
XSelectInput(awesomeconf->display, RootWindow(awesomeconf->display, awesomeconf->phys_screen), wa.event_mask);
2007-09-16 22:51:11 +02:00
grabkeys(awesomeconf);
2007-09-05 20:15:00 +02:00
}
2007-09-16 22:51:11 +02:00
/** Startup Error handler to check if another window manager
2007-09-05 20:15:00 +02:00
* is already running.
2007-09-16 22:51:11 +02:00
* \param disp Display ref
* \param ee Error event
2007-09-05 20:15:00 +02:00
*/
2007-09-12 14:32:24 +02:00
static int __attribute__ ((noreturn))
2007-09-16 22:51:11 +02:00
xerrorstart(Display * disp __attribute__ ((unused)), XErrorEvent * ee __attribute__ ((unused)))
2007-09-05 20:15:00 +02:00
{
2007-09-12 14:32:24 +02:00
eprint("awesome: another window manager is already running\n");
2007-09-05 20:15:00 +02:00
}
2007-09-16 22:51:11 +02:00
/** Quit awesome
* \param awesomeconf awesome config
* \param arg nothing
* \ingroup ui_callback
*/
2007-09-05 20:15:00 +02:00
void
2007-10-11 23:32:29 +02:00
uicb_quit(awesome_config *awesomeconf __attribute__((unused)),
2007-09-05 20:15:00 +02:00
const char *arg __attribute__ ((unused)))
{
running = False;
2007-09-05 20:15:00 +02:00
}
/* There's no way to check accesses to destroyed windows, thus those cases are
* ignored (especially on UnmapNotify's). Other types of errors call Xlibs
* default error handler, which may call exit.
*/
int
xerror(Display * edpy, XErrorEvent * ee)
{
if(ee->error_code == BadWindow
|| (ee->request_code == X_SetInputFocus && ee->error_code == BadMatch)
|| (ee->request_code == X_PolyText8 && ee->error_code == BadDrawable)
|| (ee->request_code == X_PolyFillRectangle
&& ee->error_code == BadDrawable)
|| (ee->request_code == X_PolySegment && ee->error_code == BadDrawable)
|| (ee->request_code == X_ConfigureWindow
&& ee->error_code == BadMatch) || (ee->request_code == X_GrabKey
&& ee->error_code == BadAccess)
|| (ee->request_code == X_CopyArea && ee->error_code == BadDrawable))
return 0;
2007-09-10 12:06:54 +02:00
fprintf(stderr, "awesome: fatal error: request code=%d, error code=%d\n",
2007-09-05 20:15:00 +02:00
ee->request_code, ee->error_code);
return xerrorxlib(edpy, ee); /* may call exit */
}
2007-09-16 22:51:11 +02:00
/** Hello, this is main
* \param argc who knows
* \param argv who knows
* \return EXIT_SUCCESS I hope
*/
typedef void event_handler (XEvent *, awesome_config *);
2007-09-05 20:15:00 +02:00
int
main(int argc, char *argv[])
{
char *fifopath, buf[1024];
const char *confpath = NULL, *homedir;
int r, cfd, xfd, e_dummy, csfd;
2007-09-05 20:15:00 +02:00
fd_set rd;
XEvent ev;
Display * dpy;
awesome_config *awesomeconf;
2007-09-13 16:00:03 +02:00
int shape_event, randr_event_base;
2007-09-16 00:36:56 +02:00
int screen;
enum { NetSupported, NetWMName, NetLast }; /* EWMH atoms */
2007-09-16 17:29:40 +02:00
Atom netatom[NetLast];
event_handler **handler;
2007-10-11 23:12:05 +02:00
Client **clients, **sel;
struct stat fifost;
ssize_t path_len;
struct sockaddr_un addr;
2007-09-05 20:15:00 +02:00
if(argc >= 2)
2007-09-16 22:51:11 +02:00
{
if(!a_strcmp("-v", argv[1]))
{
printf("awesome-" VERSION " © 2007 Julien Danjou\n");
return EXIT_SUCCESS;
}
else if(!a_strcmp("-c", argv[1]))
{
if(a_strlen(argv[2]))
confpath = argv[2];
else
eprint("awesome: -c require a file\n");
}
else
eprint("usage: awesome [-v | -c configfile]\n");
2007-09-16 22:51:11 +02:00
}
/* Tag won't be printed otherwised */
2007-09-05 20:15:00 +02:00
setlocale(LC_CTYPE, "");
if(!(dpy = XOpenDisplay(NULL)))
2007-09-10 12:06:54 +02:00
eprint("awesome: cannot open display\n");
2007-09-16 22:51:11 +02:00
2007-09-05 20:15:00 +02:00
xfd = ConnectionNumber(dpy);
2007-09-16 22:51:11 +02:00
2007-09-05 20:15:00 +02:00
XSetErrorHandler(xerrorstart);
2007-09-16 22:51:11 +02:00
for(screen = 0; screen < ScreenCount(dpy); screen++)
/* this causes an error if some other window manager is running */
XSelectInput(dpy, RootWindow(dpy, screen), SubstructureRedirectMask);
2007-09-05 20:15:00 +02:00
2007-09-16 22:51:11 +02:00
/* need to XSync to validate errorhandler */
2007-09-05 20:15:00 +02:00
XSync(dpy, False);
XSetErrorHandler(NULL);
xerrorxlib = XSetErrorHandler(xerror);
XSync(dpy, False);
2007-09-16 22:51:11 +02:00
/* allocate stuff */
awesomeconf = p_new(awesome_config, get_screen_count(dpy));
2007-10-11 21:50:32 +02:00
clients = p_new(Client *, 1);
2007-10-11 23:12:05 +02:00
sel = p_new(Client *, 1);
for(screen = 0; screen < get_screen_count(dpy); screen++)
{
2007-10-10 13:34:25 +02:00
parse_config(dpy, screen, confpath, &awesomeconf[screen]);
2007-10-10 14:09:36 +02:00
setup(&awesomeconf[screen]);
2007-10-11 21:50:32 +02:00
awesomeconf[screen].clients = clients;
2007-10-11 23:12:05 +02:00
awesomeconf[screen].client_sel = sel;
2007-10-15 20:23:45 +02:00
initstatusbar(awesomeconf[screen].display, screen, &awesomeconf[screen].statusbar,
awesomeconf[screen].cursor[CurNormal], awesomeconf[screen].font,
awesomeconf[screen].layouts, awesomeconf[screen].nlayouts);
drawstatusbar(&awesomeconf[screen]);
}
netatom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False);
netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
/* do this only for real screen */
for(screen = 0; screen < ScreenCount(dpy); screen++)
{
loadawesomeprops(&awesomeconf[screen]);
XChangeProperty(dpy, RootWindow(dpy, screen), netatom[NetSupported],
XA_ATOM, 32, PropModeReplace, (unsigned char *) netatom, NetLast);
}
2007-09-05 20:15:00 +02:00
handler = p_new(event_handler *, LASTEvent);
handler[ButtonPress] = handle_event_buttonpress;
handler[ConfigureRequest] = handle_event_configurerequest;
handler[ConfigureNotify] = handle_event_configurenotify;
handler[DestroyNotify] = handle_event_destroynotify;
handler[EnterNotify] = handle_event_enternotify;
handler[LeaveNotify] = handle_event_leavenotify;
handler[Expose] = handle_event_expose;
handler[KeyPress] = handle_event_keypress;
handler[MappingNotify] = handle_event_mappingnotify;
handler[MapRequest] = handle_event_maprequest;
handler[PropertyNotify] = handle_event_propertynotify;
handler[UnmapNotify] = handle_event_unmapnotify;
/* check for shape extension */
if((awesomeconf[0].have_shape = XShapeQueryExtension(dpy, &shape_event, &e_dummy)))
{
p_realloc(&handler, shape_event + 1);
2007-09-13 15:57:35 +02:00
handler[shape_event] = handle_event_shape;
}
2007-09-13 15:57:35 +02:00
/* check for randr extension */
if((awesomeconf[0].have_randr = XRRQueryExtension(dpy, &randr_event_base, &e_dummy)))
{
p_realloc(&handler, randr_event_base + RRScreenChangeNotify + 1);
handler[randr_event_base + RRScreenChangeNotify] = handle_event_randr_screen_change_notify;
}
2007-09-13 16:00:03 +02:00
for(screen = 0; screen < get_screen_count(dpy); screen++)
{
awesomeconf[screen].have_shape = awesomeconf[0].have_shape;
awesomeconf[screen].have_randr = awesomeconf[0].have_randr;
}
2007-10-10 14:09:36 +02:00
scan(awesomeconf);
2007-09-13 15:57:35 +02:00
XSync(dpy, False);
/* construct fifo path */
homedir = getenv("HOME");
path_len = a_strlen(homedir) + a_strlen(CONTROL_FIFO_PATH) + 2;
fifopath = p_new(char, path_len);
a_strcpy(fifopath, path_len, homedir);
a_strcat(fifopath, path_len, "/");
a_strcat(fifopath, path_len, CONTROL_FIFO_PATH);
if(lstat(fifopath, &fifost) == -1)
if(mkfifo(fifopath, 0600) == -1)
perror("error creating control fifo");
cfd = open(fifopath, O_RDONLY | O_NDELAY);
csfd = -1;
path_len = a_strlen(homedir) + a_strlen(CONTROL_UNIX_SOCKET_PATH) + 2;
if(path_len <= (int)sizeof(addr.sun_path))
{
a_strcpy(addr.sun_path, path_len, homedir);
a_strcat(addr.sun_path, path_len, "/");
a_strcat(addr.sun_path, path_len, CONTROL_UNIX_SOCKET_PATH);
csfd = socket(AF_UNIX, SOCK_DGRAM, 0);
if(csfd < 0)
perror("error opening UNIX domain socket");
addr.sun_family = AF_UNIX;
if(bind(csfd, (struct sockaddr *) &addr, SUN_LEN(&addr)))
{
if(errno == EADDRINUSE)
{
if(unlink(addr.sun_path))
perror("error unlinking existend file");
if(bind(csfd, (struct sockaddr *) &addr, SUN_LEN(&addr)))
perror("error binding UNIX domain socket");
}
else
perror("error binding UNIX domain socket");
}
}
else
fprintf(stderr, "error: path of control UNIX domain socket is too long");
2007-09-05 20:15:00 +02:00
/* main event loop, also reads status text from stdin */
while(running)
{
2007-10-12 17:41:54 +02:00
FD_ZERO(&rd);
if(cfd >= 0)
FD_SET(cfd, &rd);
if(csfd >= 0)
FD_SET(csfd, &rd);
2007-10-12 17:41:54 +02:00
FD_SET(xfd, &rd);
if(select(MAX(xfd, MAX(csfd, cfd)) + 1, &rd, NULL, NULL, NULL) == -1)
2007-09-05 20:15:00 +02:00
{
if(errno == EINTR)
continue;
eprint("select failed\n");
}
if(cfd >= 0 && FD_ISSET(cfd, &rd))
switch (r = read(cfd, buf, sizeof(buf)))
2007-09-05 20:15:00 +02:00
{
case -1:
perror("awesome: error reading fifo");
a_strncpy(awesomeconf[0].statustext, sizeof(awesomeconf[0].statustext),
strerror(errno), sizeof(awesomeconf[0].statustext) - 1);
awesomeconf[0].statustext[sizeof(awesomeconf[0].statustext) - 1] = '\0';
cfd = -1;
2007-09-05 20:15:00 +02:00
break;
case 0:
2007-10-12 17:41:54 +02:00
close(cfd);
cfd = open(fifopath, O_RDONLY | O_NDELAY);
2007-09-05 20:15:00 +02:00
break;
default:
parse_control(buf, awesomeconf);
2007-09-05 20:15:00 +02:00
}
if(csfd >= 0 && FD_ISSET(csfd, &rd))
switch (r = recv(csfd, buf, sizeof(buf)-1, MSG_TRUNC))
{
case -1:
perror("awesome: error reading UNIX domain socket");
a_strncpy(awesomeconf[0].statustext, sizeof(awesomeconf[0].statustext),
strerror(errno), sizeof(awesomeconf[0].statustext) - 1);
awesomeconf[0].statustext[sizeof(awesomeconf[0].statustext) - 1] = '\0';
csfd = -1;
break;
case 0:
break;
default:
if(r >= (int)sizeof(buf))
break;
buf[r] = '\0';
parse_control(buf, awesomeconf);
}
2007-09-05 20:15:00 +02:00
while(XPending(dpy))
{
XNextEvent(dpy, &ev);
if(handler[ev.type])
2007-09-16 13:52:38 +02:00
handler[ev.type](&ev, awesomeconf); /* call handler */
2007-09-05 20:15:00 +02:00
}
}
2007-10-12 17:41:54 +02:00
if(csfd > 0 && close(csfd))
perror("error closing UNIX domain socket");
if(unlink(addr.sun_path))
perror("error unlinking UNIX domain socket");
2007-10-12 17:41:54 +02:00
p_delete(&fifopath);
2007-10-10 14:09:36 +02:00
cleanup(awesomeconf);
2007-09-05 20:15:00 +02:00
XCloseDisplay(dpy);
2007-09-16 22:51:11 +02:00
return EXIT_SUCCESS;
2007-09-05 20:15:00 +02:00
}
2007-10-15 13:56:24 +02:00
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99