blob: 728fdda2e2c4e1497152848c66eea8c594a6ca50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
#include <MDataStd_ExpressionStorageDriver.ixx>
#include <PDataStd_Expression.hxx>
#include <TDataStd_Expression.hxx>
#include <TCollection_ExtendedString.hxx>
#include <PCollection_HExtendedString.hxx>
#include <TDF_ListIteratorOfAttributeList.hxx>
#include <PDF_HAttributeArray1.hxx>
#include <Standard_NoSuchObject.hxx>
#include <CDM_MessageDriver.hxx>
//=======================================================================
//function : MDataStd_ExpressionStorageDriver
//purpose :
//=======================================================================
MDataStd_ExpressionStorageDriver::MDataStd_ExpressionStorageDriver(const Handle(CDM_MessageDriver)& theMsgDriver):MDF_ASDriver(theMsgDriver)
{
}
//=======================================================================
//function : VersionNumber
//purpose :
//=======================================================================
Standard_Integer MDataStd_ExpressionStorageDriver::VersionNumber() const
{ return 0; }
//=======================================================================
//function : SourceType
//purpose :
//=======================================================================
Handle(Standard_Type) MDataStd_ExpressionStorageDriver::SourceType() const
{ return STANDARD_TYPE(TDataStd_Expression);}
//=======================================================================
//function : NewEmpty
//purpose :
//=======================================================================
Handle(PDF_Attribute) MDataStd_ExpressionStorageDriver::NewEmpty() const
{ return new PDataStd_Expression; }
//=======================================================================
//function : Paste
//purpose :
//=======================================================================
void MDataStd_ExpressionStorageDriver::Paste(const Handle(TDF_Attribute)& Source,
const Handle(PDF_Attribute)& Target,
const Handle(MDF_SRelocationTable)& RelocTable) const
{
Handle(TDataStd_Expression) S = Handle(TDataStd_Expression)::DownCast (Source);
Handle(PDataStd_Expression) T = Handle(PDataStd_Expression)::DownCast (Target);
Handle(PCollection_HExtendedString) Expression = new PCollection_HExtendedString (S->Name());
T->SetName (Expression);
Handle(TDF_Attribute) TV;
Handle(PDF_Attribute) PV;
Standard_Integer nbvar = S->GetVariables().Extent();
if (nbvar <= 0) return;
Handle(PDF_HAttributeArray1) PVARS = new PDF_HAttributeArray1 (1, nbvar);
TDF_ListIteratorOfAttributeList it;
Standard_Integer index = 0;
for (it.Initialize(S->GetVariables());it.More();it.Next()) {
index++;
TV = it.Value();
if(!RelocTable->HasRelocation (TV, PV)) {
Standard_NoSuchObject::Raise("MDataStd_ExpressionStorageDriver::Paste");
}
PVARS->SetValue (index,PV);
}
T->SetVariables (PVARS);
}
|