2 #*****************************************************************************
3 #* vlc-api.pl: VLC API maintenance script
4 #*****************************************************************************
5 #* Copyright (C) 2005 the VideoLAN team
8 #* Authors: RĂ©mi Denis-Courmont <rem # videolan.org>
10 #* This program is free software; you can redistribute it and/or modify
11 #* it under the terms of the GNU General Public License as published by
12 #* the Free Software Foundation; either version 2 of the License, or
13 #* (at your option) any later version.
15 #* This program is distributed in the hope that it will be useful,
16 #* but WITHOUT ANY WARRANTY; without even the implied warranty of
17 #* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 #* GNU General Public License for more details.
20 #* You should have received a copy of the GNU General Public License
21 #* along with this program; if not, write to the Free Software
22 #* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 #*****************************************************************************/
28 my $srcdir = $ENV{'top_srcdir'};
31 # Reads to-be exported APIs
34 my $new_sym = IO::Handle->new();
38 if (/VLC_EXPORT\(\s*(\w.*\S)\s*,\s*(\w*)\s*,\s*\(\s*(\w.*\S)\s*\)\s*\)[^)]*$/)
40 $new_APIs{$2} = [ ( $1, $3 ) ];
45 # Write header's header
47 open $new_sym, '> vlc_symbols.h.new' or die "vlc_symbols.h.new: $!\n";
50 " * This file is automatically generated. DO NOT EDIT!\n".
51 " * You can force an update with \"make stamp-api\".\n".
54 "#ifndef __VLC_SYMBOLS_H\n".
55 "# define __VLC_SYMBOLS_H\n".
57 "# ifdef HAVE_SHARED_LIBVLC\n".
58 "# error You are not supposed to include this file!\n".
61 " * This is the big VLC API structure for plugins :\n".
62 " * Changing its layout breaks plugin's binary compatibility,\n".
63 " * so DO NOT DO THAT.\n".
64 " * In case of conflict with SVN, add your uncommited APIs\n".
65 " * at the *end* of the structure so they don't mess the other's\n".
66 " * offset in the structure.\n".
68 "struct module_symbols_t\n".
74 # Compares new APIs with currently exported APIs
80 my $oldfd = IO::Handle->new();
81 open $oldfd, "< $srcdir/include/vlc_symbols.h";
85 if (/^struct module_symbols_t/)
92 elsif (/^ void \*(\w*)_deprecated;$/)
94 if (defined $new_APIs{$1})
96 print "[info] $1 was RESTORED!\n";
98 " ".$new_APIs{$1}[0]." (*$1_inner) (".$new_APIs{$1}[1].");\n";
105 print { $new_sym } $_;
106 push (@deprecated_API, $1);
109 elsif (/^\s*(\w.*\S)\s*\(\*\s*(\w*)_inner\)\s*\(\s*(\w.*\S)\s*\)\s*;\s*$/)
111 if (!defined $new_APIs{$2})
113 print "[warn] $2 was REMOVED!\n";
114 print { $new_sym } " void *$2_deprecated;\n";
115 push (@deprecated_API, $2);
118 elsif (($new_APIs{$2}[0] ne $1)
119 || ($new_APIs{$2}[1] ne $3))
122 "[warn] $2 was CHANGED!\n".
123 " Old argument(s) : \"$3\"\n".
124 " New argument(s) : \"".$new_APIs{$2}[1]."\"\n".
125 " Old return type : \"$1\"\n".
126 " New return type : \"".$new_APIs{$2}[0]."\"\n";
129 " ".$new_APIs{$2}[0]." (*$2_inner) (".$new_APIs{$2}[1].");\n";
130 delete $new_APIs{$2};
136 print { $new_sym } " $1 (*$2_inner) ($3);\n";
138 delete $new_APIs{$2};
145 # Adds brand-new APIs
147 foreach (keys %new_APIs)
149 print "[info] $_ was ADDED!\n";
151 " ".$new_APIs{$_}[0]." (*${_}_inner) (".$new_APIs{$_}[1].");\n";
161 "# if defined (__PLUGIN__)\n";
165 print { $new_sym } "# define $_ (p_symbols)->${_}_inner\n";
169 "# elif defined (HAVE_DYNAMIC_PLUGINS) && !defined (__BUILTIN__)\n".
170 "/******************************************************************\n".
171 " * STORE_SYMBOLS: store VLC APIs into p_symbols for plugin access.\n".
172 " ******************************************************************/\n".
173 "# define STORE_SYMBOLS( p_symbols ) \\\n";
177 print { $new_sym } " ((p_symbols)->${_}_inner) = $_; \\\n";
179 foreach (@deprecated_API)
181 print { $new_sym } " (p_symbols)->${_}_deprecated = NULL; \\\n";
186 "# endif /* __PLUGIN__ */\n".
187 "#endif /* __VLC_SYMBOLS_H */\n";
191 # Replace headers if needed
195 rename 'vlc_symbols.h.new', "$srcdir/include/vlc_symbols.h";
196 print "$changes API(s) changed.\n";
200 unlink 'vlc_symbols.h.new';