3 # Update spec files across dlls that share an implementation
5 # Copyright 2011 Alexandre Julliard
7 # This library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Lesser General Public
9 # License as published by the Free Software Foundation; either
10 # version 2.1 of the License, or (at your option) any later version.
12 # This library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # Lesser General Public License for more details.
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with this library; if not, write to the Free Software
19 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
121 "api-ms-win-downlevel-advapi32-l1-1-0",
122 "api-ms-win-downlevel-advapi32-l2-1-0",
123 "api-ms-win-security-base-l1-1-0",
127 "api-ms-win-downlevel-normaliz-l1-1-0",
131 "api-ms-win-downlevel-ole32-l1-1-0",
135 "api-ms-win-downlevel-shell32-l1-1-0",
139 "api-ms-win-downlevel-shlwapi-l1-1-0",
140 "api-ms-win-downlevel-shlwapi-l2-1-0",
144 "api-ms-win-downlevel-user32-l1-1-0",
148 "api-ms-win-downlevel-version-l1-1-0",
152 my $update_flags = 0;
153 my $show_duplicates = 0;
155 foreach my $arg (@ARGV)
157 if ($arg eq "-f") { $update_flags = 1; }
158 elsif ($arg eq "-d") { $show_duplicates = 1; }
164 my $ret = !(-f
$file) || system "cmp $file $file.new >/dev/null";
171 #system "diff -u $file $file.new";
172 rename "$file.new", "$file";
173 print "$file updated\n";
178 # parse a spec file line
181 my ($name, $line, $_) = @_;
183 if (/^\s*(\@|\d+)\s+(stdcall|cdecl|varargs|thiscall|stub|extern)\s+((?:-\S+\s+)*)([A-Za-z0-9_\@\$?]+)(?:\s*(\([^)]*\)))?(?:\s+([A-Za-z0-9_\@\$?.]+))?(\s*\#.*)?/)
185 return ( "ordinal" => $1, "callconv" => $2, "flags" => $3, "name" => $4, "args" => $5 || "",
186 "target" => $6 || $4, "comment" => $7, "spec" => $name );
188 return () if /^\s*$/;
189 return () if /^\s*\#/;
190 printf STDERR
"$name.spec:$line: error: Unrecognized line $_\n";
193 sub read_spec_file
($)
196 my $file = "dlls/$name/$name.spec";
198 open SPEC
, "<$file" or die "cannot open $file";
202 my %descr = parse_line
( $name, $., $_ );
205 my $func = $descr{name
};
206 next if defined $funcs{$func};
207 $funcs{$func} = \
%descr;
212 sub update_spec_file
($)
215 my $file = "dlls/$name/$name.spec";
218 open SPEC
, "<$file" or die "cannot open $file";
219 open NEW
, ">$file.new" or die "cannot create $file.new";
224 my $commented_out = 0;
225 my %descr = parse_line
( $name, $., $_ );
228 # check for commented out exports
229 if (/^\s*\#\s*((?:\@|\d+)\s+)?((?:extern|stub|stdcall|cdecl|varargs|thiscall)\s+.*)/)
232 %descr = parse_line
( $name, $., ($1 || "\@ ") . $2 );
235 goto done
unless %descr;
237 my $func = $descr{name
};
238 if (!defined $funcs{$func})
240 $funcs{$func} = \
%descr unless $commented_out;
244 my %parent = %{$funcs{$func}};
245 goto done
if $parent{spec
} eq $descr{spec
}; # the definition is in this spec file
246 goto done
if $descr{comment
} && $descr{comment
} =~ /don't forward/;
247 if ($descr{callconv
} ne "stub" && $descr{target
} !~ /\./ && !$commented_out)
249 printf "%s:%u: note: %s already defined in %s\n", $file, $., $func, $parent{spec
} if $show_duplicates;
253 my $flags = $descr{flags
};
254 if ($parent{callconv
} ne "stub" || $update_flags)
256 $flags = $parent{flags
};
257 $flags =~ s/-ordinal\s*// if $descr{ordinal
} eq "@";
260 if ($parent{callconv
} ne "stub" || $parent{args
})
262 my $callconv = $parent{callconv
} ne "stub" ?
$parent{callconv
} :
263 $parent{spec
} =~ /msvc/ ?
"cdecl" : "stdcall"; # hack
264 $_ = sprintf "$descr{ordinal} %s %s%s", $callconv, $flags, $func;
266 if ($parent{target
} =~ /$group_head\./) # use the same forward as parent if possible
268 $_ .= sprintf "%s %s", $parent{args
}, $parent{target
};
272 $_ .= sprintf "%s %s.%s", $parent{args
}, $parent{spec
}, $func;
277 $_ = sprintf "$descr{ordinal} stub %s%s", $flags, $func;
279 $_ .= $descr{comment
} || "";
286 update_file
( $file );
289 sub sync_spec_files
(@
)
293 read_spec_file
( $group_head );
294 foreach my $spec (@_) { update_spec_file
($spec); }
297 foreach my $group (@dll_groups)
299 sync_spec_files
( @
{$group} );