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