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., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
23 #*****************************************************************************/
27 my $srcdir = $ENV{'top_srcdir'};
30 # Reads to-be exported APIs
36 if (/VLC_EXPORT\(\s*(\w.*\S)\s*,\s*(\w*)\s*,\s*\(\s*(\w.*\S)\s*\)\s*\)[^)]*$/)
38 $new_APIs{$2} = [ ( $1, $3 ) ];
43 # Write header's header
45 open my $new_sym, '> vlc_symbols.h.new' or die "$!";
48 " * This file is automatically generated. DO NOT EDIT!\n".
49 " * You can force an update with \"make stamp-api\".\n".
52 "#ifndef __VLC_SYMBOLS_H\n".
53 "# define __VLC_SYMBOLS_H\n".
56 " * This is the big VLC API structure for plugins :\n".
57 " * Changing its layout breaks plugin's binary compatibility,\n".
58 " * so DO NOT DO THAT.\n".
59 " * In case of conflict with SVN, add your uncommited APIs\n".
60 " * at the *end* of the structure so they don't mess the other's\n".
61 " * offset in the structure.\n".
63 "struct module_symbols_t\n".
69 # Compares new APIs with currently exported APIs
74 open my $oldfd, "< $srcdir/include/vlc_symbols.h";
77 if (/^ void \*(\w*)_deprecated;$/)
79 if (defined $new_APIs{$2})
81 print "[info] $2 was RESTORED!\n";
83 " ".$new_APIs{$1}[0]." (*$1_inner) (".$new_APIs{$1}[1].");\n";
90 print { $new_sym } $_;
91 push (@deprecated_API, $1);
94 elsif (/^\s*(\w.*\S)\s*\(\*\s*(\w*)_inner\)\s*\(\s*(\w.*\S)\s*\)\s*;\s*$/)
96 if (!defined $new_APIs{$2})
98 print "[warn] $2 was REMOVED!\n";
99 print { $new_sym } " void *$2_deprecated;\n";
100 push (@deprecated_API, $2);
103 elsif (($new_APIs{$2}[0] ne $1)
104 || ($new_APIs{$2}[1] ne $3))
107 "[warn] $2 was CHANGED!\n".
108 " Old argument(s) : \"$3\"\n".
109 " New argument(s) : \"".$new_APIs{$2}[1]."\"\n".
110 " Old return type : \"$1\"\n".
111 " New return type : \"".$new_APIs{$2}[0]."\"\n";
114 " ".$new_APIs{$2}[0]." (*$2_inner) (".$new_APIs{$2}[1].");\n";
115 delete $new_APIs{$2};
121 print { $new_sym } " $1 (*$2_inner) ($3);\n";
123 delete $new_APIs{$2};
130 # Adds brand-new APIs
132 foreach (keys %new_APIs)
134 print "[info] $_ was ADDED!\n";
136 " ".$new_APIs{$_}[0]." (*${_}_inner) (".$new_APIs{$_}[1].");\n";
146 "# if defined (__PLUGIN__)\n";
150 print { $new_sym } "# define $_ (p_symbols)->${_}_inner\n";
154 "# elif defined (HAVE_DYNAMIC_PLUGINS) && !defined (__BUILTIN__)\n".
155 "/******************************************************************\n".
156 " * STORE_SYMBOLS: store VLC APIs into p_symbols for plugin access.\n".
157 " ******************************************************************/\n".
158 "# define STORE_SYMBOLS( p_symbols ) \\\n";
162 print { $new_sym } " ((p_symbols)->${_}_inner) = $_; \\\n";
164 foreach (@deprecated_API)
166 print { $new_sym } " (p_symbols)->${_}_deprecated = NULL; \\\n";
171 "# endif /* __PLUGIN__ */\n".
172 "#endif /* __VLC_SYMBOLS_H */\n";
176 # Replace headers if needed
180 rename 'vlc_symbols.h.new', "$srcdir/include/vlc_symbols.h";
181 print "$changes API(s) changed.\n";
185 unlink 'vlc_symbols.h.new';