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 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
|
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
// Pen.cc for Blackbox - an X11 Window manager
// Copyright (c) 2001 - 2005 Sean 'Shaleh' Perry <shaleh@debian.org>
// Copyright (c) 1997 - 2000, 2002 - 2005
// Bradley T Hughes <bhughes at trolltech.com>
//
// 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 "Pen.hh"
#include "Display.hh"
#include "Color.hh"
#include "Util.hh"
#include <algorithm>
#include <X11/Xlib.h>
#ifdef XFT
# include <X11/Xft/Xft.h>
#endif
#include <assert.h>
#include <stdio.h>
// #define PENCACHE_DEBUG
/*
The Pen cache is comprised of multiple arrays of cache buckets. The
bucket arrays are small to allow for fast lookups. A simple hash is
used to determine which array is used.
The 'cache_size' variable above controls the number of bucket
arrays; the 'cache_buckets' variable controls the size of each
bucket array.
Each bucket stores a hit count, and the buckets are reordered at
runtime from highest to lowest hit count. When no suitable item can
be found in the cache, the first bucket that is not in use will be
used.
A cache fault happens if all buckets are in use, at the cache will
print a diagnostic message to 'stderr' and call abort(). Normally,
a cache fault indicates that the cache was not big enough, and the
variables above should be increased accordingly.
--------------------------------------------------------------------
> +----+----+----+----+----+----+----+----+
| | 14 | 10 | 4 | 3 | 2 | 2 | 2 | 0 |
| +----+----+----+----+----+----+----+----+
cache_size
| +----+----+----+----+----+----+----+----+
| | 9 | 8 | 7 | 6 | 4 | 3 | 0 | 0 |
| +----+----+----+----+----+----+----+----+
|
| ... more bucket arrays ...
>
^------------- cache_buckets -----------^
*/
static const unsigned int cache_size = 32u;
static const unsigned int cache_buckets = 8u;
static const unsigned int context_count = cache_size * cache_buckets;
static int key(unsigned int screen, const bt::Color &color)
{
static unsigned int noise = 0u;
// PRNG to introduce entropy, since we don't have a perfect hash
noise = (noise * 0x0019660d + 0x3c6ef35f);
int k = color.red() ^ color.green() ^ color.blue() ^ noise;
return (screen * context_count) + ((k % cache_size) * cache_buckets);
}
namespace bt {
class PenCacheContext : public NoCopy {
public:
inline PenCacheContext(void)
: _screen(~0u), _gc(0), _function(0), _linewidth(0), _subwindow(0),
_used(false)
{ }
~PenCacheContext(void);
void set(const Color &color, const int function, const int linewidth,
const int subwindow);
unsigned int _screen;
GC _gc;
Color _color;
int _function;
int _linewidth;
int _subwindow;
bool _used;
};
class PenCacheItem : public NoCopy {
public:
inline PenCacheItem(void)
: _ctx(0), _count(0u), _hits(0u)
{ }
inline const GC &gc(void) const
{ return _ctx->_gc; }
PenCacheContext *_ctx;
unsigned int _count;
unsigned int _hits;
};
#ifdef XFT
class XftCacheContext : public NoCopy {
public:
inline XftCacheContext(void)
: _screen(~0u), _drawable(None), _xftdraw(0), _used(false)
{ }
~XftCacheContext(void);
void set(Drawable drawable);
unsigned int _screen;
Drawable _drawable;
XftDraw *_xftdraw;
bool _used;
};
class XftCacheItem : public NoCopy {
public:
inline XftCacheItem(void)
: _ctx(0), _count(0u), _hits(0u)
{ }
inline Drawable drawable(void) const
{ return _ctx->_drawable; }
inline XftDraw *xftdraw(void) const
{ return _ctx->_xftdraw; }
XftCacheContext *_ctx;
unsigned int _count;
unsigned int _hits;
};
#endif
class PenCache {
public:
PenCache(const Display &display);
~PenCache(void);
// cleans up the cache
void purge(void);
PenCacheContext *contexts;
PenCacheItem **cache;
PenCacheContext *nextContext(unsigned int screen);
void release(PenCacheContext *ctx);
PenCacheItem *find(unsigned int screen,
const Color &color,
int function,
int linewidth,
int subwindow);
void release(PenCacheItem *item);
#ifdef XFT
XftCacheContext *xftcontexts;
XftCacheItem **xftcache;
XftCacheContext *nextXftContext(unsigned int screen);
void release(XftCacheContext *ctx);
XftCacheItem *findXft(unsigned int screen, Drawable drawable);
void release(XftCacheItem *xftitem);
#endif
const Display &_display;
const unsigned int cache_total_size;
};
static PenCache *pencache = 0;
void createPenCache(const Display &display)
{
assert(pencache == 0);
pencache = new PenCache(display);
}
void destroyPenCache(void) {
delete pencache;
pencache = 0;
}
} // namespace bt
bt::PenCacheContext::~PenCacheContext(void) {
if (_gc)
XFreeGC(pencache->_display.XDisplay(), _gc);
_gc = 0;
}
void bt::PenCacheContext::set(const Color &color,
const int function,
const int linewidth,
const int subwindow) {
XGCValues gcv;
_color = color;
gcv.foreground = _color.pixel(_screen);
_function = gcv.function = function;
_linewidth = gcv.line_width = linewidth;
_subwindow = gcv.subwindow_mode = subwindow;
unsigned long mask =
(GCForeground | GCFunction | GCLineWidth | GCSubwindowMode);
XChangeGC(pencache->_display.XDisplay(), _gc, mask, &gcv);
}
#ifdef XFT
bt::XftCacheContext::~XftCacheContext(void) {
if (_xftdraw)
XftDrawDestroy(_xftdraw);
_xftdraw = 0;
}
void bt::XftCacheContext::set(Drawable drawable) {
XftDrawChange(_xftdraw, drawable);
_drawable = drawable;
}
#endif
bt::PenCache::PenCache(const Display &display)
: _display(display),
cache_total_size(context_count * _display.screenCount())
{
unsigned int i;
contexts = new PenCacheContext[cache_total_size];
cache = new PenCacheItem*[cache_total_size];
for (i = 0; i < cache_total_size; ++i) {
cache[i] = new PenCacheItem;
}
#ifdef XFT
xftcontexts = new XftCacheContext[cache_total_size];
xftcache = new XftCacheItem*[cache_total_size];
for (i = 0; i < cache_total_size; ++i) {
xftcache[i] = new XftCacheItem;
}
#endif
}
bt::PenCache::~PenCache(void) {
std::for_each(cache, cache + cache_total_size, PointerAssassin());
delete [] cache;
delete [] contexts;
#ifdef XFT
std::for_each(xftcache, xftcache + cache_total_size, PointerAssassin());
delete [] xftcache;
delete [] xftcontexts;
#endif
}
void bt::PenCache::purge(void) {
for (unsigned int i = 0; i < cache_total_size; ++i) {
PenCacheItem *d = cache[ i ];
if (d->_ctx && d->_count == 0) {
#ifdef PENCACHE_DEBUG
fprintf(stderr, "bt::PenCache: GC : context %03u release\n", i);
#endif
release(d->_ctx);
d->_ctx = 0;
}
}
}
bt::PenCacheContext *bt::PenCache::nextContext(unsigned int screen) {
Window hd = pencache->_display.screenInfo(screen).rootWindow();
PenCacheContext *c;
unsigned int i;
for (i = 0; i < cache_total_size; ++i) {
c = contexts + i;
if (!c->_gc) {
#ifdef PENCACHE_DEBUG
fprintf(stderr, "bt::PenCache: GC : context %03u create\n", i);
#endif
c->_gc = XCreateGC(pencache->_display.XDisplay(), hd, 0, 0);
c->_used = false;
c->_screen = screen;
}
if (!c->_used && c->_screen == screen)
return c;
}
fprintf(stderr, "bt::PenCache: context fault at %u of %u\n",
i, cache_total_size);
abort();
return 0; // not reached
}
void bt::PenCache::release(PenCacheContext *ctx) {
ctx->_used = false;
ctx->_color.deallocate(); // allows unused colors to be freed
}
bt::PenCacheItem *bt::PenCache::find(unsigned int screen,
const Color &color,
int function,
int linewidth,
int subwindow) {
int k = key(screen, color);
unsigned int i = 0; // loop variable
PenCacheItem *c = cache[ k ], *prev = 0;
/*
this will either loop cache_buckets times then return/abort or
it will stop matching
*/
while (c->_ctx
&& (c->_ctx->_color != color
|| c->_ctx->_function != function
|| c->_ctx->_linewidth != linewidth
|| c->_ctx->_subwindow != subwindow)) {
if (i < (cache_buckets - 1)) {
prev = c;
c = cache[ ++k ];
++i;
continue;
}
if (c->_count == 0 && c->_ctx->_screen == screen) {
#ifdef PENCACHE_DEBUG
fprintf(stderr, "bt::PenCache: GC : key %03d hijack\n", k);
#endif
// use this cache item
c->_ctx->set(color, function, linewidth, subwindow);
c->_ctx->_used = true;
c->_count = 1;
c->_hits = 1;
return c;
}
// cache fault!
fprintf(stderr,
"bt::PenCache: GC : cache fault at %d, "
"count: %u, screen: %u, item screen: %u\n",
k, c->_count, screen, c->_ctx->_screen);
// let's try again
k = key(screen, color);
i = 0;
c = cache[k];
}
if (c->_ctx) {
#ifdef PENCACHE_DEBUG
fprintf(stderr, "bt::PenCache: GC : key %03d cache hit\n", k);
#endif
// reuse existing context
c->_count++;
c->_hits++;
if (prev && c->_hits > prev->_hits) {
cache[ k ] = prev;
cache[ k - 1 ] = c;
}
} else {
c->_ctx = nextContext(screen);
#ifdef PENCACHE_DEBUG
fprintf(stderr, "bt::PenCache: GC : key %03d new context\n", k);
#endif
c->_ctx->set(color, function, linewidth, subwindow);
c->_ctx->_used = true;
c->_count = 1;
c->_hits = 1;
}
return c;
}
void bt::PenCache::release(PenCacheItem *item)
{ --item->_count; }
#ifdef XFT
bt::XftCacheContext *bt::PenCache::nextXftContext(unsigned int screen) {
const ScreenInfo &screeninfo = _display.screenInfo(screen);
XftCacheContext *c;
unsigned int i;
for (i = 0; i < cache_total_size; ++i) {
c = xftcontexts + i;
if (!c->_xftdraw) {
#ifdef PENCACHE_DEBUG
fprintf(stderr, "bt::PenCache: Xft: context %03u create\n", i);
#endif
c->_xftdraw =
XftDrawCreate(_display.XDisplay(), screeninfo.rootWindow(),
screeninfo.visual(), screeninfo.colormap());
c->_used = false;
c->_screen = screen;
}
if (!c->_used && c->_screen == screen)
return c;
}
fprintf(stderr, "bt::PenCache: Xft context fault at %u of %u\n",
i, cache_total_size);
abort();
return 0; // not reached
}
void bt::PenCache::release(XftCacheContext *context)
{ context->_used = false; }
bt::XftCacheItem *bt::PenCache::findXft(unsigned int screen,
Drawable drawable) {
int k = (screen * context_count) + ((drawable % cache_size) * cache_buckets);
unsigned int i = 0; // loop variable
XftCacheItem *c = xftcache[ k ], *prev = 0;
/*
this will either loop cache_buckets times then return/abort or
it will stop matching
*/
while (c->_ctx &&
(c->_ctx->_drawable != drawable || c->_ctx->_screen != screen)) {
if (i < (cache_buckets - 1)) {
prev = c;
c = xftcache[ ++k ];
++i;
continue;
}
if (c->_count == 0 && c->_ctx->_screen == screen) {
#ifdef PENCACHE_DEBUG
fprintf(stderr, "bt::PenCache: Xft: key %03d hijack\n", k);
#endif
// use this cache item
if (drawable != c->_ctx->_drawable)
c->_ctx->set(drawable);
c->_ctx->_used = true;
c->_count = 1;
c->_hits = 1;
return c;
}
// cache fault... try
fprintf(stderr,
"bt::PenCache: Xft cache fault at %d\n"
" count: %u, screen: %u, item screen: %u\n",
k, c->_count, screen, c->_ctx->_screen);
abort();
}
if (c->_ctx) {
#ifdef PENCACHE_DEBUG
fprintf(stderr, "bt::PenCache: Xft: key %03d cache hit\n", k);
#endif
// reuse existing context
if (drawable != c->_ctx->_drawable)
c->_ctx->set(drawable);
c->_count++;
c->_hits++;
if (prev && c->_hits > prev->_hits) {
xftcache[ k ] = prev;
xftcache[ k - 1 ] = c;
}
} else {
c->_ctx = nextXftContext(screen);
#ifdef PENCACHE_DEBUG
fprintf(stderr, "bt::PenCache: Xft: key %03d new context\n", k);
#endif
c->_ctx->set(drawable);
c->_ctx->_used = true;
c->_count = 1;
c->_hits = 1;
}
return c;
}
void bt::PenCache::release(XftCacheItem *xftitem)
{ --xftitem->_count; }
#endif
bt::Pen::Pen(unsigned int screen_, const Color &color_)
: _screen(screen_), _color(color_), _function(GXcopy), _linewidth(0),
_subwindow(ClipByChildren), _item(0), _xftitem(0)
{ }
bt::Pen::~Pen(void) {
if (_item)
pencache->release(_item);
_item = 0;
#ifdef XFT
if (_xftitem)
pencache->release(_xftitem);
_xftitem = 0;
#endif
}
void bt::Pen::setGCFunction(int function) {
if (_item)
pencache->release(_item);
_item = 0;
_function = function;
}
void bt::Pen::setLineWidth(int linewidth) {
if (_item)
pencache->release(_item);
_item = 0;
_linewidth = linewidth;
}
void bt::Pen::setSubWindowMode(int subwindow) {
if (_item)
pencache->release(_item);
_item = 0;
_subwindow = subwindow;
}
::Display *bt::Pen::XDisplay(void) const
{ return pencache->_display.XDisplay(); }
const bt::Display &bt::Pen::display(void) const
{ return pencache->_display; }
const GC &bt::Pen::gc(void) const {
if (!_item) {
_item = pencache->find(_screen, _color,
_function, _linewidth, _subwindow);
}
assert(_item != 0);
return _item->gc();
}
XftDraw *bt::Pen::xftDraw(Drawable drawable) const {
#ifdef XFT
if (_xftitem && _xftitem->drawable() != drawable) {
pencache->release(_xftitem);
_xftitem = 0;
}
if (!_xftitem) {
_xftitem = pencache->findXft(_screen, drawable);
}
assert(_xftitem != 0);
return _xftitem->xftdraw();
#else
return 0;
#endif
}
void bt::Pen::clearCache(void)
{ pencache->purge(); }
|