]> git.ipfire.org Git - thirdparty/squid.git/blame - src/fs/coss/StoreFScoss.cc
Renamed squid.h to squid-old.h and config.h to squid.h
[thirdparty/squid.git] / src / fs / coss / StoreFScoss.cc
CommitLineData
59b2d47f 1/*
262a0e14 2 * $Id$
59b2d47f 3 *
4 * DEBUG: section 47 Store Directory Routines
5 * AUTHOR: Robert Collins
6 *
7 * SQUID Web Proxy Cache http://www.squid-cache.org/
8 * ----------------------------------------------------------
9 *
10 * Squid is the result of efforts by numerous individuals from
11 * the Internet community; see the CONTRIBUTORS file for full
12 * details. Many organizations have provided support for Squid's
13 * development; see the SPONSORS file for full details. Squid is
14 * Copyrighted (C) 2001 by the Regents of the University of
15 * California; see the COPYRIGHT file for full details. Squid
16 * incorporates software developed and/or copyrighted by other
17 * sources; see the CREDITS file for full details.
18 *
19 * This program is free software; you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License as published by
21 * the Free Software Foundation; either version 2 of the License, or
22 * (at your option) any later version.
26ac0430 23 *
59b2d47f 24 * This program is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
26ac0430 28 *
59b2d47f 29 * You should have received a copy of the GNU General Public License
30 * along with this program; if not, write to the Free Software
31 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
32 *
33 * Copyright (c) 2003, Robert Collins <robertc@squid-cache.org>
34 */
35
f7f3304a 36#include "squid.h"
59b2d47f 37#include "StoreFileSystem.h"
b9ae18aa 38#include "StoreFScoss.h"
8822ebee 39#include "mgr/Registration.h"
1a224843 40#include "Store.h"
b9ae18aa 41#include "CossSwapDir.h"
42#include "store_coss.h"
59b2d47f 43
44StoreFScoss StoreFScoss::_instance;
45
b9ae18aa 46StoreFScoss &
59b2d47f 47StoreFScoss::GetInstance()
48{
49 return _instance;
50}
51
52StoreFScoss::StoreFScoss()
53{
54 FsAdd(*this);
6852be71 55 registerWithCacheManager();
59b2d47f 56}
57
58char const *
59StoreFScoss::type() const
60{
61 return "coss";
62}
63
64void
65StoreFScoss::done()
66{
b001e822 67 /* delete coss_index_pool;coss_index_pool = NULL; XXX Should be here? */
59b2d47f 68 initialised = false;
69}
70
71SwapDir *
72StoreFScoss::createSwapDir()
73{
74 SwapDir *result = new CossSwapDir;
75 return result;
76}
77
59b2d47f 78void
79StoreFScoss::setup()
80{
81 assert(!initialised);
82
04eb0689 83 coss_index_pool = memPoolCreate("COSS index data", sizeof(CossIndexNode));
59b2d47f 84 initialised = true;
85}
1a224843 86
62ee09ca 87void
15fab853 88StoreFScoss::registerWithCacheManager()
62ee09ca 89{
8822ebee 90 Mgr::RegisterAction("coss", "COSS Stats", Stats, 0, 1);
62ee09ca 91}
92
b9ae18aa 93void
94StoreFScoss::Stats(StoreEntry * sentry)
95{
96 GetInstance().stat(sentry);
97}
98
99void
100StoreFScoss::stat(StoreEntry *sentry)
101{
102 stats.stat(sentry);
103}
104
105void
106CossStats::stat(StoreEntry *sentry)
1a224843 107{
108 const char *tbl_fmt = "%10s %10d %10d %10d\n";
109 storeAppendPrintf(sentry, "\n OPS SUCCESS FAIL\n");
110 storeAppendPrintf(sentry, tbl_fmt,
b9ae18aa 111 "open", open.ops, open.success, open.fail);
1a224843 112 storeAppendPrintf(sentry, tbl_fmt,
b9ae18aa 113 "create", create.ops, create.success, create.fail);
1a224843 114 storeAppendPrintf(sentry, tbl_fmt,
b9ae18aa 115 "close", close.ops, close.success, close.fail);
1a224843 116 storeAppendPrintf(sentry, tbl_fmt,
b9ae18aa 117 "unlink", unlink.ops, unlink.success, unlink.fail);
1a224843 118 storeAppendPrintf(sentry, tbl_fmt,
b9ae18aa 119 "read", read.ops, read.success, read.fail);
1a224843 120 storeAppendPrintf(sentry, tbl_fmt,
b9ae18aa 121 "write", write.ops, write.success, write.fail);
1a224843 122 storeAppendPrintf(sentry, tbl_fmt,
b9ae18aa 123 "s_write", stripe_write.ops, stripe_write.success, stripe_write.fail);
1a224843 124
125 storeAppendPrintf(sentry, "\n");
b9ae18aa 126 storeAppendPrintf(sentry, "stripes: %d\n", stripes);
127 storeAppendPrintf(sentry, "alloc.alloc: %d\n", alloc.alloc);
128 storeAppendPrintf(sentry, "alloc.realloc: %d\n", alloc.realloc);
129 storeAppendPrintf(sentry, "alloc.collisions: %d\n", alloc.collisions);
130 storeAppendPrintf(sentry, "disk_overflows: %d\n", disk_overflows);
131 storeAppendPrintf(sentry, "stripe_overflows: %d\n", stripe_overflows);
132 storeAppendPrintf(sentry, "open_mem_hits: %d\n", open_mem_hits);
133 storeAppendPrintf(sentry, "open_mem_misses: %d\n", open_mem_misses);
1a224843 134}