]> git.ipfire.org Git - thirdparty/squid.git/blame - src/StoreClient.h
Removed squid-old.h
[thirdparty/squid.git] / src / StoreClient.h
CommitLineData
c8be6d7b 1
2/*
262a0e14 3 * $Id$
c8be6d7b 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.
26ac0430 22 *
c8be6d7b 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.
26ac0430 27 *
c8be6d7b 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_STORECLIENT_H
35#define SQUID_STORECLIENT_H
36
582c2af2 37#include "dlink.h"
c8be6d7b 38#include "StoreIOBuffer.h"
e877aaac 39#include "StoreIOState.h"
c8be6d7b 40
41typedef void STCB(void *, StoreIOBuffer); /* store callback */
42
3b13a8fd 43class StoreEntry;
e6ccf245 44
62e76326 45class StoreClient
46{
47
e6ccf245 48public:
62e76326 49 virtual ~StoreClient () {}
50
51 virtual void created (StoreEntry *newEntry) = 0;
e6ccf245 52};
e6ccf245 53
9a0a18de 54#if USE_DELAY_POOLS
b67e2c8c 55#include "DelayId.h"
56#endif
57
c8be6d7b 58/* keep track each client receiving data from that particular StoreEntry */
62e76326 59
60class store_client
61{
62
528b2c61 63public:
64 void *operator new (size_t);
b001e822 65 void operator delete (void *);
528b2c61 66 store_client(StoreEntry *);
2f44bd34 67 ~store_client();
47f6e231 68 bool memReaderHasLowerOffset(int64_t) const;
528b2c61 69 int getType() const;
70 void fail();
71 void callback(ssize_t len, bool error = false);
72 void doCopy (StoreEntry *e);
73 void readHeader(const char *buf, ssize_t len);
beae59b0 74 void readBody(const char *buf, ssize_t len);
528b2c61 75 void copy(StoreEntry *, StoreIOBuffer, STCB *, void *);
fcc35180 76 void dumpStats(MemBuf * output, int clientNumber) const;
528b2c61 77
47f6e231 78 int64_t cmp_offset;
c8be6d7b 79#if STORE_CLIENT_LIST_DEBUG
62e76326 80
c8be6d7b 81 void *owner;
82#endif
62e76326 83
c8be6d7b 84 StoreEntry *entry; /* ptr to the parent StoreEntry, argh! */
d3b3ab85 85 StoreIOState::Pointer swapin_sio;
62e76326 86
26ac0430 87 struct {
3d0ac046
HN
88 unsigned int disk_io_pending:1;
89 unsigned int store_copying:1;
90 unsigned int copy_event_pending:1;
91 } flags;
62e76326 92
9a0a18de 93#if USE_DELAY_POOLS
b67e2c8c 94 DelayId delayId;
95 void setDelayId(DelayId delay_id);
c8be6d7b 96#endif
62e76326 97
c8be6d7b 98 dlink_node node;
99 /* Below here is private - do no alter outside storeClient calls */
100 StoreIOBuffer copyInto;
62e76326 101
528b2c61 102private:
528b2c61 103 void fileRead();
4e70dae3 104 void scheduleDiskRead();
105 void scheduleMemRead();
106 void scheduleRead();
107 void startSwapin();
528b2c61 108 void unpackHeader(char const *buf, ssize_t len);
62e76326 109
528b2c61 110 int type;
111 bool object_ok;
62e76326 112
90703668 113 /* Until we finish stuffing code into store_client */
114
115public:
116
26ac0430
AJ
117 struct Callback {
118 Callback ():callback_handler(NULL), callback_data(NULL) {}
62e76326 119
120 Callback (STCB *, void *);
90703668 121 bool pending() const;
62e76326 122 STCB *callback_handler;
123 void *callback_data;
2fadd50d 124 } _callback;
c7bf588b
FC
125
126private:
127 CBDATA_CLASS(store_client);
c8be6d7b 128};
129
e6ccf245 130SQUIDCEXTERN void storeClientCopy(store_client *, StoreEntry *, StoreIOBuffer, STCB *, void *);
528b2c61 131
c8be6d7b 132
133#endif /* SQUID_STORECLIENT_H */