]> git.ipfire.org Git - thirdparty/squid.git/blob - src/StoreIOState.h
merged from trunk
[thirdparty/squid.git] / src / StoreIOState.h
1
2 /*
3 * $Id: StoreIOState.h,v 1.10 2006/08/21 00:50:41 robertc Exp $
4 *
5 *
6 * SQUID Web Proxy Cache http://www.squid-cache.org/
7 * ----------------------------------------------------------
8 *
9 * Squid is the result of efforts by numerous individuals from
10 * the Internet community; see the CONTRIBUTORS file for full
11 * details. Many organizations have provided support for Squid's
12 * development; see the SPONSORS file for full details. Squid is
13 * Copyrighted (C) 2001 by the Regents of the University of
14 * California; see the COPYRIGHT file for full details. Squid
15 * incorporates software developed and/or copyrighted by other
16 * sources; see the CREDITS file for full details.
17 *
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2 of the License, or
21 * (at your option) any later version.
22 *
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
27 *
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
31 *
32 */
33
34 #ifndef SQUID_STOREIOSTATE_H
35 #define SQUID_STOREIOSTATE_H
36
37 #include "cbdata.h"
38 #include "RefCount.h"
39
40 class StoreIOState : public RefCountable
41 {
42
43 public:
44 typedef RefCount<StoreIOState> Pointer;
45
46 /*
47 * STRCB is the "store read callback". STRCB functions are
48 * passed to storeRead(). Examples of STRCB callbacks are:
49 * storeClientReadBody
50 * storeClientReadHeader
51 */
52 typedef void STRCB(void *their_data, const char *buf, ssize_t len, StoreIOState::Pointer self);
53
54 /*
55 * STFNCB is the "store file number callback." It is called
56 * when an underlying storage module has allocated the swap
57 * file number and also indicates that the swap file has been
58 * opened for reading or writing. STFNCB functions are passed
59 * to storeCreate() and storeOpen(). Examples of STFNCB callbacks
60 * are:
61 * storeSwapInFileNotify
62 * storeSwapOutFileNotify
63 */
64 typedef void STFNCB(void *their_data, int errflag, StoreIOState::Pointer self);
65
66 /*
67 * STIOCB is the "store close callback" for store files. It
68 * is called when the store file is closed. STIOCB functions
69 * are passed to storeCreate() and storeOpen(). Examples of
70 * STIOCB callbacks are:
71 * storeSwapOutFileClosed
72 * storeSwapInFileClosed
73 */
74 typedef void STIOCB(void *their_data, int errflag, StoreIOState::Pointer self);
75
76 /* StoreIOState does not get mempooled - it's children do */
77 void *operator new (size_t amount);
78 void operator delete (void *address);
79 virtual ~StoreIOState();
80
81 StoreIOState();
82
83 off_t offset() const;
84
85 virtual void read_(char *buf, size_t size, off_t offset, STRCB * callback, void *callback_data) = 0;
86 virtual void write(char const *buf, size_t size, off_t offset, FREE * free_func) = 0;
87 virtual void close() = 0;
88
89 sdirno swap_dirn;
90 sfileno swap_filen;
91 StoreEntry *e; /* Need this so the FS layers can play god */
92 mode_t mode;
93 off_t offset_; /* current on-disk offset pointer */
94 STFNCB *file_callback; /* called on delayed sfileno assignments */
95 STIOCB *callback;
96 void *callback_data;
97
98 struct
99 {
100 STRCB *callback;
101 void *callback_data;
102 } read;
103
104 struct
105 {
106 unsigned int closing:1; /* debugging aid */
107 } flags;
108 };
109
110 StoreIOState::Pointer storeCreate(StoreEntry *, StoreIOState::STFNCB *, StoreIOState::STIOCB *, void *);
111 StoreIOState::Pointer storeOpen(StoreEntry *, StoreIOState::STFNCB *, StoreIOState::STIOCB *, void *);
112 SQUIDCEXTERN void storeClose(StoreIOState::Pointer);
113 SQUIDCEXTERN void storeRead(StoreIOState::Pointer, char *, size_t, off_t, StoreIOState::STRCB *, void *);
114 SQUIDCEXTERN void storeIOWrite(StoreIOState::Pointer, char const *, size_t, off_t, FREE *);
115
116 #endif /* SQUID_STOREIOSTATE_H */