973c2be1 |
1 | // Copyright (c) 1999-2014 OPEN CASCADE SAS |
b311480e |
2 | // |
973c2be1 |
3 | // This file is part of Open CASCADE Technology software library. |
b311480e |
4 | // |
973c2be1 |
5 | // This library is free software; you can redistribute it and / or modify it |
6 | // under the terms of the GNU Lesser General Public version 2.1 as published |
7 | // by the Free Software Foundation, with special exception defined in the file |
8 | // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT |
9 | // distribution for complete text of the license and disclaimer of any warranty. |
b311480e |
10 | // |
973c2be1 |
11 | // Alternatively, this file may be used under the terms of Open CASCADE |
12 | // commercial license or contractual agreement. |
7fd59977 |
13 | |
14 | #include <RWHeaderSection_RWFileSchema.ixx> |
15 | #include <Interface_HArray1OfHAsciiString.hxx> |
16 | |
17 | |
18 | RWHeaderSection_RWFileSchema::RWHeaderSection_RWFileSchema () {} |
19 | |
20 | void RWHeaderSection_RWFileSchema::ReadStep |
21 | (const Handle(StepData_StepReaderData)& data, |
22 | const Standard_Integer num, |
23 | Handle(Interface_Check)& ach, |
24 | const Handle(HeaderSection_FileSchema)& ent) const |
25 | { |
26 | |
27 | |
28 | // --- Number of Parameter Control --- |
29 | |
30 | if (!data->CheckNbParams(num,1,ach,"file_schema has not 1 parameter(s)")) return; |
31 | |
32 | // --- own field : schemaIdentifiers --- |
33 | |
34 | Handle(Interface_HArray1OfHAsciiString) aSchemaIdentifiers; |
35 | Handle(TCollection_HAsciiString) aSchemaIdentifiersItem; |
36 | Standard_Integer nsub1; |
37 | nsub1 = data->SubListNumber(num, 1, Standard_False); |
38 | if (nsub1 !=0) { |
39 | Standard_Integer nb1 = data->NbParams(nsub1); |
40 | aSchemaIdentifiers = new Interface_HArray1OfHAsciiString (1, nb1); |
41 | for (Standard_Integer i1 = 1; i1 <= nb1; i1 ++) { |
42 | Standard_Boolean stat1 = data->ReadString |
43 | (nsub1,i1,"schema_identifiers",ach,aSchemaIdentifiersItem); |
44 | if (stat1) aSchemaIdentifiers->SetValue(i1,aSchemaIdentifiersItem); |
45 | } |
46 | } |
47 | else { |
48 | ach->AddFail("Parameter #1 (schema_identifiers) is not a LIST"); |
49 | } |
50 | |
51 | //--- Initialisation of the read entity --- |
52 | |
53 | |
54 | if (!ach->HasFailed()) ent->Init(aSchemaIdentifiers); |
55 | } |
56 | |
57 | |
58 | void RWHeaderSection_RWFileSchema::WriteStep |
59 | (StepData_StepWriter& SW, |
60 | const Handle(HeaderSection_FileSchema)& ent) const |
61 | { |
62 | |
63 | // --- own field : schemaIdentifiers --- |
64 | |
65 | SW.OpenSub(); |
66 | for (Standard_Integer i1 = 1; i1 <= ent->NbSchemaIdentifiers(); i1 ++) { |
67 | SW.Send(ent->SchemaIdentifiersValue(i1)); |
68 | } |
69 | SW.CloseSub(); |
70 | } |