619af206e2b1c8e8cf32c23a90467dce27113d58
[occt.git] / src / CDF / CDF_StoreList.cxx
1 // Created on: 1997-08-08
2 // Created by: Jean-Louis Frenkel
3 // Copyright (c) 1997-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17
18 #include <CDF_Application.hxx>
19 #include <CDF_MetaDataDriver.hxx>
20 #include <CDF_MetaDataDriverError.hxx>
21 #include <CDF_Session.hxx>
22 #include <CDF_StoreList.hxx>
23 #include <CDF_Timer.hxx>
24 #include <CDM_Document.hxx>
25 #include <CDM_MetaData.hxx>
26 #include <CDM_ReferenceIterator.hxx>
27 #include <PCDM.hxx>
28 #include <PCDM_Document.hxx>
29 #include <PCDM_StorageDriver.hxx>
30 #include <Standard_ErrorHandler.hxx>
31 #include <Standard_Macro.hxx>
32 #include <Standard_NoSuchObject.hxx>
33 #include <Standard_Type.hxx>
34 #include <TCollection_ExtendedString.hxx>
35
36 IMPLEMENT_STANDARD_RTTIEXT(CDF_StoreList,Standard_Transient)
37
38 static void CAUGHT(TCollection_ExtendedString& status,const TCollection_ExtendedString& what) {
39   Handle(Standard_Failure) F = Standard_Failure::Caught();
40   status += what;
41   status += F->GetMessageString();
42 }
43
44 CDF_StoreList::CDF_StoreList(const Handle(CDM_Document)& aDocument) {
45   myMainDocument = aDocument;
46   Add(aDocument);
47 }
48
49 void CDF_StoreList::Add(const Handle(CDM_Document)& aDocument) {
50
51   if(!myItems.Contains(aDocument) && aDocument != myMainDocument) myItems.Add(aDocument);
52   myStack.Prepend(aDocument);
53   
54   CDM_ReferenceIterator it(aDocument);
55   for (;it.More();it.Next()) {
56     if(it.Document()->IsModified())  Add(it.Document());
57   }
58 }
59 Standard_Boolean CDF_StoreList::IsConsistent () const {
60   Standard_Boolean yes = Standard_True;
61   CDM_MapIteratorOfMapOfDocument it (myItems); 
62   for ( ; it.More() && yes ; it.Next()) {
63     yes = it.Key()->HasRequestedFolder();
64   }
65   return yes && myMainDocument->HasRequestedFolder();
66 }
67 void CDF_StoreList::Init() {
68   myIterator = CDM_MapIteratorOfMapOfDocument(myItems);
69 }
70 Standard_Boolean CDF_StoreList::More() const {
71   return myIterator.More();
72 }
73
74 void CDF_StoreList::Next() {
75   myIterator.Next();
76 }
77
78 Handle(CDM_Document) CDF_StoreList::Value() const {
79   return myIterator.Key();
80 }
81 PCDM_StoreStatus CDF_StoreList::Store (Handle(CDM_MetaData)& aMetaData, TCollection_ExtendedString& aStatusAssociatedText) {
82
83   Handle(CDF_MetaDataDriver) theMetaDataDriver = CDF_Session::CurrentSession()->MetaDataDriver();
84
85   PCDM_StoreStatus status = PCDM_SS_OK;
86   {
87     try {
88       OCC_CATCH_SIGNALS
89       for (; !myStack.IsEmpty(); myStack.RemoveFirst()) {
90
91         Handle(CDM_Document) theDocument = myStack.First();
92         if( theDocument == myMainDocument || theDocument->IsModified()) {
93
94           Handle(CDF_Application) anApp = Handle(CDF_Application)::DownCast (theDocument->Application());
95           if (anApp.IsNull())
96           {
97             Standard_Failure::Raise("Document has no application, cannot save!");
98           }
99           Handle(PCDM_StorageDriver) aDocumentStorageDriver = 
100             anApp->WriterFromFormat(theDocument->StorageFormat());
101           if (aDocumentStorageDriver.IsNull())
102           {
103             Standard_SStream aMsg;
104             aMsg <<"No storage driver does exist for this format: " << theDocument->StorageFormat() << (char)0;
105             Standard_Failure::Raise(aMsg);
106           }
107
108           if(!theMetaDataDriver->FindFolder(theDocument->RequestedFolder())) {
109             Standard_SStream aMsg; aMsg << "could not find the active dbunit";
110             aMsg << TCollection_ExtendedString(theDocument->RequestedFolder())<< (char)0;
111             Standard_NoSuchObject::Raise(aMsg);
112           }
113           TCollection_ExtendedString theName=theMetaDataDriver->BuildFileName(theDocument);
114
115           CDF_Timer theTimer;
116           aDocumentStorageDriver->Write(theDocument,theName);
117           status = aDocumentStorageDriver->GetStoreStatus();
118
119           theTimer.ShowAndRestart("Driver->Write: ");
120
121           aMetaData = theMetaDataDriver->CreateMetaData(theDocument,theName);
122           theTimer.ShowAndStop("metadata creating: ");
123
124           theDocument->SetMetaData(aMetaData);
125
126           CDM_ReferenceIterator it(theDocument);
127           for(; it.More();it.Next()) {
128             theMetaDataDriver->CreateReference(aMetaData,it.Document()->MetaData(),it.ReferenceIdentifier(),it.DocumentVersion());
129           }
130         }
131       }
132     }
133
134     catch (CDF_MetaDataDriverError) {
135       CAUGHT(aStatusAssociatedText,TCollection_ExtendedString("metadatadriver failed; reason:"));
136       status = PCDM_SS_DriverFailure;
137     }
138     catch (Standard_Failure) {
139       CAUGHT(aStatusAssociatedText,TCollection_ExtendedString("driver failed; reason:"));
140       status = PCDM_SS_Failure; 
141     }
142   }
143
144   return status;
145 }