Salome HOME
updated copyright message
[modules/yacs.git] / src / py2yacs / yacsbuild.py
1 #!/usr/bin/env python3
2 # Copyright (C) 2006-2023  CEA/DEN, EDF R&D
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20
21 if __name__ == '__main__':
22   import argparse
23   parser = argparse.ArgumentParser(
24     description="Build a YACS schema out of a decorated python script.")
25   parser.add_argument("path", help='Path to the script.')
26   parser.add_argument("mainbloc",
27         help='Name of the function containing the main bloc of the schema.')
28   parser.add_argument("yacsfile", help='Path to the output yacs file.')
29   parser.add_argument("-c", "--containers",
30                       help="File of containers.",
31                       default=None)
32   args = parser.parse_args()
33   import yacsdecorator
34   yacsdecorator.activateYacsMode()
35   if not args.containers is None :
36     yacsdecorator.loadContainers(args.containers)
37   import yacstools
38   fn = yacstools.getFunction(args.path, args.mainbloc)
39   fn()
40   yacsdecorator.export(args.yacsfile)