我正在使用XCB向X11窗口询问其进程的PID以及其他属性。我获取各种非字符串属性的代码如下:
xcb_window_t wid;
xcb_connection_t * conn;
template <typename T>
T get_property(xcb_atom_t property, xcb_atom_t type, size_t len = sizeof(T)) {
xcb_generic_error_t *err = nullptr; // can't use unique_ptr here because get_property_reply overwrites pointer value
/*
Specifies how many 32-bit multiples of data should be retrieved
(e.g. if you set long_length to 4, you will receive 16 bytes of data).
*/
uint32_t ret_size =
len/sizeof(uint32_t) /*integer division, like floor()*/ +
!!(len%sizeof(uint32_t)) /*+1 if there was a remainder*/;
xcb_get_property_cookie_t cookie = xcb_get_property(
conn, 0, wid, property, type, 0, ret_size
);
std::unique_ptr<xcb_get_property_reply_t,decltype(&free)> reply {xcb_get_property_reply(conn, cookie, &err),&free};
if (!reply) {
free(err);
throw std::runtime_error("xcb_get_property returned error");
}
return *reinterpret_cast<T*>(
xcb_get_property_value(
reply.get()
)
);
}
xcb_atom_t NET_WM_PID; // initialized using xcb_intern_atom
// according to libxcb-ewmh, CARDINALs are uint32_t
pid_t pid = get_property<uint32_t>(NET_WM_PID, XCB_ATOM_CARDINAL);
错误处理从xcb-requests(3)复制。当窗口没有设置_NET_WM_PID
属性时会出现问题(例如,工作文件管理器不会这样做)。在这种情况下,我得到的数字答案等于XCB请求的序列号,而不是从nullptr
和非空xcb_get_property_reply
获取err
。如何正确检查窗口中是否设置了_NET_WM_PID
或CARDINAL
类型的其他属性?
答案 0 :(得分:1)
缺少财产不是错误。如果未设置该属性,则回复中的格式,类型和长度都将为零。您可能想要检查所有这些并验证它们是否具有您希望它们具有的值。