Salome HOME
Update of CheckDone
[modules/smesh.git] / src / Tools / Verima / Base / tableMachines.py
1 # Copyright (C) 2013-2022  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 from qtsalome import QSqlQuery
22 from Base.tableDeBase import TableDeBase
23
24 class TableMachines (TableDeBase):
25     def __init__(self):
26         TableDeBase.__init__(self,"Machines")
27         self.setField(("nomMachine","Os"))
28         self.setTypeField(('str','str'),('nomMachine'))
29
30     def createSqlTable(self):
31         query=QSqlQuery()
32         print("creation de TableMachine : ", query.exec_("create table Machines(  nomMachine varchar(10) primary key, os varchar(10));"))
33
34     def creeMachine(self):
35         nomMachine=os.uname()[1]
36         nomOs=os.uname()[2]
37         self.insereLigne((nomMachine,nomOs))
38
39     def chercheMachine(self):
40         query=QSqlQuery()
41         machine=os.uname()[1]
42         texteQuery ="select nomMachine from Machines where nomMachine ='" + machine +"' ;"
43         query.exec_(texteQuery)
44         nb=0
45         while(query.next()):
46             nb=nb+1
47             nom=str(query.value(0).toString())
48         if nb != 1 : return 0,  ""
49         return  1,  nom