summaryrefslogtreecommitdiffstats
path: root/framework/src/domain/mimetreeparser/otp/queuehtmlwriter.cpp
blob: ea17bf5c847845b17a9782400bb6a0282bbcbcb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/*
   Copyright (c) 2015 Sandro Knauß <sknauss@kde.org>

   This library is free software; you can redistribute it and/or modify it
   under the terms of the GNU Library General Public License as published by
   the Free Software Foundation; either version 2 of the License, or (at your
   option) any later version.

   This library 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 Library General Public
   License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to the
   Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
   02110-1301, USA.
*/

#include "queuehtmlwriter.h"

#include "mimetreeparser_debug.h"

#include<QByteArray>
#include<QString>

using namespace MimeTreeParser;

QueueHtmlWriter::QueueHtmlWriter(HtmlWriter *base)
    : HtmlWriter()
    , mBase(base)
{
}

QueueHtmlWriter::~QueueHtmlWriter()
{
}

void QueueHtmlWriter::setBase(HtmlWriter *base)
{
    mBase = base;
}

void QueueHtmlWriter::begin(const QString &css)
{
    Command cmd;
    cmd.type = Command::Begin;
    cmd.s = css;
    mQueue.append(cmd);
}

void QueueHtmlWriter::end()
{
    Command cmd;
    cmd.type = Command::End;
    mQueue.append(cmd);
}

void QueueHtmlWriter::reset()
{
    Command cmd;
    cmd.type = Command::Reset;
    mQueue.append(cmd);
}

void QueueHtmlWriter::write(const QString &str)
{
    Command cmd;
    cmd.type = Command::Write;
    cmd.s = str;
    mQueue.append(cmd);
}

void QueueHtmlWriter::queue(const QString &str)
{
    Command cmd;
    cmd.type = Command::Queue;
    cmd.s = str;
    mQueue.append(cmd);
}

void QueueHtmlWriter::flush()
{
    Command cmd;
    cmd.type = Command::Flush;
    mQueue.append(cmd);
}

void QueueHtmlWriter::replay()
{
    foreach (const auto &entry, mQueue) {
        switch (entry.type) {
        case Command::Begin:
            mBase->begin(entry.s);
            break;
        case Command::End:
            mBase->end();
            break;
        case Command::Reset:
            mBase->reset();
            break;
        case Command::Write:
            mBase->write(entry.s);
            break;
        case Command::Queue:
            mBase->queue(entry.s);
            break;
        case Command::Flush:
            mBase->flush();
            break;
        case Command::EmbedPart:
            mBase->embedPart(entry.b, entry.s);
            break;
        case Command::ExtraHead:
            mBase->extraHead(entry.s);
            break;
        }
    }
}

void QueueHtmlWriter::embedPart(const QByteArray &contentId, const QString &url)
{
    Command cmd;
    cmd.type = Command::EmbedPart;
    cmd.s = url;
    cmd.b = contentId;
    mQueue.append(cmd);
}
void QueueHtmlWriter::extraHead(const QString &extra)
{
    Command cmd;
    cmd.type = Command::ExtraHead;
    cmd.s = extra;
    mQueue.append(cmd);
}