/* * * SQUID Web Proxy Cache http://www.squid-cache.org/ * ---------------------------------------------------------- * * Squid is the result of efforts by numerous individuals from * the Internet community; see the CONTRIBUTORS file for full * details. Many organizations have provided support for Squid's * development; see the SPONSORS file for full details. Squid is * Copyrighted (C) 2001 by the Regents of the University of * California; see the COPYRIGHT file for full details. Squid * incorporates software developed and/or copyrighted by other * sources; see the CREDITS file for full details. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA. * */ #ifndef SQUID_STORECLIENT_H #define SQUID_STORECLIENT_H #include "dlink.h" #include "StoreIOBuffer.h" #include "StoreIOState.h" typedef void STCB(void *, StoreIOBuffer); /* store callback */ class StoreEntry; class StoreClient { public: virtual ~StoreClient () {} virtual void created (StoreEntry *newEntry) = 0; }; #if USE_DELAY_POOLS #include "DelayId.h" #endif /* keep track each client receiving data from that particular StoreEntry */ class store_client { public: void *operator new (size_t); void operator delete (void *); store_client(StoreEntry *); ~store_client(); bool memReaderHasLowerOffset(int64_t) const; int getType() const; void fail(); void callback(ssize_t len, bool error = false); void doCopy (StoreEntry *e); void readHeader(const char *buf, ssize_t len); void readBody(const char *buf, ssize_t len); void copy(StoreEntry *, StoreIOBuffer, STCB *, void *); void dumpStats(MemBuf * output, int clientNumber) const; int64_t cmp_offset; #if STORE_CLIENT_LIST_DEBUG void *owner; #endif StoreEntry *entry; /* ptr to the parent StoreEntry, argh! */ StoreIOState::Pointer swapin_sio; struct { unsigned int disk_io_pending:1; unsigned int store_copying:1; unsigned int copy_event_pending:1; } flags; #if USE_DELAY_POOLS DelayId delayId; void setDelayId(DelayId delay_id); #endif dlink_node node; /* Below here is private - do no alter outside storeClient calls */ StoreIOBuffer copyInto; private: void fileRead(); void scheduleDiskRead(); void scheduleMemRead(); void scheduleRead(); void startSwapin(); void unpackHeader(char const *buf, ssize_t len); int type; bool object_ok; /* Until we finish stuffing code into store_client */ public: struct Callback { Callback ():callback_handler(NULL), callback_data(NULL) {} Callback (STCB *, void *); bool pending() const; STCB *callback_handler; void *callback_data; } _callback; private: CBDATA_CLASS(store_client); }; void storeClientCopy(store_client *, StoreEntry *, StoreIOBuffer, STCB *, void *); store_client* storeClientListAdd(StoreEntry * e, void *data); int storeClientCopyPending(store_client *, StoreEntry * e, void *data); int storeUnregister(store_client * sc, StoreEntry * e, void *data); int storePendingNClients(const StoreEntry * e); int storeClientIsThisAClient(store_client * sc, void *someClient); #endif /* SQUID_STORECLIENT_H */