1 /****************************************************************************
3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
7 ** This file is part of the tools applications of the Qt Toolkit.
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
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.
40 ****************************************************************************/
41 #include "codegenerator.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
) {
56 RepeaterGenerator
const * const repeater
= static_cast<RepeaterGenerator
const * const>(generator
);
57 return repeater
->currentRepeat
;
60 GroupGenerator
const * const group
= static_cast<GroupGenerator
const * const>(generator
);
61 return group
->currentRepeat
;
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
) {
77 RepeaterGenerator
const * const repeater
= static_cast<RepeaterGenerator
const * const>(generator
);
78 return repeater
->currentRepeat
;
81 GroupGenerator const * const group = static_cast<GroupGenerator const * const>(generator);
82 return group->currentRepeat;
92 QByteArray
RepeaterGenerator::generate(GeneratorStack
* const stack
)
94 GeneratorStacker
stacker(stack
, this);
96 for (int i
= repeatOffset
; i
< repeatCount
+ repeatOffset
; ++i
) {
98 generated
+= childGenerator
->generate(stack
);
103 QByteArray
GroupGenerator::generate(GeneratorStack
* const stack
)
105 const int repeatCount
= currentCount(stack
);
106 GeneratorStacker
stacker(stack
, this);
107 QByteArray generated
;
110 generated
+= prefix
->generate(stack
);
112 for (int i
= 1; i
<= repeatCount
; ++i
) {
114 generated
+= childGenerator
->generate(stack
);
115 if (i
!= repeatCount
)
116 generated
+= separator
->generate(stack
);
120 generated
+= postfix
->generate(stack
);
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
);