2018-04-04 23:44:29 +02:00
|
|
|
#!/usr/bin/env perl
|
2013-09-16 13:33:42 +02:00
|
|
|
|
2018-04-12 03:35:19 +02:00
|
|
|
# Generate main file, individual apps and solution files for MS Visual Studio
|
|
|
|
# 2010
|
2014-05-07 17:51:20 +02:00
|
|
|
#
|
2015-01-26 16:42:27 +01:00
|
|
|
# Must be run from mbedTLS root or scripts directory.
|
2014-05-07 17:51:20 +02:00
|
|
|
# Takes no argument.
|
2020-05-26 00:33:31 +02:00
|
|
|
#
|
2020-08-07 13:07:28 +02:00
|
|
|
# Copyright The Mbed TLS Contributors
|
2020-05-26 01:54:15 +02:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
# not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2013-09-20 15:11:44 +02:00
|
|
|
|
2013-09-16 13:33:42 +02:00
|
|
|
use warnings;
|
|
|
|
use strict;
|
2014-05-09 12:27:49 +02:00
|
|
|
use Digest::MD5 'md5_hex';
|
2013-09-16 13:33:42 +02:00
|
|
|
|
2014-05-07 17:51:20 +02:00
|
|
|
my $vsx_dir = "visualc/VS2010";
|
2013-09-16 13:33:42 +02:00
|
|
|
my $vsx_ext = "vcxproj";
|
2014-05-07 17:51:20 +02:00
|
|
|
my $vsx_app_tpl_file = "scripts/data_files/vs2010-app-template.$vsx_ext";
|
2014-05-08 11:33:30 +02:00
|
|
|
my $vsx_main_tpl_file = "scripts/data_files/vs2010-main-template.$vsx_ext";
|
2015-01-26 16:42:27 +01:00
|
|
|
my $vsx_main_file = "$vsx_dir/mbedTLS.$vsx_ext";
|
2014-05-09 12:56:03 +02:00
|
|
|
my $vsx_sln_tpl_file = "scripts/data_files/vs2010-sln-template.sln";
|
2015-01-26 16:42:27 +01:00
|
|
|
my $vsx_sln_file = "$vsx_dir/mbedTLS.sln";
|
2014-05-07 17:51:20 +02:00
|
|
|
|
|
|
|
my $programs_dir = 'programs';
|
2018-07-20 14:27:58 +02:00
|
|
|
my $mbedtls_header_dir = 'include/mbedtls';
|
|
|
|
my $psa_header_dir = 'include/psa';
|
2014-05-08 11:33:30 +02:00
|
|
|
my $source_dir = 'library';
|
2020-06-05 16:00:22 +02:00
|
|
|
my $test_source_dir = 'tests/src';
|
|
|
|
my $test_header_dir = 'tests/include/test';
|
2020-09-07 16:17:55 +02:00
|
|
|
my $test_drivers_header_dir = 'tests/include/test/drivers';
|
2020-02-12 20:34:22 +01:00
|
|
|
|
|
|
|
my @thirdparty_header_dirs = qw(
|
|
|
|
3rdparty/everest/include/everest
|
|
|
|
);
|
|
|
|
my @thirdparty_source_dirs = qw(
|
|
|
|
3rdparty/everest/library
|
|
|
|
3rdparty/everest/library/kremlib
|
|
|
|
3rdparty/everest/library/legacy
|
|
|
|
);
|
2020-02-12 20:45:18 +01:00
|
|
|
|
2020-02-19 20:08:44 +01:00
|
|
|
# Directories to add to the include path.
|
|
|
|
# Order matters in case there are files with the same name in more than
|
|
|
|
# one directory: the compiler will use the first match.
|
|
|
|
my @include_directories = qw(
|
|
|
|
include
|
|
|
|
3rdparty/everest/include/
|
|
|
|
3rdparty/everest/include/everest
|
|
|
|
3rdparty/everest/include/everest/vs2010
|
|
|
|
3rdparty/everest/include/everest/kremlib
|
2020-06-05 16:00:22 +02:00
|
|
|
tests/include
|
2020-02-19 20:08:44 +01:00
|
|
|
);
|
|
|
|
my $include_directories = join(';', map {"../../$_"} @include_directories);
|
|
|
|
|
2020-06-03 02:25:17 +02:00
|
|
|
# Directories to add to the include path when building the library, but not
|
|
|
|
# when building tests or applications.
|
|
|
|
my @library_include_directories = qw(
|
|
|
|
library
|
|
|
|
);
|
|
|
|
my $library_include_directories =
|
|
|
|
join(';', map {"../../$_"} (@library_include_directories,
|
|
|
|
@include_directories));
|
|
|
|
|
2020-02-12 20:45:18 +01:00
|
|
|
my @excluded_files = qw(
|
2020-02-12 20:34:22 +01:00
|
|
|
3rdparty/everest/library/Hacl_Curve25519.c
|
|
|
|
);
|
2020-02-12 20:45:18 +01:00
|
|
|
my %excluded_files = ();
|
|
|
|
foreach (@excluded_files) { $excluded_files{$_} = 1 }
|
2014-05-08 11:33:30 +02:00
|
|
|
|
|
|
|
# Need windows line endings!
|
|
|
|
my $vsx_hdr_tpl = <<EOT;
|
2014-05-08 12:53:58 +02:00
|
|
|
<ClInclude Include="..\\..\\{NAME}" />\r
|
2014-05-08 11:33:30 +02:00
|
|
|
EOT
|
|
|
|
my $vsx_src_tpl = <<EOT;
|
2014-05-08 12:53:58 +02:00
|
|
|
<ClCompile Include="..\\..\\{NAME}" />\r
|
2014-05-08 11:33:30 +02:00
|
|
|
EOT
|
2013-09-16 13:33:42 +02:00
|
|
|
|
2014-05-09 12:56:03 +02:00
|
|
|
my $vsx_sln_app_entry_tpl = <<EOT;
|
|
|
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "{APPNAME}", "{APPNAME}.vcxproj", "{GUID}"\r
|
|
|
|
ProjectSection(ProjectDependencies) = postProject\r
|
|
|
|
{46CF2D25-6A36-4189-B59C-E4815388E554} = {46CF2D25-6A36-4189-B59C-E4815388E554}\r
|
|
|
|
EndProjectSection\r
|
|
|
|
EndProject\r
|
|
|
|
EOT
|
|
|
|
|
|
|
|
my $vsx_sln_conf_entry_tpl = <<EOT;
|
|
|
|
{GUID}.Debug|Win32.ActiveCfg = Debug|Win32\r
|
|
|
|
{GUID}.Debug|Win32.Build.0 = Debug|Win32\r
|
|
|
|
{GUID}.Debug|x64.ActiveCfg = Debug|x64\r
|
|
|
|
{GUID}.Debug|x64.Build.0 = Debug|x64\r
|
|
|
|
{GUID}.Release|Win32.ActiveCfg = Release|Win32\r
|
|
|
|
{GUID}.Release|Win32.Build.0 = Release|Win32\r
|
|
|
|
{GUID}.Release|x64.ActiveCfg = Release|x64\r
|
|
|
|
{GUID}.Release|x64.Build.0 = Release|x64\r
|
|
|
|
EOT
|
|
|
|
|
2013-09-16 13:33:42 +02:00
|
|
|
exit( main() );
|
|
|
|
|
2014-05-07 17:51:20 +02:00
|
|
|
sub check_dirs {
|
2020-02-12 20:34:22 +01:00
|
|
|
foreach my $d (@thirdparty_header_dirs, @thirdparty_source_dirs) {
|
|
|
|
if (not (-d $d)) { return 0; }
|
|
|
|
}
|
2015-05-14 13:04:03 +02:00
|
|
|
return -d $vsx_dir
|
2018-07-20 14:27:58 +02:00
|
|
|
&& -d $mbedtls_header_dir
|
|
|
|
&& -d $psa_header_dir
|
2014-05-08 11:33:30 +02:00
|
|
|
&& -d $source_dir
|
2020-06-05 16:00:22 +02:00
|
|
|
&& -d $test_source_dir
|
|
|
|
&& -d $test_header_dir
|
2020-07-16 20:26:18 +02:00
|
|
|
&& -d $test_drivers_header_dir
|
2014-05-07 17:51:20 +02:00
|
|
|
&& -d $programs_dir;
|
|
|
|
}
|
|
|
|
|
2013-09-16 13:33:42 +02:00
|
|
|
sub slurp_file {
|
|
|
|
my ($filename) = @_;
|
|
|
|
|
|
|
|
local $/ = undef;
|
|
|
|
open my $fh, '<', $filename or die "Could not read $filename\n";
|
|
|
|
my $content = <$fh>;
|
|
|
|
close $fh;
|
|
|
|
|
|
|
|
return $content;
|
|
|
|
}
|
|
|
|
|
2014-05-09 13:00:18 +02:00
|
|
|
sub content_to_file {
|
|
|
|
my ($content, $filename) = @_;
|
|
|
|
|
|
|
|
open my $fh, '>', $filename or die "Could not write to $filename\n";
|
|
|
|
print $fh $content;
|
|
|
|
close $fh;
|
|
|
|
}
|
|
|
|
|
2014-05-09 12:27:49 +02:00
|
|
|
sub gen_app_guid {
|
|
|
|
my ($path) = @_;
|
|
|
|
|
2015-01-26 16:42:27 +01:00
|
|
|
my $guid = md5_hex( "mbedTLS:$path" );
|
2014-05-09 12:27:49 +02:00
|
|
|
$guid =~ s/(.{8})(.{4})(.{4})(.{4})(.{12})/\U{$1-$2-$3-$4-$5}/;
|
|
|
|
|
|
|
|
return $guid;
|
|
|
|
}
|
|
|
|
|
2013-09-16 13:33:42 +02:00
|
|
|
sub gen_app {
|
|
|
|
my ($path, $template, $dir, $ext) = @_;
|
|
|
|
|
2014-05-09 12:27:49 +02:00
|
|
|
my $guid = gen_app_guid( $path );
|
2013-09-16 13:33:42 +02:00
|
|
|
$path =~ s!/!\\!g;
|
|
|
|
(my $appname = $path) =~ s/.*\\//;
|
|
|
|
|
2020-04-01 13:34:50 +02:00
|
|
|
my $srcs = "<ClCompile Include=\"..\\..\\programs\\$path.c\" \/>";
|
2018-10-30 22:46:21 +01:00
|
|
|
if( $appname eq "ssl_client2" or $appname eq "ssl_server2" or
|
|
|
|
$appname eq "query_compile_time_config" ) {
|
2020-04-01 13:34:50 +02:00
|
|
|
$srcs .= "\r\n <ClCompile Include=\"..\\..\\programs\\test\\query_config.c\" \/>";
|
2018-10-30 22:46:21 +01:00
|
|
|
}
|
2021-01-05 21:11:16 +01:00
|
|
|
if( $appname eq "ssl_client2" or $appname eq "ssl_server2" ) {
|
|
|
|
$srcs .= "\r\n <ClCompile Include=\"..\\..\\programs\\ssl\\ssl_test_lib.c\" \/>";
|
|
|
|
}
|
2018-10-30 22:46:21 +01:00
|
|
|
|
2013-09-16 13:33:42 +02:00
|
|
|
my $content = $template;
|
2018-10-30 22:46:21 +01:00
|
|
|
$content =~ s/<SOURCES>/$srcs/g;
|
2013-09-16 13:33:42 +02:00
|
|
|
$content =~ s/<APPNAME>/$appname/g;
|
2014-05-09 12:27:49 +02:00
|
|
|
$content =~ s/<GUID>/$guid/g;
|
2020-02-26 14:32:42 +01:00
|
|
|
$content =~ s/INCLUDE_DIRECTORIES\r\n/$include_directories/g;
|
2013-09-16 13:33:42 +02:00
|
|
|
|
2014-05-09 13:00:18 +02:00
|
|
|
content_to_file( $content, "$dir/$appname.$ext" );
|
2013-09-16 13:33:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sub get_app_list {
|
2014-05-07 17:51:20 +02:00
|
|
|
my $app_list = `cd $programs_dir && make list`;
|
2013-09-16 13:33:42 +02:00
|
|
|
die "make list failed: $!\n" if $?;
|
|
|
|
|
|
|
|
return split /\s+/, $app_list;
|
|
|
|
}
|
|
|
|
|
2014-05-07 17:51:20 +02:00
|
|
|
sub gen_app_files {
|
2014-05-08 11:33:30 +02:00
|
|
|
my @app_list = @_;
|
|
|
|
|
2014-05-07 17:51:20 +02:00
|
|
|
my $vsx_tpl = slurp_file( $vsx_app_tpl_file );
|
2013-09-16 13:33:42 +02:00
|
|
|
|
2014-05-08 11:33:30 +02:00
|
|
|
for my $app ( @app_list ) {
|
2013-09-16 13:33:42 +02:00
|
|
|
gen_app( $app, $vsx_tpl, $vsx_dir, $vsx_ext );
|
|
|
|
}
|
2014-05-07 17:51:20 +02:00
|
|
|
}
|
|
|
|
|
2014-05-08 11:33:30 +02:00
|
|
|
sub gen_entry_list {
|
2014-05-08 12:53:58 +02:00
|
|
|
my ($tpl, @names) = @_;
|
2014-05-08 11:33:30 +02:00
|
|
|
|
|
|
|
my $entries;
|
2014-05-08 12:53:58 +02:00
|
|
|
for my $name (@names) {
|
|
|
|
(my $entry = $tpl) =~ s/{NAME}/$name/g;
|
2014-05-08 11:33:30 +02:00
|
|
|
$entries .= $entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $entries;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub gen_main_file {
|
2020-02-12 20:45:18 +01:00
|
|
|
my ($headers, $sources,
|
|
|
|
$hdr_tpl, $src_tpl,
|
|
|
|
$main_tpl, $main_out) = @_;
|
2014-05-08 11:33:30 +02:00
|
|
|
|
2020-02-12 20:45:18 +01:00
|
|
|
my $header_entries = gen_entry_list( $hdr_tpl, @$headers );
|
2014-05-08 11:33:30 +02:00
|
|
|
my $source_entries = gen_entry_list( $src_tpl, @$sources );
|
|
|
|
|
|
|
|
my $out = slurp_file( $main_tpl );
|
|
|
|
$out =~ s/SOURCE_ENTRIES\r\n/$source_entries/m;
|
|
|
|
$out =~ s/HEADER_ENTRIES\r\n/$header_entries/m;
|
2020-06-03 02:25:17 +02:00
|
|
|
$out =~ s/INCLUDE_DIRECTORIES\r\n/$library_include_directories/g;
|
2014-05-08 11:33:30 +02:00
|
|
|
|
2014-05-09 13:00:18 +02:00
|
|
|
content_to_file( $out, $main_out );
|
2014-05-08 11:33:30 +02:00
|
|
|
}
|
|
|
|
|
2014-05-09 12:56:03 +02:00
|
|
|
sub gen_vsx_solution {
|
|
|
|
my (@app_names) = @_;
|
|
|
|
|
|
|
|
my ($app_entries, $conf_entries);
|
|
|
|
for my $path (@app_names) {
|
|
|
|
my $guid = gen_app_guid( $path );
|
|
|
|
(my $appname = $path) =~ s!.*/!!;
|
|
|
|
|
|
|
|
my $app_entry = $vsx_sln_app_entry_tpl;
|
|
|
|
$app_entry =~ s/{APPNAME}/$appname/g;
|
|
|
|
$app_entry =~ s/{GUID}/$guid/g;
|
|
|
|
|
|
|
|
$app_entries .= $app_entry;
|
|
|
|
|
|
|
|
my $conf_entry = $vsx_sln_conf_entry_tpl;
|
|
|
|
$conf_entry =~ s/{GUID}/$guid/g;
|
|
|
|
|
|
|
|
$conf_entries .= $conf_entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $out = slurp_file( $vsx_sln_tpl_file );
|
|
|
|
$out =~ s/APP_ENTRIES\r\n/$app_entries/m;
|
|
|
|
$out =~ s/CONF_ENTRIES\r\n/$conf_entries/m;
|
|
|
|
|
2014-05-09 13:00:18 +02:00
|
|
|
content_to_file( $out, $vsx_sln_file );
|
2014-05-09 12:56:03 +02:00
|
|
|
}
|
|
|
|
|
2018-01-11 20:51:27 +01:00
|
|
|
sub del_vsx_files {
|
|
|
|
unlink glob "'$vsx_dir/*.$vsx_ext'";
|
|
|
|
unlink $vsx_main_file;
|
|
|
|
unlink $vsx_sln_file;
|
|
|
|
}
|
|
|
|
|
2014-05-07 17:51:20 +02:00
|
|
|
sub main {
|
|
|
|
if( ! check_dirs() ) {
|
|
|
|
chdir '..' or die;
|
2015-01-26 16:42:27 +01:00
|
|
|
check_dirs or die "Must but run from mbedTLS root or scripts dir\n";
|
2014-05-07 17:51:20 +02:00
|
|
|
}
|
|
|
|
|
2018-01-11 20:51:27 +01:00
|
|
|
# Remove old files to ensure that, for example, project files from deleted
|
|
|
|
# apps are not kept
|
|
|
|
del_vsx_files();
|
|
|
|
|
2014-05-08 11:33:30 +02:00
|
|
|
my @app_list = get_app_list();
|
2020-02-12 20:45:18 +01:00
|
|
|
my @header_dirs = (
|
|
|
|
$mbedtls_header_dir,
|
|
|
|
$psa_header_dir,
|
2020-06-05 16:00:22 +02:00
|
|
|
$test_header_dir,
|
2020-07-16 20:26:18 +02:00
|
|
|
$test_drivers_header_dir,
|
2020-02-12 20:45:18 +01:00
|
|
|
$source_dir,
|
|
|
|
@thirdparty_header_dirs,
|
|
|
|
);
|
|
|
|
my @headers = (map { <$_/*.h> } @header_dirs);
|
|
|
|
my @source_dirs = (
|
|
|
|
$source_dir,
|
2020-06-05 16:00:22 +02:00
|
|
|
$test_source_dir,
|
2020-02-12 20:45:18 +01:00
|
|
|
@thirdparty_source_dirs,
|
|
|
|
);
|
|
|
|
my @sources = (map { <$_/*.c> } @source_dirs);
|
|
|
|
|
|
|
|
@headers = grep { ! $excluded_files{$_} } @headers;
|
|
|
|
@sources = grep { ! $excluded_files{$_} } @sources;
|
|
|
|
map { s!/!\\!g } @headers;
|
2014-05-08 11:33:30 +02:00
|
|
|
map { s!/!\\!g } @sources;
|
|
|
|
|
|
|
|
gen_app_files( @app_list );
|
|
|
|
|
2020-02-12 20:45:18 +01:00
|
|
|
gen_main_file( \@headers, \@sources,
|
|
|
|
$vsx_hdr_tpl, $vsx_src_tpl,
|
|
|
|
$vsx_main_tpl_file, $vsx_main_file );
|
2013-09-16 13:33:42 +02:00
|
|
|
|
2014-05-09 12:56:03 +02:00
|
|
|
gen_vsx_solution( @app_list );
|
2014-05-08 12:53:58 +02:00
|
|
|
|
2013-09-16 13:33:42 +02:00
|
|
|
return 0;
|
|
|
|
}
|