Cutelee 6.1.0
spaceless.cpp
1/*
2 This file is part of the Cutelee template system.
3
4 Copyright (c) 2009,2010 Stephen Kelly <steveire@gmail.com>
5
6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either version
9 2.1 of the Licence, or (at your option) any later version.
10
11 This library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public
17 License along with this library. If not, see <http://www.gnu.org/licenses/>.
18
19*/
20
21#include "spaceless.h"
22
23#include <QtCore/QRegularExpression>
24
25#include "parser.h"
26#include "util.h"
27
28SpacelessNodeFactory::SpacelessNodeFactory() {}
29
30Node *SpacelessNodeFactory::getNode(const QString &tagContent, Parser *p) const
31{
32 Q_UNUSED(tagContent)
33 auto n = new SpacelessNode(p);
34 auto list = p->parse(n, QStringLiteral("endspaceless"));
35 n->setList(list);
36 p->removeNextToken();
37 return n;
38}
39
40SpacelessNode::SpacelessNode(QObject *parent) : Node(parent) {}
41
42void SpacelessNode::setList(const NodeList &nodeList) { m_nodeList = nodeList; }
43
44QString SpacelessNode::stripSpacesBetweenTags(const QString &input)
45{
46 auto stripped = input;
47
48 static const QRegularExpression re(QStringLiteral(">\\s+<"));
49 stripped.replace(re, QStringLiteral("><"));
50 return stripped;
51}
52
54{
55 QString output;
56 QTextStream textStream(&output);
57 auto temp = stream->clone(&textStream);
58 m_nodeList.render(temp.get(), c);
59 (*stream) << markSafe(stripSpacesBetweenTags(output.trimmed()));
60}
The Context class holds the context to render a Template with.
Definition context.h:119
A list of Nodes with some convenience API for rendering them.
Definition node.h:148
void render(OutputStream *stream, Context *c) const
Definition node.cpp:177
Base class for all nodes.
Definition node.h:78
The OutputStream class is used to render templates to a QTextStream.
virtual std::shared_ptr< OutputStream > clone(QTextStream *stream) const
The Parser class processes a string template into a tree of nodes.
Definition parser.h:49
NodeList parse(Node *parent, const QStringList &stopAt={})
Definition parser.cpp:180
void removeNextToken()
Definition parser.cpp:297
Node * getNode(const QString &tagContent, Parser *p) const override
Definition spaceless.cpp:30
void render(OutputStream *stream, Context *c) const override
Definition spaceless.cpp:53
Cutelee::SafeString markSafe(const Cutelee::SafeString &input)
Definition util.cpp:90
Utility functions used throughout Cutelee.