2 # -*- coding: utf-8 -*-
4 # genapi.py - this file is part of Geany, a fast and lightweight IDE
6 # Copyright 2008-2011 Nick Treleaven <nick.treleaven<at>btinternet.com>
7 # Copyright 2008-2011 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2 of the License, or
12 # (at your option) any later version.
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software
21 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26 Creates macros for each plugin API function pointer, e.g.:
28 #define plugin_add_toolbar_item \
29 geany_functions->p_plugin->plugin_add_toolbar_item
37 def get_function_names():
39 filep
= open('../src/plugins.c')
41 line
= filep
.readline()
44 match
= re
.match("^\t&([a-z][a-z0-9_]+)", line
)
46 symbol
= match
.group(1)
47 if not symbol
.endswith('_funcs'):
53 def get_api_tuple(source
):
54 match
= re
.match("^([a-z]+)_([a-z][a-z0-9_]+)$", source
)
55 return 'p_' + match
.group(1), match
.group(2)
59 r
'''/* This file is generated automatically by genapi.py - do not edit. */
61 /** @file %s @ref geany_functions wrappers.
62 * This allows the use of normal API function names in plugins by defining macros.
65 * #define plugin_add_toolbar_item \
66 * geany_functions->p_plugin->plugin_add_toolbar_item @endcode
68 * You need to declare the @ref geany_functions symbol yourself.
70 * Note: This must be included after all other API headers to prevent conflicts with
71 * other header's function prototypes - this is done for you when using geanyplugin.h.
74 #ifndef GEANY_FUNCTIONS_H
75 #define GEANY_FUNCTIONS_H
79 if __name__
== "__main__":
80 outfile
= 'geanyfunctions.h'
82 fnames
= get_function_names()
84 sys
.exit("No function names read!")
86 f
= open(outfile
, 'w')
87 f
.write(header
% (outfile
))
90 ptr
, name
= get_api_tuple(fname
)
91 # note: name no longer needed
92 f
.write('#define %s \\\n\tgeany_functions->%s->%s\n' % (fname
, ptr
, fname
))
97 if not '-q' in sys
.argv
:
98 sys
.stdout
.write('Generated %s\n' % outfile
)