2007-04-27 11:58:48 -06:00
|
|
|
/*
|
|
|
|
* calmwm - the calm window manager
|
|
|
|
*
|
|
|
|
* Copyright (c) 2004 Andy Adamson <dros@monkey.org>
|
|
|
|
* Copyright (c) 2004,2005 Marius Aamodt Eriksen <marius@monkey.org>
|
|
|
|
*
|
2008-01-11 09:06:44 -07:00
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*
|
2018-01-23 06:48:49 -07:00
|
|
|
* $OpenBSD: group.c,v 1.128 2018/01/23 13:48:49 okan Exp $
|
2007-04-27 11:58:48 -06:00
|
|
|
*/
|
|
|
|
|
2015-01-19 07:54:16 -07:00
|
|
|
#include <sys/types.h>
|
2009-12-14 21:10:42 -07:00
|
|
|
#include <sys/queue.h>
|
|
|
|
|
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
2015-01-19 07:54:16 -07:00
|
|
|
#include <limits.h>
|
2012-11-08 20:52:02 -07:00
|
|
|
#include <stdio.h>
|
2009-12-14 21:10:42 -07:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2009-12-14 20:34:34 -07:00
|
|
|
|
2007-04-27 11:58:48 -06:00
|
|
|
#include "calmwm.h"
|
|
|
|
|
2015-08-21 09:52:49 -06:00
|
|
|
static struct group_ctx *group_next(struct group_ctx *);
|
|
|
|
static struct group_ctx *group_prev(struct group_ctx *);
|
2014-09-08 07:51:29 -06:00
|
|
|
static void group_restack(struct group_ctx *);
|
2014-09-27 12:57:11 -06:00
|
|
|
static void group_setactive(struct group_ctx *);
|
2009-01-14 17:32:35 -07:00
|
|
|
|
2014-08-20 09:15:29 -06:00
|
|
|
const char *num_to_name[] = {
|
2009-01-14 17:32:35 -07:00
|
|
|
"nogroup", "one", "two", "three", "four", "five", "six",
|
|
|
|
"seven", "eight", "nine"
|
2009-01-11 14:46:48 -07:00
|
|
|
};
|
|
|
|
|
2015-08-25 12:29:10 -06:00
|
|
|
void
|
2014-02-07 11:09:54 -07:00
|
|
|
group_assign(struct group_ctx *gc, struct client_ctx *cc)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2015-08-27 12:53:14 -06:00
|
|
|
if (cc->gc != NULL)
|
|
|
|
TAILQ_REMOVE(&cc->gc->clientq, cc, group_entry);
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2015-08-25 13:49:19 -06:00
|
|
|
if ((gc != NULL) && (gc->num == 0))
|
|
|
|
gc = NULL;
|
|
|
|
|
2015-08-27 12:53:14 -06:00
|
|
|
cc->gc = gc;
|
2012-07-03 07:49:03 -06:00
|
|
|
|
2015-08-27 12:53:14 -06:00
|
|
|
if (cc->gc != NULL)
|
2014-09-08 15:15:14 -06:00
|
|
|
TAILQ_INSERT_TAIL(&gc->clientq, cc, group_entry);
|
2014-08-22 13:04:00 -06:00
|
|
|
|
2012-07-03 07:49:03 -06:00
|
|
|
xu_ewmh_net_wm_desktop(cc);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2014-09-01 12:04:58 -06:00
|
|
|
void
|
2014-09-08 07:51:29 -06:00
|
|
|
group_hide(struct group_ctx *gc)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2008-07-11 08:21:28 -06:00
|
|
|
struct client_ctx *cc;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2014-09-08 07:51:29 -06:00
|
|
|
screen_updatestackingorder(gc->sc);
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2015-08-23 11:31:20 -06:00
|
|
|
TAILQ_FOREACH(cc, &gc->clientq, group_entry) {
|
|
|
|
if (!(cc->flags & CLIENT_STICKY))
|
|
|
|
client_hide(cc);
|
|
|
|
}
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2014-09-01 12:04:58 -06:00
|
|
|
void
|
2014-09-08 07:51:29 -06:00
|
|
|
group_show(struct group_ctx *gc)
|
2014-08-20 07:42:27 -06:00
|
|
|
{
|
|
|
|
struct client_ctx *cc;
|
|
|
|
|
2015-08-23 11:31:20 -06:00
|
|
|
TAILQ_FOREACH(cc, &gc->clientq, group_entry) {
|
|
|
|
if (!(cc->flags & CLIENT_STICKY))
|
|
|
|
client_unhide(cc);
|
|
|
|
}
|
2014-08-20 07:42:27 -06:00
|
|
|
|
2014-09-08 07:51:29 -06:00
|
|
|
group_restack(gc);
|
2014-09-27 12:57:11 -06:00
|
|
|
group_setactive(gc);
|
2014-08-20 07:42:27 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-09-08 07:51:29 -06:00
|
|
|
group_restack(struct group_ctx *gc)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2008-07-11 08:21:28 -06:00
|
|
|
struct client_ctx *cc;
|
|
|
|
Window *winlist;
|
2013-04-30 15:10:23 -06:00
|
|
|
int i, lastempty = -1;
|
2014-08-19 06:47:51 -06:00
|
|
|
int nwins = 0, highstack = 0;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2014-09-08 15:15:14 -06:00
|
|
|
TAILQ_FOREACH(cc, &gc->clientq, group_entry) {
|
2014-08-19 06:47:51 -06:00
|
|
|
if (cc->stackingorder > highstack)
|
|
|
|
highstack = cc->stackingorder;
|
2011-02-13 10:25:20 -07:00
|
|
|
}
|
2015-03-28 17:12:47 -06:00
|
|
|
winlist = xreallocarray(NULL, (highstack + 1), sizeof(*winlist));
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2014-08-19 06:47:51 -06:00
|
|
|
/* Invert the stacking order for XRestackWindows(). */
|
2014-09-08 15:15:14 -06:00
|
|
|
TAILQ_FOREACH(cc, &gc->clientq, group_entry) {
|
2014-08-19 06:47:51 -06:00
|
|
|
winlist[highstack - cc->stackingorder] = cc->win;
|
2014-08-18 07:57:57 -06:00
|
|
|
nwins++;
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Un-sparseify */
|
2014-08-19 06:47:51 -06:00
|
|
|
for (i = 0; i <= highstack; i++) {
|
2007-04-27 11:58:48 -06:00
|
|
|
if (!winlist[i] && lastempty == -1)
|
|
|
|
lastempty = i;
|
|
|
|
else if (winlist[i] && lastempty != -1) {
|
|
|
|
winlist[lastempty] = winlist[i];
|
|
|
|
if (++lastempty == i)
|
|
|
|
lastempty = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-18 07:57:57 -06:00
|
|
|
XRestackWindows(X_Dpy, winlist, nwins);
|
2012-11-07 13:34:39 -07:00
|
|
|
free(winlist);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-10-08 06:48:51 -06:00
|
|
|
group_init(struct screen_ctx *sc, int num)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2014-09-07 11:27:20 -06:00
|
|
|
struct group_ctx *gc;
|
2014-10-08 06:48:51 -06:00
|
|
|
|
|
|
|
gc = xmalloc(sizeof(*gc));
|
|
|
|
gc->sc = sc;
|
|
|
|
gc->name = xstrdup(num_to_name[num]);
|
|
|
|
gc->num = num;
|
|
|
|
TAILQ_INIT(&gc->clientq);
|
|
|
|
|
|
|
|
TAILQ_INSERT_TAIL(&sc->groupq, gc, entry);
|
|
|
|
|
|
|
|
if (num == 1)
|
|
|
|
group_setactive(gc);
|
2009-12-10 16:14:58 -07:00
|
|
|
}
|
|
|
|
|
2014-10-08 06:48:51 -06:00
|
|
|
void
|
2014-09-27 12:57:11 -06:00
|
|
|
group_setactive(struct group_ctx *gc)
|
2009-12-10 16:14:58 -07:00
|
|
|
{
|
2014-09-27 12:57:11 -06:00
|
|
|
struct screen_ctx *sc = gc->sc;
|
2014-09-07 11:27:20 -06:00
|
|
|
|
|
|
|
sc->group_active = gc;
|
2012-07-03 07:49:03 -06:00
|
|
|
|
2014-09-23 08:25:08 -06:00
|
|
|
xu_ewmh_net_current_desktop(sc);
|
2009-05-17 11:04:59 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
group_movetogroup(struct client_ctx *cc, int idx)
|
|
|
|
{
|
2009-12-10 10:16:51 -07:00
|
|
|
struct screen_ctx *sc = cc->sc;
|
2011-09-19 01:23:03 -06:00
|
|
|
struct group_ctx *gc;
|
2009-12-10 10:16:51 -07:00
|
|
|
|
2016-10-04 09:18:20 -06:00
|
|
|
if (idx < 0 || idx >= Conf.ngroups)
|
2018-01-23 06:48:49 -07:00
|
|
|
return;
|
2009-05-17 11:04:59 -06:00
|
|
|
|
2014-09-07 11:27:20 -06:00
|
|
|
TAILQ_FOREACH(gc, &sc->groupq, entry) {
|
|
|
|
if (gc->num == idx)
|
|
|
|
break;
|
|
|
|
}
|
2014-08-24 09:37:45 -06:00
|
|
|
|
2015-08-27 12:53:14 -06:00
|
|
|
if (cc->gc == gc)
|
2011-12-29 13:48:38 -07:00
|
|
|
return;
|
2017-02-10 08:00:54 -07:00
|
|
|
if (gc->num != 0 && group_holds_only_hidden(gc))
|
2009-05-19 06:49:37 -06:00
|
|
|
client_hide(cc);
|
2014-02-07 11:09:54 -07:00
|
|
|
group_assign(gc, cc);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-12-29 09:55:50 -07:00
|
|
|
group_toggle_membership(struct client_ctx *cc)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2009-12-10 10:16:51 -07:00
|
|
|
struct screen_ctx *sc = cc->sc;
|
2012-12-17 10:48:57 -07:00
|
|
|
struct group_ctx *gc = sc->group_active;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2015-08-27 12:53:14 -06:00
|
|
|
if (gc == cc->gc) {
|
2014-02-07 11:09:54 -07:00
|
|
|
group_assign(NULL, cc);
|
2012-12-17 10:48:57 -07:00
|
|
|
cc->flags |= CLIENT_UNGROUP;
|
2007-04-27 11:58:48 -06:00
|
|
|
} else {
|
2014-02-07 11:09:54 -07:00
|
|
|
group_assign(gc, cc);
|
2012-12-17 10:48:57 -07:00
|
|
|
cc->flags |= CLIENT_GROUP;
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
client_draw_border(cc);
|
|
|
|
}
|
|
|
|
|
2014-09-17 08:31:37 -06:00
|
|
|
int
|
|
|
|
group_holds_only_sticky(struct group_ctx *gc)
|
|
|
|
{
|
|
|
|
struct client_ctx *cc;
|
|
|
|
|
|
|
|
TAILQ_FOREACH(cc, &gc->clientq, group_entry) {
|
|
|
|
if (!(cc->flags & CLIENT_STICKY))
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
return(1);
|
|
|
|
}
|
|
|
|
|
2014-09-01 12:04:58 -06:00
|
|
|
int
|
2014-09-17 10:32:53 -06:00
|
|
|
group_holds_only_hidden(struct group_ctx *gc)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2008-07-11 08:21:28 -06:00
|
|
|
struct client_ctx *cc;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2014-09-08 15:15:14 -06:00
|
|
|
TAILQ_FOREACH(cc, &gc->clientq, group_entry) {
|
2016-09-02 10:07:11 -06:00
|
|
|
if (!(cc->flags & (CLIENT_HIDDEN | CLIENT_STICKY)))
|
|
|
|
return(0);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
2016-09-02 10:07:11 -06:00
|
|
|
return(1);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-12-10 10:16:51 -07:00
|
|
|
group_hidetoggle(struct screen_ctx *sc, int idx)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2008-07-11 08:21:28 -06:00
|
|
|
struct group_ctx *gc;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2016-10-04 09:18:20 -06:00
|
|
|
if (idx < 0 || idx >= Conf.ngroups)
|
2018-01-23 06:48:49 -07:00
|
|
|
return;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2014-09-07 11:27:20 -06:00
|
|
|
TAILQ_FOREACH(gc, &sc->groupq, entry) {
|
|
|
|
if (gc->num == idx)
|
|
|
|
break;
|
|
|
|
}
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2014-09-17 10:32:53 -06:00
|
|
|
if (group_holds_only_hidden(gc))
|
2014-09-08 07:51:29 -06:00
|
|
|
group_show(gc);
|
2013-01-13 06:55:12 -07:00
|
|
|
else {
|
2014-09-08 07:51:29 -06:00
|
|
|
group_hide(gc);
|
2013-01-13 06:55:12 -07:00
|
|
|
/* make clients stick to empty group */
|
2014-09-08 15:15:14 -06:00
|
|
|
if (TAILQ_EMPTY(&gc->clientq))
|
2014-09-27 12:57:11 -06:00
|
|
|
group_setactive(gc);
|
2013-01-13 06:55:12 -07:00
|
|
|
}
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2009-05-14 10:24:04 -06:00
|
|
|
void
|
2009-12-10 10:16:51 -07:00
|
|
|
group_only(struct screen_ctx *sc, int idx)
|
2009-05-14 10:24:04 -06:00
|
|
|
{
|
2014-02-07 19:40:43 -07:00
|
|
|
struct group_ctx *gc;
|
2009-05-14 10:24:04 -06:00
|
|
|
|
2016-10-04 09:18:20 -06:00
|
|
|
if (idx < 0 || idx >= Conf.ngroups)
|
2018-01-23 06:48:49 -07:00
|
|
|
return;
|
2009-05-14 10:24:04 -06:00
|
|
|
|
2014-02-07 19:40:43 -07:00
|
|
|
TAILQ_FOREACH(gc, &sc->groupq, entry) {
|
2014-08-20 09:15:29 -06:00
|
|
|
if (gc->num == idx)
|
2014-09-08 07:51:29 -06:00
|
|
|
group_show(gc);
|
2009-05-17 17:37:52 -06:00
|
|
|
else
|
2014-09-08 07:51:29 -06:00
|
|
|
group_hide(gc);
|
2009-05-14 10:24:04 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-04-27 11:58:48 -06:00
|
|
|
void
|
2011-09-13 02:37:49 -06:00
|
|
|
group_cycle(struct screen_ctx *sc, int flags)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2015-08-21 09:52:49 -06:00
|
|
|
struct group_ctx *newgc, *oldgc, *showgroup = NULL;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2015-08-21 09:52:49 -06:00
|
|
|
oldgc = sc->group_active;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2015-08-21 09:52:49 -06:00
|
|
|
newgc = oldgc;
|
2007-04-27 11:58:48 -06:00
|
|
|
for (;;) {
|
2016-10-18 11:03:30 -06:00
|
|
|
newgc = (flags & CWM_CYCLE_REVERSE) ? group_prev(newgc) :
|
2015-08-21 09:52:49 -06:00
|
|
|
group_next(newgc);
|
|
|
|
|
|
|
|
if (newgc == oldgc)
|
2007-04-27 11:58:48 -06:00
|
|
|
break;
|
|
|
|
|
2015-08-21 09:52:49 -06:00
|
|
|
if (!group_holds_only_sticky(newgc) && showgroup == NULL)
|
|
|
|
showgroup = newgc;
|
|
|
|
else if (!group_holds_only_hidden(newgc))
|
|
|
|
group_hide(newgc);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2015-08-27 11:43:44 -06:00
|
|
|
if (showgroup == NULL)
|
|
|
|
return;
|
|
|
|
|
2015-08-21 09:52:49 -06:00
|
|
|
group_hide(oldgc);
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2014-09-17 10:32:53 -06:00
|
|
|
if (group_holds_only_hidden(showgroup))
|
2014-09-08 07:51:29 -06:00
|
|
|
group_show(showgroup);
|
2007-04-27 11:58:48 -06:00
|
|
|
else
|
2014-09-27 12:57:11 -06:00
|
|
|
group_setactive(showgroup);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2015-08-21 09:52:49 -06:00
|
|
|
static struct group_ctx *
|
|
|
|
group_next(struct group_ctx *gc)
|
|
|
|
{
|
|
|
|
struct screen_ctx *sc = gc->sc;
|
|
|
|
struct group_ctx *newgc;
|
|
|
|
|
|
|
|
return(((newgc = TAILQ_NEXT(gc, entry)) != NULL) ?
|
|
|
|
newgc : TAILQ_FIRST(&sc->groupq));
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct group_ctx *
|
|
|
|
group_prev(struct group_ctx *gc)
|
|
|
|
{
|
|
|
|
struct screen_ctx *sc = gc->sc;
|
|
|
|
struct group_ctx *newgc;
|
|
|
|
|
2016-10-18 11:03:30 -06:00
|
|
|
return(((newgc = TAILQ_PREV(gc, group_q, entry)) != NULL) ?
|
|
|
|
newgc : TAILQ_LAST(&sc->groupq, group_q));
|
2015-08-21 09:52:49 -06:00
|
|
|
}
|
|
|
|
|
2007-04-27 11:58:48 -06:00
|
|
|
void
|
2009-12-10 10:16:51 -07:00
|
|
|
group_alltoggle(struct screen_ctx *sc)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2014-02-07 19:40:43 -07:00
|
|
|
struct group_ctx *gc;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2014-02-07 19:40:43 -07:00
|
|
|
TAILQ_FOREACH(gc, &sc->groupq, entry) {
|
2014-09-23 07:45:48 -06:00
|
|
|
if (sc->hideall)
|
2014-09-08 07:51:29 -06:00
|
|
|
group_show(gc);
|
2007-04-27 11:58:48 -06:00
|
|
|
else
|
2014-09-08 07:51:29 -06:00
|
|
|
group_hide(gc);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
2014-09-23 07:45:48 -06:00
|
|
|
sc->hideall = !sc->hideall;
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2015-08-25 12:29:10 -06:00
|
|
|
int
|
|
|
|
group_restore(struct client_ctx *cc)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2009-12-10 10:16:51 -07:00
|
|
|
struct screen_ctx *sc = cc->sc;
|
2008-07-11 08:21:28 -06:00
|
|
|
struct group_ctx *gc;
|
2015-08-25 14:35:49 -06:00
|
|
|
int num;
|
2014-08-20 09:15:29 -06:00
|
|
|
long *grpnum;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2015-08-25 12:29:10 -06:00
|
|
|
if (xu_getprop(cc->win, ewmh[_NET_WM_DESKTOP], XA_CARDINAL, 1L,
|
|
|
|
(unsigned char **)&grpnum) <= 0)
|
|
|
|
return(0);
|
2010-09-25 14:01:27 -06:00
|
|
|
|
2015-08-25 14:35:49 -06:00
|
|
|
num = (*grpnum == -1) ? 0 : *grpnum;
|
2016-10-04 09:18:20 -06:00
|
|
|
num = MIN(num, (Conf.ngroups - 1));
|
2015-08-25 12:29:10 -06:00
|
|
|
XFree(grpnum);
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2009-12-10 10:16:51 -07:00
|
|
|
TAILQ_FOREACH(gc, &sc->groupq, entry) {
|
2014-08-20 09:15:29 -06:00
|
|
|
if (gc->num == num) {
|
2014-02-07 11:09:54 -07:00
|
|
|
group_assign(gc, cc);
|
2015-08-25 12:29:10 -06:00
|
|
|
return(1);
|
2008-03-22 15:34:07 -06:00
|
|
|
}
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
2015-08-25 12:29:10 -06:00
|
|
|
return(0);
|
|
|
|
}
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2015-08-25 12:29:10 -06:00
|
|
|
int
|
|
|
|
group_autogroup(struct client_ctx *cc)
|
|
|
|
{
|
|
|
|
struct screen_ctx *sc = cc->sc;
|
2016-10-18 11:03:30 -06:00
|
|
|
struct autogroup *ag;
|
2015-08-25 12:29:10 -06:00
|
|
|
struct group_ctx *gc;
|
|
|
|
int num = -1, both_match = 0;
|
|
|
|
|
|
|
|
if (cc->ch.res_class == NULL || cc->ch.res_name == NULL)
|
|
|
|
return(0);
|
|
|
|
|
2016-10-18 11:03:30 -06:00
|
|
|
TAILQ_FOREACH(ag, &Conf.autogroupq, entry) {
|
|
|
|
if (strcmp(ag->class, cc->ch.res_class) == 0) {
|
|
|
|
if ((ag->name != NULL) &&
|
|
|
|
(strcmp(ag->name, cc->ch.res_name) == 0)) {
|
|
|
|
num = ag->num;
|
2015-08-25 12:29:10 -06:00
|
|
|
both_match = 1;
|
2016-10-18 11:03:30 -06:00
|
|
|
} else if (ag->name == NULL && !both_match)
|
|
|
|
num = ag->num;
|
2015-08-25 12:29:10 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TAILQ_FOREACH(gc, &sc->groupq, entry) {
|
|
|
|
if (gc->num == num) {
|
|
|
|
group_assign(gc, cc);
|
|
|
|
return(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return(0);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|