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