]> git.ipfire.org Git - thirdparty/squid.git/blame - src/stmem.h
Summary: Implement mem_hdr debugging.
[thirdparty/squid.git] / src / stmem.h
CommitLineData
528b2c61 1
2/*
b8bad68c 3 * $Id: stmem.h,v 1.6 2003/09/22 08:50:51 robertc Exp $
528b2c61 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 *
42a503bd 32 * Copyright (c) 2003, Robert Collins <robertc@squid-cache.org>
528b2c61 33 */
34
35#ifndef SQUID_STMEM_H
36#define SQUID_STMEM_H
37
4c50505b 38#include "splay.h"
39#include "Range.h"
40
528b2c61 41class mem_node;
62e76326 42
528b2c61 43class StoreIOBuffer;
62e76326 44
45class mem_hdr
46{
47
528b2c61 48public:
4c50505b 49 mem_hdr();
50 ~mem_hdr();
528b2c61 51 void freeContent();
52 int lowestOffset () const;
53 off_t endOffset () const;
54 int freeDataUpto (int);
55 ssize_t copy (off_t, char *, size_t) const;
4c50505b 56 bool hasContigousContentRange(Range<size_t> const &range) const;
528b2c61 57 /* success or fail */
58 bool write (StoreIOBuffer const &);
42a503bd 59 void dump() const;
60 size_t size() const;
61 /* Not an iterator - thus the start, not begin() */
62 mem_node const *start() const;
63 mem_node *getBlockContainingLocation (size_t location) const;
ccd33084 64 /* access the contained nodes - easier than punning
65 * as a contianer ourselves
66 */
67 const Splay<mem_node *> &getNodes() const;
528b2c61 68
69 /* Only for use of MemObject */
70 void internalAppend(const char *data, int len);
42a503bd 71
72 static SplayNode<mem_node *>::SPLAYCMP NodeCompare;
62e76326 73
528b2c61 74private:
b8bad68c 75 void debugDump() const;
42a503bd 76 void unlink(mem_node *aNode);
528b2c61 77 void makeAppendSpace();
78 int appendToNode(mem_node *aNode, const char *data, int maxLength);
79 void appendNode (mem_node *aNode);
528b2c61 80 size_t copyAvailable(mem_node *aNode, size_t location, size_t amount, char *target) const;
81 bool unionNotEmpty (StoreIOBuffer const &);
528b2c61 82 mem_node *nodeToRecieve(off_t offset);
83 size_t writeAvailable(mem_node *aNode, size_t location, size_t amount, char const *source);
84 off_t inmem_hi;
42a503bd 85 Splay<mem_node *> nodes;
528b2c61 86};
87
88#endif /* SQUID_STMEM_H */