Salome HOME
0021308: EDF 1923 SMESH: Remove hard-coded dependency of the external mesh plugins...
[modules/smesh.git] / doc / salome / gui / SMESH / collect_mesh_methods.py
1 #!/usr/bin/env python
2 #################################################################################
3 #
4 # File:   collect_mesh_methods.py
5 # Author: Vadim SANDLER, Open CASCADE S.A.S (vadim.sandler@opencascade.com)
6 #
7 #################################################################################
8 #
9 # Extraction of the meshing algorithm classes
10 # dynamically added by the plug-in to the Mesh
11 # class.
12
13 # This script is intended for internal usage - only
14 # for generatation of the extra developer documentation for
15 # the meshing plug-in(s).
16
17 # Usage:
18 #       collect_mesh_methods.py <plugin_name>
19 # where
20 #   <plugin_name> is a name of the plug-in module
21 #
22 # Notes:
23 # - the script is supposed to be run in correct environment
24 # i.e. PYTHONPATH, SMESH_MeshersList and other important
25 # variables are set properly; otherwise the script will fail.
26 #
27 ################################################################################
28
29 import sys
30
31 def main(plugin, dummymeshhelp = True, output_file = "smesh.py"):
32     plugin_module = plugin + "DC"
33     try:
34         mod = __import__(plugin_module)
35         methods = {}
36         for attr in dir( mod ):
37             if attr.startswith( '_' ): continue
38             algo = getattr( mod, attr )
39             if type( algo ).__name__ == 'classobj' and hasattr( algo, "meshMethod" ):
40                 method = getattr( algo, "meshMethod" )
41                 if method not in methods: methods[ method ] = []
42                 methods[ method ].append( algo )
43                 pass
44             pass
45         if methods:
46             output = []
47             output.append( "## This class allows defining and managing a mesh." )
48             output.append( "#" )
49             if dummymeshhelp:
50                 # Add dummy Mesh help
51                 # This is supposed to be done when generating documentation for meshing plug-ins
52                 output.append( "#  @note The documentation below does not provide complete description of class @b %Mesh" )
53                 output.append( "#  from @b %smesh.py package. This documentation provides only information about" )
54                 output.append( "#  the methods dynamically added to the %Mesh class by the " + plugin + " plugin" )
55                 output.append( "#  For more details on the %Mesh class, please refer to the SALOME %Mesh module" )
56                 output.append( "#  documentation." )
57                 pass
58             else:
59                 # Extend documentation for Mesh class with information about dynamically added methods.
60                 # This is supposed to be done only when building documentation for SMESH module
61                 output.append( "#  @note Some methods are dynamically added to the @b %Mesh class in runtime by meshing " )
62                 output.append( "#  plug-in modules. If you fail to find help on some methods in the documentation of SMESH module, " )
63                 output.append( "#  try to look into the documentation for the meshing plug-ins." )
64                 pass
65             output.append( "class Mesh:" )
66             for method in methods:
67                 docHelper = ""
68                 for algo in methods[ method ]:
69                     if hasattr( algo, "docHelper" ): docHelper = getattr( algo, "docHelper" )
70                     if docHelper: break
71                     pass
72                 if not docHelper: docHelper = "Creates new algorithm."
73                 output.append( " ## %s" % docHelper )
74                 output.append( " #  This method is dynamically added to %Mesh class by the meshing plug-in(s). " )
75                 output.append( " #" )
76                 output.append( " #  If the optional @a geom_shape parameter is not set, this algorithm is global (applied to whole mesh)." )
77                 output.append( " #  Otherwise, this algorithm defines a submesh based on @a geom_shape subshape." )
78                 output.append( " #  @param algo_type type of algorithm to be created; allowed values are specified by classes implemented by plug-in (see below)" )
79                 output.append( " #  @param geom_shape if defined, the subshape to be meshed (GEOM_Object)" )
80                 output.append( " #  @return An instance of Mesh_Algorithm sub-class according to the specified @a algo_type, see " )
81                 output.append( " #  %s" % ", ".join( [ "%s.%s" % ( plugin_module, algo.__name__ ) for algo in methods[ method ] ] ) )
82                 output.append( " def %s(algo_type, geom_shape=0):" % method )
83                 output.append( "   pass" )
84                 pass
85             f = open(output_file, "w")
86             for line in output: f.write( line + "\n" )
87             f.close()
88             pass
89         pass
90     except Exception, e:
91         print e
92         pass
93     pass
94     
95 if __name__ == "__main__":
96     import optparse
97     parser = optparse.OptionParser(usage="%prog [options] plugin")
98     h  = "Output file (smesh.py by default)"
99     parser.add_option("-o", "--output", dest="output",
100                       action="store", default=None, metavar="file",
101                       help=h)
102     h  = "If this option is True, dummy help for Mesh class is added. "
103     h += "This option should be False (default) when building documentation for SMESH module "
104     h += "and True when building documentation for meshing plug-ins."
105     parser.add_option("-d", "--dummy-mesh-help", dest="dummymeshhelp",
106                       action="store_true", default=False,
107                       help=h)
108     (options, args) = parser.parse_args()
109
110     if len( args ) < 1: sys.exit("Plugin name is not specified")
111     main( args[0], options.dummymeshhelp, options.output )
112     pass