X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2Fpy2yacs%2Fyacsbuild.py;fp=src%2Fpy2yacs%2Fyacsbuild.py;h=61aaaf6b721191ded137bac591c5e56d3b4c0568;hb=3b1e552d7293fe951444ce161ab1dc6a2ac3778a;hp=0000000000000000000000000000000000000000;hpb=c68218cc2c99c4c1d8a93505ea775c9ec30ef119;p=modules%2Fyacs.git diff --git a/src/py2yacs/yacsbuild.py b/src/py2yacs/yacsbuild.py new file mode 100755 index 000000000..61aaaf6b7 --- /dev/null +++ b/src/py2yacs/yacsbuild.py @@ -0,0 +1,35 @@ +#!/usr/bin/env python3 +# Copyright (C) 2006-2020 CEA/DEN, EDF R&D +# +# 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 +# + +if __name__ == '__main__': + import argparse + parser = argparse.ArgumentParser( + description="Build a YACS schema out of a decorated python script.") + parser.add_argument("path", help='Path to the script.') + parser.add_argument("mainbloc", + help='Name of the function containing the main bloc of the schema.') + parser.add_argument("yacsfile", help='Path to the output yacs file.') + args = parser.parse_args() + import yacsdecorator + yacsdecorator.activateYacsMode() + import yacstools + fn = yacstools.getFunction(args.path, args.mainbloc) + fn() + yacsdecorator.finalize(args.yacsfile)