]> git.ipfire.org Git - thirdparty/squid.git/blame - src/store_digest.cc
Languages: updated Serbian aliases
[thirdparty/squid.git] / src / store_digest.cc
CommitLineData
8638fc66 1/*
8638fc66 2 * DEBUG: section 71 Store Digest Manager
3 * AUTHOR: Alex Rousskov
4 *
2b6662ba 5 * SQUID Web Proxy Cache http://www.squid-cache.org/
e25c139f 6 * ----------------------------------------------------------
8638fc66 7 *
2b6662ba 8 * Squid is the result of efforts by numerous individuals from
9 * the Internet community; see the CONTRIBUTORS file for full
10 * details. Many organizations have provided support for Squid's
11 * development; see the SPONSORS file for full details. Squid is
12 * Copyrighted (C) 2001 by the Regents of the University of
13 * California; see the COPYRIGHT file for full details. Squid
14 * incorporates software developed and/or copyrighted by other
15 * sources; see the CREDITS file for full details.
8638fc66 16 *
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
26ac0430 21 *
8638fc66 22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26ac0430 26 *
8638fc66 27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
cbdec147 29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
e25c139f 30 *
8638fc66 31 */
32
6168bccd 33/*
34 * TODO: We probably do not track all the cases when
35 * storeDigestNoteStoreReady() must be called; this may prevent
36 * storeDigestRebuild/write schedule to be activated
37 */
38
582c2af2
FC
39#include "squid.h"
40#include "Debug.h"
a553a5a3 41#include "event.h"
582c2af2 42#include "globals.h"
8822ebee 43#include "mgr/Registration.h"
35a28a37 44#include "store_digest.h"
d6fd3381 45
b814e8d4
FC
46#if USE_CACHE_DIGESTS
47#include "CacheDigest.h"
528b2c61 48#include "HttpReply.h"
582c2af2 49#include "HttpRequest.h"
308e60be 50#include "internal.h"
528b2c61 51#include "MemObject.h"
aa839030 52#include "PeerDigest.h"
c6f15d40 53#include "refresh.h"
4d5904f7 54#include "SquidConfig.h"
985c86bc 55#include "SquidTime.h"
582c2af2 56#include "Store.h"
c8f4eac4 57#include "StoreSearch.h"
528b2c61 58
582c2af2
FC
59#if HAVE_MATH_H
60#include <math.h>
61#endif
62
d6fd3381 63/*
64 * local types
65 */
12784378 66
c8f4eac4 67class StoreDigestState
62e76326 68{
c8f4eac4 69
70public:
12784378 71 StoreDigestCBlock cblock;
b644367b 72 int rebuild_lock; /* bucket number */
aa839030 73 StoreEntry * rewrite_lock; /* points to store entry with the digest */
c8f4eac4 74 StoreSearchPointer theSearch;
12784378 75 int rewrite_offset;
76 int rebuild_count;
b644367b 77 int rewrite_count;
c8f4eac4 78};
12784378 79
26ac0430 80typedef struct {
4b4cd312 81 int del_count; /* #store entries deleted from store_digest */
82 int del_lost_count; /* #store entries not found in store_digest on delete */
83 int add_count; /* #store entries accepted to store_digest */
84 int add_coll_count; /* #accepted entries that collided with existing ones */
85 int rej_count; /* #store entries not accepted to store_digest */
86 int rej_coll_count; /* #not accepted entries that collided with existing ones */
2fadd50d 87} StoreDigestStats;
6168bccd 88
462f66d2 89/* local vars */
12784378 90static StoreDigestState sd_state;
6168bccd 91static StoreDigestStats sd_stats;
12784378 92
93/* local prototypes */
6168bccd 94static void storeDigestRebuildStart(void *datanotused);
d6fd3381 95static void storeDigestRebuildResume(void);
96static void storeDigestRebuildFinish(void);
12784378 97static void storeDigestRebuildStep(void *datanotused);
d6fd3381 98static void storeDigestRewriteStart(void *);
99static void storeDigestRewriteResume(void);
b644367b 100static void storeDigestRewriteFinish(StoreEntry * e);
d6f51e3c 101static EVH storeDigestSwapOutStep;
b644367b 102static void storeDigestCBlockSwapOut(StoreEntry * e);
d6fd3381 103static int storeDigestCalcCap(void);
104static int storeDigestResize(void);
105static void storeDigestAdd(const StoreEntry *);
12784378 106
d6fd3381 107#endif /* USE_CACHE_DIGESTS */
108
5f5e883f
FC
109static void
110storeDigestRegisterWithCacheManager(void)
111{
8822ebee 112 Mgr::RegisterAction("store_digest", "Store Digest", storeDigestReport, 0, 1);
5f5e883f
FC
113}
114
d6fd3381 115/*
116 * PUBLIC FUNCTIONS
117 */
12784378 118
8638fc66 119void
d6fd3381 120storeDigestInit(void)
8638fc66 121{
d120ed12
FC
122 storeDigestRegisterWithCacheManager();
123
6cfa8966 124#if USE_CACHE_DIGESTS
304b267e 125 const int cap = storeDigestCalcCap();
7e3ce7b9 126
127 if (!Config.onoff.digest_generation) {
62e76326 128 store_digest = NULL;
bf8fe701 129 debugs(71, 3, "Local cache digest generation disabled");
62e76326 130 return;
7e3ce7b9 131 }
62e76326 132
7e3ce7b9 133 store_digest = cacheDigestCreate(cap, Config.digest.bits_per_entry);
e0236918 134 debugs(71, DBG_IMPORTANT, "Local cache digest enabled; rebuild/rewrite every " <<
bf8fe701 135 (int) Config.digest.rebuild_period << "/" <<
136 (int) Config.digest.rewrite_period << " sec");
137
12784378 138 memset(&sd_state, 0, sizeof(sd_state));
d6fd3381 139#else
140 store_digest = NULL;
bf8fe701 141 debugs(71, 3, "Local cache digest is 'off'");
d6fd3381 142#endif
8638fc66 143}
144
6168bccd 145/* called when store_rebuild completes */
8638fc66 146void
d6fd3381 147storeDigestNoteStoreReady(void)
12784378 148{
d6fd3381 149#if USE_CACHE_DIGESTS
62e76326 150
7e3ce7b9 151 if (Config.onoff.digest_generation) {
62e76326 152 storeDigestRebuildStart(NULL);
153 storeDigestRewriteStart(NULL);
7e3ce7b9 154 }
62e76326 155
d6fd3381 156#endif
157}
158
35a28a37 159//TODO: this seems to be dead code. Is it needed?
d6fd3381 160void
161storeDigestDel(const StoreEntry * entry)
162{
163#if USE_CACHE_DIGESTS
62e76326 164
7e3ce7b9 165 if (!Config.onoff.digest_generation) {
62e76326 166 return;
7e3ce7b9 167 }
62e76326 168
d6fd3381 169 assert(entry && store_digest);
bf8fe701 170 debugs(71, 6, "storeDigestDel: checking entry, key: " << entry->getMD5Text());
62e76326 171
d46a87a8 172 if (!EBIT_TEST(entry->flags, KEY_PRIVATE)) {
62e76326 173 if (!cacheDigestTest(store_digest, (const cache_key *)entry->key)) {
5db6bf73 174 ++sd_stats.del_lost_count;
bf8fe701 175 debugs(71, 6, "storeDigestDel: lost entry, key: " << entry->getMD5Text() << " url: " << entry->url() );
62e76326 176 } else {
5db6bf73 177 ++sd_stats.del_count;
62e76326 178 cacheDigestDel(store_digest, (const cache_key *)entry->key);
bf8fe701 179 debugs(71, 6, "storeDigestDel: deled entry, key: " << entry->getMD5Text());
62e76326 180 }
d6fd3381 181 }
35a28a37 182#endif //USE_CACHE_DIGESTS
12784378 183}
184
12784378 185void
d6fd3381 186storeDigestReport(StoreEntry * e)
187{
188#if USE_CACHE_DIGESTS
62e76326 189
7e3ce7b9 190 if (!Config.onoff.digest_generation) {
62e76326 191 return;
7e3ce7b9 192 }
62e76326 193
d6fd3381 194 if (store_digest) {
62e76326 195 cacheDigestReport(store_digest, "store", e);
196 storeAppendPrintf(e, "\t added: %d rejected: %d ( %.2f %%) del-ed: %d\n",
197 sd_stats.add_count,
198 sd_stats.rej_count,
199 xpercent(sd_stats.rej_count, sd_stats.rej_count + sd_stats.add_count),
200 sd_stats.del_count);
201 storeAppendPrintf(e, "\t collisions: on add: %.2f %% on rej: %.2f %%\n",
202 xpercent(sd_stats.add_coll_count, sd_stats.add_count),
203 xpercent(sd_stats.rej_coll_count, sd_stats.rej_count));
d6fd3381 204 } else {
62e76326 205 storeAppendPrintf(e, "store digest: disabled.\n");
d6fd3381 206 }
62e76326 207
35a28a37 208#endif //USE_CACHE_DIGESTS
d6fd3381 209}
210
211/*
212 * LOCAL FUNCTIONS
213 */
214
215#if USE_CACHE_DIGESTS
216
c68e9c6b 217/* should we digest this entry? used by storeDigestAdd() */
218static int
219storeDigestAddable(const StoreEntry * e)
220{
221 /* add some stats! XXX */
222
bf8fe701 223 debugs(71, 6, "storeDigestAddable: checking entry, key: " << e->getMD5Text());
c68e9c6b 224
3900307b 225 /* check various entry flags (mimics StoreEntry::checkCachable XXX) */
62e76326 226
c68e9c6b 227 if (EBIT_TEST(e->flags, KEY_PRIVATE)) {
bf8fe701 228 debugs(71, 6, "storeDigestAddable: NO: private key");
62e76326 229 return 0;
c68e9c6b 230 }
62e76326 231
c68e9c6b 232 if (EBIT_TEST(e->flags, ENTRY_NEGCACHED)) {
bf8fe701 233 debugs(71, 6, "storeDigestAddable: NO: negative cached");
62e76326 234 return 0;
c68e9c6b 235 }
62e76326 236
c68e9c6b 237 if (EBIT_TEST(e->flags, RELEASE_REQUEST)) {
bf8fe701 238 debugs(71, 6, "storeDigestAddable: NO: release requested");
62e76326 239 return 0;
c68e9c6b 240 }
62e76326 241
c68e9c6b 242 if (e->store_status == STORE_OK && EBIT_TEST(e->flags, ENTRY_BAD_LENGTH)) {
bf8fe701 243 debugs(71, 6, "storeDigestAddable: NO: wrong content-length");
62e76326 244 return 0;
c68e9c6b 245 }
62e76326 246
c68e9c6b 247 /* do not digest huge objects */
47f6e231 248 if (e->swap_file_sz > (uint64_t )Config.Store.maxObjectSize) {
bf8fe701 249 debugs(71, 6, "storeDigestAddable: NO: too big");
62e76326 250 return 0;
c68e9c6b 251 }
62e76326 252
c68e9c6b 253 /* still here? check staleness */
254 /* Note: We should use the time of the next rebuild, not (cur_time+period) */
7e3ce7b9 255 if (refreshCheckDigest(e, Config.digest.rebuild_period)) {
4a7a3d56 256 debugs(71, 6, "storeDigestAdd: entry expires within " << Config.digest.rebuild_period << " secs, ignoring");
62e76326 257 return 0;
c68e9c6b 258 }
62e76326 259
17a80fc2 260 /*
261 * idea: how about also skipping very fresh (thus, potentially
262 * unstable) entries? Should be configurable through
263 * cd_refresh_pattern, of course.
264 */
265 /*
266 * idea: skip objects that are going to be purged before the next
267 * update.
268 */
c68e9c6b 269 return 1;
270}
271
d6fd3381 272static void
6168bccd 273storeDigestAdd(const StoreEntry * entry)
274{
6168bccd 275 assert(entry && store_digest);
c68e9c6b 276
277 if (storeDigestAddable(entry)) {
5db6bf73 278 ++sd_stats.add_count;
62e76326 279
280 if (cacheDigestTest(store_digest, (const cache_key *)entry->key))
5db6bf73 281 ++sd_stats.add_coll_count;
62e76326 282
283 cacheDigestAdd(store_digest, (const cache_key *)entry->key);
284
bf8fe701 285 debugs(71, 6, "storeDigestAdd: added entry, key: " << entry->getMD5Text());
6168bccd 286 } else {
5db6bf73 287 ++sd_stats.rej_count;
62e76326 288
289 if (cacheDigestTest(store_digest, (const cache_key *)entry->key))
5db6bf73 290 ++sd_stats.rej_coll_count;
6168bccd 291 }
12784378 292}
293
12784378 294/* rebuilds digest from scratch */
295static void
6168bccd 296storeDigestRebuildStart(void *datanotused)
8638fc66 297{
298 assert(store_digest);
12784378 299 /* prevent overlapping if rebuild schedule is too tight */
62e76326 300
12784378 301 if (sd_state.rebuild_lock) {
e0236918 302 debugs(71, DBG_IMPORTANT, "storeDigestRebuildStart: overlap detected, consider increasing rebuild period");
62e76326 303 return;
12784378 304 }
62e76326 305
12784378 306 sd_state.rebuild_lock = 1;
bf8fe701 307 debugs(71, 2, "storeDigestRebuildStart: rebuild #" << sd_state.rebuild_count + 1);
62e76326 308
6168bccd 309 if (sd_state.rewrite_lock) {
bf8fe701 310 debugs(71, 2, "storeDigestRebuildStart: waiting for Rewrite to finish.");
62e76326 311 return;
6168bccd 312 }
62e76326 313
6168bccd 314 storeDigestRebuildResume();
315}
316
317/* called be Rewrite to push Rebuild forward */
318static void
d6fd3381 319storeDigestRebuildResume(void)
6168bccd 320{
321 assert(sd_state.rebuild_lock);
322 assert(!sd_state.rewrite_lock);
c8f4eac4 323 sd_state.theSearch = Store::Root().search(NULL, NULL);
304b267e 324 /* resize or clear */
62e76326 325
304b267e 326 if (!storeDigestResize())
62e76326 327 cacheDigestClear(store_digest); /* not clean()! */
328
6168bccd 329 memset(&sd_stats, 0, sizeof(sd_stats));
62e76326 330
c43f5247 331 eventAdd("storeDigestRebuildStep", storeDigestRebuildStep, NULL, 0.0, 1);
12784378 332}
333
334/* finishes swap out sequence for the digest; schedules next rebuild */
335static void
d6fd3381 336storeDigestRebuildFinish(void)
12784378 337{
338 assert(sd_state.rebuild_lock);
339 sd_state.rebuild_lock = 0;
5db6bf73 340 ++sd_state.rebuild_count;
bf8fe701 341 debugs(71, 2, "storeDigestRebuildFinish: done.");
7e3ce7b9 342 eventAdd("storeDigestRebuildStart", storeDigestRebuildStart, NULL, (double)
62e76326 343 Config.digest.rebuild_period, 1);
6168bccd 344 /* resume pending Rewrite if any */
62e76326 345
12784378 346 if (sd_state.rewrite_lock)
62e76326 347 storeDigestRewriteResume();
12784378 348}
349
350/* recalculate a few hash buckets per invocation; schedules next step */
351static void
352storeDigestRebuildStep(void *datanotused)
353{
c8f4eac4 354 /* TODO: call Store::Root().size() to determine this.. */
355 int count = Config.Store.objectsPerBucket * (int) ceil((double) store_hash_buckets *
356 (double) Config.digest.rebuild_chunk_percentage / 100.0);
12784378 357 assert(sd_state.rebuild_lock);
62e76326 358
bf8fe701 359 debugs(71, 3, "storeDigestRebuildStep: buckets: " << store_hash_buckets << " entries to check: " << count);
62e76326 360
c8f4eac4 361 while (count-- && !sd_state.theSearch->isDone() && sd_state.theSearch->next())
362 storeDigestAdd(sd_state.theSearch->currentItem());
62e76326 363
12784378 364 /* are we done ? */
c8f4eac4 365 if (sd_state.theSearch->isDone())
62e76326 366 storeDigestRebuildFinish();
12784378 367 else
62e76326 368 eventAdd("storeDigestRebuildStep", storeDigestRebuildStep, NULL, 0.0, 1);
12784378 369}
370
12784378 371/* starts swap out sequence for the digest */
372static void
6168bccd 373storeDigestRewriteStart(void *datanotused)
12784378 374{
f206b652 375 RequestFlags flags;
462f66d2 376 char *url;
6168bccd 377 StoreEntry *e;
12784378 378
379 assert(store_digest);
380 /* prevent overlapping if rewrite schedule is too tight */
62e76326 381
12784378 382 if (sd_state.rewrite_lock) {
e0236918 383 debugs(71, DBG_IMPORTANT, "storeDigestRewrite: overlap detected, consider increasing rewrite period");
62e76326 384 return;
12784378 385 }
62e76326 386
bf8fe701 387 debugs(71, 2, "storeDigestRewrite: start rewrite #" << sd_state.rewrite_count + 1);
12784378 388 /* make new store entry */
e13ee7ad 389 url = internalLocalUri("/squid-internal-periodic/", StoreDigestFileName);
e857372a 390 flags.cachable = true;
c2a7cefd 391 e = storeCreateEntry(url, url, flags, Http::METHOD_GET);
28c60158 392 assert(e);
aa839030 393 sd_state.rewrite_lock = e;
bf8fe701 394 debugs(71, 3, "storeDigestRewrite: url: " << url << " key: " << e->getMD5Text());
c21ad0f5 395 HttpRequest *req = HttpRequest::CreateFromUrl(url);
b248c2a3
AJ
396 e->mem_obj->request = req;
397 HTTPMSGLOCK(e->mem_obj->request);
6168bccd 398 /* wait for rebuild (if any) to finish */
62e76326 399
6168bccd 400 if (sd_state.rebuild_lock) {
bf8fe701 401 debugs(71, 2, "storeDigestRewriteStart: waiting for rebuild to finish.");
62e76326 402 return;
6168bccd 403 }
62e76326 404
6168bccd 405 storeDigestRewriteResume();
406}
407
408static void
d6fd3381 409storeDigestRewriteResume(void)
6168bccd 410{
28c60158 411 StoreEntry *e;
6168bccd 412
413 assert(sd_state.rewrite_lock);
414 assert(!sd_state.rebuild_lock);
aa839030 415 e = sd_state.rewrite_lock;
12784378 416 sd_state.rewrite_offset = 0;
d46a87a8 417 EBIT_SET(e->flags, ENTRY_SPECIAL);
462f66d2 418 /* setting public key will purge old digest entry if any */
d88e3c49 419 e->setPublicKey();
462f66d2 420 /* fake reply */
06a5ae20 421 HttpReply *rep = new HttpReply;
955394ce 422 rep->setHeaders(Http::scOkay, "Cache Digest OK",
11992b6f
AJ
423 "application/cache-digest", (store_digest->mask_size + sizeof(sd_state.cblock)),
424 squid_curtime, (squid_curtime + Config.digest.rewrite_period) );
26ac0430 425 debugs(71, 3, "storeDigestRewrite: entry expires on " << rep->expires <<
bf8fe701 426 " (" << std::showpos << (int) (rep->expires - squid_curtime) << ")");
3900307b 427 e->buffer();
db237875 428 e->replaceHttpReply(rep);
12784378 429 storeDigestCBlockSwapOut(e);
3900307b 430 e->flush();
aa839030 431 eventAdd("storeDigestSwapOutStep", storeDigestSwapOutStep, sd_state.rewrite_lock, 0.0, 1, false);
12784378 432}
433
434/* finishes swap out sequence for the digest; schedules next rewrite */
435static void
b644367b 436storeDigestRewriteFinish(StoreEntry * e)
12784378 437{
aa839030 438 assert(e == sd_state.rewrite_lock);
528b2c61 439 e->complete();
3900307b 440 e->timestampsSet();
26ac0430 441 debugs(71, 2, "storeDigestRewriteFinish: digest expires at " << e->expires <<
bf8fe701 442 " (" << std::showpos << (int) (e->expires - squid_curtime) << ")");
6168bccd 443 /* is this the write order? @?@ */
528b2c61 444 e->mem_obj->unlinkRequest();
acc5dc4c 445 e->unlock("storeDigestRewriteFinish");
feefc1d9 446 sd_state.rewrite_lock = NULL;
5db6bf73 447 ++sd_state.rewrite_count;
7e3ce7b9 448 eventAdd("storeDigestRewriteStart", storeDigestRewriteStart, NULL, (double)
62e76326 449 Config.digest.rewrite_period, 1);
6168bccd 450 /* resume pending Rebuild if any */
62e76326 451
6168bccd 452 if (sd_state.rebuild_lock)
62e76326 453 storeDigestRebuildResume();
12784378 454}
455
456/* swaps out one digest "chunk" per invocation; schedules next swap out */
457static void
52040193 458storeDigestSwapOutStep(void *data)
12784378 459{
aa839030 460 StoreEntry *e = static_cast<StoreEntry *>(data);
7e3ce7b9 461 int chunk_size = Config.digest.swapout_chunk_size;
aa839030 462 assert(e == sd_state.rewrite_lock);
12784378 463 assert(e);
12784378 464 /* _add_ check that nothing bad happened while we were waiting @?@ @?@ */
62e76326 465
57d55dfa 466 if (sd_state.rewrite_offset + chunk_size > store_digest->mask_size)
62e76326 467 chunk_size = store_digest->mask_size - sd_state.rewrite_offset;
468
3900307b 469 e->append(store_digest->mask + sd_state.rewrite_offset, chunk_size);
62e76326 470
e4049756 471 debugs(71, 3, "storeDigestSwapOutStep: size: " << store_digest->mask_size <<
472 " offset: " << sd_state.rewrite_offset << " chunk: " <<
473 chunk_size << " bytes");
62e76326 474
12784378 475 sd_state.rewrite_offset += chunk_size;
62e76326 476
12784378 477 /* are we done ? */
57d55dfa 478 if (sd_state.rewrite_offset >= store_digest->mask_size)
62e76326 479 storeDigestRewriteFinish(e);
12784378 480 else
aa839030 481 eventAdd("storeDigestSwapOutStep", storeDigestSwapOutStep, data, 0.0, 1, false);
12784378 482}
483
484static void
b644367b 485storeDigestCBlockSwapOut(StoreEntry * e)
12784378 486{
12784378 487 memset(&sd_state.cblock, 0, sizeof(sd_state.cblock));
462f66d2 488 sd_state.cblock.ver.current = htons(CacheDigestVer.current);
489 sd_state.cblock.ver.required = htons(CacheDigestVer.required);
490 sd_state.cblock.capacity = htonl(store_digest->capacity);
491 sd_state.cblock.count = htonl(store_digest->count);
492 sd_state.cblock.del_count = htonl(store_digest->del_count);
493 sd_state.cblock.mask_size = htonl(store_digest->mask_size);
7e3ce7b9 494 sd_state.cblock.bits_per_entry = (unsigned char)
62e76326 495 Config.digest.bits_per_entry;
6168bccd 496 sd_state.cblock.hash_func_count = (unsigned char) CacheDigestHashFuncCount;
3900307b 497 e->append((char *) &sd_state.cblock, sizeof(sd_state.cblock));
8638fc66 498}
499
304b267e 500/* calculates digest capacity */
501static int
d6fd3381 502storeDigestCalcCap(void)
304b267e 503{
504 /*
505 * To-Do: Bloom proved that the optimal filter utilization is 50% (half of
26ac0430 506 * the bits are off). However, we do not have a formula to calculate the
304b267e 507 * number of _entries_ we want to pre-allocate for.
508 */
58d5c5dd
DK
509 const int hi_cap = Store::Root().maxSize() / Config.Store.avgObjectSize;
510 const int lo_cap = 1 + Store::Root().currentSize() / Config.Store.avgObjectSize;
528b2c61 511 const int e_count = StoreEntry::inUseCount();
26ac0430 512 int cap = e_count ? e_count :hi_cap;
bf8fe701 513 debugs(71, 2, "storeDigestCalcCap: have: " << e_count << ", want " << cap <<
514 " entries; limits: [" << lo_cap << ", " << hi_cap << "]");
62e76326 515
304b267e 516 if (cap < lo_cap)
62e76326 517 cap = lo_cap;
518
6168bccd 519 /* do not enforce hi_cap limit, average-based estimation may be wrong
520 *if (cap > hi_cap)
26ac0430 521 * cap = hi_cap;
6168bccd 522 */
523 return cap;
304b267e 524}
525
526/* returns true if we actually resized the digest */
527static int
d6fd3381 528storeDigestResize(void)
304b267e 529{
530 const int cap = storeDigestCalcCap();
531 int diff;
532 assert(store_digest);
533 diff = abs(cap - store_digest->capacity);
26ac0430
AJ
534 debugs(71, 2, "storeDigestResize: " <<
535 store_digest->capacity << " -> " << cap << "; change: " <<
bf8fe701 536 diff << " (" << xpercentInt(diff, store_digest->capacity) << "%)" );
304b267e 537 /* avoid minor adjustments */
62e76326 538
4b4cd312 539 if (diff <= store_digest->capacity / 10) {
bf8fe701 540 debugs(71, 2, "storeDigestResize: small change, will not resize.");
62e76326 541 return 0;
304b267e 542 } else {
bf8fe701 543 debugs(71, 2, "storeDigestResize: big change, resizing.");
62e76326 544 cacheDigestChangeCap(store_digest, cap);
545 return 1;
304b267e 546 }
547}
548
d6fd3381 549#endif /* USE_CACHE_DIGESTS */