]> git.ipfire.org Git - thirdparty/squid.git/blame - src/fs/rock/RockIoState.h
Cleanup: Simplify MEMPROXY_CLASS_* macros
[thirdparty/squid.git] / src / fs / rock / RockIoState.h
CommitLineData
bbc27441
AJ
1/*
2 * Copyright (C) 1996-2014 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
e2851fe7
AR
9#ifndef SQUID_FS_ROCK_IO_STATE_H
10#define SQUID_FS_ROCK_IO_STATE_H
11
50dc81ec
AR
12#include "fs/rock/RockSwapDir.h"
13#include "MemBlob.h"
e2851fe7
AR
14
15class DiskFile;
16
9199139f
AR
17namespace Rock
18{
e2851fe7 19
93910d5c 20class DbCellHeader;
e2851fe7
AR
21class SwapDir;
22
23/// \ingroup Rock
24class IoState: public ::StoreIOState
25{
741c2986
AJ
26 MEMPROXY_CLASS(IoState);
27
e2851fe7
AR
28public:
29 typedef RefCount<IoState> Pointer;
30
50dc81ec 31 IoState(Rock::SwapDir::Pointer &aDir, StoreEntry *e, StoreIOState::STFNCB *cbFile, StoreIOState::STIOCB *cbIo, void *data);
e2851fe7
AR
32 virtual ~IoState();
33
34 void file(const RefCount<DiskFile> &aFile);
35
36 // ::StoreIOState API
37 virtual void read_(char *buf, size_t size, off_t offset, STRCB * callback, void *callback_data);
50dc81ec 38 virtual bool write(char const *buf, size_t size, off_t offset, FREE * free_func);
c728b6f9 39 virtual void close(int how);
e2851fe7 40
50dc81ec
AR
41 /// whether we are still waiting for the I/O results (i.e., not closed)
42 bool stillWaiting() const { return theFile != NULL; }
e2851fe7 43
5296bbd9
AR
44 /// forwards read data to the reader that initiated this I/O
45 void callReaderBack(const char *buf, int rlen);
46
50dc81ec
AR
47 /// called by SwapDir::writeCompleted() after the last write and on error
48 void finishedWriting(const int errFlag);
e2851fe7 49
50dc81ec
AR
50 /* one and only one of these will be set and locked; access via *Anchor() */
51 const Ipc::StoreMapAnchor *readableAnchor_; ///< starting point for reading
52 Ipc::StoreMapAnchor *writeableAnchor_; ///< starting point for writing
53
54 SlotId sidCurrent; ///< ID of the db slot currently being read or written
55
e2851fe7 56private:
50dc81ec
AR
57 const Ipc::StoreMapAnchor &readAnchor() const;
58 Ipc::StoreMapAnchor &writeAnchor();
59 const Ipc::StoreMapSlice &currentReadableSlice() const;
60
61 void tryWrite(char const *buf, size_t size, off_t offset);
62 size_t writeToBuffer(char const *buf, size_t size);
63 void writeToDisk(const SlotId nextSlot);
5296bbd9 64 void writeBufToDisk(const SlotId nextSlot, const bool eof);
50dc81ec 65 SlotId reserveSlotForWriting();
9d4e9cfb 66
e2851fe7
AR
67 void callBack(int errflag);
68
50dc81ec 69 Rock::SwapDir::Pointer dir; ///< swap dir that initiated I/O
93910d5c
AR
70 const size_t slotSize; ///< db cell size
71 int64_t objOffset; ///< object offset for current db slot
72
e2851fe7 73 RefCount<DiskFile> theFile; // "file" responsible for this I/O
50dc81ec 74 MemBlob theBuf; // use for write content accumulation only
e2851fe7
AR
75};
76
e2851fe7
AR
77} // namespace Rock
78
79#endif /* SQUID_FS_ROCK_IO_STATE_H */