2019-02-14 16:55:47 +05:00
|
|
|
#!/usr/bin/env python3
|
2024-01-20 19:16:41 +05:00
|
|
|
# Copyright (C) 2017-2024 CEA, EDF, OPEN CASCADE
|
2019-02-14 16:55:47 +05:00
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
|
|
|
#
|
2017-12-08 19:09:48 +05:00
|
|
|
import inspect
|
|
|
|
import sys
|
|
|
|
from types import FunctionType
|
|
|
|
import copy
|
|
|
|
|
|
|
|
ORIGIN_MODULE_SUFFIX = "_origin"
|
|
|
|
DYNAMIC_MODULE_SUFFIX = "_dynamic"
|
|
|
|
|
|
|
|
|
|
|
|
def main(module_name, output_file = "smeshBuilder.py"):
|
|
|
|
oringin_module_name = module_name + ORIGIN_MODULE_SUFFIX
|
|
|
|
dynamic_module_name = module_name + DYNAMIC_MODULE_SUFFIX
|
|
|
|
try:
|
|
|
|
exec( "import %s" % oringin_module_name )
|
2018-06-19 21:58:29 +05:00
|
|
|
origin_module = locals()[ oringin_module_name ]
|
2017-12-08 19:09:48 +05:00
|
|
|
origin_module_lines = inspect.getsourcelines( origin_module )[0]
|
|
|
|
origin_meshClass_lines = inspect.getsourcelines(origin_module.Mesh)[0]
|
|
|
|
origin_module_text = "".join( origin_module_lines )
|
|
|
|
origin_meshClass_text = "".join( origin_meshClass_lines )
|
|
|
|
|
|
|
|
exec( "import %s" % dynamic_module_name )
|
2018-06-19 21:58:29 +05:00
|
|
|
dynanmic_module = locals()[ dynamic_module_name ]
|
2017-12-08 19:09:48 +05:00
|
|
|
dynanmic_meshClass = dynanmic_module.Mesh
|
|
|
|
|
|
|
|
new_meshClass_lines = copy.copy(origin_meshClass_lines)
|
|
|
|
# remove end of class 'pass'
|
|
|
|
if new_meshClass_lines[-1].find("pass") > 0:
|
|
|
|
new_meshClass_lines.pop()
|
|
|
|
|
|
|
|
dynanmic_meshClass_methods = [x for x, y in dynanmic_meshClass.__dict__.items() if type(y) == FunctionType]
|
|
|
|
for method in dynanmic_meshClass_methods:
|
|
|
|
exec( "method_lines = inspect.getsourcelines(dynanmic_module.Mesh.%s)[0]" % method)
|
2018-06-19 21:58:29 +05:00
|
|
|
new_meshClass_lines+=locals()['method_lines']
|
2017-12-08 19:09:48 +05:00
|
|
|
pass
|
|
|
|
new_meshClass_text = "".join( new_meshClass_lines )
|
|
|
|
|
|
|
|
f = open( output_file, "w" )
|
|
|
|
|
|
|
|
f.write( origin_module_text.replace( origin_meshClass_text, new_meshClass_text) )
|
|
|
|
f.close()
|
2018-06-14 16:56:19 +05:00
|
|
|
except Exception as e:
|
|
|
|
print(e)
|
2017-12-08 19:09:48 +05:00
|
|
|
pass
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
import optparse
|
|
|
|
parser = optparse.OptionParser(usage="%prog [options] modulename")
|
|
|
|
h = "Output file (smeshBuilder.py by default)"
|
|
|
|
parser.add_option("-o", "--output", dest="output",
|
|
|
|
action="store", default="smeshBuilder.py", metavar="file",
|
|
|
|
help=h)
|
|
|
|
|
|
|
|
(options, args) = parser.parse_args()
|
|
|
|
|
|
|
|
if len( args ) < 1: sys.exit("Module name is not specified")
|
|
|
|
main( args[0], options.output )
|
|
|
|
pass
|