| 
									
										
										
										
											2016-01-13 14:12:15 +01:00
										 |  |  | /****************************************************************************
 | 
					
						
							|  |  |  | ** | 
					
						
							| 
									
										
										
										
											2016-01-15 14:57:40 +01:00
										 |  |  | ** Copyright (C) 2016 The Qt Company Ltd. | 
					
						
							|  |  |  | ** Contact: https://www.qt.io/licensing/
 | 
					
						
							| 
									
										
										
										
											2016-01-13 14:12:15 +01:00
										 |  |  | ** | 
					
						
							|  |  |  | ** This file is part of Qt Creator. | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | ** 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 | 
					
						
							| 
									
										
										
										
											2016-01-15 14:57:40 +01:00
										 |  |  | ** a written agreement between you and The Qt Company. For licensing terms | 
					
						
							|  |  |  | ** and conditions see https://www.qt.io/terms-conditions. For further
 | 
					
						
							|  |  |  | ** information use the contact form at https://www.qt.io/contact-us.
 | 
					
						
							| 
									
										
										
										
											2016-01-13 14:12:15 +01:00
										 |  |  | ** | 
					
						
							| 
									
										
										
										
											2016-01-15 14:57:40 +01:00
										 |  |  | ** GNU General Public License Usage | 
					
						
							|  |  |  | ** Alternatively, this file may be used under the terms of the GNU | 
					
						
							|  |  |  | ** General Public License version 3 as published by the Free Software | 
					
						
							|  |  |  | ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT | 
					
						
							|  |  |  | ** included in the packaging of this file. Please review the following | 
					
						
							|  |  |  | ** information to ensure the GNU General Public License requirements will | 
					
						
							|  |  |  | ** be met: https://www.gnu.org/licenses/gpl-3.0.html.
 | 
					
						
							| 
									
										
										
										
											2016-01-13 14:12:15 +01:00
										 |  |  | ** | 
					
						
							|  |  |  | ****************************************************************************/ | 
					
						
							| 
									
										
										
										
											2016-01-13 14:32:28 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-13 14:12:15 +01:00
										 |  |  | #include "projectpart.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-07 15:00:38 +01:00
										 |  |  | #include <utils/algorithm.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-05 16:08:01 +01:00
										 |  |  | #include <QFile>
 | 
					
						
							| 
									
										
										
										
											2016-01-13 14:12:15 +01:00
										 |  |  | #include <QDir>
 | 
					
						
							|  |  |  | #include <QTextStream>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace CppTools { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ProjectPart::updateLanguageFeatures() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-01-09 18:31:20 +01:00
										 |  |  |     const bool hasCxx = languageVersion >= Utils::LanguageVersion::CXX98; | 
					
						
							| 
									
										
										
										
											2017-11-23 16:11:07 +02:00
										 |  |  |     const bool hasQt = hasCxx && qtVersion != NoQt; | 
					
						
							| 
									
										
										
										
											2019-01-09 18:31:20 +01:00
										 |  |  |     languageFeatures.cxx11Enabled = languageVersion >= Utils::LanguageVersion::CXX11; | 
					
						
							| 
									
										
										
										
											2019-05-12 20:49:00 -07:00
										 |  |  |     languageFeatures.cxx14Enabled = languageVersion >= Utils::LanguageVersion::CXX14; | 
					
						
							| 
									
										
										
										
											2017-11-23 16:11:07 +02:00
										 |  |  |     languageFeatures.cxxEnabled = hasCxx; | 
					
						
							| 
									
										
										
										
											2019-01-09 18:31:20 +01:00
										 |  |  |     languageFeatures.c99Enabled = languageVersion >= Utils::LanguageVersion::C99; | 
					
						
							|  |  |  |     languageFeatures.objCEnabled = languageExtensions.testFlag(Utils::LanguageExtension::ObjectiveC); | 
					
						
							| 
									
										
										
										
											2016-01-13 14:12:15 +01:00
										 |  |  |     languageFeatures.qtEnabled = hasQt; | 
					
						
							|  |  |  |     languageFeatures.qtMocRunEnabled = hasQt; | 
					
						
							|  |  |  |     if (!hasQt) { | 
					
						
							|  |  |  |         languageFeatures.qtKeywordsEnabled = false; | 
					
						
							|  |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2017-02-07 15:00:38 +01:00
										 |  |  |         languageFeatures.qtKeywordsEnabled = !Utils::contains( | 
					
						
							|  |  |  |                     projectMacros, | 
					
						
							|  |  |  |                     [] (const ProjectExplorer::Macro ¯o) { return macro.key == "QT_NO_KEYWORDS"; }); | 
					
						
							| 
									
										
										
										
											2016-01-13 14:12:15 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ProjectPart::Ptr ProjectPart::copy() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return Ptr(new ProjectPart(*this)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QString ProjectPart::id() const | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-03-09 14:13:22 +01:00
										 |  |  |     QString projectPartId = projectFileLocation(); | 
					
						
							| 
									
										
										
										
											2016-01-13 14:12:15 +01:00
										 |  |  |     if (!displayName.isEmpty()) | 
					
						
							|  |  |  |         projectPartId.append(QLatin1Char(' ') + displayName); | 
					
						
							|  |  |  |     return projectPartId; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-09 14:13:22 +01:00
										 |  |  | QString ProjectPart::projectFileLocation() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QString location = QDir::fromNativeSeparators(projectFile); | 
					
						
							|  |  |  |     if (projectFileLine > 0) | 
					
						
							|  |  |  |         location += ":" + QString::number(projectFileLine); | 
					
						
							|  |  |  |     if (projectFileColumn > 0) | 
					
						
							|  |  |  |         location += ":" + QString::number(projectFileColumn); | 
					
						
							|  |  |  |     return location; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-05 16:08:01 +01:00
										 |  |  | QByteArray ProjectPart::readProjectConfigFile(const Ptr &projectPart) | 
					
						
							| 
									
										
										
										
											2016-01-13 14:12:15 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     QByteArray result; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-05 16:08:01 +01:00
										 |  |  |     QFile f(projectPart->projectConfigFile); | 
					
						
							| 
									
										
										
										
											2016-01-13 14:12:15 +01:00
										 |  |  |     if (f.open(QIODevice::ReadOnly)) { | 
					
						
							|  |  |  |         QTextStream is(&f); | 
					
						
							|  |  |  |         result = is.readAll().toUtf8(); | 
					
						
							|  |  |  |         f.close(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } // namespace CppTools
 |