]> git.ipfire.org Git - thirdparty/squid.git/blame - src/ESIElement.h
Summary: Change inline static initialiser to out-of-class.
[thirdparty/squid.git] / src / ESIElement.h
CommitLineData
43ae1d95 1/*
2 * $Id: ESIElement.h,v 1.1 2003/03/10 04:56:35 robertc Exp $
3 *
4 *
5 * SQUID Web Proxy Cache http://www.squid-cache.org/
6 * ----------------------------------------------------------
7 *
8 * Squid is the result of efforts by numerous individuals from
9 * the Internet community; see the CONTRIBUTORS file for full
10 * details. Many organizations have provided support for Squid's
11 * development; see the SPONSORS file for full details. Squid is
12 * Copyrighted (C) 2001 by the Regents of the University of
13 * California; see the COPYRIGHT file for full details. Squid
14 * incorporates software developed and/or copyrighted by other
15 * sources; see the CREDITS file for full details.
16 *
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
30 *
31 */
32
33#ifndef SQUID_ESIELEMENT_H
34#define SQUID_ESIELEMENT_H
35
36#include "RefCount.h"
37#include "ESISegment.h"
38
39typedef enum {
40 ESI_PROCESS_COMPLETE = 0,
41 ESI_PROCESS_PENDING_WONTFAIL = 1,
42 ESI_PROCESS_PENDING_MAYFAIL = 2,
43 ESI_PROCESS_FAILED = 3
44} esiProcessResult_t;
45
46class ESIElement;
47
48struct esiTreeParent : public RefCountable
49{
50 virtual void provideData (ESISegment::Pointer data, ESIElement * source)
51 {
52 /* make abstract when all functionality complete */
53 assert (0);
54 }
55
56 virtual void fail(ESIElement * source) {}
57
58 virtual ~esiTreeParent(){}}
59
60;
61
62typedef RefCount<esiTreeParent> esiTreeParentPtr;
63
64class esiVarState;
65
66struct ESIElement : public esiTreeParent
67{
68 typedef RefCount<ESIElement> Pointer;
69
70 /* the types we have */
71 enum ESIElementType_t {
72 ESI_ELEMENT_NONE,
73 ESI_ELEMENT_INCLUDE,
74 ESI_ELEMENT_COMMENT,
75 ESI_ELEMENT_REMOVE,
76 ESI_ELEMENT_TRY,
77 ESI_ELEMENT_ATTEMPT,
78 ESI_ELEMENT_EXCEPT,
79 ESI_ELEMENT_VARS,
80 ESI_ELEMENT_CHOOSE,
81 ESI_ELEMENT_WHEN,
82 ESI_ELEMENT_OTHERWISE
83 };
84 static ESIElementType_t IdentifyElement (const char *);
85 virtual bool addElement(ESIElement::Pointer)
86 {
87 /* Don't accept children */
88 debug (86,5)("ESIElement::addElement: Failed for %p\n",this);
89 return false;
90 }
91
92 virtual void render (ESISegment::Pointer) = 0;
93 /* process this element */
94 virtual esiProcessResult_t process (int dovars)
95 {
96 debug (86,5) ("esiProcessComplete: Processed %p\n",this);
97 return ESI_PROCESS_COMPLETE;
98 }
99
100 virtual void deleteSelf() const = 0;
101
102 virtual bool mayFail() const
103 {
104 return true;
105 }
106
107 virtual Pointer makeCacheable() const = 0;
108 virtual Pointer makeUsable(esiTreeParentPtr, esiVarState &) const = 0;
109
110 /* The top level no longer needs this element */
111 virtual void finish() = 0;
112};
113
114#endif /* SQUID_ESIELEMENT_H */