xcwd/xcwd.c

246 lines
6.2 KiB
C
Raw Normal View History

2013-04-24 15:05:53 -04:00
/* This is fcwd written by Adrien Schildknecht (c) 2013
* Email: adrien+dev@schischi.me
* Feel free to copy and redistribute in terms of the
* BSD license
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <glob.h>
#include <sys/stat.h>
#include <X11/Xlib.h>
2013-04-25 18:50:37 -04:00
#define DEBUG 0
2013-04-25 18:40:51 -04:00
2013-04-25 14:27:50 -04:00
#define XA_STRING (XInternAtom(dpy, "STRING", 0))
#define XA_CARDINAL (XInternAtom(dpy, "CARDINAL", 0))
#define XA_WM_STATE (XInternAtom(dpy, "WM_STATE", 0))
2013-04-24 15:05:53 -04:00
2013-04-25 18:40:51 -04:00
#define LOG(fmt, ...) \
do { if (DEBUG) fprintf(stderr, fmt, __VA_ARGS__); } while (0)
2013-04-24 15:05:53 -04:00
Display *dpy;
typedef struct processes_s *processes_t;
struct processes_s {
struct proc_s {
long pid;
long ppid;
char name[32];
} *ps;
size_t n;
};
int nameCmp(const void *p1, const void *p2)
{
return strcasecmp(((struct proc_s *)p1)->name,
((struct proc_s *)p2)->name);
}
int ppidCmp(const void *p1, const void *p2)
{
return ((struct proc_s *)p1)->ppid - ((struct proc_s *)p2)->ppid;
}
static Window focusedWindow()
{
2013-04-25 18:40:51 -04:00
Atom type;
Window focuswin, root, *children;
int format, status, focusrevert;
2013-04-25 14:27:50 -04:00
unsigned long nitems, after;
unsigned char *data;
unsigned int nchildren;
2013-04-24 15:05:53 -04:00
dpy = XOpenDisplay (NULL);
if (!dpy)
exit (1);
XGetInputFocus (dpy, &focuswin, &focusrevert);
2013-04-25 14:27:50 -04:00
root = XDefaultRootWindow(dpy);
do {
2013-04-25 18:40:51 -04:00
status = XGetWindowProperty(dpy, focuswin, XA_WM_STATE, 0, 1024, 0,
2013-04-25 14:27:50 -04:00
XA_WM_STATE, &type, &format, &nitems, &after, &data);
2013-04-25 18:40:51 -04:00
if (status == Success && data) {
2013-04-25 14:27:50 -04:00
XFree(data);
2013-04-25 18:40:51 -04:00
LOG("Window ID = %lu\n", focuswin);
2013-04-25 14:27:50 -04:00
return focuswin;
}
2013-04-25 18:40:51 -04:00
else
return 0;
2013-04-25 14:27:50 -04:00
XQueryTree(dpy, focuswin, &root, &focuswin, &children, &nchildren);
2013-04-25 18:40:51 -04:00
LOG("%s", "Current window does not have WM_STATE, getting parent\n");
2013-04-25 14:27:50 -04:00
} while(focuswin != root);
return 0;
2013-04-24 15:05:53 -04:00
}
static long windowPid(Window focuswin)
{
Atom nameAtom = XInternAtom(dpy, "_NET_WM_PID", 1);
Atom type;
2013-04-25 14:27:50 -04:00
int format, status;
2013-04-24 15:05:53 -04:00
long pid = -1;
unsigned long nitems, after;
2013-04-25 14:27:50 -04:00
unsigned char *data;
2013-04-24 15:05:53 -04:00
2013-04-25 18:40:51 -04:00
status = XGetWindowProperty(dpy, focuswin, nameAtom, 0, 1024, 0,
2013-04-25 14:27:50 -04:00
XA_CARDINAL, &type, &format, &nitems, &after, &data);
2013-04-25 18:40:51 -04:00
if (status == Success && data) {
pid = *((long*)data);
XFree(data);
LOG("_NET_WM_PID = %lu\n", pid);
2013-04-24 15:05:53 -04:00
}
else
2013-04-25 18:40:51 -04:00
LOG("%s", "_NET_WM_PID not found\n");
2013-04-24 15:05:53 -04:00
return pid;
}
static char* windowStrings(Window focuswin, size_t *size, char* hint)
{
Atom nameAtom = XInternAtom(dpy, hint, 1);
Atom type;
int format;
int i;
unsigned long after;
unsigned char *data = 0;
char *ret = NULL;
if (XGetWindowProperty(dpy, focuswin, nameAtom, 0, 1024, 0, AnyPropertyType,
&type, &format, size, &after, &data) == Success) {
if (data) {
2013-04-25 18:40:51 -04:00
if (type == XA_STRING) {
2013-04-24 15:05:53 -04:00
ret = malloc(sizeof(char) * *size);
2013-04-25 18:40:51 -04:00
LOG("%s = ", hint);
for (i = 0; i < *size; ++i) {
LOG("%c", data[i] == 0 ? ' ' : data[i]);
2013-04-24 15:05:53 -04:00
ret[i] = data[i];
}
2013-04-25 18:40:51 -04:00
fprintf(stderr, "\n");
LOG("%s", "\n");
2013-04-24 15:05:53 -04:00
}
XFree(data);
}
else
2013-04-25 18:40:51 -04:00
LOG("%s not found\n", hint);
2013-04-24 15:05:53 -04:00
}
return ret;
}
static void freeProcesses(processes_t p)
{
free(p->ps);
free(p);
}
static processes_t getProcesses(void)
{
glob_t globbuf;
unsigned int i, j;
processes_t p;
glob("/proc/[0-9]*", GLOB_NOSORT, NULL, &globbuf);
p = malloc(sizeof(struct processes_s));
p->ps = malloc(globbuf.gl_pathc * sizeof(struct proc_s));
2013-04-25 18:40:51 -04:00
LOG("Found %ld processes\n", globbuf.gl_pathc);
2013-04-24 15:05:53 -04:00
for (i = j = 0; i < globbuf.gl_pathc; i++) {
char name[32];
FILE *tn;
(void)globbuf.gl_pathv[globbuf.gl_pathc - i - 1];
snprintf(name, sizeof(name), "%s%s",
globbuf.gl_pathv[globbuf.gl_pathc - i - 1], "/stat");
tn = fopen(name, "r");
if (tn == NULL)
continue;
fscanf(tn, "%ld (%32[^)] %*3c %ld", &p->ps[j].pid, p->ps[j].name,
&p->ps[j].ppid);
2013-04-25 18:40:51 -04:00
LOG("\t%-20s\tpid=%6ld\tppid=%6ld\n", p->ps[j].name, p->ps[j].pid,
p->ps[j].ppid);
2013-04-24 15:05:53 -04:00
fclose(tn);
j++;
}
p->n = j;
globfree(&globbuf);
return p;
}
static long lastChild(processes_t p, long pid)
{
struct proc_s key, *res;
do {
key.ppid = pid;
res = (struct proc_s *)bsearch(&key, p->ps, p->n,
sizeof(struct proc_s), ppidCmp);
pid = res ? res->pid : -1;
2013-04-25 18:40:51 -04:00
} while(pid != -1);
2013-04-24 15:05:53 -04:00
return key.ppid;
}
static void readPath(long pid)
{
char buf[255];
char path[64];
2013-04-25 18:40:51 -04:00
ssize_t len;
2013-04-24 15:05:53 -04:00
snprintf(path, sizeof(path), "/proc/%ld/cwd", pid);
2013-04-25 18:40:51 -04:00
LOG("Read %s\n", path);
if ((len = readlink(path, buf, 255)) != -1)
buf[len] = '\0';
2013-04-24 15:05:53 -04:00
fprintf(stdout, "%s\n", buf);
}
int main(int argc, const char *argv[])
{
processes_t p;
long pid;
2013-04-25 14:27:50 -04:00
Window w = focusedWindow();
2013-04-25 18:40:51 -04:00
if (w == 0) {
2013-04-25 14:27:50 -04:00
fprintf(stdout, "%s\n", getenv("HOME"));
return EXIT_FAILURE;
}
2013-04-24 15:05:53 -04:00
pid = windowPid(w);
p = getProcesses();
2013-04-25 18:40:51 -04:00
if (pid != -1) {
2013-04-24 15:05:53 -04:00
qsort(p->ps, p->n, sizeof(struct proc_s), ppidCmp);
}
else {
size_t size;
char* strings;
int i;
struct proc_s *res = NULL, key;
qsort(p->ps, p->n, sizeof(struct proc_s), nameCmp);
strings = windowStrings(w, &size, "WM_CLASS");
for(i = 0; i < size; i += strlen(strings + i) + 1) {
2013-04-25 18:40:51 -04:00
LOG("pidof %s\n", strings + i);
2013-04-24 15:05:53 -04:00
strcpy(key.name, strings + i);
res = (struct proc_s *)bsearch(&key, p->ps, p->n,
2013-04-25 18:40:51 -04:00
sizeof(struct proc_s), nameCmp);
2013-04-24 15:05:53 -04:00
if(res)
break;
}
2013-04-25 18:40:51 -04:00
if (res) {
2013-04-24 15:05:53 -04:00
pid = res->pid;
2013-04-25 18:40:51 -04:00
LOG("Found %s (%ld)\n", res->name, res->pid);
2013-04-24 15:05:53 -04:00
}
2013-04-25 18:40:51 -04:00
if (size != 0)
2013-04-24 15:05:53 -04:00
free(strings);
}
2013-04-25 18:40:51 -04:00
if (pid != -1) {
2013-04-24 15:05:53 -04:00
pid = lastChild(p, pid);
readPath(pid);
}
else {
2013-04-25 18:40:51 -04:00
LOG("%s", "getenv $HOME...\n");
2013-04-24 15:05:53 -04:00
fprintf(stdout, "%s\n", getenv("HOME"));
}
freeProcesses(p);
return EXIT_SUCCESS;
}