0029195: OCAF - ensure thread safety for different documents.
[occt.git] / src / CDF / CDF_StoreList.cxx
CommitLineData
b311480e 1// Created on: 1997-08-08
2// Created by: Jean-Louis Frenkel
3// Copyright (c) 1997-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 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
973c2be1 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.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
7fd59977 16
7fd59977 17
42cf5bc1 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>
42cf5bc1 23#include <CDM_Document.hxx>
24#include <CDM_MetaData.hxx>
7fd59977 25#include <CDM_ReferenceIterator.hxx>
7fd59977 26#include <PCDM.hxx>
27#include <PCDM_Document.hxx>
28#include <PCDM_StorageDriver.hxx>
42cf5bc1 29#include <Standard_ErrorHandler.hxx>
42cf5bc1 30#include <Standard_NoSuchObject.hxx>
42cf5bc1 31#include <TCollection_ExtendedString.hxx>
7fd59977 32
92efcf78 33IMPLEMENT_STANDARD_RTTIEXT(CDF_StoreList,Standard_Transient)
34
9775fa61 35static void CAUGHT(const Standard_Failure& theException,TCollection_ExtendedString& status,const TCollection_ExtendedString& what) {
7fd59977 36 status += what;
9775fa61 37 status += theException.GetMessageString();
7fd59977 38}
39
40CDF_StoreList::CDF_StoreList(const Handle(CDM_Document)& aDocument) {
41 myMainDocument = aDocument;
42 Add(aDocument);
43}
44
45void CDF_StoreList::Add(const Handle(CDM_Document)& aDocument) {
46
47 if(!myItems.Contains(aDocument) && aDocument != myMainDocument) myItems.Add(aDocument);
6af4fe1c 48 myStack.Prepend(aDocument);
7fd59977 49
50 CDM_ReferenceIterator it(aDocument);
51 for (;it.More();it.Next()) {
52 if(it.Document()->IsModified()) Add(it.Document());
53 }
54}
55Standard_Boolean CDF_StoreList::IsConsistent () const {
56 Standard_Boolean yes = Standard_True;
57 CDM_MapIteratorOfMapOfDocument it (myItems);
58 for ( ; it.More() && yes ; it.Next()) {
59 yes = it.Key()->HasRequestedFolder();
60 }
61 return yes && myMainDocument->HasRequestedFolder();
62}
63void CDF_StoreList::Init() {
64 myIterator = CDM_MapIteratorOfMapOfDocument(myItems);
65}
66Standard_Boolean CDF_StoreList::More() const {
67 return myIterator.More();
68}
69
70void CDF_StoreList::Next() {
71 myIterator.Next();
72}
73
74Handle(CDM_Document) CDF_StoreList::Value() const {
75 return myIterator.Key();
76}
6d8f9f4a 77PCDM_StoreStatus CDF_StoreList::Store (Handle(CDM_MetaData)& aMetaData,
78 TCollection_ExtendedString& aStatusAssociatedText,
79 const Handle(Message_ProgressIndicator)& theProgress)
80{
d9d03f10 81 Handle(CDF_MetaDataDriver) theMetaDataDriver = Handle(CDF_Application)::DownCast((myMainDocument->Application()))->MetaDataDriver();
7fd59977 82
15e8b082 83 PCDM_StoreStatus status = PCDM_SS_OK;
7fd59977 84 {
85 try {
86 OCC_CATCH_SIGNALS
6af4fe1c 87 for (; !myStack.IsEmpty(); myStack.RemoveFirst()) {
15e8b082 88
6af4fe1c 89 Handle(CDM_Document) theDocument = myStack.First();
15e8b082
M
90 if( theDocument == myMainDocument || theDocument->IsModified()) {
91
6fe96f84 92 Handle(CDF_Application) anApp = Handle(CDF_Application)::DownCast (theDocument->Application());
93 if (anApp.IsNull())
94 {
9775fa61 95 throw Standard_Failure("Document has no application, cannot save!");
6fe96f84 96 }
97 Handle(PCDM_StorageDriver) aDocumentStorageDriver =
98 anApp->WriterFromFormat(theDocument->StorageFormat());
99 if (aDocumentStorageDriver.IsNull())
100 {
15e8b082
M
101 Standard_SStream aMsg;
102 aMsg <<"No storage driver does exist for this format: " << theDocument->StorageFormat() << (char)0;
9775fa61 103 throw Standard_Failure(aMsg.str().c_str());
15e8b082
M
104 }
105
780fbc28 106 // Reset the store-status.
107 // It has sense in multi-threaded access to the storage driver - this way we reset the status for each call.
108 aDocumentStorageDriver->SetStoreStatus(PCDM_SS_OK);
109
15e8b082
M
110 if(!theMetaDataDriver->FindFolder(theDocument->RequestedFolder())) {
111 Standard_SStream aMsg; aMsg << "could not find the active dbunit";
112 aMsg << TCollection_ExtendedString(theDocument->RequestedFolder())<< (char)0;
9775fa61 113 throw Standard_NoSuchObject(aMsg.str().c_str());
15e8b082
M
114 }
115 TCollection_ExtendedString theName=theMetaDataDriver->BuildFileName(theDocument);
116
6d8f9f4a 117 aDocumentStorageDriver->Write(theDocument, theName, theProgress);
15e8b082 118 status = aDocumentStorageDriver->GetStoreStatus();
15e8b082 119 aMetaData = theMetaDataDriver->CreateMetaData(theDocument,theName);
15e8b082
M
120 theDocument->SetMetaData(aMetaData);
121
122 CDM_ReferenceIterator it(theDocument);
123 for(; it.More();it.Next()) {
124 theMetaDataDriver->CreateReference(aMetaData,it.Document()->MetaData(),it.ReferenceIdentifier(),it.DocumentVersion());
125 }
126 }
7fd59977 127 }
128 }
129
a738b534 130 catch (CDF_MetaDataDriverError const& anException) {
9775fa61 131 CAUGHT(anException, aStatusAssociatedText, TCollection_ExtendedString("metadatadriver failed; reason:"));
15e8b082 132 status = PCDM_SS_DriverFailure;
7fd59977 133 }
9775fa61 134 catch (Standard_Failure const& anException) {
135 CAUGHT(anException, aStatusAssociatedText, TCollection_ExtendedString("driver failed; reason:"));
15e8b082 136 status = PCDM_SS_Failure;
7fd59977 137 }
138 }
139
140 return status;
141}