Salome HOME
Base implementation of Notebook
[modules/kernel.git] / src / SALOMEDSClient / SALOMEDSClient_Study.hxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  File   : SALOMEDSClient_Study.hxx
23 //  Author : Sergey RUIN
24 //  Module : SALOME
25 //
26 #ifndef __SALOMEDSClient_STUDY_H__
27 #define __SALOMEDSClient_STUDY_H__
28
29 #include <vector>
30 #include <string>
31
32 #include "SALOMEDSClient_definitions.hxx"
33 #include "SALOMEDSClient_SComponentIterator.hxx"
34 #include "SALOMEDSClient_StudyBuilder.hxx"
35 #include "SALOMEDSClient_AttributeParameter.hxx"
36 #include "SALOMEDSClient_SObject.hxx"
37 #include "SALOMEDSClient_SComponent.hxx"
38 #include "SALOMEDSClient_UseCaseBuilder.hxx"
39 #include "SALOMEDSClient_AttributeStudyProperties.hxx"
40 #include "SALOMEDSClient_ChildIterator.hxx"
41
42 class SALOMEDSClient_Study
43 {
44
45 public:
46   virtual ~SALOMEDSClient_Study() {}
47
48   virtual std::string GetPersistentReference() = 0;
49   virtual std::string GetTransientReference() = 0;
50   virtual bool IsEmpty() = 0;
51   virtual _PTR(SComponent) FindComponent (const std::string& aComponentName) = 0;
52   virtual _PTR(SComponent) FindComponentID(const std::string& aComponentID) = 0;
53   virtual _PTR(SObject) FindObject(const std::string& anObjectName) = 0;
54   virtual std::vector<_PTR(SObject)> FindObjectByName( const std::string& anObjectName, const std::string& aComponentName ) = 0;  
55   virtual _PTR(SObject) FindObjectID(const std::string& anObjectID) = 0;
56   virtual _PTR(SObject) CreateObjectID(const std::string& anObjectID) = 0;
57   virtual _PTR(SObject) FindObjectIOR(const std::string& anObjectIOR) = 0;
58   virtual _PTR(SObject) FindObjectByPath(const std::string& thePath) = 0;
59   virtual std::string GetObjectPath(const _PTR(SObject)& theSO) = 0;
60   virtual void SetContext(const std::string& thePath) = 0;
61   virtual std::string GetContext() = 0;  
62   virtual std::vector<std::string> GetObjectNames(const std::string& theContext) = 0;
63   virtual std::vector<std::string> GetDirectoryNames(const std::string& theContext) = 0;
64   virtual std::vector<std::string> GetFileNames(const std::string& theContext) = 0;
65   virtual std::vector<std::string> GetComponentNames(const std::string& theContext) = 0;
66   virtual _PTR(ChildIterator) NewChildIterator(const _PTR(SObject)& theSO) = 0;
67   virtual _PTR(SComponentIterator) NewComponentIterator() = 0;
68   virtual _PTR(StudyBuilder) NewBuilder() = 0;
69   virtual std::string Name() = 0;
70   virtual void  Name(const std::string& name) = 0;
71   virtual bool IsSaved() = 0;
72   virtual void  IsSaved(bool save) = 0;
73   virtual bool IsModified() = 0;
74   virtual void Modified() = 0;
75   virtual std::string URL() = 0;
76   virtual void  URL(const std::string& url) = 0;
77   virtual int StudyId() = 0;
78   virtual void  StudyId(int id) = 0;
79   virtual std::vector<_PTR(SObject)> FindDependances(const _PTR(SObject)& theSO) = 0;
80   virtual _PTR(AttributeStudyProperties) GetProperties() = 0;
81   virtual std::string GetLastModificationDate() = 0;
82   virtual std::vector<std::string> GetModificationsDate() = 0;
83   virtual _PTR(UseCaseBuilder) GetUseCaseBuilder() = 0;
84   virtual void Close() = 0;
85   virtual void EnableUseCaseAutoFilling(bool isEnabled) = 0;
86   virtual bool DumpStudy(const std::string& thePath, 
87                          const std::string& theBaseName, 
88                          bool isPublished) = 0;
89   virtual _PTR(AttributeParameter) GetCommonParameters(const std::string& theID, int theSavePoint) = 0;
90   virtual _PTR(AttributeParameter) GetModuleParameters(const std::string& theID, 
91                                                        const std::string& theModuleName, int theSavePoint) = 0;
92   virtual void SetStudyLock(const std::string& theLockerID) = 0;
93   virtual bool IsStudyLocked() = 0;
94   virtual void UnLockStudy(const std::string& theLockerID) = 0;
95   virtual std::vector<std::string> GetLockerID() = 0;
96 };
97
98
99 #endif