Try to fix Gtk warning when using Tools->Reload Configuration.
[geany-mirror.git] / plugins / genapi.py
bloba354d1f24877e05cc171d70570958bb914bc7133
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
4 # genapi.py - this file is part of Geany, a fast and lightweight IDE
6 # Copyright 2008-2009 Nick Treleaven <nick.treleaven<at>btinternet.com>
7 # Copyright 2008-2009 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.
23 # $(Id)
25 r"""
26 Creates macros for each plugin API function pointer, e.g.:
28 #define plugin_add_toolbar_item \
29 geany_functions->p_plugin->add_toolbar_item
30 """
33 import re, sys
35 def get_function_names():
36 names = []
37 try:
38 f = open('../src/plugins.c')
39 while 1:
40 l = f.readline()
41 if l == "":
42 break;
43 m = re.match("^\t&([a-z][a-z0-9_]+)", l)
44 if m:
45 s = m.group(1)
46 if not s.endswith('_funcs'):
47 names.append(s)
48 f.close
49 except:
50 pass
51 return names
53 def get_api_tuple(str):
54 m = re.match("^([a-z]+)_([a-z][a-z0-9_]+)$", str)
55 return 'p_' + m.group(1), m.group(2)
58 header = \
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.
64 * E.g.:@code
65 * #define plugin_add_toolbar_item \
66 * geany_functions->p_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
76 '''
78 if __name__ == "__main__":
79 outfile = 'geanyfunctions.h'
81 fnames = get_function_names()
82 if not fnames:
83 sys.exit("No function names read!")
85 f = open(outfile, 'w')
86 print >>f, header % (outfile)
88 for fname in fnames:
89 ptr, name = get_api_tuple(fname)
90 print >>f, '#define %s \\\n\tgeany_functions->%s->%s' % (fname, ptr, name)
92 print >>f, '\n#endif'
93 f.close
95 if not '-q' in sys.argv:
96 print 'Generated ' + outfile