Salome HOME
Merge branch 'omu/multijob'
[tools/ydefx.git] / src / pydefx / allpurposebuilder.py
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2019  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 import inspect
21 import pathlib
22 import os
23
24 class AllPurposeBuilder:
25   def __init__(self, executor = None, pointEval = None, mainJob = None):
26     filename = inspect.getframeinfo(inspect.currentframe()).filename
27     install_root_directory = pathlib.Path(filename).resolve().parent
28     install_files_directory = os.path.join(install_root_directory, "plugins")
29
30     if executor is None:
31       raise TypeError("Parameter executor should not be None.")
32     self.executor = executor
33
34     if pointEval is None:
35       pointEval = os.path.join(install_files_directory, "pointeval.py")
36     self.pointEval = pointEval
37
38     if mainJob is None:
39       mainJob = os.path.join(install_files_directory, "mainjob.py")
40     self.mainJob = mainJob
41
42   def getMainJob(self):
43     return self.mainJob
44
45   def getExecutor(self):
46     return self.executor
47
48   def getPointEval(self):
49     return self.pointEval
50
51   def getPluginName(self):
52     basename = os.path.basename(self.executor)
53     if not basename.endswith(".py"):
54       raise ValueError("File name {} does not end with '.py'.".format(
55                                                                  self.executor))
56     return basename[:-3]