ca52a7a3f8bdee16843668b660fa9b5216e32583
[profile/ivi/qtdeclarative.git] / tools / qmlplugindump / qmlstreamwriter.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the tools applications of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "qmlstreamwriter.h"
43
44 #include <QtCore/QBuffer>
45 #include <QtCore/QStringList>
46
47 QmlStreamWriter::QmlStreamWriter(QByteArray *array)
48     : m_indentDepth(0)
49     , m_pendingLineLength(0)
50     , m_maybeOneline(false)
51     , m_stream(new QBuffer(array))
52 {
53     m_stream->open(QIODevice::WriteOnly);
54 }
55
56 void QmlStreamWriter::writeStartDocument()
57 {
58 }
59
60 void QmlStreamWriter::writeEndDocument()
61 {
62 }
63
64 void QmlStreamWriter::writeLibraryImport(const QString &uri, int majorVersion, int minorVersion, const QString &as)
65 {
66     m_stream->write(QString("import %1 %2.%3").arg(uri, QString::number(majorVersion), QString::number(minorVersion)).toUtf8());
67     if (!as.isEmpty())
68         m_stream->write(QString(" as %1").arg(as).toUtf8());
69     m_stream->write("\n");
70 }
71
72 void QmlStreamWriter::writeStartObject(const QString &component)
73 {
74     flushPotentialLinesWithNewlines();
75     writeIndent();
76     m_stream->write(QString("%1 {").arg(component).toUtf8());
77     ++m_indentDepth;
78     m_maybeOneline = true;
79 }
80
81 void QmlStreamWriter::writeEndObject()
82 {
83     if (m_maybeOneline && !m_pendingLines.isEmpty()) {
84         --m_indentDepth;
85         for (int i = 0; i < m_pendingLines.size(); ++i) {
86             m_stream->write(" ");
87             m_stream->write(m_pendingLines.at(i).trimmed());
88             if (i != m_pendingLines.size() - 1)
89                 m_stream->write(";");
90         }
91         m_stream->write(" }\n");
92         m_pendingLines.clear();
93         m_pendingLineLength = 0;
94         m_maybeOneline = false;
95     } else {
96         if (m_maybeOneline)
97             flushPotentialLinesWithNewlines();
98         --m_indentDepth;
99         writeIndent();
100         m_stream->write("}\n");
101     }
102 }
103
104 void QmlStreamWriter::writeScriptBinding(const QString &name, const QString &rhs)
105 {
106     writePotentialLine(QString("%1: %2").arg(name, rhs).toUtf8());
107 }
108
109 void QmlStreamWriter::writeArrayBinding(const QString &name, const QStringList &elements)
110 {
111     flushPotentialLinesWithNewlines();
112     writeIndent();
113     m_stream->write(QString("%1: [\n").arg(name).toUtf8());
114     ++m_indentDepth;
115     for (int i = 0; i < elements.size(); ++i) {
116         writeIndent();
117         m_stream->write(elements.at(i).toUtf8());
118         if (i != elements.size() - 1) {
119             m_stream->write(",\n");
120         } else {
121             m_stream->write("\n");
122         }
123     }
124     --m_indentDepth;
125     writeIndent();
126     m_stream->write("]\n");
127 }
128
129 void QmlStreamWriter::write(const QString &data)
130 {
131     flushPotentialLinesWithNewlines();
132     m_stream->write(data.toUtf8());
133 }
134
135 void QmlStreamWriter::writeScriptObjectLiteralBinding(const QString &name, const QList<QPair<QString, QString> > &keyValue)
136 {
137     flushPotentialLinesWithNewlines();
138     writeIndent();
139     m_stream->write(QString("%1: {\n").arg(name).toUtf8());
140     ++m_indentDepth;
141     for (int i = 0; i < keyValue.size(); ++i) {
142         const QString key = keyValue.at(i).first;
143         const QString value = keyValue.at(i).second;
144         writeIndent();
145         m_stream->write(QString("%1: %2").arg(key, value).toUtf8());
146         if (i != keyValue.size() - 1) {
147             m_stream->write(",\n");
148         } else {
149             m_stream->write("\n");
150         }
151     }
152     --m_indentDepth;
153     writeIndent();
154     m_stream->write("}\n");
155 }
156
157 void QmlStreamWriter::writeIndent()
158 {
159     m_stream->write(QByteArray(m_indentDepth * 4, ' '));
160 }
161
162 void QmlStreamWriter::writePotentialLine(const QByteArray &line)
163 {
164     m_pendingLines.append(line);
165     m_pendingLineLength += line.size();
166     if (m_pendingLineLength >= 80) {
167         flushPotentialLinesWithNewlines();
168     }
169 }
170
171 void QmlStreamWriter::flushPotentialLinesWithNewlines()
172 {
173     if (m_maybeOneline)
174         m_stream->write("\n");
175     foreach (const QByteArray &line, m_pendingLines) {
176         writeIndent();
177         m_stream->write(line);
178         m_stream->write("\n");
179     }
180     m_pendingLines.clear();
181     m_pendingLineLength = 0;
182     m_maybeOneline = false;
183 }