Salome HOME
Update copyrights 2014.
[tools/yacsgen.git] / Examples / paco2 / components.py
1 # Copyright (C) 2009-2014  EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 import os
21
22 #import context from ..
23 execfile("../pacocontext.py")
24 from module_generator import Generator,Module,Service,PACOComponent
25
26 cwd=os.getcwd()
27
28 body="""
29 c = a + b;
30 """
31
32 c1=PACOComponent("paco1",
33                  "mpi",
34                  services=[
35                    Service("run",inport=[("a","double"),("b","double")],
36                            outport=[("c","double")],
37                            body=body,
38                            impl_type="parallel"
39                           ),
40                 ],
41                )
42
43
44 g=Generator(Module("pacocompos",components=[c1],prefix="./install"),context)
45 g.generate()
46 g.bootstrap()
47 g.configure()
48 g.make()
49 g.install()
50 g.make_appli("appli", restrict=["KERNEL"], altmodules={"GUI":GUI_ROOT_DIR, "YACS":YACS_ROOT_DIR})
51