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 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
|
/****************************************************************************
**
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
**
** This file is part of the tools applications of the Qt Toolkit.
**
** This file may be used under the terms of the GNU General Public
** License versions 2.0 or 3.0 as published by the Free Software
** Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3
** included in the packaging of this file. Alternatively you may (at
** your option) use any later version of the GNU General Public
** License if such license has been publicly approved by Trolltech ASA
** (or its successors, if any) and the KDE Free Qt Foundation. In
** addition, as a special exception, Trolltech gives you certain
** additional rights. These rights are described in the Trolltech GPL
** Exception version 1.2, which can be found at
** http://www.trolltech.com/products/qt/gplexception/ and in the file
** GPL_EXCEPTION.txt in this package.
**
** Please review the following information to ensure GNU General
** Public Licensing requirements will be met:
** http://trolltech.com/products/qt/licenses/licensing/opensource/. If
** you are unsure which license is appropriate for your use, please
** review the following information:
** http://trolltech.com/products/qt/licenses/licensing/licensingoverview
** or contact the sales department at sales@trolltech.com.
**
** In addition, as a special exception, Trolltech, as the sole
** copyright holder for Qt Designer, grants users of the Qt/Eclipse
** Integration plug-in the right for the Qt/Eclipse Integration to
** link to functionality provided by Qt Designer and its related
** libraries.
**
** This file is provided "AS IS" with NO WARRANTY OF ANY KIND,
** INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE. Trolltech reserves all rights not expressly
** granted herein.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
****************************************************************************/
#include "driver.h"
#include "uic.h"
#include "ui4.h"
#include <QtCore/QRegExp>
#include <QtCore/QFileInfo>
#include <QtCore/QDebug>
#if defined(QT_BEGIN_NAMESPACE)
QT_BEGIN_NAMESPACE
#endif
Driver::Driver()
: m_stdout(stdout, QFile::WriteOnly | QFile::Text)
{
m_output = &m_stdout;
}
Driver::~Driver()
{
}
QString Driver::findOrInsertWidget(DomWidget *ui_widget)
{
if (!m_widgets.contains(ui_widget))
m_widgets.insert(ui_widget, unique(ui_widget->attributeName(), ui_widget->attributeClass()));
return m_widgets.value(ui_widget);
}
QString Driver::findOrInsertSpacer(DomSpacer *ui_spacer)
{
if (!m_spacers.contains(ui_spacer)) {
const QString name = ui_spacer->hasAttributeName() ? ui_spacer->attributeName() : QString();
m_spacers.insert(ui_spacer, unique(name, QLatin1String("QSpacerItem")));
}
return m_spacers.value(ui_spacer);
}
QString Driver::findOrInsertLayout(DomLayout *ui_layout)
{
if (!m_layouts.contains(ui_layout)) {
const QString name = ui_layout->hasAttributeName() ? ui_layout->attributeName() : QString();
m_layouts.insert(ui_layout, unique(name, ui_layout->attributeClass()));
}
return m_layouts.value(ui_layout);
}
QString Driver::findOrInsertLayoutItem(DomLayoutItem *ui_layoutItem)
{
switch (ui_layoutItem->kind()) {
case DomLayoutItem::Widget:
return findOrInsertWidget(ui_layoutItem->elementWidget());
case DomLayoutItem::Spacer:
return findOrInsertSpacer(ui_layoutItem->elementSpacer());
case DomLayoutItem::Layout:
return findOrInsertLayout(ui_layoutItem->elementLayout());
case DomLayoutItem::Unknown:
break;
}
Q_ASSERT( 0 );
return QString();
}
QString Driver::findOrInsertActionGroup(DomActionGroup *ui_group)
{
if (!m_actionGroups.contains(ui_group))
m_actionGroups.insert(ui_group, unique(ui_group->attributeName(), QLatin1String("QActionGroup")));
return m_actionGroups.value(ui_group);
}
QString Driver::findOrInsertAction(DomAction *ui_action)
{
if (!m_actions.contains(ui_action))
m_actions.insert(ui_action, unique(ui_action->attributeName(), QLatin1String("QAction")));
return m_actions.value(ui_action);
}
QString Driver::findOrInsertName(const QString &name)
{
return unique(name);
}
QString Driver::normalizedName(const QString &name)
{
QString result = name;
result.replace(QRegExp(QLatin1String("[^a-zA-Z_0-9]")), QString(QLatin1Char('_')));
return result;
}
QString Driver::unique(const QString &instanceName, const QString &className)
{
QString name;
bool alreadyUsed = false;
if (instanceName.size()) {
int id = 1;
name = instanceName;
name = normalizedName(name);
QString base = name;
while (m_nameRepository.contains(name)) {
alreadyUsed = true;
name = base + QString::number(id++);
}
} else if (className.size()) {
name = unique(qtify(className));
} else {
name = unique(QLatin1String("var"));
}
if (alreadyUsed && className.size()) {
fprintf(stderr, "Warning: name %s is already used\n", qPrintable(instanceName));
}
m_nameRepository.insert(name, true);
return name;
}
QString Driver::perlClassName(const QString &name)
{
QString qname = name;
if (qname.startsWith("Q3") && !qname.startsWith("Qt3::")) {
qname = QString("Qt3::") + qname.mid(2);
} else if (qname.startsWith("Qwt") && !qname.startsWith("Qwt::")) {
qname = QString("Qwt::") + qname.mid(3);
} else if (qname.startsWith("Q")) {
if (qname.startsWith("Qt::")) {
qname = QString("Qt::") + qname.mid(4);
}
else {
qname = QString("Qt::") + qname.mid(1);
}
} else if (qname.startsWith("K") && !qname.startsWith("KDE::")) {
qname = QString("KDE::") + qname.mid(1);
}
if (qname.contains("|Qt::")) {
qname.replace("|Qt::", "|Qt::");
}
if (!qname.contains("|Qt::")) {
qname.replace("|Q", "|Qt::");
} else if (!qname.contains("|KDE::")) {
qname.replace("|K", "|KDE::");
}
return qname;
}
QString Driver::qtify(const QString &name)
{
QString qname = name;
if (qname.at(0) == QLatin1Char('Q') || qname.at(0) == QLatin1Char('K'))
qname = qname.mid(1);
int i=0;
while (i < qname.length()) {
if (qname.at(i).toLower() != qname.at(i))
qname[i] = qname.at(i).toLower();
else
break;
++i;
}
return qname;
}
static bool isAnsiCCharacter(const QChar& c)
{
return c.toUpper() >= QLatin1Char('A') && c.toUpper() <= QLatin1Char('Z')
|| c.isDigit() || c == QLatin1Char('_');
}
QString Driver::headerFileName() const
{
QString name = m_option.outputFile;
if (name.isEmpty()) {
name = QLatin1String("ui_"); // ### use ui_ as prefix.
name.append(m_option.inputFile);
}
return headerFileName(name);
}
QString Driver::headerFileName(const QString &fileName)
{
if (fileName.isEmpty())
return headerFileName(QLatin1String("noname"));
QFileInfo info(fileName);
QString baseName = info.baseName();
// Transform into a valid C++ identifier
if (!baseName.isEmpty() && baseName.at(0).isDigit())
baseName.prepend(QLatin1Char('_'));
for (int i = 0; i < baseName.size(); ++i) {
QChar c = baseName.at(i);
if (!isAnsiCCharacter(c)) {
// Replace character by its unicode value
QString hex = QString::number(c.unicode(), 16);
baseName.replace(i, 1, QLatin1Char('_') + hex + QLatin1Char('_'));
i += hex.size() + 1;
}
}
return baseName.toUpper() + QLatin1String("_H");
}
bool Driver::printDependencies(const QString &fileName)
{
Q_ASSERT(m_option.dependencies == true);
m_option.inputFile = fileName;
Uic tool(this);
return tool.printDependencies();
}
bool Driver::uic(const QString &fileName, DomUI *ui, QTextStream *out)
{
m_option.inputFile = fileName;
QTextStream *oldOutput = m_output;
m_output = out != 0 ? out : &m_stdout;
Uic tool(this);
bool rtn = false;
#ifdef QT_UIC_PERL_GENERATOR
rtn = tool.plwrite(ui);
#else
Q_UNUSED(ui);
fprintf(stderr, "uic: option to generate perl code not compiled in [%s:%d]\n",
__FILE__, __LINE__);
#endif
m_output = oldOutput;
return rtn;
}
bool Driver::uic(const QString &fileName, QTextStream *out)
{
QFile f;
if (fileName.isEmpty())
f.open(stdin, QIODevice::ReadOnly);
else {
f.setFileName(fileName);
if (!f.open(QIODevice::ReadOnly))
return false;
}
m_option.inputFile = fileName;
QTextStream *oldOutput = m_output;
bool deleteOutput = false;
if (out) {
m_output = out;
} else {
#ifdef Q_WS_WIN
// As one might also redirect the output to a file on win,
// we should not create the textstream with QFile::Text flag.
// The redirected file is opened in TextMode and this will
// result in broken line endings as writing will replace \n again.
m_output = new QTextStream(stdout, QIODevice::WriteOnly);
#else
m_output = new QTextStream(stdout, QIODevice::WriteOnly | QFile::Text);
#endif
deleteOutput = true;
}
Uic tool(this);
bool rtn = tool.write(&f);
f.close();
if (deleteOutput)
delete m_output;
m_output = oldOutput;
return rtn;
}
void Driver::reset()
{
Q_ASSERT( m_output == 0 );
m_option = Option();
m_output = 0;
m_problems.clear();
QStringList m_problems;
m_widgets.clear();
m_spacers.clear();
m_layouts.clear();
m_actionGroups.clear();
m_actions.clear();
m_nameRepository.clear();
m_pixmaps.clear();
}
void Driver::insertPixmap(const QString &pixmap)
{
m_pixmaps.insert(pixmap, true);
}
bool Driver::containsPixmap(const QString &pixmap) const
{
return m_pixmaps.contains(pixmap);
}
DomWidget *Driver::widgetByName(const QString &name) const
{
return m_widgets.key(name);
}
DomSpacer *Driver::spacerByName(const QString &name) const
{
return m_spacers.key(name);
}
DomLayout *Driver::layoutByName(const QString &name) const
{
return m_layouts.key(name);
}
DomActionGroup *Driver::actionGroupByName(const QString &name) const
{
return m_actionGroups.key(name);
}
DomAction *Driver::actionByName(const QString &name) const
{
return m_actions.key(name);
}
#if defined(QT_END_NAMESPACE)
QT_END_NAMESPACE
#endif
|