summaryrefslogtreecommitdiff
path: root/src/RWHeaderSection/RWHeaderSection_RWFileSchema.cxx
blob: 523ef8e8355b9101175d79e1290ee1ccede53631 (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

#include <RWHeaderSection_RWFileSchema.ixx>
#include <Interface_HArray1OfHAsciiString.hxx>


RWHeaderSection_RWFileSchema::RWHeaderSection_RWFileSchema () {}

void RWHeaderSection_RWFileSchema::ReadStep
	(const Handle(StepData_StepReaderData)& data,
	 const Standard_Integer num,
	 Handle(Interface_Check)& ach,
	 const Handle(HeaderSection_FileSchema)& ent) const
{


	// --- Number of Parameter Control ---

	if (!data->CheckNbParams(num,1,ach,"file_schema has not 1 parameter(s)")) return;

	// --- own field : schemaIdentifiers ---

	Handle(Interface_HArray1OfHAsciiString) aSchemaIdentifiers;
	Handle(TCollection_HAsciiString) aSchemaIdentifiersItem;
	Standard_Integer nsub1;
	nsub1 = data->SubListNumber(num, 1, Standard_False);
	if (nsub1 !=0) {
	  Standard_Integer nb1 = data->NbParams(nsub1);
	  aSchemaIdentifiers = new Interface_HArray1OfHAsciiString (1, nb1);
	  for (Standard_Integer i1 = 1; i1 <= nb1; i1 ++) {
	    Standard_Boolean stat1 = data->ReadString
	         (nsub1,i1,"schema_identifiers",ach,aSchemaIdentifiersItem);
	    if (stat1) aSchemaIdentifiers->SetValue(i1,aSchemaIdentifiersItem);
	  }
	}
	else {
	  ach->AddFail("Parameter #1 (schema_identifiers) is not a LIST");
	}

	//--- Initialisation of the read entity ---


	if (!ach->HasFailed()) ent->Init(aSchemaIdentifiers);
}


void RWHeaderSection_RWFileSchema::WriteStep
	(StepData_StepWriter& SW,
	 const Handle(HeaderSection_FileSchema)& ent) const
{

	// --- own field : schemaIdentifiers ---

	SW.OpenSub();
	for (Standard_Integer i1 = 1;  i1 <= ent->NbSchemaIdentifiers();  i1 ++) {
	  SW.Send(ent->SchemaIdentifiersValue(i1));
	}
	SW.CloseSub();
}