summaryrefslogtreecommitdiffstats
path: root/xrescheck.h
blob: 48f254b203a05a747aea4775af9589a1ddda1fa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#ifndef COMPTON_XRESCHECK_H
#define COMPTON_XRESCHECK_H

#include "common.h"
#include <uthash.h>

typedef struct {
  XID xid;
  const char *type;
  const char *file;
  const char *func;
  int line;
  UT_hash_handle hh;
} xrc_xid_record_t;

#define M_POS_DATA_PARAMS const char *file, int line, const char *func
#define M_POS_DATA_PASSTHROUGH file, line, func
#define M_POS_DATA __FILE__, __LINE__, __func__

void
xrc_add_xid_(XID xid, const char *type, M_POS_DATA_PARAMS);

#define xrc_add_xid(xid, type) xrc_add_xid_(xid, type, M_POS_DATA)

void
xrc_delete_xid_(XID xid, M_POS_DATA_PARAMS);

#define xrc_delete_xid(xid) xrc_delete_xid_(xid, M_POS_DATA)

void
xrc_report_xid(void);

void
xrc_clear_xid(void);

// Pixmap

static inline Pixmap
XCreatePixmap_(Display *dpy, Drawable drawable,
    unsigned int width, unsigned int height, unsigned int depth,
    M_POS_DATA_PARAMS) {
  Pixmap ret = XCreatePixmap(dpy, drawable, width, height, depth);
  if (ret)
    xrc_add_xid_(ret, "Pixmap", M_POS_DATA_PASSTHROUGH);
  return ret;
}

#define XCreatePixmap(dpy, drawable, width, height, depth) \
  XCreatePixmap_(dpy, drawable, width, height, depth, M_POS_DATA)

static inline Pixmap
XCompositeNameWindowPixmap_(Display *dpy, Window window, M_POS_DATA_PARAMS) {
  Pixmap ret = XCompositeNameWindowPixmap(dpy, window);
  if (ret)
    xrc_add_xid_(ret, "PixmapC", M_POS_DATA_PASSTHROUGH);
  return ret;
}

#define XCompositeNameWindowPixmap(dpy, window) \
  XCompositeNameWindowPixmap_(dpy, window, M_POS_DATA)

static inline void
XFreePixmap_(Display *dpy, Pixmap pixmap, M_POS_DATA_PARAMS) {
  XFreePixmap(dpy, pixmap);
  xrc_delete_xid_(pixmap, M_POS_DATA_PASSTHROUGH);
}

#define XFreePixmap(dpy, pixmap) XFreePixmap_(dpy, pixmap, M_POS_DATA);

#endif