]> git.ipfire.org Git - thirdparty/squid.git/blame - src/stmem.h
Cleanup: zap CVS Id tags
[thirdparty/squid.git] / src / stmem.h
CommitLineData
528b2c61 1
2/*
262a0e14 3 * $Id$
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.
26ac0430 22 *
528b2c61 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 *
528b2c61 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();
47f6e231 52 int64_t lowestOffset () const;
53 int64_t endOffset () const;
54 int64_t freeDataUpto (int64_t);
90703668 55 ssize_t copy (StoreIOBuffer const &) const;
47f6e231 56 bool hasContigousContentRange(Range<int64_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;
47f6e231 63 mem_node *getBlockContainingLocation (int64_t location) const;
ccd33084 64 /* access the contained nodes - easier than punning
26ac0430 65 * as a contianer ourselves
ccd33084 66 */
67 const Splay<mem_node *> &getNodes() const;
d06925a4 68 char * NodeGet(mem_node * aNode);
528b2c61 69
70 /* Only for use of MemObject */
71 void internalAppend(const char *data, int len);
42a503bd 72
73 static SplayNode<mem_node *>::SPLAYCMP NodeCompare;
62e76326 74
528b2c61 75private:
b8bad68c 76 void debugDump() const;
12d74f96 77 bool unlink(mem_node *aNode);
528b2c61 78 void makeAppendSpace();
79 int appendToNode(mem_node *aNode, const char *data, int maxLength);
80 void appendNode (mem_node *aNode);
47f6e231 81 size_t copyAvailable(mem_node *aNode, int64_t location, size_t amount, char *target) const;
528b2c61 82 bool unionNotEmpty (StoreIOBuffer const &);
47f6e231 83 mem_node *nodeToRecieve(int64_t offset);
84 size_t writeAvailable(mem_node *aNode, int64_t location, size_t amount, char const *source);
85 int64_t inmem_hi;
42a503bd 86 Splay<mem_node *> nodes;
528b2c61 87};
88
89#endif /* SQUID_STMEM_H */