xutil: support NULL as atom cache
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
89e03dd326
commit
477c6eb4a1
|
@ -39,7 +39,8 @@
|
||||||
* \return true on sucess, falsse on failure
|
* \return true on sucess, falsse on failure
|
||||||
*/
|
*/
|
||||||
bool
|
bool
|
||||||
xutil_gettextprop(xcb_connection_t *conn, xcb_window_t w, xutil_atom_cache_t **atoms,
|
xutil_gettextprop(xcb_connection_t *conn, xcb_window_t w,
|
||||||
|
xutil_atom_cache_t **atoms,
|
||||||
xcb_atom_t atom, char **text)
|
xcb_atom_t atom, char **text)
|
||||||
{
|
{
|
||||||
xcb_get_property_cookie_t prop_c;
|
xcb_get_property_cookie_t prop_c;
|
||||||
|
@ -157,14 +158,15 @@ xutil_get_transient_for_hint(xcb_connection_t *c, xcb_window_t win,
|
||||||
|
|
||||||
/** Send an unchecked InternAtom request if it is not already in the
|
/** Send an unchecked InternAtom request if it is not already in the
|
||||||
* cache, in the second case it stores the cache entry (an ordered
|
* cache, in the second case it stores the cache entry (an ordered
|
||||||
* linked-list)
|
* linked-list).
|
||||||
* \param c X connection
|
* \param c X connection.
|
||||||
* \param atoms atoms cache
|
* \param atoms Atoms cache, or NULL if no cache.
|
||||||
* \param name atom name
|
* \param name Atom name.
|
||||||
* \return a request structure
|
* \return A request structure.
|
||||||
*/
|
*/
|
||||||
xutil_intern_atom_request_t
|
xutil_intern_atom_request_t
|
||||||
xutil_intern_atom(xcb_connection_t *c, xutil_atom_cache_t **atoms,
|
xutil_intern_atom(xcb_connection_t *c,
|
||||||
|
xutil_atom_cache_t **atoms,
|
||||||
const char *name)
|
const char *name)
|
||||||
{
|
{
|
||||||
xutil_intern_atom_request_t atom_req;
|
xutil_intern_atom_request_t atom_req;
|
||||||
|
@ -175,6 +177,7 @@ xutil_intern_atom(xcb_connection_t *c, xutil_atom_cache_t **atoms,
|
||||||
|
|
||||||
/* Check if this atom is present in the cache ordered
|
/* Check if this atom is present in the cache ordered
|
||||||
* linked-list */
|
* linked-list */
|
||||||
|
if(atoms)
|
||||||
for(atom_next = *atoms;
|
for(atom_next = *atoms;
|
||||||
atom_next && (cmp_cache = a_strcmp(name, atom_next->name)) >= 0;
|
atom_next && (cmp_cache = a_strcmp(name, atom_next->name)) >= 0;
|
||||||
atom_next = atom_cache_list_next(NULL, atom_next))
|
atom_next = atom_cache_list_next(NULL, atom_next))
|
||||||
|
@ -195,14 +198,15 @@ xutil_intern_atom(xcb_connection_t *c, xutil_atom_cache_t **atoms,
|
||||||
|
|
||||||
/** Treat the reply which may be a cache entry or a reply from
|
/** Treat the reply which may be a cache entry or a reply from
|
||||||
* InternAtom request (cookie), in the second case, add the atom to
|
* InternAtom request (cookie), in the second case, add the atom to
|
||||||
* the cache
|
* the cache.
|
||||||
* \param c X connection
|
* \param c X connection.
|
||||||
* \param atoms atoms cache
|
* \param atoms Atoms cache or NULL if no cache.
|
||||||
* \param atom_req atom request
|
* \param atom_req Atom request.
|
||||||
* \return a brand new xcb_atom_t
|
* \return A brand new xcb_atom_t.
|
||||||
*/
|
*/
|
||||||
xcb_atom_t
|
xcb_atom_t
|
||||||
xutil_intern_atom_reply(xcb_connection_t *c, xutil_atom_cache_t **atoms,
|
xutil_intern_atom_reply(xcb_connection_t *c,
|
||||||
|
xutil_atom_cache_t **atoms,
|
||||||
xutil_intern_atom_request_t atom_req)
|
xutil_intern_atom_request_t atom_req)
|
||||||
{
|
{
|
||||||
xcb_intern_atom_reply_t *atom_rep;
|
xcb_intern_atom_reply_t *atom_rep;
|
||||||
|
@ -222,6 +226,8 @@ xutil_intern_atom_reply(xcb_connection_t *c, xutil_atom_cache_t **atoms,
|
||||||
atom_cache->atom = atom_rep->atom;
|
atom_cache->atom = atom_rep->atom;
|
||||||
atom_cache->name = atom_req.name;
|
atom_cache->name = atom_req.name;
|
||||||
|
|
||||||
|
if(atoms)
|
||||||
|
{
|
||||||
/* Add the entry in the list at the beginning of the cache list */
|
/* Add the entry in the list at the beginning of the cache list */
|
||||||
if(*atoms == NULL || a_strcmp(atom_req.name, (*atoms)->name) < 0)
|
if(*atoms == NULL || a_strcmp(atom_req.name, (*atoms)->name) < 0)
|
||||||
atom_cache_list_push(atoms, atom_cache);
|
atom_cache_list_push(atoms, atom_cache);
|
||||||
|
@ -235,6 +241,7 @@ xutil_intern_atom_reply(xcb_connection_t *c, xutil_atom_cache_t **atoms,
|
||||||
|
|
||||||
atom_cache_list_attach_after(atom_next, atom_cache);
|
atom_cache_list_attach_after(atom_next, atom_cache);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
p_delete(&atom_rep);
|
p_delete(&atom_rep);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue