]> git.ipfire.org Git - thirdparty/squid.git/blob - src/fs/rock/RockStoreFileSystem.cc
9f7ef6b77feb4a36e579ef2d127e62e1d8c6f32d
[thirdparty/squid.git] / src / fs / rock / RockStoreFileSystem.cc
1 /*
2 * $Id$
3 *
4 * DEBUG: section 92 Storage File System
5 */
6
7 #include "config.h"
8 #include "fs/rock/RockStoreFileSystem.h"
9 #include "fs/rock/RockSwapDir.h"
10
11
12 Rock::StoreFileSystem::StoreFileSystem()
13 {
14 FsAdd(*this);
15 }
16
17 Rock::StoreFileSystem::~StoreFileSystem()
18 {
19 }
20
21 char const *
22 Rock::StoreFileSystem::type() const
23 {
24 return "rock";
25 }
26
27 SwapDir *
28 Rock::StoreFileSystem::createSwapDir()
29 {
30 return new SwapDir();
31 }
32
33 void
34 Rock::StoreFileSystem::done()
35 {
36 }
37
38 void
39 Rock::StoreFileSystem::registerWithCacheManager()
40 {
41 assert(false); // XXX: implement
42 }
43
44 void
45 Rock::StoreFileSystem::setup()
46 {
47 debugs(92,2, HERE << "Will use Rock FS");
48 }
49
50 void
51 Rock::StoreFileSystem::Stats(StoreEntry *sentry)
52 {
53 assert(false); // XXX: implement
54 }