2011-11-11 08:57:44 +00:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
#############################################################################
|
|
|
|
##
|
2012-09-19 12:28:29 +00:00
|
|
|
## Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
|
|
|
|
## Contact: http://www.qt-project.org/legal
|
2011-11-11 08:57:44 +00:00
|
|
|
##
|
|
|
|
## This file is part of the porting tools 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-11-11 08:57:44 +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-11-11 08:57:44 +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-11-11 08:57:44 +00:00
|
|
|
## version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
##
|
|
|
|
## 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-11-11 08:57:44 +00:00
|
|
|
##
|
2012-01-24 06:17:24 +00:00
|
|
|
##
|
2011-11-11 08:57:44 +00:00
|
|
|
## $QT_END_LICENSE$
|
|
|
|
##
|
|
|
|
#############################################################################
|
|
|
|
|
|
|
|
|
|
|
|
use Cwd;
|
|
|
|
use File::Find;
|
|
|
|
use File::Spec;
|
2011-11-22 11:20:04 +00:00
|
|
|
use IO::File;
|
|
|
|
use Getopt::Long;
|
2011-11-11 08:57:44 +00:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
my $dry_run = 0;
|
2011-11-22 11:20:04 +00:00
|
|
|
my $help = 0;
|
|
|
|
my $stripModule = 0;
|
2011-11-11 08:57:44 +00:00
|
|
|
my $fixedFileCount = 0;
|
2011-11-22 11:20:04 +00:00
|
|
|
my $fileCount = 0;
|
|
|
|
my $verbose = 0;
|
|
|
|
my $qtdir = $ENV{'QTDIR'};
|
|
|
|
|
|
|
|
my $USAGE=<<EOF;
|
|
|
|
This script replaces all Qt 4 style includes with Qt 5 includes.
|
|
|
|
|
|
|
|
Usage: $0 [options]
|
|
|
|
|
|
|
|
Options:
|
|
|
|
--dry-run : Do not replace anything, just print what would be replaced
|
|
|
|
--strip-modules : Strip the module headers for writing portable code
|
|
|
|
--verbose : Verbose
|
|
|
|
--qtdir <directory> : Point to Qt 5's qtbase directory
|
|
|
|
EOF
|
|
|
|
|
|
|
|
if (!GetOptions('dry-run' => \$dry_run, 'help' => \$help,
|
|
|
|
'strip-modules' => \$stripModule, 'verbose' => \$verbose, 'qtdir:s' => \$qtdir)
|
|
|
|
|| $help) {
|
|
|
|
print $USAGE;
|
|
|
|
exit (1);
|
2011-11-11 08:57:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
my %headerSubst = ();
|
|
|
|
my $cwd = getcwd();
|
|
|
|
|
|
|
|
sub fixHeaders
|
|
|
|
{
|
|
|
|
my $fileName = $File::Find::name;
|
|
|
|
my $relFileName = File::Spec->abs2rel($fileName, $cwd);
|
|
|
|
|
|
|
|
# only check sources, also ignore symbolic links and directories
|
2011-11-22 11:20:04 +00:00
|
|
|
return unless -f $fileName && $fileName =~ /(\.h|\.cpp|\/C|\.cc|\.CC)$/;
|
2011-11-11 08:57:44 +00:00
|
|
|
|
2011-11-22 11:20:04 +00:00
|
|
|
my $inFile = new IO::File('<' . $fileName) or die ('Unable to open ' . $fileName . ': ' . $!);
|
|
|
|
$fileCount++;
|
|
|
|
my @affectedClasses;
|
|
|
|
my @outLines;
|
2011-11-11 08:57:44 +00:00
|
|
|
|
2011-11-22 11:20:04 +00:00
|
|
|
while (my $line = <$inFile>) {
|
2011-11-11 08:57:44 +00:00
|
|
|
if ($line =~ /^#(\s*)include(\s*)<.*?\/(.*?)>(.*)/) {
|
|
|
|
my $newHeader = $headerSubst{$3};
|
|
|
|
if ($newHeader) {
|
2011-11-22 11:20:04 +00:00
|
|
|
$line = '#' . $1 . 'include' . $2 . '<' . $newHeader . '>' . $4 . "\n";
|
|
|
|
push(@affectedClasses, $3);
|
2011-11-11 08:57:44 +00:00
|
|
|
}
|
|
|
|
} elsif ($line =~ /^#(\s*)include(\s*)<QtGui>(.*)/) {
|
2011-11-22 11:20:04 +00:00
|
|
|
$line = '#' . $1 . 'include' . $2 . '<QtWidgets>' . $3 . "\n";
|
|
|
|
push(@affectedClasses, 'QtGui');
|
2011-11-11 08:57:44 +00:00
|
|
|
}
|
2011-11-22 11:20:04 +00:00
|
|
|
push(@outLines, $line);
|
|
|
|
}
|
|
|
|
$inFile->close();
|
|
|
|
|
|
|
|
if (scalar(@affectedClasses)) {
|
|
|
|
$fixedFileCount++;
|
|
|
|
print $relFileName, ': ', join(', ', @affectedClasses), "\n" if ($verbose || $dry_run);
|
|
|
|
if (!$dry_run) {
|
|
|
|
my $outFile = new IO::File('>' . $fileName) or die ('Unable to open ' . $fileName . ': ' . $!);
|
|
|
|
map { print $outFile $_; } @outLines;
|
|
|
|
$outFile->close();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
print $relFileName, ": no modification.\n" if ($verbose || $dry_run);
|
2011-11-11 08:57:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub findQtHeaders
|
|
|
|
{
|
|
|
|
my ($dirName,$baseDir) = @_;
|
|
|
|
|
|
|
|
local (*DIR);
|
|
|
|
|
2011-11-22 11:20:04 +00:00
|
|
|
opendir(DIR, $baseDir . '/include/' . $dirName) || die ('Unable to open ' .$baseDir . '/include/' . $dirName . ': ' . $!);
|
2011-11-11 08:57:44 +00:00
|
|
|
my @headers = readdir(DIR);
|
|
|
|
closedir(DIR);
|
|
|
|
|
|
|
|
foreach my $header (@headers) {
|
2011-11-22 11:20:04 +00:00
|
|
|
next if (-d ($baseDir . '/include/' . $dirName . '/' . $header) || $header =~ /\.pri$/);
|
|
|
|
$headerSubst{$header} = $stripModule ? $header : ($dirName . '/' . $header);
|
2011-11-11 08:57:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-22 11:20:04 +00:00
|
|
|
# -------- MAIN
|
2011-11-11 08:57:44 +00:00
|
|
|
|
2011-11-22 11:20:04 +00:00
|
|
|
die "This script requires the QTDIR environment variable pointing to Qt 5\n" unless $qtdir;
|
2011-11-11 08:57:44 +00:00
|
|
|
|
2011-12-20 14:13:51 +00:00
|
|
|
findQtHeaders('QtCore', $qtdir);
|
2012-02-03 13:17:26 +00:00
|
|
|
findQtHeaders('QtConcurrent', $qtdir);
|
2011-11-22 11:20:04 +00:00
|
|
|
findQtHeaders('QtWidgets', $qtdir);
|
|
|
|
findQtHeaders('QtPrintSupport', $qtdir);
|
2011-11-11 08:57:44 +00:00
|
|
|
|
2012-11-28 10:04:22 +00:00
|
|
|
if (-d $qtdir . '/include/QtMultiMedia') {
|
|
|
|
findQtHeaders('QtMultiMedia', $qtdir);
|
|
|
|
findQtHeaders('QtMultiMediaWidgets', $qtdir);
|
|
|
|
} elsif (-d $qtdir . '/../qtmultimedia' ) {
|
2011-11-11 08:57:44 +00:00
|
|
|
# This is the case if QTDIR points to a source tree instead of an installed Qt
|
2012-11-28 10:04:22 +00:00
|
|
|
findQtHeaders('QtMultiMedia', $qtdir . '/../qtmultimedia');
|
|
|
|
findQtHeaders('QtMultiMediaWidgets', $qtdir . '/../qtmultimedia');
|
2011-11-11 08:57:44 +00:00
|
|
|
}
|
|
|
|
|
2011-12-05 12:08:08 +00:00
|
|
|
# Support porting from "Qt 4.99" QtDeclarative to QtQuick (QQuickItem et al)
|
|
|
|
if (-d $qtdir . '/include/QtQuick') {
|
|
|
|
findQtHeaders('QtQuick', $qtdir);
|
|
|
|
} elsif (-d $qtdir . '/../qtdeclarative' ) {
|
|
|
|
# This is the case if QTDIR points to a source tree instead of an installed Qt
|
|
|
|
findQtHeaders('QtQuick', $qtdir . '/../qtdeclarative');
|
|
|
|
}
|
|
|
|
|
2011-11-11 08:57:44 +00:00
|
|
|
# special case
|
2011-11-22 11:20:04 +00:00
|
|
|
$headerSubst{'QtGui'} = 'QtWidgets/QtWidgets';
|
2011-11-11 08:57:44 +00:00
|
|
|
|
|
|
|
find({ wanted => \&fixHeaders, no_chdir => 1}, $cwd);
|
|
|
|
|
2011-11-22 11:20:04 +00:00
|
|
|
print 'Done. ', ($dry_run ? 'Checked' : 'Modified'), ' ', $fixedFileCount, ' of ', $fileCount, " file(s).\n";
|