// Created by: DAUTRY Philippe // Copyright (c) 1997-1999 Matra Datavision // Copyright (c) 1999-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. // ------------------- // Version: 0.0 //Version Date Purpose // 0.0 Oct 1 1997 Creation #include #include #include #include #include #include #undef DEB_TRANSACTION #ifdef OCCT_DEBUG #define DEB_TRANSACTION #endif #undef DEB_TRANSACTION_DUMP #include //======================================================================= //function : TDF_Transaction //purpose : //======================================================================= TDF_Transaction::TDF_Transaction (const TCollection_AsciiString& aName) : myUntilTransaction(0), myName(aName) {} //======================================================================= //function : TDF_Transaction //purpose : Private copy constructor. //======================================================================= TDF_Transaction::TDF_Transaction(const TDF_Transaction& /*aTrans*/) {} //======================================================================= //function : TDF_Transaction //purpose : //======================================================================= TDF_Transaction::TDF_Transaction (const Handle(TDF_Data)& aDF, const TCollection_AsciiString& aName) : myDF(aDF), myUntilTransaction(0), myName(aName) {} //======================================================================= //function : Initialize //purpose : Initializes a transaction ready to be opened. //======================================================================= void TDF_Transaction::Initialize(const Handle(TDF_Data)& aDF) { if (IsOpen()) myDF->AbortUntilTransaction(myUntilTransaction); myDF = aDF; myUntilTransaction = 0; } //======================================================================= //function : Open //purpose : //======================================================================= Standard_Integer TDF_Transaction::Open() { #ifdef OCCT_DEBUG_TRANSACTION cout<<"Transaction "<Transaction()+1<OpenTransaction(); } //======================================================================= //function : Commit //purpose : //======================================================================= Handle(TDF_Delta) TDF_Transaction::Commit(const Standard_Boolean withDelta) { #ifdef OCCT_DEBUG_TRANSACTION cout<<"Transaction "<Transaction()<<" until #"<Transaction()<CommitUntilTransaction(until, withDelta); #ifdef OCCT_DEBUG_TRANSACTION_DUMP cout<<"DF after commit"<Transaction()<<" until #"<Transaction()<AbortUntilTransaction(myUntilTransaction); myUntilTransaction = 0; #ifdef OCCT_DEBUG_TRANSACTION_DUMP cout<<"DF after abort"<