Version: 6.3.1

idl/SALOME_Session.idl

Go to the documentation of this file.
00001 // Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
00002 //
00003 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
00004 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
00005 //
00006 // This library is free software; you can redistribute it and/or
00007 // modify it under the terms of the GNU Lesser General Public
00008 // License as published by the Free Software Foundation; either
00009 // version 2.1 of the License.
00010 //
00011 // This library is distributed in the hope that it will be useful,
00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00014 // Lesser General Public License for more details.
00015 //
00016 // You should have received a copy of the GNU Lesser General Public
00017 // License along with this library; if not, write to the Free Software
00018 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
00019 //
00020 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
00021 //
00022 //  File   : SALOME_Session.idl
00023 //  Author : Paul RASCLE, EDF
00024 
00025 #include "SALOME_Component.idl"
00026 
00030 module SALOME
00031 {
00037   enum SessionState {asleep, 
00038                      running 
00039   } ;
00040 
00046   struct StatSession
00047   {
00054     SessionState state ;
00056     short        runningStudies ;
00058     boolean      activeGUI ;
00059   } ;
00060 
00067   interface Session
00068   {
00070     exception GUIActive {} ;
00072     exception RunningStudies {} ;
00073 
00075     void GetInterface();
00076 
00078     Engines::EngineComponent GetComponent(in string theLibraryName);
00079 
00081     void StopSession() raises(GUIActive, RunningStudies) ;
00082 
00084     StatSession GetStatSession() ;
00085 
00087     void ping();
00089     long getPID();
00091     string getHostname();
00093     long GetActiveStudyId();
00095     boolean restoreVisualState(in long theSavePoint);
00096 
00098 
00106     void emitMessage(in string theMessage);
00107 
00109 
00115     oneway void emitMessageOneWay(in string theMessage);
00116   } ;
00117 } ;
Copyright © 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE
Copyright © 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS