Merge branch 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into master-integration
[qt-netbsd.git] / tools / qtconcurrent / codegenerator / src / codegenerator.cpp
blob31902ae80f06ca75946cfb2bc4ad71f1fe9857c8
1 /****************************************************************************
2 **
3 ** Copyright (C) 2010 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 ** No Commercial Usage
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
16 ** GNU Lesser General Public License Usage
17 ** Alternatively, this file may be used under the terms of the GNU Lesser
18 ** General Public License version 2.1 as published by the Free Software
19 ** Foundation and appearing in the file LICENSE.LGPL included in the
20 ** packaging of this file. Please review the following information to
21 ** ensure the GNU Lesser General Public License version 2.1 requirements
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 ** In addition, as a special exception, Nokia gives you certain additional
25 ** rights. These rights are described in the Nokia Qt LGPL Exception
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
38 ** $QT_END_LICENSE$
40 ****************************************************************************/
41 #include "codegenerator.h"
42 #include <qdebug.h>
43 namespace CodeGenerator
46 //Convenience constructor so you can say Item("foo")
47 Item::Item(const char * const text) : generator(Text(QByteArray(text)).generator) {}
49 int BaseGenerator::currentCount(GeneratorStack * const stack) const
51 const int stackSize = stack->count();
52 for (int i = stackSize - 1; i >= 0; --i) {
53 BaseGenerator const * const generator = stack->at(i);
54 switch (generator->type) {
55 case RepeaterType: {
56 RepeaterGenerator const * const repeater = static_cast<RepeaterGenerator const * const>(generator);
57 return repeater->currentRepeat;
58 } break;
59 case GroupType: {
60 GroupGenerator const * const group = static_cast<GroupGenerator const * const>(generator);
61 return group->currentRepeat;
62 } break;
63 default:
64 break;
67 return -1;
70 int BaseGenerator::repeatCount(GeneratorStack * const stack) const
72 const int stackSize = stack->count();
73 for (int i = stackSize - 1; i >= 0; --i) {
74 BaseGenerator const * const generator = stack->at(i);
75 switch (generator->type) {
76 case RepeaterType: {
77 RepeaterGenerator const * const repeater = static_cast<RepeaterGenerator const * const>(generator);
78 return repeater->currentRepeat;
79 } break;
80 /* case GroupType: {
81 GroupGenerator const * const group = static_cast<GroupGenerator const * const>(generator);
82 return group->currentRepeat;
83 } break;
84 */
85 default:
86 break;
89 return -1;
92 QByteArray RepeaterGenerator::generate(GeneratorStack * const stack)
94 GeneratorStacker stacker(stack, this);
95 QByteArray generated;
96 for (int i = repeatOffset; i < repeatCount + repeatOffset; ++i) {
97 currentRepeat = i;
98 generated += childGenerator->generate(stack);
100 return generated;
103 QByteArray GroupGenerator::generate(GeneratorStack * const stack)
105 const int repeatCount = currentCount(stack);
106 GeneratorStacker stacker(stack, this);
107 QByteArray generated;
109 if (repeatCount > 0)
110 generated += prefix->generate(stack);
112 for (int i = 1; i <= repeatCount; ++i) {
113 currentRepeat = i;
114 generated += childGenerator->generate(stack);
115 if (i != repeatCount)
116 generated += separator->generate(stack);
119 if (repeatCount > 0)
120 generated += postfix->generate(stack);
122 return generated;
125 const Compound operator+(const Item &a, const Item &b)
127 return Compound(a, b);
130 const Compound operator+(const Item &a, const char * const text)
132 return Compound(a, Text(text));
135 const Compound operator+(const char * const text, const Item &b)
137 return Compound(Text(text), b);