1 /****************************************************************************
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
6 ** This file is part of the qmake application of the Qt Toolkit.
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
40 ****************************************************************************/
45 #include "cachekeys.h"
46 #include "generators/metamakefile.h"
48 #include <qdatetime.h>
50 #include <qfileinfo.h>
53 #include <qtextstream.h>
62 #include <sys/utsname.h>
63 #elif defined(Q_OS_WIN32)
70 #define QT_POPEN _popen
71 #define QT_PCLOSE _pclose
73 #define QT_POPEN popen
74 #define QT_PCLOSE pclose
80 enum ExpandFunc { E_MEMBER=1, E_FIRST, E_LAST, E_CAT, E_FROMFILE, E_EVAL, E_LIST,
81 E_SPRINTF, E_FORMAT_NUMBER, E_JOIN, E_SPLIT, E_BASENAME, E_DIRNAME, E_SECTION,
82 E_FIND, E_SYSTEM, E_UNIQUE, E_REVERSE, E_QUOTE, E_ESCAPE_EXPAND,
83 E_UPPER, E_LOWER, E_FILES, E_PROMPT, E_RE_ESCAPE, E_VAL_ESCAPE, E_REPLACE,
84 E_SIZE, E_SORT_DEPENDS, E_RESOLVE_DEPENDS, E_ENUMERATE_VARS,
85 E_SHADOWED, E_ABSOLUTE_PATH, E_RELATIVE_PATH, E_CLEAN_PATH, E_NATIVE_PATH,
87 QHash<QString, ExpandFunc> qmake_expandFunctions()
89 static QHash<QString, ExpandFunc> *qmake_expand_functions = 0;
90 if(!qmake_expand_functions) {
91 qmake_expand_functions = new QHash<QString, ExpandFunc>;
92 qmakeAddCacheClear(qmakeDeleteCacheClear<QHash<QString, ExpandFunc> >, (void**)&qmake_expand_functions);
93 qmake_expand_functions->insert("member", E_MEMBER);
94 qmake_expand_functions->insert("first", E_FIRST);
95 qmake_expand_functions->insert("last", E_LAST);
96 qmake_expand_functions->insert("cat", E_CAT);
97 qmake_expand_functions->insert("fromfile", E_FROMFILE);
98 qmake_expand_functions->insert("eval", E_EVAL);
99 qmake_expand_functions->insert("list", E_LIST);
100 qmake_expand_functions->insert("sprintf", E_SPRINTF);
101 qmake_expand_functions->insert("format_number", E_FORMAT_NUMBER);
102 qmake_expand_functions->insert("join", E_JOIN);
103 qmake_expand_functions->insert("split", E_SPLIT);
104 qmake_expand_functions->insert("basename", E_BASENAME);
105 qmake_expand_functions->insert("dirname", E_DIRNAME);
106 qmake_expand_functions->insert("section", E_SECTION);
107 qmake_expand_functions->insert("find", E_FIND);
108 qmake_expand_functions->insert("system", E_SYSTEM);
109 qmake_expand_functions->insert("unique", E_UNIQUE);
110 qmake_expand_functions->insert("reverse", E_REVERSE);
111 qmake_expand_functions->insert("quote", E_QUOTE);
112 qmake_expand_functions->insert("escape_expand", E_ESCAPE_EXPAND);
113 qmake_expand_functions->insert("upper", E_UPPER);
114 qmake_expand_functions->insert("lower", E_LOWER);
115 qmake_expand_functions->insert("re_escape", E_RE_ESCAPE);
116 qmake_expand_functions->insert("val_escape", E_VAL_ESCAPE);
117 qmake_expand_functions->insert("files", E_FILES);
118 qmake_expand_functions->insert("prompt", E_PROMPT);
119 qmake_expand_functions->insert("replace", E_REPLACE);
120 qmake_expand_functions->insert("size", E_SIZE);
121 qmake_expand_functions->insert("sort_depends", E_SORT_DEPENDS);
122 qmake_expand_functions->insert("resolve_depends", E_RESOLVE_DEPENDS);
123 qmake_expand_functions->insert("enumerate_vars", E_ENUMERATE_VARS);
124 qmake_expand_functions->insert("shadowed", E_SHADOWED);
125 qmake_expand_functions->insert("absolute_path", E_ABSOLUTE_PATH);
126 qmake_expand_functions->insert("relative_path", E_RELATIVE_PATH);
127 qmake_expand_functions->insert("clean_path", E_CLEAN_PATH);
128 qmake_expand_functions->insert("native_path", E_NATIVE_PATH);
129 qmake_expand_functions->insert("shell_quote", E_SHELL_QUOTE);
131 return *qmake_expand_functions;
134 enum TestFunc { T_REQUIRES=1, T_GREATERTHAN, T_LESSTHAN, T_EQUALS,
135 T_EXISTS, T_EXPORT, T_CLEAR, T_UNSET, T_EVAL, T_CONFIG, T_SYSTEM,
136 T_RETURN, T_BREAK, T_NEXT, T_DEFINED, T_CONTAINS, T_INFILE,
137 T_COUNT, T_ISEMPTY, T_INCLUDE, T_LOAD,
138 T_DEBUG, T_ERROR, T_MESSAGE, T_WARNING, T_LOG,
139 T_IF, T_OPTION, T_CACHE, T_MKPATH, T_WRITE_FILE, T_TOUCH };
140 QHash<QString, TestFunc> qmake_testFunctions()
142 static QHash<QString, TestFunc> *qmake_test_functions = 0;
143 if(!qmake_test_functions) {
144 qmake_test_functions = new QHash<QString, TestFunc>;
145 qmake_test_functions->insert("requires", T_REQUIRES);
146 qmake_test_functions->insert("greaterThan", T_GREATERTHAN);
147 qmake_test_functions->insert("lessThan", T_LESSTHAN);
148 qmake_test_functions->insert("equals", T_EQUALS);
149 qmake_test_functions->insert("isEqual", T_EQUALS);
150 qmake_test_functions->insert("exists", T_EXISTS);
151 qmake_test_functions->insert("export", T_EXPORT);
152 qmake_test_functions->insert("clear", T_CLEAR);
153 qmake_test_functions->insert("unset", T_UNSET);
154 qmake_test_functions->insert("eval", T_EVAL);
155 qmake_test_functions->insert("CONFIG", T_CONFIG);
156 qmake_test_functions->insert("if", T_IF);
157 qmake_test_functions->insert("isActiveConfig", T_CONFIG);
158 qmake_test_functions->insert("system", T_SYSTEM);
159 qmake_test_functions->insert("return", T_RETURN);
160 qmake_test_functions->insert("break", T_BREAK);
161 qmake_test_functions->insert("next", T_NEXT);
162 qmake_test_functions->insert("defined", T_DEFINED);
163 qmake_test_functions->insert("contains", T_CONTAINS);
164 qmake_test_functions->insert("infile", T_INFILE);
165 qmake_test_functions->insert("count", T_COUNT);
166 qmake_test_functions->insert("isEmpty", T_ISEMPTY);
167 qmake_test_functions->insert("include", T_INCLUDE);
168 qmake_test_functions->insert("load", T_LOAD);
169 qmake_test_functions->insert("debug", T_DEBUG);
170 qmake_test_functions->insert("error", T_ERROR);
171 qmake_test_functions->insert("message", T_MESSAGE);
172 qmake_test_functions->insert("warning", T_WARNING);
173 qmake_test_functions->insert("log", T_LOG);
174 qmake_test_functions->insert("option", T_OPTION);
175 qmake_test_functions->insert("cache", T_CACHE);
176 qmake_test_functions->insert("mkpath", T_MKPATH);
177 qmake_test_functions->insert("write_file", T_WRITE_FILE);
178 qmake_test_functions->insert("touch", T_TOUCH);
180 return *qmake_test_functions;
189 static QString cached_source_root;
190 static QString cached_build_root;
191 static QStringList cached_qmakepath;
192 static QStringList cached_qmakefeatures;
194 static QStringList *all_feature_roots[2] = { 0, 0 };
197 invalidateFeatureRoots()
199 for (int i = 0; i < 2; i++)
200 if (all_feature_roots[i])
201 all_feature_roots[i]->clear();
204 static QString remove_quotes(const QString &arg)
206 const ushort SINGLEQUOTE = '\'';
207 const ushort DOUBLEQUOTE = '"';
209 const QChar *arg_data = arg.data();
210 const ushort first = arg_data->unicode();
211 const int arg_len = arg.length();
212 if(first == SINGLEQUOTE || first == DOUBLEQUOTE) {
213 const ushort last = (arg_data+arg_len-1)->unicode();
215 return arg.mid(1, arg_len-2);
220 static QString varMap(const QString &x)
223 if(ret == "INTERFACES")
225 else if(ret == "QMAKE_POST_BUILD")
226 ret = "QMAKE_POST_LINK";
227 else if(ret == "TARGETDEPS")
228 ret = "POST_TARGETDEPS";
229 else if(ret == "LIBPATH")
230 ret = "QMAKE_LIBDIR";
231 else if(ret == "QMAKE_EXT_MOC")
232 ret = "QMAKE_EXT_CPP_MOC";
233 else if(ret == "QMAKE_MOD_MOC")
234 ret = "QMAKE_H_MOD_MOC";
235 else if(ret == "QMAKE_LFLAGS_SHAPP")
236 ret = "QMAKE_LFLAGS_APP";
237 else if(ret == "PRECOMPH")
238 ret = "PRECOMPILED_HEADER";
239 else if(ret == "PRECOMPCPP")
240 ret = "PRECOMPILED_SOURCE";
241 else if(ret == "INCPATH")
243 else if(ret == "QMAKE_EXTRA_WIN_COMPILERS" || ret == "QMAKE_EXTRA_UNIX_COMPILERS")
244 ret = "QMAKE_EXTRA_COMPILERS";
245 else if(ret == "QMAKE_EXTRA_WIN_TARGETS" || ret == "QMAKE_EXTRA_UNIX_TARGETS")
246 ret = "QMAKE_EXTRA_TARGETS";
247 else if(ret == "QMAKE_EXTRA_UNIX_INCLUDES")
248 ret = "QMAKE_EXTRA_INCLUDES";
249 else if(ret == "QMAKE_EXTRA_UNIX_VARIABLES")
250 ret = "QMAKE_EXTRA_VARIABLES";
251 else if(ret == "QMAKE_RPATH")
252 ret = "QMAKE_LFLAGS_RPATH";
253 else if(ret == "QMAKE_FRAMEWORKDIR")
254 ret = "QMAKE_FRAMEWORKPATH";
255 else if(ret == "QMAKE_FRAMEWORKDIR_FLAGS")
256 ret = "QMAKE_FRAMEWORKPATH_FLAGS";
257 else if(ret == "IN_PWD")
261 warn_msg(WarnDeprecated, "%s:%d: Variable %s is deprecated; use %s instead.",
262 parser.file.toLatin1().constData(), parser.line_no,
263 x.toLatin1().constData(), ret.toLatin1().constData());
267 static QStringList split_arg_list(const QString ¶ms)
272 const ushort LPAREN = '(';
273 const ushort RPAREN = ')';
274 const ushort SINGLEQUOTE = '\'';
275 const ushort DOUBLEQUOTE = '"';
276 const ushort BACKSLASH = '\\';
277 const ushort COMMA = ',';
278 const ushort SPACE = ' ';
279 //const ushort TAB = '\t';
281 const QChar *params_data = params.data();
282 const int params_len = params.length();
283 for(int last = 0; ;) {
284 while(last < params_len && (params_data[last].unicode() == SPACE
285 /*|| params_data[last].unicode() == TAB*/))
287 for(int x = last, parens = 0; ; x++) {
288 if(x == params_len) {
289 while(x > last && params_data[x-1].unicode() == SPACE)
291 args << params.mid(last, x - last);
292 // Could do a check for unmatched parens here, but split_value_list()
293 // is called on all our output, so mistakes will be caught anyway.
296 ushort unicode = params_data[x].unicode();
297 if(x != (int)params_len-1 && unicode == BACKSLASH &&
298 (params_data[x+1].unicode() == SINGLEQUOTE || params_data[x+1].unicode() == DOUBLEQUOTE)) {
299 x++; //get that 'escape'
300 } else if(quote && unicode == quote) {
302 } else if(!quote && (unicode == SINGLEQUOTE || unicode == DOUBLEQUOTE)) {
304 } else if(unicode == RPAREN) {
306 } else if(unicode == LPAREN) {
309 if(!parens && !quote && unicode == COMMA) {
312 while(x > prev && params_data[x-1].unicode() == SPACE)
314 args << params.mid(prev, x - prev);
321 static QStringList split_value_list(const QString &vals)
328 const ushort LPAREN = '(';
329 const ushort RPAREN = ')';
330 const ushort SINGLEQUOTE = '\'';
331 const ushort DOUBLEQUOTE = '"';
332 const ushort BACKSLASH = '\\';
335 const QChar *vals_data = vals.data();
336 const int vals_len = vals.length();
337 for(int x = 0; x < vals_len; x++) {
338 unicode = vals_data[x].unicode();
339 if(x != (int)vals_len-1 && unicode == BACKSLASH &&
340 (vals_data[x+1].unicode() == SINGLEQUOTE || vals_data[x+1].unicode() == DOUBLEQUOTE)) {
341 build += vals_data[x++]; //get that 'escape'
342 } else if(quote && unicode == quote) {
344 } else if(!quote && (unicode == SINGLEQUOTE || unicode == DOUBLEQUOTE)) {
346 } else if(unicode == RPAREN) {
348 } else if(unicode == LPAREN) {
352 if(!parens && !quote && (vals_data[x] == Option::field_sep)) {
356 build += vals_data[x];
362 warn_msg(WarnDeprecated, "%s:%d: Unmatched parentheses are deprecated.",
363 parser.file.toLatin1().constData(), parser.line_no);
364 // Could do a check for unmatched quotes here, but doVariableReplaceExpand()
365 // is called on all our output, so mistakes will be caught anyway.
369 //just a parsable entity
372 ParsableBlock() : ref_cnt(1) { }
373 virtual ~ParsableBlock() { }
378 Parse(const QString &t) : text(t){ pi = parser; }
380 QList<Parse> parselist;
382 inline int ref() { return ++ref_cnt; }
383 inline int deref() { return --ref_cnt; }
387 virtual bool continueBlock() = 0;
388 bool eval(QMakeProject *p, QHash<QString, QStringList> &place);
391 bool ParsableBlock::eval(QMakeProject *p, QHash<QString, QStringList> &place)
394 parser_info pi = parser;
395 const int block_count = p->scope_blocks.count();
399 for(int i = 0; i < parselist.count(); i++) {
400 parser = parselist.at(i).pi;
401 if(!(ret = p->parse(parselist.at(i).text, place)) || !continueBlock())
407 while(p->scope_blocks.count() > block_count)
408 p->scope_blocks.pop();
413 struct FunctionBlock : public ParsableBlock
415 FunctionBlock() : calling_place(0), scope_level(1), cause_return(false) { }
417 QHash<QString, QStringList> vars;
418 QHash<QString, QStringList> *calling_place;
419 QStringList return_value;
423 bool exec(const QList<QStringList> &args,
424 QMakeProject *p, QHash<QString, QStringList> &place, QStringList &functionReturn);
425 virtual bool continueBlock() { return !cause_return; }
428 bool FunctionBlock::exec(const QList<QStringList> &args,
429 QMakeProject *proj, QHash<QString, QStringList> &place,
430 QStringList &functionReturn)
434 calling_place = &place;
436 calling_place = &proj->variables();
438 return_value.clear();
439 cause_return = false;
443 vars = proj->variables(); // should be place so that local variables can be inherited
447 vars["ARGS"].clear();
448 for(int i = 0; i < args.count(); i++) {
449 vars["ARGS"] += args[i];
450 vars[QString::number(i+1)] = args[i];
452 bool ret = ParsableBlock::eval(proj, vars);
453 functionReturn = return_value;
457 return_value.clear();
463 struct IteratorBlock : public ParsableBlock
465 IteratorBlock() : scope_level(1), loop_forever(false), cause_break(false), cause_next(false) { }
474 Test(const QString &f, QStringList &a, bool i) : func(f), args(a), invert(i) { pi = parser; }
480 bool loop_forever, cause_break, cause_next;
483 bool exec(QMakeProject *p, QHash<QString, QStringList> &place);
484 virtual bool continueBlock() { return !cause_next && !cause_break; }
486 bool IteratorBlock::exec(QMakeProject *p, QHash<QString, QStringList> &place)
489 QStringList::Iterator it;
492 int iterate_count = 0;
494 IteratorBlock *saved_iterator = p->iterator;
498 while(loop_forever || it != list.end()) {
499 cause_next = cause_break = false;
500 if(!loop_forever && (*it).isEmpty()) { //ignore empty items
505 //set up the loop variable
507 if(!variable.isEmpty()) {
508 va = place[variable];
510 place[variable] = QStringList(QString::number(iterate_count));
512 place[variable] = QStringList(*it);
516 for(QList<Test>::Iterator test_it = test.begin(); test_it != test.end(); ++test_it) {
517 parser = (*test_it).pi;
518 succeed = p->doProjectTest((*test_it).func, (*test_it).args, place);
519 if((*test_it).invert)
525 ret = ParsableBlock::eval(p, place);
526 //restore the variable in the map
527 if(!variable.isEmpty())
528 place[variable] = va;
533 if(!ret || cause_break)
538 p->iterator = saved_iterator;
542 QMakeProject::ScopeBlock::~ScopeBlock()
550 static void qmake_error_msg(const QString &msg)
552 fprintf(stderr, "%s:%d: %s\n", parser.file.toLatin1().constData(), parser.line_no,
553 msg.toLatin1().constData());
557 1) environment variable QMAKEFEATURES (as separated by colons)
558 2) property variable QMAKEFEATURES (as separated by colons)
559 3) <project_root> (where .qmake.cache lives) + FEATURES_DIR
560 4) environment variable QMAKEPATH (as separated by colons) + /mkspecs/FEATURES_DIR
561 5) your QMAKESPEC/features dir
562 6) your data_install/mkspecs/FEATURES_DIR
563 7) your QMAKESPEC/../FEATURES_DIR dir
565 FEATURES_DIR is defined as:
567 1) features/(unix|win32|macx)/
570 QStringList QMakeProject::qmakeFeaturePaths()
572 const QString mkspecs_concat = QLatin1String("/mkspecs");
573 const QString base_concat = QLatin1String("/features");
575 foreach (const QString &sfx, values("QMAKE_PLATFORM"))
576 concat << base_concat + QLatin1Char('/') + sfx;
577 concat << base_concat;
579 QStringList feature_roots = splitPathList(QString::fromLocal8Bit(qgetenv("QMAKEFEATURES")));
580 feature_roots += cached_qmakefeatures;
582 feature_roots += splitPathList(prop->value("QMAKEFEATURES"));
583 QStringList feature_bases;
584 if (!cached_build_root.isEmpty())
585 feature_bases << cached_build_root;
586 if (!cached_source_root.isEmpty())
587 feature_bases << cached_source_root;
588 QStringList qmakepath = splitPathList(QString::fromLocal8Bit(qgetenv("QMAKEPATH")));
589 qmakepath += cached_qmakepath;
590 foreach (const QString &path, qmakepath)
591 feature_bases << (path + mkspecs_concat);
592 if (!real_spec.isEmpty()) {
593 // The spec is already platform-dependent, so no subdirs here.
594 feature_roots << real_spec + base_concat;
596 // Also check directly under the root directory of the mkspecs collection
597 QFileInfo specfi(real_spec);
598 QDir specrootdir(specfi.absolutePath());
599 while (!specrootdir.isRoot()) {
600 const QString specrootpath = specrootdir.path();
601 if (specrootpath.endsWith(mkspecs_concat)) {
602 if (QFile::exists(specrootpath + base_concat))
603 feature_bases << specrootpath;
609 feature_bases << (QLibraryInfo::rawLocation(QLibraryInfo::HostDataPath,
610 QLibraryInfo::EffectivePaths) + mkspecs_concat);
611 foreach (const QString &fb, feature_bases)
612 foreach (const QString &cc, concat)
613 feature_roots << (fb + cc);
614 feature_roots.removeDuplicates();
617 foreach (const QString &root, feature_roots)
618 if (QFileInfo(root).exists())
623 QStringList qmake_mkspec_paths()
626 const QString concat = QLatin1String("/mkspecs");
628 QStringList qmakepath = splitPathList(QString::fromLocal8Bit(qgetenv("QMAKEPATH")));
629 qmakepath += cached_qmakepath;
630 foreach (const QString &path, qmakepath)
631 ret << (path + concat);
632 if (!cached_build_root.isEmpty())
633 ret << cached_build_root + concat;
634 if (!cached_source_root.isEmpty())
635 ret << cached_source_root + concat;
636 ret << QLibraryInfo::rawLocation(QLibraryInfo::HostDataPath, QLibraryInfo::EffectivePaths) + concat;
637 ret.removeDuplicates();
643 setTemplate(QStringList &varlist)
645 if (!Option::user_template.isEmpty()) { // Don't permit override
646 varlist = QStringList(Option::user_template);
648 if (varlist.isEmpty())
651 varlist.erase(varlist.begin() + 1, varlist.end());
653 if (!Option::user_template_prefix.isEmpty()
654 && !varlist.first().startsWith(Option::user_template_prefix)) {
655 varlist.first().prepend(Option::user_template_prefix);
659 QMakeProject::~QMakeProject()
668 QMakeProject::init(QMakeProperty *p)
671 prop = new QMakeProperty;
682 QMakeProject::cleanup()
684 for (QHash<QString, FunctionBlock*>::iterator it = replaceFunctions.begin(); it != replaceFunctions.end(); ++it)
685 if (!it.value()->deref())
687 replaceFunctions.clear();
688 for (QHash<QString, FunctionBlock*>::iterator it = testFunctions.begin(); it != testFunctions.end(); ++it)
689 if (!it.value()->deref())
691 testFunctions.clear();
694 // Duplicate project. It is *not* allowed to call the complex read() functions on the copy.
695 QMakeProject::QMakeProject(QMakeProject *p, const QHash<QString, QStringList> *_vars)
697 init(p->properties());
698 vars = _vars ? *_vars : p->variables();
699 host_build = p->host_build;
700 for(QHash<QString, FunctionBlock*>::iterator it = p->replaceFunctions.begin(); it != p->replaceFunctions.end(); ++it) {
702 replaceFunctions.insert(it.key(), it.value());
704 for(QHash<QString, FunctionBlock*>::iterator it = p->testFunctions.begin(); it != p->testFunctions.end(); ++it) {
706 testFunctions.insert(it.key(), it.value());
711 QMakeProject::reset()
713 // scope_blocks starts with one non-ignoring entity
714 scope_blocks.clear();
715 scope_blocks.push(ScopeBlock());
718 backslashWarned = false;
719 need_restart = false;
723 QMakeProject::parse(const QString &t, QHash<QString, QStringList> &place, int numLines)
725 // To preserve the integrity of any UTF-8 characters in .pro file, temporarily replace the
726 // non-breaking space (0xA0) characters with another non-space character, so that
727 // QString::simplified() call will not replace it with space.
728 // Note: There won't be any two byte characters in .pro files, so 0x10A0 should be a safe
729 // replacement character.
730 static QChar nbsp(0xA0);
731 static QChar nbspFix(0x01A0);
733 if (t.indexOf(nbsp) != -1) {
735 s.replace(nbsp, nbspFix);
737 s.replace(nbspFix, nbsp);
742 int hash_mark = s.indexOf("#");
743 if(hash_mark != -1) //good bye comments
744 s = s.left(hash_mark);
745 if(s.isEmpty()) // blank_line
748 if(scope_blocks.top().ignore) {
749 bool continue_parsing = false;
750 // adjust scope for each block which appears on a single line
751 for(int i = 0; i < s.length(); i++) {
753 scope_blocks.push(ScopeBlock(true));
754 } else if(s[i] == '}') {
755 if(scope_blocks.count() == 1) {
756 fprintf(stderr, "Braces mismatch %s:%d\n", parser.file.toLatin1().constData(), parser.line_no);
759 ScopeBlock sb = scope_blocks.pop();
761 sb.iterate->exec(this, place);
765 if(!scope_blocks.top().ignore) {
766 debug_msg(1, "Project Parser: %s:%d : Leaving block %d", parser.file.toLatin1().constData(),
767 parser.line_no, scope_blocks.count()+1);
768 s = s.mid(i+1).trimmed();
769 continue_parsing = !s.isEmpty();
774 if(!continue_parsing) {
775 debug_msg(1, "Project Parser: %s:%d : Ignored due to block being false.",
776 parser.file.toLatin1().constData(), parser.line_no);
784 const QChar *d = s.unicode();
785 bool function_finished = false;
786 while(d_off < s.length()) {
787 if(*(d+d_off) == QLatin1Char('}')) {
788 function->scope_level--;
789 if(!function->scope_level) {
790 function_finished = true;
793 } else if(*(d+d_off) == QLatin1Char('{')) {
794 function->scope_level++;
796 append += *(d+d_off);
799 if(!append.isEmpty())
800 function->parselist.append(IteratorBlock::Parse(append));
801 if(function_finished) {
803 s = QString(d+d_off, s.length()-d_off);
807 } else if(IteratorBlock *it = scope_blocks.top().iterate) {
810 const QChar *d = s.unicode();
811 bool iterate_finished = false;
812 while(d_off < s.length()) {
813 if(*(d+d_off) == QLatin1Char('}')) {
815 if(!it->scope_level) {
816 iterate_finished = true;
819 } else if(*(d+d_off) == QLatin1Char('{')) {
822 append += *(d+d_off);
825 if(!append.isEmpty())
826 scope_blocks.top().iterate->parselist.append(IteratorBlock::Parse(append));
827 if(iterate_finished) {
828 scope_blocks.top().iterate = 0;
829 bool ret = it->exec(this, place);
839 QString scope, var, op;
841 #define SKIP_WS(d, o, l) while(o < l && (*(d+o) == QLatin1Char(' ') || *(d+o) == QLatin1Char('\t'))) ++o
842 const QChar *d = s.unicode();
844 SKIP_WS(d, d_off, s.length());
845 IteratorBlock *iterator = 0;
846 bool scope_failed = false, else_line = false, or_op=false;
848 int parens = 0, scope_count=0, start_block = 0;
849 while(d_off < s.length()) {
851 if(*(d+d_off) == QLatin1Char('='))
853 if(*(d+d_off) == QLatin1Char('+') || *(d+d_off) == QLatin1Char('-') ||
854 *(d+d_off) == QLatin1Char('*') || *(d+d_off) == QLatin1Char('~')) {
855 if(*(d+d_off+1) == QLatin1Char('=')) {
857 } else if(*(d+d_off+1) == QLatin1Char(' ')) {
858 const QChar *k = d+d_off+1;
860 SKIP_WS(k, k_off, s.length()-d_off);
861 if(*(k+k_off) == QLatin1Char('=')) {
863 qmake_error_msg(QString(d+d_off, 1) + "must be followed immediately by =");
870 if(!quote.isNull()) {
871 if(*(d+d_off) == quote)
873 } else if(*(d+d_off) == '(') {
875 } else if(*(d+d_off) == ')') {
877 } else if(*(d+d_off) == '"' /*|| *(d+d_off) == '\''*/) {
881 if(!parens && quote.isNull() &&
882 (*(d+d_off) == QLatin1Char(':') || *(d+d_off) == QLatin1Char('{') ||
883 *(d+d_off) == QLatin1Char(')') || *(d+d_off) == QLatin1Char('|'))) {
885 scope = var.trimmed();
886 if(*(d+d_off) == QLatin1Char(')'))
887 scope += *(d+d_off); // need this
890 bool test = scope_failed;
891 if(scope.isEmpty()) {
893 } else if(scope.toLower() == "else") { //else is a builtin scope here as it modifies state
894 if(scope_count != 1 || scope_blocks.top().else_status == ScopeBlock::TestNone) {
895 qmake_error_msg(("Unexpected " + scope + " ('" + s + "')").toLatin1());
899 test = (scope_blocks.top().else_status == ScopeBlock::TestSeek);
900 debug_msg(1, "Project Parser: %s:%d : Else%s %s.", parser.file.toLatin1().constData(), parser.line_no,
901 scope == "else" ? "" : QString(" (" + scope + ")").toLatin1().constData(),
902 test ? "considered" : "excluded");
904 QString comp_scope = scope;
905 bool invert_test = (comp_scope.at(0) == QLatin1Char('!'));
907 comp_scope = comp_scope.mid(1);
908 int lparen = comp_scope.indexOf('(');
909 if(or_op == scope_failed) {
910 if(lparen != -1) { // if there is an lparen in the scope, it IS a function
911 int rparen = comp_scope.lastIndexOf(')');
913 qmake_error_msg("Function missing right paren: " + comp_scope);
916 QString func = comp_scope.left(lparen);
917 QStringList args = split_arg_list(comp_scope.mid(lparen+1, rparen - lparen - 1));
919 fprintf(stderr, "%s:%d: No tests can come after a function definition!\n",
920 parser.file.toLatin1().constData(), parser.line_no);
922 } else if(func == "for") { //for is a builtin function here, as it modifies state
923 if(args.count() > 2 || args.count() < 1) {
924 fprintf(stderr, "%s:%d: for(iterate, list) requires two arguments.\n",
925 parser.file.toLatin1().constData(), parser.line_no);
927 } else if(iterator) {
928 fprintf(stderr, "%s:%d unexpected nested for()\n",
929 parser.file.toLatin1().constData(), parser.line_no);
933 iterator = new IteratorBlock;
935 if(args.count() == 1) {
936 doVariableReplace(args[0], place);
938 if(args[0] != "ever") {
941 fprintf(stderr, "%s:%d: for(iterate, list) requires two arguments.\n",
942 parser.file.toLatin1().constData(), parser.line_no);
946 } else if(args.count() == 2) {
947 iterator->variable = args[0];
948 doVariableReplace(args[1], place);
951 QStringList list = place[it_list];
953 if(it_list == "forever") {
954 iterator->loop_forever = true;
956 int dotdot = it_list.indexOf("..");
959 int start = it_list.left(dotdot).toInt(&ok);
961 int end = it_list.mid(dotdot+2).toInt(&ok);
964 for(int i = start; i <= end; i++)
965 list << QString::number(i);
967 for(int i = start; i >= end; i--)
968 list << QString::number(i);
975 iterator->list = list;
977 } else if(iterator) {
978 iterator->test.append(IteratorBlock::Test(func, args, invert_test));
980 } else if(func == "defineTest" || func == "defineReplace") {
981 if(!function_blocks.isEmpty()) {
983 "%s:%d: cannot define a function within another definition.\n",
984 parser.file.toLatin1().constData(), parser.line_no);
987 if(args.count() != 1) {
988 fprintf(stderr, "%s:%d: %s(function_name) requires one argument.\n",
989 parser.file.toLatin1().constData(), parser.line_no, func.toLatin1().constData());
992 QHash<QString, FunctionBlock*> *map = 0;
993 if(func == "defineTest")
994 map = &testFunctions;
996 map = &replaceFunctions;
998 if(!map || map->contains(args[0])) {
999 fprintf(stderr, "%s:%d: Function[%s] multiply defined.\n",
1000 parser.file.toLatin1().constData(), parser.line_no, args[0].toLatin1().constData());
1004 function = new FunctionBlock;
1005 map->insert(args[0], function);
1008 test = doProjectTest(func, args, place);
1009 if(*(d+d_off) == QLatin1Char(')') && d_off == s.length()-1) {
1012 scope_blocks.top().else_status =
1013 (test ? ScopeBlock::TestFound : ScopeBlock::TestSeek);
1014 return true; // assume we are done
1018 QString cscope = comp_scope.trimmed();
1019 doVariableReplace(cscope, place);
1020 test = isActiveConfig(cscope.trimmed(), true, &place);
1026 if(!test && !scope_failed)
1027 debug_msg(1, "Project Parser: %s:%d : Test (%s) failed.", parser.file.toLatin1().constData(),
1028 parser.line_no, scope.toLatin1().constData());
1030 scope_failed = !test;
1031 or_op = (*(d+d_off) == QLatin1Char('|'));
1033 if(*(d+d_off) == QLatin1Char('{')) { // scoping block
1036 for(int off = 0, braces = 0; true; ++off) {
1037 if(*(d+d_off+off) == QLatin1Char('{'))
1039 else if(*(d+d_off+off) == QLatin1Char('}') && braces)
1041 if(!braces || d_off+off == s.length()) {
1042 iterator->parselist.append(s.mid(d_off, off-1));
1044 iterator->scope_level += braces-1;
1051 } else if(!parens && *(d+d_off) == QLatin1Char('}')) {
1054 } else if(!scope_blocks.count()) {
1055 warn_msg(WarnParser, "Possible braces mismatch %s:%d", parser.file.toLatin1().constData(), parser.line_no);
1057 if(scope_blocks.count() == 1) {
1058 fprintf(stderr, "Braces mismatch %s:%d\n", parser.file.toLatin1().constData(), parser.line_no);
1061 debug_msg(1, "Project Parser: %s:%d : Leaving block %d", parser.file.toLatin1().constData(),
1062 parser.line_no, scope_blocks.count());
1063 ScopeBlock sb = scope_blocks.pop();
1065 sb.iterate->exec(this, place);
1072 var = var.trimmed();
1074 if(!else_line || (else_line && !scope_failed))
1075 scope_blocks.top().else_status = (!scope_failed ? ScopeBlock::TestFound : ScopeBlock::TestSeek);
1077 ScopeBlock next_block(scope_failed);
1078 next_block.iterate = iterator;
1080 next_block.else_status = ScopeBlock::TestNone;
1081 else if(scope_failed)
1082 next_block.else_status = ScopeBlock::TestSeek;
1084 next_block.else_status = ScopeBlock::TestFound;
1085 scope_blocks.push(next_block);
1086 debug_msg(1, "Project Parser: %s:%d : Entering block %d (%d). [%s]", parser.file.toLatin1().constData(),
1087 parser.line_no, scope_blocks.count(), scope_failed, s.toLatin1().constData());
1088 } else if(iterator) {
1089 iterator->parselist.append(QString(var+s.mid(d_off)));
1090 bool ret = iterator->exec(this, place);
1095 if((!scope_count && !var.isEmpty()) || (scope_count == 1 && else_line))
1096 scope_blocks.top().else_status = ScopeBlock::TestNone;
1097 if(d_off == s.length()) {
1098 if(!var.trimmed().isEmpty())
1099 qmake_error_msg(("Parse Error ('" + s + "')").toLatin1());
1100 return var.isEmpty(); // allow just a scope
1103 SKIP_WS(d, d_off, s.length());
1104 for(; d_off < s.length() && op.indexOf('=') == -1; op += *(d+(d_off++)))
1106 op.replace(QRegExp("\\s"), "");
1108 SKIP_WS(d, d_off, s.length());
1109 QString vals = s.mid(d_off); // vals now contains the space separated list of values
1110 int rbraces = vals.count('}'), lbraces = vals.count('{');
1111 if(scope_blocks.count() > 1 && rbraces - lbraces == 1 && vals.endsWith('}')) {
1112 debug_msg(1, "Project Parser: %s:%d : Leaving block %d", parser.file.toLatin1().constData(),
1113 parser.line_no, scope_blocks.count());
1114 ScopeBlock sb = scope_blocks.pop();
1116 sb.iterate->exec(this, place);
1117 vals.truncate(vals.length()-1);
1118 } else if(rbraces != lbraces) {
1119 warn_msg(WarnParser, "Possible braces mismatch {%s} %s:%d",
1120 vals.toLatin1().constData(), parser.file.toLatin1().constData(), parser.line_no);
1123 return true; // oh well
1126 doVariableReplace(var, place);
1127 var = varMap(var); //backwards compatibility
1129 if(vals.contains('=') && numLines > 1)
1130 warn_msg(WarnParser, "Possible accidental line continuation: {%s} at %s:%d",
1131 var.toLatin1().constData(), parser.file.toLatin1().constData(), parser.line_no);
1133 QStringList &varlist = place[var]; // varlist is the list in the symbol table
1135 if(Option::debug_level >= 1) {
1136 QString tmp_vals = vals;
1137 doVariableReplace(tmp_vals, place);
1138 debug_msg(1, "Project Parser: %s:%d :%s: :%s: (%s)", parser.file.toLatin1().constData(), parser.line_no,
1139 var.toLatin1().constData(), op.toLatin1().constData(), tmp_vals.toLatin1().constData());
1142 // now do the operation
1144 doVariableReplace(vals, place);
1145 if(vals.length() < 4 || vals.at(0) != 's') {
1146 qmake_error_msg(("~= operator only can handle s/// function ('" +
1147 s + "')").toLatin1());
1150 QChar sep = vals.at(1);
1151 QStringList func = vals.split(sep);
1152 if(func.count() < 3 || func.count() > 4) {
1153 qmake_error_msg(("~= operator only can handle s/// function ('" +
1154 s + "')").toLatin1());
1157 bool global = false, case_sense = true, quote = false;
1158 if(func.count() == 4) {
1159 global = func[3].indexOf('g') != -1;
1160 case_sense = func[3].indexOf('i') == -1;
1161 quote = func[3].indexOf('q') != -1;
1163 QString from = func[1], to = func[2];
1165 from = QRegExp::escape(from);
1166 QRegExp regexp(from, case_sense ? Qt::CaseSensitive : Qt::CaseInsensitive);
1167 for(QStringList::Iterator varit = varlist.begin(); varit != varlist.end();) {
1168 if((*varit).contains(regexp)) {
1169 (*varit) = (*varit).replace(regexp, to);
1170 if ((*varit).isEmpty())
1171 varit = varlist.erase(varit);
1180 QStringList vallist;
1182 //doVariableReplace(vals, place);
1183 QStringList tmp = split_value_list(vals);
1184 for(int i = 0; i < tmp.size(); ++i)
1185 vallist += doVariableReplaceExpand(tmp[i], place);
1189 if(!varlist.isEmpty()) {
1190 bool send_warning = false;
1191 if(var != "TEMPLATE" && var != "TARGET") {
1192 QSet<QString> incoming_vals = vallist.toSet();
1193 for(int i = 0; i < varlist.size(); ++i) {
1194 const QString var = varlist.at(i).trimmed();
1195 if(!var.isEmpty() && !incoming_vals.contains(var)) {
1196 send_warning = true;
1202 warn_msg(WarnParser, "Operator=(%s) clears variables previously set: %s:%d",
1203 var.toLatin1().constData(), parser.file.toLatin1().constData(), parser.line_no);
1207 for(QStringList::ConstIterator valit = vallist.begin();
1208 valit != vallist.end(); ++valit) {
1209 if((*valit).isEmpty())
1211 if((op == "*=" && !varlist.contains((*valit))) ||
1212 op == "=" || op == "+=")
1213 varlist.append((*valit));
1215 varlist.removeAll((*valit));
1217 if(var == "REQUIRES") // special case to get communicated to backends!
1218 doProjectCheckReqs(vallist, place);
1219 else if (var == QLatin1String("TEMPLATE"))
1220 setTemplate(varlist);
1226 QMakeProject::read(QTextStream &file, QHash<QString, QStringList> &place)
1231 while(!file.atEnd()) {
1233 QString line = file.readLine().trimmed();
1234 int prelen = line.length();
1236 int hash_mark = line.indexOf("#");
1237 if(hash_mark != -1) //good bye comments
1238 line = line.left(hash_mark).trimmed();
1239 if(!line.isEmpty() && line.right(1) == "\\") {
1240 if(!line.startsWith("#")) {
1241 line.truncate(line.length() - 1);
1242 s += line + Option::field_sep;
1245 } else if(!line.isEmpty() || (line.isEmpty() && !prelen)) {
1246 if(s.isEmpty() && line.isEmpty())
1248 if(!line.isEmpty()) {
1253 if(!(ret = parse(s, place, numLines))) {
1266 ret = parse(s, place, numLines);
1271 QMakeProject::read(const QString &file, QHash<QString, QStringList> &place)
1273 parser_info pi = parser;
1276 const QString oldpwd = qmake_getpwd();
1277 QString filename = Option::normalizePath(file, false);
1278 bool ret = false, using_stdin = false;
1280 if(filename == QLatin1String("-")) {
1281 qfile.setFileName("");
1282 ret = qfile.open(stdin, QIODevice::ReadOnly);
1284 } else if(QFileInfo(file).isDir()) {
1287 qfile.setFileName(filename);
1288 ret = qfile.open(QIODevice::ReadOnly);
1289 qmake_setpwd(QFileInfo(filename).absolutePath());
1292 place["PWD"] = QStringList(qmake_getpwd());
1293 parser_info pi = parser;
1294 parser.from_file = true;
1295 parser.file = filename;
1297 if (qfile.peek(3) == QByteArray("\xef\xbb\xbf")) {
1298 //UTF-8 BOM will cause subtle errors
1299 qmake_error_msg("Unexpected UTF-8 BOM found");
1302 QTextStream t(&qfile);
1303 ret = read(t, place);
1308 if (!need_restart && scope_blocks.count() != 1) {
1309 qmake_error_msg("Unterminated conditional block at end of file");
1313 qmake_setpwd(oldpwd);
1318 QMakeProject::read(const QString &project, uchar cmd)
1320 pfile = QFileInfo(project).absoluteFilePath();
1325 QMakeProject::read(uchar cmd)
1328 if (init_vars.isEmpty()) {
1334 if (cmd & ReadSetup) {
1335 if (base_vars.isEmpty()) {
1337 QString project_root;
1338 QStringList qmakepath;
1339 QStringList qmakefeatures;
1340 project_build_root.clear();
1341 if (Option::mkfile::do_cache) { // parse the cache
1342 QHash<QString, QStringList> cache;
1343 QString rdir = Option::output_dir;
1345 QFileInfo qfi(rdir, QLatin1String(".qmake.super"));
1347 superfile = qfi.filePath();
1348 if (!read(superfile, cache))
1353 QFileInfo qdfi(rdir);
1358 if (Option::mkfile::cachefile.isEmpty()) { //find it as it has not been specified
1359 QString sdir = qmake_getpwd();
1360 QString dir = Option::output_dir;
1362 QFileInfo qsfi(sdir, QLatin1String(".qmake.conf"));
1363 if (qsfi.exists()) {
1364 conffile = qsfi.filePath();
1365 if (!read(conffile, cache))
1368 QFileInfo qfi(dir, QLatin1String(".qmake.cache"));
1370 cachefile = qfi.filePath();
1371 if (!read(cachefile, cache))
1374 if (!conffile.isEmpty() || !cachefile.isEmpty()) {
1375 project_root = sdir;
1376 project_build_root = dir;
1379 if (dir == superdir)
1381 QFileInfo qsdfi(sdir);
1382 QFileInfo qdfi(dir);
1383 if (qsdfi.isRoot() || qdfi.isRoot())
1385 sdir = qsdfi.path();
1389 QFileInfo fi(Option::mkfile::cachefile);
1390 cachefile = QDir::cleanPath(fi.absoluteFilePath());
1391 if (!read(cachefile, cache))
1393 project_build_root = QDir::cleanPath(fi.absolutePath());
1394 // This intentionally bypasses finding a source root,
1395 // as the result would be more or less arbitrary.
1398 if (Option::mkfile::xqmakespec.isEmpty() && !cache["XQMAKESPEC"].isEmpty())
1399 Option::mkfile::xqmakespec = cache["XQMAKESPEC"].first();
1400 if (Option::mkfile::qmakespec.isEmpty() && !cache["QMAKESPEC"].isEmpty()) {
1401 Option::mkfile::qmakespec = cache["QMAKESPEC"].first();
1402 if (Option::mkfile::xqmakespec.isEmpty())
1403 Option::mkfile::xqmakespec = Option::mkfile::qmakespec;
1405 qmakepath = cache.value(QLatin1String("QMAKEPATH"));
1406 qmakefeatures = cache.value(QLatin1String("QMAKEFEATURES"));
1408 if (!superfile.isEmpty())
1409 vars["_QMAKE_SUPER_CACHE_"] << superfile;
1410 if (!cachefile.isEmpty())
1411 vars["_QMAKE_CACHE_"] << cachefile;
1414 // Look for mkspecs/ in source and build. First to win determines the root.
1415 QString sdir = qmake_getpwd();
1416 QString dir = Option::output_dir;
1417 while (dir != project_build_root) {
1418 if ((dir != sdir && QFileInfo(sdir, QLatin1String("mkspecs")).isDir())
1419 || QFileInfo(dir, QLatin1String("mkspecs")).isDir()) {
1421 project_root = sdir;
1422 project_build_root = dir;
1425 if (dir == superdir)
1427 QFileInfo qsdfi(sdir);
1428 QFileInfo qdfi(dir);
1429 if (qsdfi.isRoot() || qdfi.isRoot())
1431 sdir = qsdfi.path();
1435 if (qmakepath != cached_qmakepath || qmakefeatures != cached_qmakefeatures
1436 || project_build_root != cached_build_root) { // No need to check source dir, as it goes in sync
1437 cached_source_root = project_root;
1438 cached_build_root = project_build_root;
1439 cached_qmakepath = qmakepath;
1440 cached_qmakefeatures = qmakefeatures;
1441 invalidateFeatureRoots();
1445 QString *specp = host_build ? &Option::mkfile::qmakespec : &Option::mkfile::xqmakespec;
1446 QString qmakespec = *specp;
1447 if (qmakespec.isEmpty())
1448 qmakespec = host_build ? "default-host" : "default";
1449 if (QDir::isRelativePath(qmakespec)) {
1450 QStringList mkspec_roots = qmake_mkspec_paths();
1451 debug_msg(2, "Looking for mkspec %s in (%s)", qmakespec.toLatin1().constData(),
1452 mkspec_roots.join("::").toLatin1().constData());
1453 bool found_mkspec = false;
1454 for (QStringList::ConstIterator it = mkspec_roots.begin(); it != mkspec_roots.end(); ++it) {
1455 QString mkspec = (*it) + QLatin1Char('/') + qmakespec;
1456 if (QFile::exists(mkspec)) {
1457 found_mkspec = true;
1458 *specp = qmakespec = mkspec;
1462 if (!found_mkspec) {
1463 fprintf(stderr, "Could not find mkspecs for your QMAKESPEC(%s) after trying:\n\t%s\n",
1464 qmakespec.toLatin1().constData(), mkspec_roots.join("\n\t").toLatin1().constData());
1469 // We do this before reading the spec, so it can use module and feature paths from
1470 // here without resorting to tricks. This is the only planned use case anyway.
1471 if (!superfile.isEmpty()) {
1472 debug_msg(1, "Project super cache file: reading %s", superfile.toLatin1().constData());
1473 read(superfile, vars);
1476 // parse qmake configuration
1477 doProjectInclude("spec_pre", IncludeFlagFeature, vars);
1478 while(qmakespec.endsWith(QLatin1Char('/')))
1479 qmakespec.truncate(qmakespec.length()-1);
1480 QString spec = qmakespec + QLatin1String("/qmake.conf");
1481 debug_msg(1, "QMAKESPEC conf: reading %s", spec.toLatin1().constData());
1482 if (!read(spec, vars)) {
1483 fprintf(stderr, "Failure to read QMAKESPEC conf file %s.\n", spec.toLatin1().constData());
1487 real_spec = QFileInfo(qmakespec).canonicalFilePath();
1489 // We can't resolve symlinks as they do on Unix, so configure.exe puts the source of the
1490 // qmake.conf at the end of the default/qmake.conf in the QMAKESPEC_ORG variable.
1491 QString orig_spec = first(QLatin1String("QMAKESPEC_ORIGINAL"));
1492 real_spec = orig_spec.isEmpty() ? qmakespec : orig_spec;
1494 short_spec = QFileInfo(real_spec).fileName();
1495 doProjectInclude("spec_post", IncludeFlagFeature, vars);
1496 // The spec extends the feature search path, so invalidate the cache.
1497 invalidateFeatureRoots();
1499 if (!conffile.isEmpty()) {
1500 debug_msg(1, "Project config file: reading %s", conffile.toLatin1().constData());
1501 read(conffile, vars);
1503 if (!cachefile.isEmpty()) {
1504 debug_msg(1, "QMAKECACHE file: reading %s", cachefile.toLatin1().constData());
1505 read(cachefile, vars);
1511 vars = base_vars; // start with the base
1516 for (QHash<QString, QStringList>::ConstIterator it = extra_vars.constBegin();
1517 it != extra_vars.constEnd(); ++it)
1518 vars.insert(it.key(), it.value());
1520 if(cmd & ReadFeatures) {
1521 debug_msg(1, "Processing default_pre: %s", vars["CONFIG"].join("::").toLatin1().constData());
1522 doProjectInclude("default_pre", IncludeFlagFeature, vars);
1525 //before commandline
1526 if (cmd & ReadSetup) {
1527 parser.file = "(internal)";
1528 parser.from_file = false;
1529 parser.line_no = 1; //really arg count now.. duh
1531 for(QStringList::ConstIterator it = Option::before_user_vars.begin();
1532 it != Option::before_user_vars.end(); ++it) {
1533 if(!parse((*it), vars)) {
1534 fprintf(stderr, "Argument failed to parse: %s\n", (*it).toLatin1().constData());
1541 // After user configs, to override them
1542 if (!extra_configs.isEmpty()) {
1543 parser.file = "(extra configs)";
1544 parser.from_file = false;
1545 parser.line_no = 1; //really arg count now.. duh
1546 parse("CONFIG += " + extra_configs.join(" "), vars);
1549 if(cmd & ReadProFile) { // parse project file
1550 debug_msg(1, "Project file: reading %s", pfile.toLatin1().constData());
1551 if(pfile != "-" && !QFile::exists(pfile) && !pfile.endsWith(Option::pro_ext))
1552 pfile += Option::pro_ext;
1553 if(!read(pfile, vars))
1562 if (cmd & ReadSetup) {
1563 parser.file = "(internal)";
1564 parser.from_file = false;
1565 parser.line_no = 1; //really arg count now.. duh
1567 for(QStringList::ConstIterator it = Option::after_user_vars.begin();
1568 it != Option::after_user_vars.end(); ++it) {
1569 if(!parse((*it), vars)) {
1570 fprintf(stderr, "Argument failed to parse: %s\n", (*it).toLatin1().constData());
1577 // Again, to ensure the project does not mess with us.
1578 // Specifically, do not allow a project to override debug/release within a
1579 // debug_and_release build pass - it's too late for that at this point anyway.
1580 if (!extra_configs.isEmpty()) {
1581 parser.file = "(extra configs)";
1582 parser.from_file = false;
1583 parser.line_no = 1; //really arg count now.. duh
1584 parse("CONFIG += " + extra_configs.join(" "), vars);
1587 if(cmd & ReadFeatures) {
1588 debug_msg(1, "Processing default_post: %s", vars["CONFIG"].join("::").toLatin1().constData());
1589 doProjectInclude("default_post", IncludeFlagFeature, vars);
1591 QHash<QString, bool> processed;
1592 const QStringList &configs = vars["CONFIG"];
1593 debug_msg(1, "Processing CONFIG features: %s", configs.join("::").toLatin1().constData());
1595 bool finished = true;
1596 for(int i = configs.size()-1; i >= 0; --i) {
1597 const QString config = configs[i].toLower();
1598 if(!processed.contains(config)) {
1599 processed.insert(config, true);
1600 if(doProjectInclude(config, IncludeFlagFeature, vars) == IncludeSuccess) {
1614 QMakeProject::setupProject()
1616 setTemplate(vars["TEMPLATE"]);
1618 vars["TARGET"] << QFileInfo(pfile).baseName();
1619 vars["_PRO_FILE_"] << pfile;
1620 vars["_PRO_FILE_PWD_"] << (pfile.isEmpty() ? qmake_getpwd() : QFileInfo(pfile).absolutePath());
1621 vars["OUT_PWD"] << Option::output_dir;
1625 QMakeProject::loadDefaults()
1627 vars["LITERAL_WHITESPACE"] << QLatin1String("\t");
1628 vars["LITERAL_DOLLAR"] << QLatin1String("$");
1629 vars["LITERAL_HASH"] << QLatin1String("#");
1630 vars["DIR_SEPARATOR"] << Option::dir_sep;
1631 vars["DIRLIST_SEPARATOR"] << Option::dirlist_sep;
1632 vars["QMAKE_QMAKE"] << Option::qmake_abslocation;
1633 vars["_DATE_"] << QDateTime::currentDateTime().toString();
1634 #if defined(Q_OS_WIN32)
1635 vars["QMAKE_HOST.os"] << QString::fromLatin1("Windows");
1637 DWORD name_length = 1024;
1639 if (GetComputerName(name, &name_length))
1640 vars["QMAKE_HOST.name"] << QString::fromWCharArray(name);
1642 QSysInfo::WinVersion ver = QSysInfo::WindowsVersion;
1643 vars["QMAKE_HOST.version"] << QString::number(ver);
1646 case QSysInfo::WV_Me: verStr = QLatin1String("WinMe"); break;
1647 case QSysInfo::WV_95: verStr = QLatin1String("Win95"); break;
1648 case QSysInfo::WV_98: verStr = QLatin1String("Win98"); break;
1649 case QSysInfo::WV_NT: verStr = QLatin1String("WinNT"); break;
1650 case QSysInfo::WV_2000: verStr = QLatin1String("Win2000"); break;
1651 case QSysInfo::WV_2003: verStr = QLatin1String("Win2003"); break;
1652 case QSysInfo::WV_XP: verStr = QLatin1String("WinXP"); break;
1653 case QSysInfo::WV_VISTA: verStr = QLatin1String("WinVista"); break;
1654 default: verStr = QLatin1String("Unknown"); break;
1656 vars["QMAKE_HOST.version_string"] << verStr;
1659 GetSystemInfo(&info);
1661 switch (info.wProcessorArchitecture) {
1662 # ifdef PROCESSOR_ARCHITECTURE_AMD64
1663 case PROCESSOR_ARCHITECTURE_AMD64:
1664 archStr = QLatin1String("x86_64");
1667 case PROCESSOR_ARCHITECTURE_INTEL:
1668 archStr = QLatin1String("x86");
1670 case PROCESSOR_ARCHITECTURE_IA64:
1671 # ifdef PROCESSOR_ARCHITECTURE_IA32_ON_WIN64
1672 case PROCESSOR_ARCHITECTURE_IA32_ON_WIN64:
1674 archStr = QLatin1String("IA64");
1677 archStr = QLatin1String("Unknown");
1680 vars["QMAKE_HOST.arch"] << archStr;
1682 # if defined(Q_CC_MSVC)
1683 QString paths = QString::fromLocal8Bit(qgetenv("PATH"));
1684 QString vcBin64 = QString::fromLocal8Bit(qgetenv("VCINSTALLDIR"));
1685 if (!vcBin64.endsWith('\\'))
1686 vcBin64.append('\\');
1687 vcBin64.append("bin\\amd64");
1688 QString vcBinX86_64 = QString::fromLocal8Bit(qgetenv("VCINSTALLDIR"));
1689 if (!vcBinX86_64.endsWith('\\'))
1690 vcBinX86_64.append('\\');
1691 vcBinX86_64.append("bin\\x86_amd64");
1692 if (paths.contains(vcBin64,Qt::CaseInsensitive) || paths.contains(vcBinX86_64,Qt::CaseInsensitive))
1693 vars["QMAKE_TARGET.arch"] << QString::fromLatin1("x86_64");
1695 vars["QMAKE_TARGET.arch"] << QString::fromLatin1("x86");
1697 #elif defined(Q_OS_UNIX)
1698 struct utsname name;
1699 if (!uname(&name)) {
1700 vars["QMAKE_HOST.os"] << QString::fromLocal8Bit(name.sysname);
1701 vars["QMAKE_HOST.name"] << QString::fromLocal8Bit(name.nodename);
1702 vars["QMAKE_HOST.version"] << QString::fromLocal8Bit(name.release);
1703 vars["QMAKE_HOST.version_string"] << QString::fromLocal8Bit(name.version);
1704 vars["QMAKE_HOST.arch"] << QString::fromLocal8Bit(name.machine);
1710 QMakeProject::isActiveConfig(const QString &x, bool regex, QHash<QString, QStringList> *place)
1715 //magic types for easy flipping
1718 else if(x == "false")
1721 if (x == "host_build")
1725 QRegExp re(x, Qt::CaseSensitive, QRegExp::Wildcard);
1726 if ((regex && re.exactMatch(short_spec)) || (!regex && short_spec == x))
1730 const QStringList &configs = (place ? (*place)["CONFIG"] : vars["CONFIG"]);
1731 for(QStringList::ConstIterator it = configs.begin(); it != configs.end(); ++it) {
1732 if(((regex && re.exactMatch((*it))) || (!regex && (*it) == x)) && re.exactMatch((*it)))
1739 QMakeProject::doProjectTest(QString str, QHash<QString, QStringList> &place)
1741 QString chk = remove_quotes(str);
1744 bool invert_test = (chk.left(1) == "!");
1749 int lparen = chk.indexOf('(');
1750 if(lparen != -1) { // if there is an lparen in the chk, it IS a function
1751 int rparen = chk.indexOf(')', lparen);
1753 qmake_error_msg("Function missing right paren: " + chk);
1755 QString func = chk.left(lparen);
1756 test = doProjectTest(func, chk.mid(lparen+1, rparen - lparen - 1), place);
1759 test = isActiveConfig(chk, true, &place);
1767 QMakeProject::doProjectTest(QString func, const QString ¶ms,
1768 QHash<QString, QStringList> &place)
1770 return doProjectTest(func, split_arg_list(params), place);
1773 QMakeProject::IncludeStatus
1774 QMakeProject::doProjectInclude(QString file, uchar flags, QHash<QString, QStringList> &place)
1776 if(flags & IncludeFlagFeature) {
1777 if(!file.endsWith(Option::prf_ext))
1778 file += Option::prf_ext;
1780 QStringList *&feature_roots = all_feature_roots[host_build];
1781 if(!feature_roots) {
1782 feature_roots = new QStringList;
1783 qmakeAddCacheClear(qmakeDeleteCacheClear<QStringList>, (void**)&feature_roots);
1785 if (feature_roots->isEmpty())
1786 *feature_roots = qmakeFeaturePaths();
1787 debug_msg(2, "Looking for feature '%s' in (%s)", file.toLatin1().constData(),
1788 feature_roots->join("::").toLatin1().constData());
1790 if(parser.from_file) {
1791 QFileInfo currFile(parser.file), prfFile(file);
1792 if(currFile.fileName() == prfFile.fileName()) {
1793 currFile = QFileInfo(currFile.canonicalFilePath());
1794 for(int root = 0; root < feature_roots->size(); ++root) {
1795 prfFile = QFileInfo(feature_roots->at(root) +
1796 QLatin1Char('/') + file).canonicalFilePath();
1797 if(prfFile == currFile) {
1798 start_root = root+1;
1804 for(int root = start_root; root < feature_roots->size(); ++root) {
1805 QString prf(feature_roots->at(root) + QLatin1Char('/') + file);
1806 if (QFile::exists(prf)) {
1811 return IncludeNoExist;
1814 if(place["QMAKE_INTERNAL_INCLUDED_FEATURES"].indexOf(file) != -1)
1815 return IncludeFeatureAlreadyLoaded;
1816 place["QMAKE_INTERNAL_INCLUDED_FEATURES"].append(file);
1817 } else if (QDir::isRelativePath(file)) {
1818 QStringList include_roots;
1819 if(Option::output_dir != qmake_getpwd())
1820 include_roots << qmake_getpwd();
1821 include_roots << Option::output_dir;
1822 for(int root = 0; root < include_roots.size(); ++root) {
1823 QString testName = QDir::fromNativeSeparators(include_roots[root]);
1824 if (!testName.endsWith(QLatin1Char('/')))
1825 testName += QLatin1Char('/');
1827 if(QFile::exists(testName)) {
1832 return IncludeNoExist;
1834 } else if (!QFile::exists(file)) {
1835 return IncludeNoExist;
1837 debug_msg(1, "Project Parser: %s'ing file %s.", (flags & IncludeFlagFeature) ? "load" : "include",
1838 file.toLatin1().constData());
1840 QString orig_file = file;
1841 int di = file.lastIndexOf(QLatin1Char('/'));
1842 QString oldpwd = qmake_getpwd();
1844 if(!qmake_setpwd(file.left(file.lastIndexOf(QLatin1Char('/'))))) {
1845 fprintf(stderr, "Cannot find directory: %s\n", file.left(di).toLatin1().constData());
1846 return IncludeFailure;
1849 bool parsed = false;
1850 parser_info pi = parser;
1852 if(flags & (IncludeFlagNewProject|IncludeFlagNewParser)) {
1853 // The "project's variables" are used in other places (eg. export()) so it's not
1854 // possible to use "place" everywhere. Instead just set variables and grab them later
1855 QMakeProject proj(prop);
1856 if(flags & IncludeFlagNewParser) {
1857 parsed = proj.read(file, proj.variables()); // parse just that file (fromfile, infile)
1859 parsed = proj.read(file); // parse all aux files (load/include into)
1861 place = proj.variables();
1863 QStack<ScopeBlock> sc = scope_blocks;
1864 IteratorBlock *it = iterator;
1865 FunctionBlock *fu = function;
1866 parsed = read(file, place);
1873 if(place["QMAKE_INTERNAL_INCLUDED_FILES"].indexOf(orig_file) == -1)
1874 place["QMAKE_INTERNAL_INCLUDED_FILES"].append(orig_file);
1876 warn_msg(WarnParser, "%s:%d: Failure to include file %s.",
1877 pi.file.toLatin1().constData(), pi.line_no, orig_file.toLatin1().constData());
1880 qmake_setpwd(oldpwd);
1881 place["PWD"] = QStringList(qmake_getpwd());
1883 return IncludeParseFailure;
1884 return IncludeSuccess;
1888 subAll(QStringList *val, const QStringList &diffval)
1890 foreach (const QString &dv, diffval)
1895 bool isSpecialChar(ushort c)
1897 // Chars that should be quoted (TM). This includes:
1899 // - control chars & space
1900 // - the shell meta chars "&()<>^|
1901 // - the potential separators ,;=
1902 static const uchar iqm[] = {
1903 0xff, 0xff, 0xff, 0xff, 0x45, 0x13, 0x00, 0x78,
1904 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x10
1907 static const uchar iqm[] = {
1908 0xff, 0xff, 0xff, 0xff, 0xdf, 0x07, 0x00, 0xd8,
1909 0x00, 0x00, 0x00, 0x38, 0x01, 0x00, 0x00, 0x78
1910 }; // 0-32 \'"$`<>|;&(){}*?#!~[]
1913 return (c < sizeof(iqm) * 8) && (iqm[c / 8] & (1 << (c & 7)));
1917 bool hasSpecialChars(const QString &arg)
1919 for (int x = arg.length() - 1; x >= 0; --x)
1920 if (isSpecialChar(arg.unicode()[x].unicode()))
1926 shellQuote(const QString &arg)
1929 return QString::fromLatin1("\"\"");
1932 if (hasSpecialChars(ret)) {
1934 // Quotes are escaped and their preceding backslashes are doubled.
1935 // It's impossible to escape anything inside a quoted string on cmd
1936 // level, so the outer quoting must be "suspended".
1937 ret.replace(QRegExp(QLatin1String("(\\\\*)\"")), QLatin1String("\"\\1\\1\\^\"\""));
1938 // The argument must not end with a \ since this would be interpreted
1939 // as escaping the quote -- rather put the \ behind the quote: e.g.
1940 // rather use "foo"\ than "foo\"
1941 int i = ret.length();
1942 while (i > 0 && ret.at(i - 1) == QLatin1Char('\\'))
1944 ret.insert(i, QLatin1Char('"'));
1945 ret.prepend(QLatin1Char('"'));
1947 ret.replace(QLatin1Char('\''), QLatin1String("'\\''"));
1948 ret.prepend(QLatin1Char('\''));
1949 ret.append(QLatin1Char('\''));
1956 quoteValue(const QString &val)
1959 ret.reserve(val.length());
1960 bool quote = val.isEmpty();
1961 bool escaping = false;
1962 for (int i = 0, l = val.length(); i < l; i++) {
1963 QChar c = val.unicode()[i];
1964 ushort uc = c.unicode();
1968 ret += QLatin1String("$$escape_expand(");
1972 ret += QLatin1String("\\\\r");
1975 ret += QLatin1String("\\\\n");
1978 ret += QLatin1String("\\\\t");
1981 ret += QString::fromLatin1("\\\\x%1").arg(uc, 2, 16, QLatin1Char('0'));
1987 ret += QLatin1Char(')');
1991 ret += QLatin1String("\\\\");
1994 ret += QLatin1String("\\\"");
1997 ret += QLatin1String("\\'");
2000 ret += QLatin1String("\\$");
2003 ret += QLatin1String("$${LITERAL_HASH}");
2015 ret += QLatin1Char(')');
2017 ret.prepend(QLatin1Char('"'));
2018 ret.append(QLatin1Char('"'));
2024 writeFile(const QString &name, QIODevice::OpenMode mode, const QString &contents, QString *errStr)
2026 QByteArray bytes = contents.toLocal8Bit();
2028 if (!(mode & QIODevice::Append) && cfile.open(QIODevice::ReadOnly | QIODevice::Text)) {
2029 if (cfile.readAll() == bytes)
2033 if (!cfile.open(mode | QIODevice::WriteOnly | QIODevice::Text)) {
2034 *errStr = cfile.errorString();
2039 if (cfile.error() != QFile::NoError) {
2040 *errStr = cfile.errorString();
2047 getCommandOutput(const QString &args)
2050 if (FILE *proc = QT_POPEN(args.toLatin1().constData(), "r")) {
2051 while (!feof(proc)) {
2052 char buff[10 * 1024];
2053 int read_in = int(fread(buff, 1, sizeof(buff), proc));
2056 out += QByteArray(buff, read_in);
2064 static QString windowsErrorCode()
2066 wchar_t *string = 0;
2067 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER|FORMAT_MESSAGE_FROM_SYSTEM,
2070 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
2074 QString ret = QString::fromWCharArray(string);
2075 LocalFree((HLOCAL)string);
2081 QMakeProject::doProjectExpand(QString func, const QString ¶ms,
2082 QHash<QString, QStringList> &place)
2084 return doProjectExpand(func, split_arg_list(params), place);
2088 QMakeProject::doProjectExpand(QString func, QStringList args,
2089 QHash<QString, QStringList> &place)
2091 QList<QStringList> args_list;
2092 for(int i = 0; i < args.size(); ++i) {
2093 QStringList arg = split_value_list(args[i]), tmp;
2094 for(int i = 0; i < arg.size(); ++i)
2095 tmp += doVariableReplaceExpand(arg[i], place);;
2098 return doProjectExpand(func, args_list, place);
2102 populateDeps(const QStringList &deps, const QString &prefix,
2103 QHash<QString, QSet<QString> > &dependencies, QHash<QString, QStringList> &dependees,
2104 QStringList &rootSet, QHash<QString, QStringList> &place)
2106 foreach (const QString &item, deps)
2107 if (!dependencies.contains(item)) {
2108 QSet<QString> &dset = dependencies[item]; // Always create entry
2109 QStringList depends = place.value(prefix + item + ".depends");
2110 if (depends.isEmpty()) {
2113 foreach (const QString &dep, depends) {
2115 dependees[dep] << item;
2117 populateDeps(depends, prefix, dependencies, dependees, rootSet, place);
2123 QMakeProject::doProjectExpand(QString func, QList<QStringList> args_list,
2124 QHash<QString, QStringList> &place)
2126 func = func.trimmed();
2127 if(replaceFunctions.contains(func)) {
2128 FunctionBlock *defined = replaceFunctions[func];
2129 function_blocks.push(defined);
2131 defined->exec(args_list, this, place, ret);
2132 bool correct = function_blocks.pop() == defined;
2133 Q_ASSERT(correct); Q_UNUSED(correct);
2137 QStringList args; //why don't the builtin functions just use args_list? --Sam
2138 for(int i = 0; i < args_list.size(); ++i)
2139 args += args_list[i].join(QString(Option::field_sep));
2141 ExpandFunc func_t = qmake_expandFunctions().value(func);
2142 if (!func_t && (func_t = qmake_expandFunctions().value(func.toLower())))
2143 warn_msg(WarnDeprecated, "%s:%d: Using uppercased builtin functions is deprecated.",
2144 parser.file.toLatin1().constData(), parser.line_no);
2145 debug_msg(1, "Running project expand: %s(%s) [%d]",
2146 func.toLatin1().constData(), args.join("::").toLatin1().constData(), func_t);
2151 if(args.count() < 1 || args.count() > 3) {
2152 fprintf(stderr, "%s:%d: member(var, start, end) requires three arguments.\n",
2153 parser.file.toLatin1().constData(), parser.line_no);
2156 const QStringList &var = values(args.first(), place);
2157 int start = 0, end = 0;
2158 if(args.count() >= 2) {
2159 QString start_str = args[1];
2160 start = start_str.toInt(&ok);
2162 if(args.count() == 2) {
2163 int dotdot = start_str.indexOf("..");
2165 start = start_str.left(dotdot).toInt(&ok);
2167 end = start_str.mid(dotdot+2).toInt(&ok);
2171 fprintf(stderr, "%s:%d: member() argument 2 (start) '%s' invalid.\n",
2172 parser.file.toLatin1().constData(), parser.line_no,
2173 start_str.toLatin1().constData());
2176 if(args.count() == 3)
2177 end = args[2].toInt(&ok);
2179 fprintf(stderr, "%s:%d: member() argument 3 (end) '%s' invalid.\n",
2180 parser.file.toLatin1().constData(), parser.line_no,
2181 args[2].toLatin1().constData());
2186 start += var.count();
2189 if(start < 0 || start >= var.count() || end < 0 || end >= var.count()) {
2191 } else if(start < end) {
2192 for(int i = start; i <= end && (int)var.count() >= i; i++)
2195 for(int i = start; i >= end && (int)var.count() >= i && i >= 0; i--)
2203 if(args.count() != 1) {
2204 fprintf(stderr, "%s:%d: %s(var) requires one argument.\n",
2205 parser.file.toLatin1().constData(), parser.line_no, func.toLatin1().constData());
2207 const QStringList &var = values(args.first(), place);
2208 if(!var.isEmpty()) {
2209 if(func_t == E_FIRST)
2210 ret = QStringList(var[0]);
2212 ret = QStringList(var[var.size()-1]);
2217 if(args.count() < 1 || args.count() > 2) {
2218 fprintf(stderr, "%s:%d: cat(file) requires one argument.\n",
2219 parser.file.toLatin1().constData(), parser.line_no);
2221 QString file = Option::normalizePath(args[0]);
2225 bool singleLine = true;
2226 if (args.count() > 1) {
2227 if (!args.at(1).compare(QLatin1String("false"), Qt::CaseInsensitive))
2229 else if (!args.at(1).compare(QLatin1String("blob"), Qt::CaseInsensitive))
2231 else if (!args.at(1).compare(QLatin1String("lines"), Qt::CaseInsensitive))
2235 if(qfile.open(QIODevice::ReadOnly)) {
2236 QTextStream stream(&qfile);
2238 ret += stream.readAll();
2240 while (!stream.atEnd()) {
2242 ret += stream.readLine();
2244 ret += split_value_list(stream.readLine().trimmed());
2254 if(args.count() != 2) {
2255 fprintf(stderr, "%s:%d: fromfile(file, variable) requires two arguments.\n",
2256 parser.file.toLatin1().constData(), parser.line_no);
2258 QString seek_var = args[1], file = Option::normalizePath(args[0]);
2260 QHash<QString, QStringList> tmp;
2261 if(doProjectInclude(file, IncludeFlagNewParser, tmp) == IncludeSuccess) {
2262 if(tmp.contains("QMAKE_INTERNAL_INCLUDED_FILES")) {
2263 QStringList &out = place["QMAKE_INTERNAL_INCLUDED_FILES"];
2264 const QStringList &in = tmp["QMAKE_INTERNAL_INCLUDED_FILES"];
2265 for(int i = 0; i < in.size(); ++i) {
2266 if(out.indexOf(in[i]) == -1)
2270 ret = tmp[seek_var];
2275 if(args.count() < 1 || args.count() > 2) {
2276 fprintf(stderr, "%s:%d: eval(variable) requires one argument.\n",
2277 parser.file.toLatin1().constData(), parser.line_no);
2280 const QHash<QString, QStringList> *source = &place;
2281 if(args.count() == 2) {
2282 if(args.at(1) == "Global") {
2284 } else if(args.at(1) == "Local") {
2287 fprintf(stderr, "%s:%d: unexpected source to eval.\n", parser.file.toLatin1().constData(),
2291 ret += source->value(args.at(0));
2297 tmp.sprintf(".QMAKE_INTERNAL_TMP_VAR_%d", x++);
2298 ret = QStringList(tmp);
2299 QStringList &lst = (*((QHash<QString, QStringList>*)&place))[tmp];
2301 for(QStringList::ConstIterator arg_it = args.begin();
2302 arg_it != args.end(); ++arg_it)
2303 lst += split_value_list((*arg_it));
2306 if(args.count() < 1) {
2307 fprintf(stderr, "%s:%d: sprintf(format, ...) requires one argument.\n",
2308 parser.file.toLatin1().constData(), parser.line_no);
2310 QString tmp = args.at(0);
2311 for(int i = 1; i < args.count(); ++i)
2312 tmp = tmp.arg(args.at(i));
2313 ret = split_value_list(tmp);
2316 case E_FORMAT_NUMBER:
2317 if (args.count() > 2) {
2318 fprintf(stderr, "%s:%d: format_number(number[, options...]) requires one or two arguments.\n",
2319 parser.file.toLatin1().constData(), parser.line_no);
2324 bool zeropad = false;
2325 bool leftalign = false;
2326 enum { DefaultSign, PadSign, AlwaysSign } sign = DefaultSign;
2327 if (args.count() >= 2) {
2328 foreach (const QString &opt, split_value_list(args.at(1))) {
2329 if (opt.startsWith(QLatin1String("ibase="))) {
2330 ibase = opt.mid(6).toInt();
2331 } else if (opt.startsWith(QLatin1String("obase="))) {
2332 obase = opt.mid(6).toInt();
2333 } else if (opt.startsWith(QLatin1String("width="))) {
2334 width = opt.mid(6).toInt();
2335 } else if (opt == QLatin1String("zeropad")) {
2337 } else if (opt == QLatin1String("padsign")) {
2339 } else if (opt == QLatin1String("alwayssign")) {
2341 } else if (opt == QLatin1String("leftalign")) {
2344 fprintf(stderr, "%s:%d: format_number(): invalid format option %s.\n",
2345 parser.file.toLatin1().constData(), parser.line_no,
2346 opt.toLatin1().constData());
2351 if (args.at(0).contains(QLatin1Char('.'))) {
2352 fprintf(stderr, "%s:%d: format_number(): floats are currently not supported.\n",
2353 parser.file.toLatin1().constData(), parser.line_no);
2357 qlonglong num = args.at(0).toLongLong(&ok, ibase);
2359 fprintf(stderr, "%s:%d: format_number(): malformed number %s for base %d.\n",
2360 parser.file.toLatin1().constData(), parser.line_no,
2361 args.at(0).toLatin1().constData(), ibase);
2367 outstr = QLatin1Char('-');
2368 } else if (sign == AlwaysSign) {
2369 outstr = QLatin1Char('+');
2370 } else if (sign == PadSign) {
2371 outstr = QLatin1Char(' ');
2373 QString numstr = QString::number(num, obase);
2374 int space = width - outstr.length() - numstr.length();
2377 } else if (leftalign) {
2378 outstr += numstr + QString(space, QLatin1Char(' '));
2379 } else if (zeropad) {
2380 outstr += QString(space, QLatin1Char('0')) + numstr;
2382 outstr.prepend(QString(space, QLatin1Char(' ')));
2390 if(args.count() < 1 || args.count() > 4) {
2391 fprintf(stderr, "%s:%d: join(var, glue, before, after) requires four"
2392 "arguments.\n", parser.file.toLatin1().constData(), parser.line_no);
2394 QString glue, before, after;
2395 if(args.count() >= 2)
2397 if(args.count() >= 3)
2399 if(args.count() == 4)
2401 const QStringList &var = values(args.first(), place);
2403 ret = split_value_list(before + var.join(glue) + after);
2407 if(args.count() < 1 || args.count() > 2) {
2408 fprintf(stderr, "%s:%d split(var, sep) requires one or two arguments\n",
2409 parser.file.toLatin1().constData(), parser.line_no);
2411 QString sep = QString(Option::field_sep);
2412 if(args.count() >= 2)
2414 QStringList var = values(args.first(), place);
2415 for(QStringList::ConstIterator vit = var.begin(); vit != var.end(); ++vit) {
2416 QStringList lst = (*vit).split(sep);
2417 for(QStringList::ConstIterator spltit = lst.begin(); spltit != lst.end(); ++spltit)
2425 bool regexp = false;
2428 if(func_t == E_SECTION) {
2429 if(args.count() != 3 && args.count() != 4) {
2430 fprintf(stderr, "%s:%d section(var, sep, begin, end) requires three argument\n",
2431 parser.file.toLatin1().constData(), parser.line_no);
2435 beg = args[2].toInt();
2436 if(args.count() == 4)
2437 end = args[3].toInt();
2440 if(args.count() != 1) {
2441 fprintf(stderr, "%s:%d %s(var) requires one argument.\n",
2442 parser.file.toLatin1().constData(), parser.line_no, func.toLatin1().constData());
2446 sep = "[" + QRegExp::escape(Option::dir_sep) + "/]";
2447 if(func_t == E_DIRNAME)
2454 const QStringList &l = values(var, place);
2455 for(QStringList::ConstIterator it = l.begin(); it != l.end(); ++it) {
2456 QString separator = sep;
2458 ret += (*it).section(QRegExp(separator), beg, end);
2460 ret += (*it).section(separator, beg, end);
2465 if(args.count() != 2) {
2466 fprintf(stderr, "%s:%d find(var, str) requires two arguments\n",
2467 parser.file.toLatin1().constData(), parser.line_no);
2469 QRegExp regx(args[1]);
2470 const QStringList &var = values(args.first(), place);
2471 for(QStringList::ConstIterator vit = var.begin();
2472 vit != var.end(); ++vit) {
2473 if(regx.indexIn(*vit) != -1)
2479 if(args.count() < 1 || args.count() > 2) {
2480 fprintf(stderr, "%s:%d system(execut) requires one argument.\n",
2481 parser.file.toLatin1().constData(), parser.line_no);
2485 bool singleLine = true;
2486 if (args.count() > 1) {
2487 if (!args.at(1).compare(QLatin1String("false"), Qt::CaseInsensitive))
2489 else if (!args.at(1).compare(QLatin1String("blob"), Qt::CaseInsensitive))
2491 else if (!args.at(1).compare(QLatin1String("lines"), Qt::CaseInsensitive))
2494 QByteArray bytes = getCommandOutput(args.at(0));
2496 QTextStream stream(bytes);
2497 while (!stream.atEnd())
2498 ret += stream.readLine();
2500 QString output = QString::fromLocal8Bit(bytes);
2504 output.replace(QLatin1Char('\t'), QLatin1Char(' '));
2506 output.replace(QLatin1Char('\n'), QLatin1Char(' '));
2507 ret += split_value_list(output);
2513 if(args.count() != 1) {
2514 fprintf(stderr, "%s:%d unique(var) requires one argument.\n",
2515 parser.file.toLatin1().constData(), parser.line_no);
2517 const QStringList &var = values(args.first(), place);
2518 for(int i = 0; i < var.count(); i++) {
2519 if(!ret.contains(var[i]))
2525 if (args.count() != 1) {
2526 fprintf(stderr, "%s:%d reverse(var) requires one argument.\n",
2527 parser.file.toLatin1().constData(), parser.line_no);
2529 QStringList var = values(args.first(), place);
2530 for (int i = 0; i < var.size() / 2; i++)
2531 var.swap(i, var.size() - i - 1);
2538 case E_ESCAPE_EXPAND: {
2539 for(int i = 0; i < args.size(); ++i) {
2540 QChar *i_data = args[i].data();
2541 int i_len = args[i].length();
2542 for(int x = 0; x < i_len; ++x) {
2543 if(*(i_data+x) == '\\' && x < i_len-1) {
2544 if(*(i_data+x+1) == '\\') {
2549 } mapped_quotes[] = {
2555 for(int i = 0; mapped_quotes[i].in; ++i) {
2556 if(*(i_data+x+1) == mapped_quotes[i].in) {
2557 *(i_data+x) = mapped_quotes[i].out;
2559 memmove(i_data+x+1, i_data+x+2, (i_len-x-2)*sizeof(QChar));
2567 ret.append(QString(i_data, i_len));
2571 for(int i = 0; i < args.size(); ++i)
2572 ret += QRegExp::escape(args[i]);
2575 if (args.count() != 1) {
2576 fprintf(stderr, "%s:%d val_escape(var) requires one argument.\n",
2577 parser.file.toLatin1().constData(), parser.line_no);
2579 QStringList vals = values(args.at(0), place);
2580 ret.reserve(vals.length());
2581 foreach (const QString &str, vals)
2582 ret += quoteValue(str);
2587 for(int i = 0; i < args.size(); ++i) {
2588 if(func_t == E_UPPER)
2589 ret += args[i].toUpper();
2591 ret += args[i].toLower();
2595 if(args.count() != 1 && args.count() != 2) {
2596 fprintf(stderr, "%s:%d files(pattern) requires one argument.\n",
2597 parser.file.toLatin1().constData(), parser.line_no);
2599 bool recursive = false;
2600 if(args.count() == 2)
2601 recursive = (args[1].toLower() == "true" || args[1].toInt());
2603 QString r = Option::normalizePath(args[0]);
2604 int slash = r.lastIndexOf(QLatin1Char('/'));
2606 dirs.append(r.left(slash));
2612 QRegExp regex(r, Qt::CaseSensitive, QRegExp::Wildcard);
2613 for(int d = 0; d < dirs.count(); d++) {
2614 QString dir = dirs[d];
2615 if (!dir.isEmpty() && !dir.endsWith(QLatin1Char('/')))
2619 for(int i = 0; i < (int)qdir.count(); ++i) {
2620 if(qdir[i] == "." || qdir[i] == "..")
2622 QString fname = dir + qdir[i];
2623 if(QFileInfo(fname).isDir()) {
2627 if(regex.exactMatch(qdir[i]))
2634 if(args.count() != 1) {
2635 fprintf(stderr, "%s:%d prompt(question) requires one argument.\n",
2636 parser.file.toLatin1().constData(), parser.line_no);
2637 } else if(pfile == "-") {
2638 fprintf(stderr, "%s:%d prompt(question) cannot be used when '-o -' is used.\n",
2639 parser.file.toLatin1().constData(), parser.line_no);
2641 QString msg = fixEnvVariables(args.first());
2642 if(!msg.endsWith("?"))
2644 fprintf(stderr, "Project %s: %s ", func.toUpper().toLatin1().constData(),
2645 msg.toLatin1().constData());
2648 if(qfile.open(stdin, QIODevice::ReadOnly)) {
2649 QTextStream t(&qfile);
2650 ret = split_value_list(t.readLine());
2655 if(args.count() != 3 ) {
2656 fprintf(stderr, "%s:%d replace(var, before, after) requires three arguments\n",
2657 parser.file.toLatin1().constData(), parser.line_no);
2659 const QRegExp before( args[1] );
2660 const QString after( args[2] );
2661 QStringList var = values(args.first(), place);
2662 for(QStringList::Iterator it = var.begin(); it != var.end(); ++it)
2663 ret += it->replace(before, after);
2667 if(args.count() != 1) {
2668 fprintf(stderr, "%s:%d: size(var) requires one argument.\n",
2669 parser.file.toLatin1().constData(), parser.line_no);
2671 int size = values(args[0], place).size();
2672 ret += QString::number(size);
2675 case E_SORT_DEPENDS:
2676 case E_RESOLVE_DEPENDS: {
2677 if(args.count() < 1 || args.count() > 2) {
2678 fprintf(stderr, "%s:%d: %s(var, prefix) requires one or two arguments.\n",
2679 parser.file.toLatin1().constData(), parser.line_no, func.toLatin1().constData());
2681 QHash<QString, QSet<QString> > dependencies;
2682 QHash<QString, QStringList> dependees;
2683 QStringList rootSet;
2685 QStringList orgList = values(args[0], place);
2686 populateDeps(orgList, (args.count() != 2 ? QString() : args[1]),
2687 dependencies, dependees, rootSet, place);
2689 for (int i = 0; i < rootSet.size(); ++i) {
2690 const QString &item = rootSet.at(i);
2691 if ((func_t == E_RESOLVE_DEPENDS) || orgList.contains(item))
2693 foreach (const QString &dep, dependees[item]) {
2694 QSet<QString> &dset = dependencies[dep];
2695 dset.remove(rootSet.at(i)); // *Don't* use 'item' - rootSet may have changed!
2702 case E_ENUMERATE_VARS:
2703 ret += place.keys();
2706 QString val = QDir::cleanPath(QFileInfo(args.at(0)).absoluteFilePath());
2707 if (Option::mkfile::source_root.isEmpty()) {
2709 } else if (val.startsWith(Option::mkfile::source_root)
2710 && (val.length() == Option::mkfile::source_root.length()
2711 || val.at(Option::mkfile::source_root.length()) == QLatin1Char('/'))) {
2712 ret += Option::mkfile::build_root + val.mid(Option::mkfile::source_root.length());
2715 case E_ABSOLUTE_PATH:
2716 if (args.count() > 2)
2717 fprintf(stderr, "%s:%d absolute_path(path[, base]) requires one or two arguments.\n",
2718 parser.file.toLatin1().constData(), parser.line_no);
2720 ret += QDir::cleanPath(QDir(args.count() > 1 ? args.at(1) : QString())
2721 .absoluteFilePath(args.at(0)));
2723 case E_RELATIVE_PATH:
2724 if (args.count() > 2)
2725 fprintf(stderr, "%s:%d relative_path(path[, base]) requires one or two arguments.\n",
2726 parser.file.toLatin1().constData(), parser.line_no);
2728 ret += QDir::cleanPath(QDir(args.count() > 1 ? args.at(1) : QString())
2729 .relativeFilePath(args.at(0)));
2732 if (args.count() != 1)
2733 fprintf(stderr, "%s:%d clean_path(path) requires one argument.\n",
2734 parser.file.toLatin1().constData(), parser.line_no);
2736 ret += QDir::cleanPath(args.at(0));
2739 if (args.count() != 1)
2740 fprintf(stderr, "%s:%d native_path(path) requires one argument.\n",
2741 parser.file.toLatin1().constData(), parser.line_no);
2743 ret += Option::fixPathToTargetOS(args.at(0), false);
2746 if (args.count() != 1)
2747 fprintf(stderr, "%s:%d shell_quote(args) requires one argument.\n",
2748 parser.file.toLatin1().constData(), parser.line_no);
2750 ret += shellQuote(args.at(0));
2753 fprintf(stderr, "%s:%d: Unknown replace function: %s\n",
2754 parser.file.toLatin1().constData(), parser.line_no,
2755 func.toLatin1().constData());
2762 QMakeProject::doProjectTest(QString func, QStringList args, QHash<QString, QStringList> &place)
2764 QList<QStringList> args_list;
2765 for(int i = 0; i < args.size(); ++i) {
2766 QStringList arg = split_value_list(args[i]), tmp;
2767 for(int i = 0; i < arg.size(); ++i)
2768 tmp += doVariableReplaceExpand(arg[i], place);
2771 return doProjectTest(func, args_list, place);
2775 QMakeProject::doProjectTest(QString func, QList<QStringList> args_list, QHash<QString, QStringList> &place)
2777 func = func.trimmed();
2779 if(testFunctions.contains(func)) {
2780 FunctionBlock *defined = testFunctions[func];
2782 function_blocks.push(defined);
2783 defined->exec(args_list, this, place, ret);
2784 bool correct = function_blocks.pop() == defined;
2785 Q_ASSERT(correct); Q_UNUSED(correct);
2790 if(ret.first() == "true") {
2792 } else if(ret.first() == "false") {
2796 int val = ret.first().toInt(&ok);
2799 fprintf(stderr, "%s:%d Unexpected return value from test %s [%s].\n",
2800 parser.file.toLatin1().constData(),
2801 parser.line_no, func.toLatin1().constData(),
2802 ret.join("::").toLatin1().constData());
2809 QStringList args; //why don't the builtin functions just use args_list? --Sam
2810 for(int i = 0; i < args_list.size(); ++i)
2811 args += args_list[i].join(QString(Option::field_sep));
2813 TestFunc func_t = qmake_testFunctions().value(func);
2814 debug_msg(1, "Running project test: %s(%s) [%d]",
2815 func.toLatin1().constData(), args.join("::").toLatin1().constData(), func_t);
2819 return doProjectCheckReqs(args, place);
2821 case T_GREATERTHAN: {
2822 if(args.count() != 2) {
2823 fprintf(stderr, "%s:%d: %s(variable, value) requires two arguments.\n", parser.file.toLatin1().constData(),
2824 parser.line_no, func.toLatin1().constData());
2827 QString rhs(args[1]), lhs(values(args[0], place).join(QString(Option::field_sep)));
2829 int rhs_int = rhs.toInt(&ok);
2830 if(ok) { // do integer compare
2831 int lhs_int = lhs.toInt(&ok);
2833 if(func_t == T_GREATERTHAN)
2834 return lhs_int > rhs_int;
2835 return lhs_int < rhs_int;
2838 if(func_t == T_GREATERTHAN)
2842 if(args.count() != 1) {
2843 fprintf(stderr, "%s:%d: if(condition) requires one argument.\n", parser.file.toLatin1().constData(),
2847 const QString cond = args.first();
2848 const QChar *d = cond.unicode();
2850 bool ret = true, or_op = false;
2852 for(int d_off = 0, parens = 0, d_len = cond.size(); d_off < d_len; ++d_off) {
2853 if(!quote.isNull()) {
2854 if(*(d+d_off) == quote)
2856 } else if(*(d+d_off) == '(') {
2858 } else if(*(d+d_off) == ')') {
2860 } else if(*(d+d_off) == '"' /*|| *(d+d_off) == '\''*/) {
2863 if(!parens && quote.isNull() && (*(d+d_off) == QLatin1Char(':') || *(d+d_off) == QLatin1Char('|') || d_off == d_len-1)) {
2864 if(d_off == d_len-1)
2866 if(!test.isEmpty()) {
2868 ret = doProjectTest(test, place);
2871 if(*(d+d_off) == QLatin1Char(':')) {
2873 } else if(*(d+d_off) == QLatin1Char('|')) {
2882 if(args.count() != 2) {
2883 fprintf(stderr, "%s:%d: %s(variable, value) requires two arguments.\n", parser.file.toLatin1().constData(),
2884 parser.line_no, func.toLatin1().constData());
2887 return values(args[0], place).join(QString(Option::field_sep)) == args[1];
2889 if(args.count() != 1) {
2890 fprintf(stderr, "%s:%d: exists(file) requires one argument.\n", parser.file.toLatin1().constData(),
2894 QString file = Option::normalizePath(args.first());
2896 if(QFile::exists(file))
2898 //regular expression I guess
2899 QString dirstr = qmake_getpwd();
2900 int slsh = file.lastIndexOf(QLatin1Char('/'));
2902 dirstr = file.left(slsh+1);
2903 file = file.right(file.length() - slsh - 1);
2905 return QDir(dirstr).entryList(QStringList(file)).count(); }
2907 if(args.count() != 1) {
2908 fprintf(stderr, "%s:%d: export(variable) requires one argument.\n", parser.file.toLatin1().constData(),
2912 for(int i = 0; i < function_blocks.size(); ++i) {
2913 FunctionBlock *f = function_blocks.at(i);
2914 f->vars[args[0]] = values(args[0], place);
2915 if(!i && f->calling_place)
2916 (*f->calling_place)[args[0]] = values(args[0], place);
2920 if(args.count() != 1) {
2921 fprintf(stderr, "%s:%d: clear(variable) requires one argument.\n", parser.file.toLatin1().constData(),
2925 if(!place.contains(args[0]))
2927 place[args[0]].clear();
2930 if(args.count() != 1) {
2931 fprintf(stderr, "%s:%d: unset(variable) requires one argument.\n", parser.file.toLatin1().constData(),
2935 if(!place.contains(args[0]))
2937 place.remove(args[0]);
2940 if(args.count() < 1 && 0) {
2941 fprintf(stderr, "%s:%d: eval(project) requires one argument.\n", parser.file.toLatin1().constData(),
2945 QString project = args.join(" ");
2946 parser_info pi = parser;
2947 parser.from_file = false;
2948 parser.file = "(eval)";
2950 QTextStream t(&project, QIODevice::ReadOnly);
2951 bool ret = read(t, place);
2955 if(args.count() < 1 || args.count() > 2) {
2956 fprintf(stderr, "%s:%d: CONFIG(config) requires one argument.\n", parser.file.toLatin1().constData(),
2960 if(args.count() == 1)
2961 return isActiveConfig(args[0]);
2962 const QStringList mutuals = args[1].split('|');
2963 const QStringList &configs = values("CONFIG", place);
2964 for(int i = configs.size()-1; i >= 0; i--) {
2965 for(int mut = 0; mut < mutuals.count(); mut++) {
2966 if(configs[i] == mutuals[mut].trimmed())
2967 return (configs[i] == args[0]);
2972 if(args.count() < 1 || args.count() > 2) {
2973 fprintf(stderr, "%s:%d: system(exec) requires one argument.\n", parser.file.toLatin1().constData(),
2977 if(args.count() == 2) {
2978 const QString sarg = args[1];
2979 if (sarg.toLower() == "true" || sarg.toInt())
2980 warn_msg(WarnParser, "%s:%d: system()'s second argument is now hard-wired to false.\n",
2981 parser.file.toLatin1().constData(), parser.line_no);
2983 return system(args[0].toLatin1().constData()) == 0;
2985 if(function_blocks.isEmpty()) {
2986 fprintf(stderr, "%s:%d unexpected return()\n",
2987 parser.file.toLatin1().constData(), parser.line_no);
2989 FunctionBlock *f = function_blocks.top();
2990 f->cause_return = true;
2991 if(args_list.count() >= 1)
2992 f->return_value += args_list[0];
2997 iterator->cause_break = true;
2999 fprintf(stderr, "%s:%d unexpected break()\n",
3000 parser.file.toLatin1().constData(), parser.line_no);
3004 iterator->cause_next = true;
3006 fprintf(stderr, "%s:%d unexpected next()\n",
3007 parser.file.toLatin1().constData(), parser.line_no);
3010 if(args.count() < 1 || args.count() > 2) {
3011 fprintf(stderr, "%s:%d: defined(function) requires one argument.\n",
3012 parser.file.toLatin1().constData(), parser.line_no);
3014 if(args.count() > 1) {
3015 if(args[1] == "test")
3016 return testFunctions.contains(args[0]);
3017 else if(args[1] == "replace")
3018 return replaceFunctions.contains(args[0]);
3019 else if(args[1] == "var")
3020 return place.contains(args[0]);
3021 fprintf(stderr, "%s:%d: defined(function, type): unexpected type [%s].\n",
3022 parser.file.toLatin1().constData(), parser.line_no,
3023 args[1].toLatin1().constData());
3025 if(replaceFunctions.contains(args[0]) || testFunctions.contains(args[0]))
3031 if(args.count() < 2 || args.count() > 3) {
3032 fprintf(stderr, "%s:%d: contains(var, val) requires at lesat 2 arguments.\n",
3033 parser.file.toLatin1().constData(), parser.line_no);
3036 QRegExp regx(args[1]);
3037 const QStringList &l = values(args[0], place);
3038 if(args.count() == 2) {
3039 for(int i = 0; i < l.size(); ++i) {
3040 const QString val = l[i];
3041 if(regx.exactMatch(val) || val == args[1])
3045 const QStringList mutuals = args[2].split('|');
3046 for(int i = l.size()-1; i >= 0; i--) {
3047 const QString val = l[i];
3048 for(int mut = 0; mut < mutuals.count(); mut++) {
3049 if(val == mutuals[mut].trimmed())
3050 return (regx.exactMatch(val) || val == args[1]);
3056 if(args.count() < 2 || args.count() > 3) {
3057 fprintf(stderr, "%s:%d: infile(file, var, val) requires at least 2 arguments.\n",
3058 parser.file.toLatin1().constData(), parser.line_no);
3063 QHash<QString, QStringList> tmp;
3064 if(doProjectInclude(Option::normalizePath(args[0]), IncludeFlagNewParser, tmp) == IncludeSuccess) {
3065 if(tmp.contains("QMAKE_INTERNAL_INCLUDED_FILES")) {
3066 QStringList &out = place["QMAKE_INTERNAL_INCLUDED_FILES"];
3067 const QStringList &in = tmp["QMAKE_INTERNAL_INCLUDED_FILES"];
3068 for(int i = 0; i < in.size(); ++i) {
3069 if(out.indexOf(in[i]) == -1)
3073 if(args.count() == 2) {
3074 ret = tmp.contains(args[1]);
3076 QRegExp regx(args[2]);
3077 const QStringList &l = tmp[args[1]];
3078 for(QStringList::ConstIterator it = l.begin(); it != l.end(); ++it) {
3079 if(regx.exactMatch((*it)) || (*it) == args[2]) {
3088 if(args.count() != 2 && args.count() != 3) {
3089 fprintf(stderr, "%s:%d: count(var, count) requires two arguments.\n", parser.file.toLatin1().constData(),
3093 if(args.count() == 3) {
3094 QString comp = args[2];
3095 if(comp == ">" || comp == "greaterThan")
3096 return values(args[0], place).count() > args[1].toInt();
3098 return values(args[0], place).count() >= args[1].toInt();
3099 if(comp == "<" || comp == "lessThan")
3100 return values(args[0], place).count() < args[1].toInt();
3102 return values(args[0], place).count() <= args[1].toInt();
3103 if(comp == "equals" || comp == "isEqual" || comp == "=" || comp == "==")
3104 return values(args[0], place).count() == args[1].toInt();
3105 fprintf(stderr, "%s:%d: unexpected modifier to count(%s)\n", parser.file.toLatin1().constData(),
3106 parser.line_no, comp.toLatin1().constData());
3109 return values(args[0], place).count() == args[1].toInt();
3111 if(args.count() != 1) {
3112 fprintf(stderr, "%s:%d: isEmpty(var) requires one argument.\n", parser.file.toLatin1().constData(),
3116 return values(args[0], place).isEmpty();
3120 const bool include_statement = (func_t == T_INCLUDE);
3121 bool ignore_error = false;
3122 if(args.count() >= 2) {
3123 if(func_t == T_INCLUDE) {
3124 parseInto = args[1];
3125 if (args.count() == 3){
3126 QString sarg = args[2];
3127 if (sarg.toLower() == "true" || sarg.toInt())
3128 ignore_error = true;
3131 QString sarg = args[1];
3132 ignore_error = (sarg.toLower() == "true" || sarg.toInt());
3134 } else if(args.count() != 1) {
3135 QString func_desc = "load(feature)";
3136 if(include_statement)
3137 func_desc = "include(file)";
3138 fprintf(stderr, "%s:%d: %s requires one argument.\n", parser.file.toLatin1().constData(),
3139 parser.line_no, func_desc.toLatin1().constData());
3142 QString file = Option::normalizePath(args.first());
3143 uchar flags = IncludeFlagNone;
3144 if(!include_statement)
3145 flags |= IncludeFlagFeature;
3146 IncludeStatus stat = IncludeFailure;
3147 if(!parseInto.isEmpty()) {
3148 QHash<QString, QStringList> symbols;
3149 stat = doProjectInclude(file, flags|IncludeFlagNewProject, symbols);
3150 if(stat == IncludeSuccess) {
3151 QHash<QString, QStringList> out_place;
3152 for(QHash<QString, QStringList>::ConstIterator it = place.begin(); it != place.end(); ++it) {
3153 const QString var = it.key();
3154 if(var != parseInto && !var.startsWith(parseInto + "."))
3155 out_place.insert(var, it.value());
3157 for(QHash<QString, QStringList>::ConstIterator it = symbols.begin(); it != symbols.end(); ++it) {
3158 const QString var = it.key();
3159 if(!var.startsWith("."))
3160 out_place.insert(parseInto + "." + it.key(), it.value());
3165 stat = doProjectInclude(file, flags, place);
3167 if(stat == IncludeFeatureAlreadyLoaded) {
3168 warn_msg(WarnParser, "%s:%d: Duplicate of loaded feature %s",
3169 parser.file.toLatin1().constData(), parser.line_no, file.toLatin1().constData());
3170 } else if(stat == IncludeNoExist && !ignore_error) {
3171 warn_msg(WarnAll, "%s:%d: Unable to find file for inclusion %s",
3172 parser.file.toLatin1().constData(), parser.line_no, file.toLatin1().constData());
3174 } else if(stat >= IncludeFailure) {
3176 printf("Project LOAD(): Feature %s cannot be found.\n", file.toLatin1().constData());
3178 #if defined(QT_BUILD_QMAKE_LIBRARY)
3188 if(args.count() != 2) {
3189 fprintf(stderr, "%s:%d: debug(level, message) requires one argument.\n", parser.file.toLatin1().constData(),
3193 QString msg = fixEnvVariables(args[1]);
3194 debug_msg(args[0].toInt(), "Project DEBUG: %s", msg.toLatin1().constData());
3200 if(args.count() != 1) {
3201 fprintf(stderr, "%s:%d: %s(message) requires one argument.\n", parser.file.toLatin1().constData(),
3202 parser.line_no, func.toLatin1().constData());
3205 QString msg = fixEnvVariables(args.first());
3206 if (func_t == T_LOG) {
3207 fputs(msg.toLatin1().constData(), stderr);
3209 fprintf(stderr, "Project %s: %s\n", func.toUpper().toLatin1().constData(), msg.toLatin1().constData());
3210 if (func == "error")
3211 #if defined(QT_BUILD_QMAKE_LIBRARY)
3219 if (args.count() != 1) {
3220 fprintf(stderr, "%s:%d: option() requires one argument.\n",
3221 parser.file.toLatin1().constData(), parser.line_no);
3224 if (args.first() == "host_build") {
3225 if (!host_build && isActiveConfig("cross_compile")) {
3227 need_restart = true;
3230 fprintf(stderr, "%s:%d: unrecognized option() argument '%s'.\n",
3231 parser.file.toLatin1().constData(), parser.line_no,
3232 args.first().toLatin1().constData());
3237 if (args.count() > 3) {
3238 fprintf(stderr, "%s:%d: cache(var, [set|add|sub] [transient] [super], [srcvar]) requires one to three arguments.\n",
3239 parser.file.toLatin1().constData(), parser.line_no);
3242 bool persist = true;
3244 enum { CacheSet, CacheAdd, CacheSub } mode = CacheSet;
3246 if (args.count() >= 2) {
3247 foreach (const QString &opt, split_value_list(args.at(1))) {
3248 if (opt == QLatin1String("transient")) {
3250 } else if (opt == QLatin1String("super")) {
3252 } else if (opt == QLatin1String("set")) {
3254 } else if (opt == QLatin1String("add")) {
3256 } else if (opt == QLatin1String("sub")) {
3259 fprintf(stderr, "%s:%d: cache(): invalid flag %s.\n",
3260 parser.file.toLatin1().constData(), parser.line_no,
3261 opt.toLatin1().constData());
3265 if (args.count() >= 3) {
3266 srcvar = args.at(2);
3267 } else if (mode != CacheSet) {
3268 fprintf(stderr, "%s:%d: cache(): modes other than 'set' require a source variable.\n",
3269 parser.file.toLatin1().constData(), parser.line_no);
3274 QString dstvar = args.at(0);
3275 if (!dstvar.isEmpty()) {
3276 if (srcvar.isEmpty())
3278 if (!place.contains(srcvar)) {
3279 fprintf(stderr, "%s:%d: variable %s is not defined.\n",
3280 parser.file.toLatin1().constData(), parser.line_no,
3281 srcvar.toLatin1().constData());
3284 // The current ("native") value can differ from the cached value, e.g., the current
3285 // CONFIG will typically have more values than the cached one. Therefore we deal with
3287 const QStringList diffval = values(srcvar, place);
3288 const QStringList oldval = base_vars.value(dstvar);
3290 if (mode == CacheSet) {
3294 if (mode == CacheAdd)
3297 subAll(&newval, diffval);
3299 // We assume that whatever got the cached value to be what it is now will do so
3300 // the next time as well, so it is OK that the early exit here will skip the
3301 // persisting as well.
3302 if (oldval == newval)
3304 base_vars[dstvar] = newval;
3306 if (dstvar == "QMAKEPATH")
3307 cached_qmakepath = newval;
3308 else if (dstvar == "QMAKEFEATURES")
3309 cached_qmakefeatures = newval;
3312 invalidateFeatureRoots();
3317 if (mode == CacheAdd)
3318 varstr += QLatin1String(" +=");
3319 else if (mode == CacheSub)
3320 varstr += QLatin1String(" -=");
3322 varstr += QLatin1String(" =");
3323 if (diffval.count() == 1) {
3324 varstr += QLatin1Char(' ');
3325 varstr += quoteValue(diffval.at(0));
3326 } else if (!diffval.isEmpty()) {
3327 foreach (const QString &vval, diffval) {
3328 varstr += QLatin1String(" \\\n ");
3329 varstr += quoteValue(vval);
3332 varstr += QLatin1Char('\n');
3336 if (superfile.isEmpty()) {
3337 superfile = Option::output_dir + QLatin1String("/.qmake.super");
3338 printf("Info: creating super cache file %s\n", superfile.toLatin1().constData());
3339 vars["_QMAKE_SUPER_CACHE_"] << superfile;
3343 if (cachefile.isEmpty()) {
3344 cachefile = Option::output_dir + QLatin1String("/.qmake.cache");
3345 printf("Info: creating cache file %s\n", cachefile.toLatin1().constData());
3346 vars["_QMAKE_CACHE_"] << cachefile;
3347 if (cached_build_root.isEmpty()) {
3348 cached_build_root = Option::output_dir;
3349 cached_source_root = values("_PRO_FILE_PWD_", place).first();
3350 if (cached_source_root == cached_build_root)
3351 cached_source_root.clear();
3352 invalidateFeatureRoots();
3358 if (!QDir::current().mkpath(qfi.path())) {
3359 fprintf(stderr, "%s:%d: ERROR creating cache directory %s\n",
3360 parser.file.toLatin1().constData(), parser.line_no,
3361 qfi.path().toLatin1().constData());
3365 if (!writeFile(fn, QIODevice::Append, varstr, &errStr)) {
3366 fprintf(stderr, "ERROR writing cache file %s: %s\n",
3367 fn.toLatin1().constData(), errStr.toLatin1().constData());
3368 #if defined(QT_BUILD_QMAKE_LIBRARY)
3376 if (args.count() != 1) {
3377 fprintf(stderr, "%s:%d: mkpath(name) requires one argument.\n",
3378 parser.file.toLatin1().constData(), parser.line_no);
3381 if (!QDir::current().mkpath(args.at(0))) {
3382 fprintf(stderr, "%s:%d: ERROR creating directory %s\n",
3383 parser.file.toLatin1().constData(), parser.line_no,
3384 QDir::toNativeSeparators(args.at(0)).toLatin1().constData());
3388 case T_WRITE_FILE: {
3389 if (args.count() > 3) {
3390 fprintf(stderr, "%s:%d: write_file(name, [content var, [append]]) requires one to three arguments.\n",
3391 parser.file.toLatin1().constData(), parser.line_no);
3394 QIODevice::OpenMode mode = QIODevice::Truncate;
3396 if (args.count() >= 2) {
3397 QStringList vals = values(args.at(1), place);
3398 if (!vals.isEmpty())
3399 contents = vals.join(QLatin1String("\n")) + QLatin1Char('\n');
3400 if (args.count() >= 3)
3401 if (!args.at(2).compare(QLatin1String("append"), Qt::CaseInsensitive))
3402 mode = QIODevice::Append;
3404 QFileInfo qfi(args.at(0));
3405 if (!QDir::current().mkpath(qfi.path())) {
3406 fprintf(stderr, "%s:%d: ERROR creating directory %s\n",
3407 parser.file.toLatin1().constData(), parser.line_no,
3408 qfi.path().toLatin1().constData());
3412 if (!writeFile(args.at(0), mode, contents, &errStr)) {
3413 fprintf(stderr, "%s:%d ERROR writing %s: %s\n",
3414 parser.file.toLatin1().constData(), parser.line_no,
3415 args.at(0).toLatin1().constData(), errStr.toLatin1().constData());
3420 if (args.count() != 2) {
3421 fprintf(stderr, "%s:%d: touch(file, reffile) requires two arguments.\n",
3422 parser.file.toLatin1().constData(), parser.line_no);
3427 if (stat(args.at(1).toLocal8Bit().constData(), &st)) {
3428 fprintf(stderr, "%s:%d: ERROR: cannot stat() reference file %s: %s.\n",
3429 parser.file.toLatin1().constData(), parser.line_no,
3430 args.at(1).toLatin1().constData(), strerror(errno));
3434 utb.actime = time(0);
3435 utb.modtime = st.st_mtime;
3436 if (utime(args.at(0).toLocal8Bit().constData(), &utb)) {
3437 fprintf(stderr, "%s:%d: ERROR: cannot touch %s: %s.\n",
3438 parser.file.toLatin1().constData(), parser.line_no,
3439 args.at(0).toLatin1().constData(), strerror(errno));
3443 HANDLE rHand = CreateFile((wchar_t*)args.at(1).utf16(),
3444 GENERIC_READ, FILE_SHARE_READ,
3445 NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
3446 if (rHand == INVALID_HANDLE_VALUE) {
3447 fprintf(stderr, "%s:%d: ERROR: cannot open() reference file %s: %s.\n",
3448 parser.file.toLatin1().constData(), parser.line_no,
3449 args.at(1).toLatin1().constData(),
3450 windowsErrorCode().toLatin1().constData());
3454 GetFileTime(rHand, 0, 0, &ft);
3456 HANDLE wHand = CreateFile((wchar_t*)args.at(0).utf16(),
3457 GENERIC_WRITE, FILE_SHARE_READ,
3458 NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
3459 if (wHand == INVALID_HANDLE_VALUE) {
3460 fprintf(stderr, "%s:%d: ERROR: cannot open %s: %s.\n",
3461 parser.file.toLatin1().constData(), parser.line_no,
3462 args.at(0).toLatin1().constData(),
3463 windowsErrorCode().toLatin1().constData());
3466 SetFileTime(wHand, 0, 0, &ft);
3471 fprintf(stderr, "%s:%d: Unknown test function: %s\n", parser.file.toLatin1().constData(), parser.line_no,
3472 func.toLatin1().constData());
3478 QMakeProject::doProjectCheckReqs(const QStringList &deps, QHash<QString, QStringList> &place)
3481 for(QStringList::ConstIterator it = deps.begin(); it != deps.end(); ++it) {
3482 bool test = doProjectTest((*it), place);
3484 debug_msg(1, "Project Parser: %s:%d Failed test: REQUIRES = %s",
3485 parser.file.toLatin1().constData(), parser.line_no,
3486 (*it).toLatin1().constData());
3487 place["QMAKE_FAILED_REQUIREMENTS"].append((*it));
3495 QMakeProject::test(const QString &v)
3497 QHash<QString, QStringList> tmp = vars;
3498 return doProjectTest(v, tmp);
3502 QMakeProject::test(const QString &func, const QList<QStringList> &args)
3504 QHash<QString, QStringList> tmp = vars;
3505 return doProjectTest(func, args, tmp);
3509 QMakeProject::expand(const QString &str)
3512 QHash<QString, QStringList> tmp = vars;
3513 const QStringList ret = doVariableReplaceExpand(str, tmp, &ok);
3516 return QStringList();
3520 QMakeProject::expand(const QString &str, const QString &file, int line)
3523 parser_info pi = parser;
3525 parser.line_no = line;
3526 parser.from_file = false;
3527 QHash<QString, QStringList> tmp = vars;
3528 const QStringList ret = doVariableReplaceExpand(str, tmp, &ok);
3530 return ok ? ret.join(QString(Option::field_sep)) : QString();
3534 QMakeProject::expand(const QString &func, const QList<QStringList> &args)
3536 QHash<QString, QStringList> tmp = vars;
3537 return doProjectExpand(func, args, tmp);
3541 QMakeProject::doVariableReplace(QString &str, QHash<QString, QStringList> &place)
3544 str = doVariableReplaceExpand(str, place, &ret).join(QString(Option::field_sep));
3549 QMakeProject::doVariableReplaceExpand(const QString &str, QHash<QString, QStringList> &place, bool *ok)
3557 const ushort LSQUARE = '[';
3558 const ushort RSQUARE = ']';
3559 const ushort LCURLY = '{';
3560 const ushort RCURLY = '}';
3561 const ushort LPAREN = '(';
3562 const ushort RPAREN = ')';
3563 const ushort DOLLAR = '$';
3564 const ushort SLASH = '\\';
3565 const ushort UNDERSCORE = '_';
3566 const ushort DOT = '.';
3567 const ushort SPACE = ' ';
3568 const ushort TAB = '\t';
3569 const ushort SINGLEQUOTE = '\'';
3570 const ushort DOUBLEQUOTE = '"';
3572 ushort unicode, quote = 0;
3573 const QChar *str_data = str.data();
3574 const int str_len = str.length();
3581 for(int i = 0; i < str_len; ++i) {
3582 unicode = str_data[i].unicode();
3583 const int start_var = i;
3584 if(unicode == DOLLAR && str_len > i+2) {
3585 unicode = str_data[++i].unicode();
3586 if(unicode == DOLLAR) {
3590 enum { VAR, ENVIRON, FUNCTION, PROPERTY } var_type = VAR;
3591 unicode = str_data[++i].unicode();
3592 if(unicode == LSQUARE) {
3593 unicode = str_data[++i].unicode();
3595 var_type = PROPERTY;
3596 } else if(unicode == LCURLY) {
3597 unicode = str_data[++i].unicode();
3600 } else if(unicode == LPAREN) {
3601 unicode = str_data[++i].unicode();
3606 if(!(unicode & (0xFF<<8)) &&
3607 unicode != DOT && unicode != UNDERSCORE &&
3608 //unicode != SINGLEQUOTE && unicode != DOUBLEQUOTE &&
3609 (unicode < 'a' || unicode > 'z') && (unicode < 'A' || unicode > 'Z') &&
3610 (unicode < '0' || unicode > '9') && (!term || unicode != '/'))
3612 var.append(QChar(unicode));
3615 unicode = str_data[i].unicode();
3616 // at this point, i points to either the 'term' or 'next' character (which is in unicode)
3618 if(var_type == VAR && unicode == LPAREN) {
3619 var_type = FUNCTION;
3624 unicode = str_data[i].unicode();
3625 if(unicode == LPAREN) {
3627 } else if(unicode == RPAREN) {
3632 args.append(QChar(unicode));
3635 unicode = str_data[i].unicode();
3638 // at this point i is pointing to the 'next' character (which is in unicode)
3639 // this might actually be a term character since you can do $${func()}
3642 if(unicode != term) {
3643 qmake_error_msg("Missing " + QString(term) + " terminator [found " + (unicode?QString(unicode):QString("end-of-line")) + "]");
3646 return QStringList();
3649 // move the 'cursor' back to the last char of the thing we were looking at
3652 // since i never points to the 'next' character, there is no reason for this to be set
3655 QStringList replacement;
3656 if(var_type == ENVIRON) {
3657 replacement = split_value_list(QString::fromLocal8Bit(qgetenv(var.toLatin1().constData())));
3658 } else if(var_type == PROPERTY) {
3660 replacement = split_value_list(prop->value(var));
3661 } else if(var_type == FUNCTION) {
3662 replacement = doProjectExpand(var, args, place);
3663 } else if(var_type == VAR) {
3664 replacement = magicValues(var, place);
3666 if(!(replaced++) && start_var)
3667 current = str.left(start_var);
3668 if(!replacement.isEmpty()) {
3670 current += replacement.join(QString(Option::field_sep));
3672 current += replacement.takeFirst();
3673 if(!replacement.isEmpty()) {
3674 if(!current.isEmpty())
3675 ret.append(current);
3676 current = replacement.takeLast();
3677 if(!replacement.isEmpty())
3682 debug_msg(2, "Project Parser [var replace]: %s -> %s",
3683 str.toLatin1().constData(), var.toLatin1().constData(),
3684 replacement.join("::").toLatin1().constData());
3687 current.append("$");
3690 if(quote && unicode == quote) {
3693 } else if(unicode == SLASH) {
3694 bool escape = false;
3695 const char *symbols = "[]{}()$\\'\"";
3696 for(const char *s = symbols; *s; ++s) {
3697 if(str_data[i+1].unicode() == (ushort)*s) {
3701 current = str.left(start_var);
3702 current.append(str.at(i));
3706 if(!escape && !backslashWarned) {
3707 backslashWarned = true;
3708 warn_msg(WarnDeprecated, "%s:%d: Unescaped backslashes are deprecated.",
3709 parser.file.toLatin1().constData(), parser.line_no);
3711 if(escape || !replaced)
3713 } else if(!quote && (unicode == SINGLEQUOTE || unicode == DOUBLEQUOTE)) {
3716 if(!(replaced++) && i)
3717 current = str.left(i);
3718 } else if(!quote && (unicode == SPACE || unicode == TAB)) {
3720 if(!current.isEmpty()) {
3721 ret.append(current);
3725 if(replaced && unicode)
3726 current.append(QChar(unicode));
3729 ret = QStringList(str);
3730 else if(!current.isEmpty())
3731 ret.append(current);
3732 //qDebug() << "REPLACE" << str << ret;
3734 warn_msg(WarnDeprecated, "%s:%d: Unmatched quotes are deprecated.",
3735 parser.file.toLatin1().constData(), parser.line_no);
3739 QStringList QMakeProject::magicValues(const QString &_var, const QHash<QString, QStringList> &place) const
3741 QString var = varMap(_var);
3742 if (var == QLatin1String("_LINE_")) { //parser line number
3743 return QStringList(QString::number(parser.line_no));
3744 } else if(var == QLatin1String("_FILE_")) { //parser file
3745 return QStringList(parser.file);
3750 QStringList &QMakeProject::values(const QString &_var, QHash<QString, QStringList> &place)
3752 QString var = varMap(_var);
3756 bool QMakeProject::isEmpty(const QString &v) const
3758 QHash<QString, QStringList>::ConstIterator it = vars.constFind(v);
3759 return it == vars.constEnd() || it->isEmpty();
3763 QMakeProject::dump() const
3766 for (QHash<QString, QStringList>::ConstIterator it = vars.begin(); it != vars.end(); ++it) {
3767 if (!it.key().startsWith('.')) {
3768 QString str = it.key() + " =";
3769 foreach (const QString &v, it.value())
3770 str += ' ' + quoteValue(v);
3775 foreach (const QString &v, out)
3776 puts(qPrintable(v));