os/graphics/windowing/windowserver/wins_switching/generate_stubs.pl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 #!/bin/perl -w
     2 
     3 # Copyright (c) 2004-2010 Nokia Corporation and/or its subsidiary(-ies).
     4 # All rights reserved.
     5 # This component and the accompanying materials are made available
     6 # under the terms of "Eclipse Public License v1.0"
     7 # which accompanies this distribution, and is available
     8 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
     9 #
    10 # Initial Contributors:
    11 # Nokia Corporation - initial contribution.
    12 #
    13 # Contributors:
    14 #
    15 # Description:
    16 # Generates the ws32_stubs.h header file and the ws32switchU.def
    17 # file from the ws322U def file.
    18 # 
    19 #
    20 
    21 use strict;
    22 
    23 my $COPYRIGHT = <<"EndCopyrightAndLicense";
    24 /*
    25  * Copyright (c) 2004-2010 Nokia Corporation and/or its subsidiary(-ies).
    26  * All rights reserved.
    27  * This component and the accompanying materials are made available
    28  * under the terms of "Eclipse Public License v1.0"
    29  * which accompanies this distribution, and is available
    30  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
    31  */
    32 EndCopyrightAndLicense
    33 
    34 my $SOURCE_DEF_SIZE = 0;
    35 my $WS32_DEF = "../BWINS/";
    36 my $WS32_DEF2 = "../BWINS/";
    37 my $WS32SWITCH_HEADER = "";
    38 my $WS32SWITCH_DEF = "../BWINS/";
    39 
    40 &main();
    41 exit(0);
    42 
    43 sub main() {
    44 	my $maxOrdinal = 1;
    45 	my $def2MaxOrdinal = 1;
    46 
    47 	$WS32_DEF .= $ARGV[0];
    48 	$WS32SWITCH_HEADER = $ARGV[1];
    49 	$WS32SWITCH_DEF .= $ARGV[2];
    50 
    51 	open DEF, $WS32_DEF or
    52 		die "Cannot open $WS32_DEF\n";
    53 
    54 	
    55 	my ($dev, $ino, $mode, $nlink, $uid, $gid, 
    56 		$rdev, $size, $atime, $mtime, $ctime, 
    57 		$blksize, $blocks) 
    58 		= stat($WS32_DEF);
    59 	# the file size could be checked by the switcher build to verify that the stub is up to date.
    60 	$SOURCE_DEF_SIZE= $size;
    61 		
    62 	open HEADER_OUT, ">${WS32SWITCH_HEADER}" or
    63 		die "Cannot create $WS32SWITCH_HEADER\n";
    64 
    65 	open DEF_OUT, ">${WS32SWITCH_DEF}" or
    66 		die "Cannot create $WS32SWITCH_DEF\n";
    67 
    68 	&printHeaderStart(\*HEADER_OUT);
    69 	&printDefStart(\*DEF_OUT);
    70 
    71 	while (<DEF>) {
    72 		chomp;
    73 		if (/^\s+\?/) {
    74 			if (s/.*;/;/) {
    75 				&printDefEntry(\*DEF_OUT, $maxOrdinal, $_);
    76 				&printHeaderEntry(\*HEADER_OUT,$maxOrdinal,$_);
    77 			} else {
    78 				&printDefEntry(\*DEF_OUT, $maxOrdinal, "");
    79 				&printHeaderEntry(\*HEADER_OUT,$maxOrdinal, "(noname)");
    80 			}
    81 			$maxOrdinal++;
    82 		}
    83 	}
    84 	&printHeaderEnd(\*HEADER_OUT,$maxOrdinal);
    85 	&printDefEnd(\*DEF_OUT);
    86 
    87 	
    88 
    89 	close DEF;
    90 	close HEADER_OUT;
    91 	close DEF_OUT;
    92 }
    93 
    94 sub printDefStart(\$) {
    95 	my ($fh) = @_;
    96 	print $fh "EXPORTS\n";
    97 }
    98 
    99 sub printDefEntry(\$\$\$) {
   100 	my ($fh, $ordinal, $comment) = @_;
   101 	print $fh "\tcall_vector_${ordinal} @ ${ordinal} NONAME $comment\n";
   102 }
   103 
   104 sub printDefEnd(\$) {
   105 	my ($fh) = @_;
   106 	print $fh "\n";
   107 }
   108 
   109 sub printHeaderStart(\$) {
   110 	my ($fh) = @_;
   111 
   112 	print $fh "$COPYRIGHT\n" .
   113 		"/* Generated from  \"$WS32_DEF\" file size: $SOURCE_DEF_SIZE */\n\n" .
   114 		"extern \"C\" {\n" .
   115 		"void common_dispatch();\n" .
   116 		"\n";
   117 }
   118 
   119 sub printHeaderEntry(\$\$\$) {
   120 	my ($fh, $ordinal, $comment) = @_;
   121 
   122 	print $fh "__declspec(dllexport)\n" .
   123 		"__declspec(naked)\n" .
   124 		"void call_vector_${ordinal} ()\n" .
   125 		"\t{\n" .
   126 		"\t// ${comment}\n" .
   127 		"\t_asm mov eax, $ordinal\n" .
   128 		"\t_asm jmp common_dispatch\n" .
   129 		"\t}\n\n";
   130 }
   131 
   132 sub printHeaderEnd(\$\$) {
   133 	my ($fh, $maxOrdinal) = @_;
   134 	print $fh "}\n" .
   135 		"#define MAX_ORDINAL $maxOrdinal\n\n";
   136 }