Salome HOME
Merge tag 'V8_3_0a2' into ngr/python3_dev
[modules/geom.git] / doc / salome / gui / GEOM / collect_geom_methods.py
1 #!/usr/bin/env python
2 #  -*- coding: utf-8 -*-
3 # Copyright (C) 2012-2016  CEA/DEN, EDF R&D, OPEN CASCADE
4 #
5 # This library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License, or (at your option) any later version.
9 #
10 # This library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # Lesser General Public License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with this library; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18 #
19 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #
21
22 #################################################################################
23 #
24 # File:   collect_geom_methods.py
25 # Author: Roman NIKOLAEV, Open CASCADE S.A.S (roman.nikolaev@opencascade.com)
26 #
27 #################################################################################
28 #
29 # Extraction of the methods dynamically added by the Geometry 
30 # module plug-in(s) to the geomBuilder class.
31
32 # This script is intended for internal usage - only
33 # for generatation of the extra developer documentation for
34 # the Geometry module plug-in(s).
35
36 # Usage:
37 #       collect_geom_methods.py <plugin_name>
38 # where
39 #   <plugin_name> is a name of the plug-in module
40 #
41 # Notes:
42 # - the script is supposed to be run in correct environment
43 # i.e. PYTHONPATH, GEOM_PluginsList and other important
44 # variables are set properly; otherwise the script will fail.
45 #
46 ################################################################################
47
48 import sys
49 import inspect
50
51 def generate(plugin_name, output):
52     plugin_module_name  = plugin_name + "Builder"
53     plugin_module       = "salome.%s.%s" % (plugin_name, plugin_module_name)
54     import_str          = "from salome.%s import %s" % (plugin_name, plugin_module_name)
55     execLine          = "from salome.%s import %s\nimport %s\nmod = %s" % (plugin_name, plugin_module_name,plugin_module,plugin_module)
56     print(execLine)
57     namespace = {}
58     exec( execLine , namespace)
59     functions = []
60     for attr in dir( namespace["mod"] ):
61         if attr.startswith( '_' ): continue # skip an internal methods 
62         item = getattr( namespace["mod"], attr )
63         if type( item ).__name__ == 'function':
64             if item not in functions: 
65                 functions.append( item )
66                 pass
67             pass
68         pass
69     if functions:
70         for function in functions:
71             comments = inspect.getcomments(function)
72             if comments:
73                 comments = comments.strip().split("\n")
74                 comments = "\t" + "\n\t".join(comments)
75                 output.append(comments)
76                 pass                
77             sources = inspect.getsource(function)
78             if sources is not None:
79                 sources_list = sources.split("\n")
80                 sources_new_list = []
81                 found = False
82                 for item in sources_list:
83                     if '"""' in item:
84                         if found == True:
85                             found = False                                
86                             continue
87                         else:
88                             found = True
89                             continue
90                             pass
91                         pass                
92                     if found == False :
93                         sources_new_list.append(item)
94                         pass
95                     pass
96                 sources = "\n".join(sources_new_list)
97                 sources = "\t" + sources.replace("\n", "\n\t")
98                 output.append(sources)
99                 pass
100             pass
101         pass
102     pass
103
104 if __name__ == "__main__":
105     import optparse
106     parser = optparse.OptionParser(usage="%prog [options] plugin")
107     h  = "Output file (geomBuilder.py by default)"
108     parser.add_option("-o", "--output", dest="output",
109                       action="store", default=None, metavar="file",
110                       help=h)
111     h  = "If this option is True, dummy help for geomBuiler class is added. "
112     h += "This option should be False (default) when building documentation for Geometry module "
113     h += "and True when building documentation for Geometry module plug-ins."
114     parser.add_option("-d", "--dummy-geom-help", dest="dummygeomhelp",
115                       action="store_true", default=False,
116                       help=h)
117     (options, args) = parser.parse_args()
118     if len( args ) < 1: sys.exit("Plugin name is not specified")
119
120     f = open(options.output, "w")
121
122     if len(args) > 1:
123         plugins_names = " ".join(args) + " plugins"
124     elif len(args) == 1:
125         plugins_names = args[0] + " plugin"
126     else:
127         plugins_names = ""
128     output = []
129     if options.dummygeomhelp:
130         output.append( "## @package geomBuilder" )
131         output.append( "#  Documentation of the methods dynamically added by the " + plugins_names + " to the @b %geomBuilder class." )
132         # Add dummy Geometry help
133         # This is supposed to be done when generating documentation for Geometry module plug-ins
134         output.append( "#  @note The documentation below does not provide complete description of class @b %geomBuilder" )
135         output.append( "#  from @b geomBuilder package. This documentation provides only information about" )
136         output.append( "#  the methods dynamically added to the %geomBuilder class by the " + plugins_names + "." )
137         output.append( "#  For more details on the %geomBuilder class, please refer to the SALOME %Geometry module" )
138         output.append( "#  documentation." )
139         pass
140     else:
141         # Extend documentation for geomBuilder class with information about dynamically added methods.
142         # This is supposed to be done only when building documentation for Geometry module
143         output.append( "## @package geomBuilder" )
144         output.append( "#  @note Some methods are dynamically added to the @b %geomBuilder class in runtime by the" )
145         output.append( "#  plug-in modules. If you fail to find help on some methods in the documentation of Geometry module, " )
146         output.append( "#  try to look into the documentation for the Geometry module plug-ins." )
147         pass
148     output.append("class geomBuilder():")
149     
150     for arg in args:
151        generate( arg, output )
152     pass
153
154     for line in output: f.write( line + "\n" )
155     f.close()