summaryrefslogtreecommitdiffstats
path: root/src/corelib/mimetypes/mime/generate.pl
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/mimetypes/mime/generate.pl')
-rw-r--r--src/corelib/mimetypes/mime/generate.pl117
1 files changed, 0 insertions, 117 deletions
diff --git a/src/corelib/mimetypes/mime/generate.pl b/src/corelib/mimetypes/mime/generate.pl
deleted file mode 100644
index 4f2d7d5f2b..0000000000
--- a/src/corelib/mimetypes/mime/generate.pl
+++ /dev/null
@@ -1,117 +0,0 @@
-#!/usr/bin/perl
-#############################################################################
-##
-## Copyright (C) 2019 Intel Corporation.
-## Contact: https://www.qt.io/licensing/
-##
-## This file is the build configuration utility of the Qt Toolkit.
-##
-## $QT_BEGIN_LICENSE:GPL-EXCEPT$
-## 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 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.
-##
-## 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.
-##
-## $QT_END_LICENSE$
-##
-#############################################################################
-use strict;
-use warnings;
-use Config;
-local $/; # Enable "slurp" mode
-
-sub checkCommand($) {
- use File::Spec::Functions;
- my $cmd = $_[0] . $Config{_exe};
- for my $path (path()) {
- return 1 if -x catfile($path, $cmd);
- }
- return 0;
-}
-
-my $data;
-my $compress;
-my $macro;
-my $zlib = eval 'use Compress::Zlib; use IO::Compress::Gzip; return 1;';
-my $fname = shift @ARGV;
-
-if ($zlib) {
- # Prefer internal zlib support (useful on Windows where gzip.exe isn't
- # always presnet)
- $macro = "MIME_DATABASE_IS_GZIP";
-} elsif (checkCommand("gzip")) {
- # No builtin support for compression (old Perl?)
- $compress = "gzip -c9";
- $macro = "MIME_DATABASE_IS_GZIP";
-}
-
-# Check if Qt is being built with zstd support
-if ($fname eq "--zstd") {
- $fname = shift @ARGV;
- if (checkCommand("zstd")) {
- $compress = "zstd -cq19 -T1";
- $macro = "MIME_DATABASE_IS_ZSTD";
- }
-}
-
-# Check if xml (from xmlstarlet) is in $PATH
-my $cmd;
-if (checkCommand("xmlstarlet")) {
- # Minify the data before compressing
- $cmd = "xmlstarlet sel -D -B -t -c / $fname";
- $cmd .= "| $compress" if $compress;
-} elsif (checkCommand("xml")) {
- # Minify the data before compressing
- $cmd = "xml sel -D -B -t -c / $fname";
- $cmd .= "| $compress" if $compress;
-} elsif ($compress) {
- $cmd = "$compress < $fname"
-}
-if ($cmd) {
- # Run the command and read everything
- open CMD, "$cmd |";
- $data = <CMD>;
- close CMD;
- die("Failed to run $cmd") if ($? >> 8);
-} else {
- # No command, just read the file
- open F, "<$fname";
- $data = <F>;
- close F;
-}
-
-# Do we need to compress with zlib?
-if (!$compress && $zlib) {
- $data = eval q{
- use Compress::Zlib;
- use IO::Compress::Gzip qw(gzip);
- my $compressed;
- gzip \$data => \$compressed,
- Minimal => 1,
- Level => Z_BEST_COMPRESSION;
- return $compressed;
- };
-}
-
-# Now print as hex
-printf "#define %s\n", $macro if $macro;
-printf "static const unsigned char mimetype_database[] = {";
-my $i = 0;
-map {
- printf "\n " if $i++ % 12 == 0;
- printf "0x%02x, ", ord $_
-} split //, $data;
-printf "\n};\n";
-printf "static constexpr size_t MimeTypeDatabaseOriginalSize = %d;\n",
- (stat $fname)[7];