2011-04-27 10:05:43 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2013-01-02 11:13:29 +00:00
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
2012-09-19 12:28:29 +00:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** This file is part of the qmake application of the Qt Toolkit.
|
|
|
|
**
|
|
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
2012-09-19 12:28:29 +00:00
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
|
|
|
**
|
2011-04-27 10:05:43 +00:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-09-19 12:28:29 +00:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
2012-09-19 12:28:29 +00:00
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2011-04-27 10:05:43 +00:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
2011-05-24 09:34:08 +00:00
|
|
|
** GNU General Public License Usage
|
2012-09-19 12:28:29 +00:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3.0 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file LICENSE.GPL included in the
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
** ensure the GNU General Public License version 3.0 requirements will be
|
|
|
|
** met: http://www.gnu.org/copyleft/gpl.html.
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
2012-01-24 06:17:24 +00:00
|
|
|
**
|
2011-04-27 10:05:43 +00:00
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "meta.h"
|
|
|
|
#include "project.h"
|
|
|
|
#include "option.h"
|
|
|
|
#include <qdir.h>
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
QHash<QString, ProValueMap> QMakeMetaInfo::cache_vars;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-08-22 12:10:35 +00:00
|
|
|
QMakeMetaInfo::QMakeMetaInfo(QMakeProject *_conf)
|
|
|
|
: conf(_conf)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
QMakeMetaInfo::readLib(QString lib)
|
|
|
|
{
|
|
|
|
clear();
|
|
|
|
QString meta_file = findLib(lib);
|
|
|
|
|
|
|
|
if(cache_vars.contains(meta_file)) {
|
|
|
|
vars = cache_vars[meta_file];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ret = false;
|
|
|
|
if(!meta_file.isNull()) {
|
|
|
|
if(meta_file.endsWith(Option::pkgcfg_ext)) {
|
|
|
|
if((ret=readPkgCfgFile(meta_file)))
|
|
|
|
meta_type = "pkgcfg";
|
|
|
|
} else if(meta_file.endsWith(Option::libtool_ext)) {
|
|
|
|
if((ret=readLibtoolFile(meta_file)))
|
|
|
|
meta_type = "libtool";
|
|
|
|
} else if(meta_file.endsWith(Option::prl_ext)) {
|
|
|
|
QMakeProject proj;
|
2012-09-05 16:29:19 +00:00
|
|
|
if (!proj.read(Option::normalizePath(meta_file), QMakeEvaluator::LoadProOnly))
|
2011-04-27 10:05:43 +00:00
|
|
|
return false;
|
|
|
|
meta_type = "qmake";
|
|
|
|
vars = proj.variables();
|
|
|
|
ret = true;
|
|
|
|
} else {
|
2011-11-15 08:34:38 +00:00
|
|
|
warn_msg(WarnLogic, "QMakeMetaInfo: unknown file format for %s",
|
|
|
|
QDir::toNativeSeparators(meta_file).toLatin1().constData());
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(ret)
|
|
|
|
cache_vars.insert(meta_file, vars);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
QMakeMetaInfo::clear()
|
|
|
|
{
|
|
|
|
vars.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QString
|
|
|
|
QMakeMetaInfo::findLib(QString lib)
|
|
|
|
{
|
|
|
|
if((lib[0] == '\'' || lib[0] == '"') &&
|
|
|
|
lib[lib.length()-1] == lib[0])
|
2011-11-15 08:34:38 +00:00
|
|
|
lib = lib.mid(1, lib.length()-2);
|
|
|
|
lib = Option::normalizePath(lib);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
QString ret;
|
|
|
|
QString extns[] = { Option::prl_ext, /*Option::pkgcfg_ext, Option::libtool_ext,*/ QString() };
|
|
|
|
for(int extn = 0; !extns[extn].isNull(); extn++) {
|
|
|
|
if(lib.endsWith(extns[extn]))
|
|
|
|
ret = QFile::exists(lib) ? lib : QString();
|
|
|
|
}
|
|
|
|
if(ret.isNull()) {
|
|
|
|
for(int extn = 0; !extns[extn].isNull(); extn++) {
|
|
|
|
if(QFile::exists(lib + extns[extn])) {
|
|
|
|
ret = lib + extns[extn];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(ret.isNull()) {
|
|
|
|
debug_msg(2, "QMakeMetaInfo: Cannot find info file for %s", lib.toLatin1().constData());
|
|
|
|
} else {
|
|
|
|
debug_msg(2, "QMakeMetaInfo: Found info file %s for %s", ret.toLatin1().constData(), lib.toLatin1().constData());
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
QMakeMetaInfo::readLibtoolFile(const QString &f)
|
|
|
|
{
|
|
|
|
/* I can just run the .la through the .pro parser since they are compatible.. */
|
|
|
|
QMakeProject proj;
|
2011-11-15 08:34:38 +00:00
|
|
|
QString nf = Option::normalizePath(f);
|
2012-09-05 16:29:19 +00:00
|
|
|
if (!proj.read(nf, QMakeEvaluator::LoadProOnly))
|
2011-04-27 10:05:43 +00:00
|
|
|
return false;
|
2011-11-15 08:34:38 +00:00
|
|
|
QString dirf = nf.section(QLatin1Char('/'), 0, -2);
|
|
|
|
if(dirf == nf)
|
2011-04-27 10:05:43 +00:00
|
|
|
dirf = "";
|
|
|
|
else if(!dirf.isEmpty() && !dirf.endsWith(Option::output_dir))
|
2011-11-15 08:34:38 +00:00
|
|
|
dirf += QLatin1Char('/');
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProValueMap &v = proj.variables();
|
|
|
|
for (ProValueMap::ConstIterator it = v.begin(); it != v.end(); ++it) {
|
|
|
|
ProStringList lst = it.value();
|
2011-04-27 10:05:43 +00:00
|
|
|
if(lst.count() == 1 && (lst.first().startsWith("'") || lst.first().startsWith("\"")) &&
|
2012-09-06 10:21:38 +00:00
|
|
|
lst.first().endsWith(QString(lst.first().at(0))))
|
|
|
|
lst = ProStringList(lst.first().mid(1, lst.first().length() - 2));
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!vars.contains("QMAKE_PRL_TARGET") &&
|
|
|
|
(it.key() == "dlname" || it.key() == "library_names" || it.key() == "old_library")) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString dir = v["libdir"].first();
|
|
|
|
if ((dir.startsWith('\'') || dir.startsWith('"')) && dir.endsWith(dir.at(0)))
|
2011-04-27 10:05:43 +00:00
|
|
|
dir = dir.mid(1, dir.length() - 2);
|
|
|
|
dir = dir.trimmed();
|
2011-11-15 08:34:38 +00:00
|
|
|
if(!dir.isEmpty() && !dir.endsWith(QLatin1Char('/')))
|
|
|
|
dir += QLatin1Char('/');
|
2011-04-27 10:05:43 +00:00
|
|
|
if(lst.count() == 1)
|
2012-09-06 10:21:38 +00:00
|
|
|
lst = ProStringList(lst.first().toQString().split(" "));
|
|
|
|
for (ProStringList::Iterator lst_it = lst.begin(); lst_it != lst.end(); ++lst_it) {
|
2011-04-27 10:05:43 +00:00
|
|
|
bool found = false;
|
2012-09-06 10:21:38 +00:00
|
|
|
QString dirs[] = { "", dir.toQString(), dirf, dirf + ".libs/", "(term)" };
|
2011-04-27 10:05:43 +00:00
|
|
|
for(int i = 0; !found && dirs[i] != "(term)"; i++) {
|
|
|
|
if(QFile::exists(dirs[i] + (*lst_it))) {
|
|
|
|
QString targ = dirs[i] + (*lst_it);
|
|
|
|
if(QDir::isRelativePath(targ))
|
2011-11-15 08:34:38 +00:00
|
|
|
targ.prepend(qmake_getpwd() + QLatin1Char('/'));
|
2011-04-27 10:05:43 +00:00
|
|
|
vars["QMAKE_PRL_TARGET"] << targ;
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(found)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if(it.key() == "dependency_libs") {
|
|
|
|
if(lst.count() == 1) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString dep = lst.first();
|
2012-08-20 12:33:08 +00:00
|
|
|
if ((dep.startsWith('\'') || dep.startsWith('"')) && dep.endsWith(dep.at(0)))
|
2011-04-27 10:05:43 +00:00
|
|
|
dep = dep.mid(1, dep.length() - 2);
|
2012-09-06 10:21:38 +00:00
|
|
|
lst = ProStringList(dep.trimmed().toQString().split(" "));
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2012-09-06 10:21:38 +00:00
|
|
|
for (ProStringList::Iterator lit = lst.begin(); lit != lst.end(); ++lit) {
|
2011-04-27 10:05:43 +00:00
|
|
|
if((*lit).startsWith("-R")) {
|
|
|
|
if(!conf->isEmpty("QMAKE_LFLAGS_RPATH"))
|
|
|
|
(*lit) = conf->first("QMAKE_LFLAGS_RPATH") + (*lit).mid(2);
|
|
|
|
}
|
|
|
|
}
|
2012-11-26 11:27:53 +00:00
|
|
|
ProStringList &prlLibs = vars["QMAKE_PRL_LIBS"];
|
|
|
|
foreach (const ProString &s, lst) {
|
|
|
|
prlLibs.removeAll(s);
|
|
|
|
prlLibs.append(s);
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
QMakeMetaInfo::readPkgCfgFile(const QString &f)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Must implement reading in pkg-config files (%s)!!!\n", f.toLatin1().constData());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
QT_END_NAMESPACE
|