src/ClientPattern.cc (raw)
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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 |
// ClientPattern.cc for Fluxbox Window Manager // Copyright (c) 2003 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org) // and Simon Bowden (rathnor at users.sourceforge.net) // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. #include "ClientPattern.hh" #include "fluxbox.hh" #include "FocusControl.hh" #include "Layer.hh" #include "Screen.hh" #include "WinClient.hh" #include "Workspace.hh" #include "FbTk/StringUtil.hh" #include "FbTk/App.hh" #include "FbTk/stringstream.hh" // use GNU extensions #ifndef _GNU_SOURCE #define _GNU_SOURCE #endif // _GNU_SOURCE #include <fstream> #include <string> #include <memory> #ifdef HAVE_CSTDIO #include <cstdio> #else #include <stdio.h> #endif // needed as well for index on some systems (e.g. solaris) #include <strings.h> using std::string; ClientPattern::ClientPattern(): m_matchlimit(0), m_nummatches(0) {} // parse the given pattern (to end of line) ClientPattern::ClientPattern(const char *str, bool default_no_transient): m_matchlimit(0), m_nummatches(0) { /* A rough grammar of a pattern is: PATTERN ::= MATCH+ LIMIT? MATCH ::= '(' word ')' | '(' propertyname '=' word ')' LIMIT ::= '{' number '}' i.e. one or more match definitions, followed by an optional limit on the number of apps to match to Match definitions are enclosed in parentheses, and if no property name is given, then CLASSNAME is assumed. If no limit is specified, no limit is applied (i.e. limit = infinity) */ bool had_error = false; int pos = 0; string match; int err = 1; // for starting first loop while (!had_error && err > 0) { err = FbTk::StringUtil::getStringBetween(match, str + pos, '(', ')', " \t\n", true); if (err > 0) { // need to determine the property used string memstr, expr; WinProperty prop; string::size_type eq = match.find_first_of('='); if (eq == match.npos) { memstr = match; expr = "[current]"; } else { memstr.assign(match, 0, eq); // memstr = our identifier expr.assign(match, eq+1, match.length()); } bool negate = false; if (!memstr.empty() && memstr[memstr.length()-1] == '!') { negate = true; memstr.assign(memstr, 0, memstr.length()-1); } if (strcasecmp(memstr.c_str(), "name") == 0) { prop = NAME; } else if (strcasecmp(memstr.c_str(), "class") == 0) { prop = CLASS; } else if (strcasecmp(memstr.c_str(), "title") == 0) { prop = TITLE; } else if (strcasecmp(memstr.c_str(), "role") == 0) { prop = ROLE; } else if (strcasecmp(memstr.c_str(), "transient") == 0) { prop = TRANSIENT; default_no_transient = false; } else if (strcasecmp(memstr.c_str(), "maximized") == 0) { prop = MAXIMIZED; } else if (strcasecmp(memstr.c_str(), "minimized") == 0) { prop = MINIMIZED; } else if (strcasecmp(memstr.c_str(), "shaded") == 0) { prop = SHADED; } else if (strcasecmp(memstr.c_str(), "stuck") == 0) { prop = STUCK; } else if (strcasecmp(memstr.c_str(), "focushidden") == 0) { prop = FOCUSHIDDEN; } else if (strcasecmp(memstr.c_str(), "iconhidden") == 0) { prop = ICONHIDDEN; } else if (strcasecmp(memstr.c_str(), "workspace") == 0) { prop = WORKSPACE; } else if (strcasecmp(memstr.c_str(), "workspacename") == 0) { prop = WORKSPACENAME; } else if (strcasecmp(memstr.c_str(), "head") == 0) { prop = HEAD; } else if (strcasecmp(memstr.c_str(), "layer") == 0) { prop = LAYER; } else if (strcasecmp(memstr.c_str(), "urgent") == 0) { prop = URGENT; } else { prop = NAME; expr = match; } had_error = !addTerm(expr, prop, negate); pos += err; } } if (pos == 0 && !had_error) { // no match terms given, this is not allowed had_error = true; } if (default_no_transient) had_error = !addTerm("no", TRANSIENT); if (!had_error) { // otherwise, we check for a number string number; err = FbTk::StringUtil::getStringBetween(number, str+pos, '{', '}'); if (err > 0) { FbTk_istringstream iss(number.c_str()); iss >> m_matchlimit; pos+=err; } // we don't care if there isn't one // there shouldn't be anything else on the line match = str + pos; size_t uerr;// need a special type here uerr = match.find_first_not_of(" \t\n", pos); if (uerr != match.npos) { // found something, not good had_error = true; } } if (had_error) { // delete all the terms while (!m_terms.empty()) { Term * term = m_terms.back(); delete term; m_terms.pop_back(); } } } ClientPattern::~ClientPattern() { // delete all the terms while (!m_terms.empty()) { delete m_terms.back(); m_terms.pop_back(); } } // return a string representation of this pattern string ClientPattern::toString() const { string pat; Terms::const_iterator it = m_terms.begin(); Terms::const_iterator it_end = m_terms.end(); for (; it != it_end; ++it) { pat.append(" ("); switch ((*it)->prop) { case NAME: pat.append("name="); break; case CLASS: pat.append("class="); break; case TITLE: pat.append("title="); break; case ROLE: pat.append("role="); break; case TRANSIENT: pat.append("transient="); break; case MAXIMIZED: pat.append("maximized="); break; case MINIMIZED: pat.append("minimized="); break; case SHADED: pat.append("shaded="); break; case STUCK: pat.append("stuck="); break; case FOCUSHIDDEN: pat.append("focushidden="); break; case ICONHIDDEN: pat.append("iconhidden="); break; case WORKSPACE: pat.append("workspace="); break; case WORKSPACENAME: pat.append("workspacename="); break; case HEAD: pat.append("head="); break; case LAYER: pat.append("layer="); break; case URGENT: pat.append("urgent="); } pat.append((*it)->orig); pat.append(")"); } if (m_matchlimit > 0) { char num[20]; sprintf(num, " {%d}", m_matchlimit); pat.append(num); } return pat; } // does this client match this pattern? bool ClientPattern::match(const Focusable &win) const { if (m_matchlimit != 0 && m_nummatches >= m_matchlimit) return false; // already matched out // regmatch everything // currently, we use an "AND" policy for multiple terms // changing to OR would require minor modifications in this function only Terms::const_iterator it = m_terms.begin(); Terms::const_iterator it_end = m_terms.end(); for (; it != it_end; ++it) { if ((*it)->orig == "[current]") { WinClient *focused = FocusControl::focusedWindow(); if ((*it)->prop == WORKSPACE) { char tmpstr[128]; sprintf(tmpstr, "%d", win.screen().currentWorkspaceID()); if (!(*it)->negate ^ (getProperty((*it)->prop, win) == tmpstr)) return false; } else if ((*it)->prop == WORKSPACENAME) { const Workspace *w = win.screen().currentWorkspace(); if (!w || (!(*it)->negate ^ (getProperty((*it)->prop, win) == w->name()))) return false; } else if (!focused || (!(*it)->negate ^ (getProperty((*it)->prop, win) == getProperty((*it)->prop, *focused)))) return false; } else if ((*it)->prop == HEAD && (*it)->orig == "[mouse]") { int mouse_head = win.screen().getCurrHead(); char num[32]; sprintf(num, "%d", mouse_head); if (!(*it)->negate ^ (getProperty((*it)->prop, win) == num)) return false; } else if (!(*it)->negate ^ (*it)->regexp.match(getProperty((*it)->prop, win))) return false; } return true; } bool ClientPattern::dependsOnFocusedWindow() const { Terms::const_iterator it = m_terms.begin(), it_end = m_terms.end(); for (; it != it_end; ++it) { if ((*it)->prop != WORKSPACE && (*it)->prop != WORKSPACENAME && (*it)->orig == "[current]") return true; } return false; } bool ClientPattern::dependsOnCurrentWorkspace() const { Terms::const_iterator it = m_terms.begin(), it_end = m_terms.end(); for (; it != it_end; ++it) { if (((*it)->prop == WORKSPACE || (*it)->prop == WORKSPACENAME) && (*it)->orig == "[current]") return true; } return false; } // add an expression to match against // The first argument is a regular expression, the second is the member // function that we wish to match against. bool ClientPattern::addTerm(const string &str, WinProperty prop, bool negate) { Term *term = new Term(str, true); term->orig = str; term->prop = prop; term->negate = negate; if (term->regexp.error()) { delete term; return false; } m_terms.push_back(term); return true; } string ClientPattern::getProperty(WinProperty prop, const Focusable &client) { // we need this for some of the window properties const FluxboxWindow *fbwin = client.fbwindow(); switch (prop) { case TITLE: return client.title(); break; case CLASS: return client.getWMClassClass(); break; case NAME: return client.getWMClassName(); break; case ROLE: return client.getWMRole(); break; case TRANSIENT: return client.isTransient() ? "yes" : "no"; break; case MAXIMIZED: return (fbwin && fbwin->isMaximized()) ? "yes" : "no"; break; case MINIMIZED: return (fbwin && fbwin->isIconic()) ? "yes" : "no"; break; case SHADED: return (fbwin && fbwin->isShaded()) ? "yes" : "no"; break; case STUCK: return (fbwin && fbwin->isStuck()) ? "yes" : "no"; break; case FOCUSHIDDEN: return (fbwin && fbwin->isFocusHidden()) ? "yes" : "no"; break; case ICONHIDDEN: return (fbwin && fbwin->isIconHidden()) ? "yes" : "no"; break; case WORKSPACE: { if (!fbwin) return ""; char tmpstr[128]; sprintf(tmpstr, "%d", fbwin->workspaceNumber()); return std::string(tmpstr); break; } case WORKSPACENAME: { if (!fbwin) return ""; const Workspace *w = client.screen().getWorkspace(fbwin->workspaceNumber()); return w ? w->name() : ""; break; } case HEAD: { if (!fbwin) return ""; int head = client.screen().getHead(fbwin->fbWindow()); char tmpstr[128]; sprintf(tmpstr, "%d", head); return std::string(tmpstr); break; } case LAYER: return fbwin ? ::Layer::getString(fbwin->layerNum()) : ""; break; case URGENT: return Fluxbox::instance()->attentionHandler() .isDemandingAttention(client) ? "yes" : "no"; break; } return client.getWMClassName(); } bool ClientPattern::operator ==(const ClientPattern &pat) const { // we require the terms to be identical (order too) Terms::const_iterator it = m_terms.begin(); Terms::const_iterator it_end = m_terms.end(); Terms::const_iterator other_it = pat.m_terms.begin(); Terms::const_iterator other_it_end = pat.m_terms.end(); for (; it != it_end && other_it != other_it_end; ++it, ++other_it) { if ((*it)->orig != (*other_it)->orig || (*it)->negate != (*other_it)->negate) return false; } if (it != it_end || other_it != other_it_end) return false; return true; } |