]> SALOME platform Git repositories - tools/ydefx.git/blob - src/pydefx/configuration.py
Salome HOME
Fix available resources in no salome server mode.
[tools/ydefx.git] / src / pydefx / configuration.py
1 # Copyright (C) 2019  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 from . import salome_proxy
20 import tempfile
21 import pathlib
22
23 def defaultWorkingDir(resource):
24   resManager = salome_proxy.getResourcesManager()
25   resource_definition = resManager.GetResourceDefinition(resource)
26   return resource_definition.working_directory
27
28 def defaultNbBranches(resource):
29   resManager = salome_proxy.getResourcesManager()
30   resource_definition = resManager.GetResourceDefinition(resource)
31   ret = resource_definition.nb_node
32   if ret < 1:
33     ret = 1
34   return ret
35
36 def defaultBaseDirectory():
37   """Return the default path to the root of any new result directory."""
38   return str(pathlib.Path.home())
39
40 def newResultDirectory(basedir=None):
41   """ A new directory is created and the path is returned."""
42   if basedir is None :
43     basedir = defaultBaseDirectory()
44   return tempfile.mkdtemp(prefix='idefix',dir=basedir)
45
46 def defaultWckey(resource="localhost"):
47   result = ""
48   if resource != "localhost":
49     result = "P11N0:SALOME"
50   return result
51
52 def availableResources():
53   resManager = salome_proxy.getResourcesManager()
54   params     = salome_proxy.createSalomeParameters()
55   params.resource_required.can_launch_batch_jobs = True
56   return resManager.GetFittingResources(params.resource_required)