1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-10 18:51:21 +03:00
occt/src/RWStepBasic/RWStepBasic_RWPersonalAddress.cxx
abv d5f74e42d6 0024624: Lost word in license statement in source files
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast
Wrong license statements corrected in several files.
Copyright and license statements added in XSD and GLSL files.
Copyright year updated in some files.
Obsolete documentation files removed from DrawResources.
2014-02-20 16:15:17 +04:00

374 lines
9.9 KiB
C++

// 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.
//gka 05.03.99 S4134 upgrade from CD to DIS
#include <RWStepBasic_RWPersonalAddress.ixx>
#include <StepBasic_HArray1OfPerson.hxx>
#include <StepBasic_Person.hxx>
#include <Interface_EntityIterator.hxx>
#include <StepBasic_PersonalAddress.hxx>
RWStepBasic_RWPersonalAddress::RWStepBasic_RWPersonalAddress () {}
void RWStepBasic_RWPersonalAddress::ReadStep
(const Handle(StepData_StepReaderData)& data,
const Standard_Integer num,
Handle(Interface_Check)& ach,
const Handle(StepBasic_PersonalAddress)& ent) const
{
// --- Number of Parameter Control ---
if (!data->CheckNbParams(num,14,ach,"personal_address")) return;
// --- inherited field : internalLocation ---
Handle(TCollection_HAsciiString) aInternalLocation;
Standard_Boolean hasAinternalLocation = Standard_True;
if (data->IsParamDefined(num,1)) {
//szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
data->ReadString (num,1,"internal_location",ach,aInternalLocation);
}
else {
hasAinternalLocation = Standard_False;
aInternalLocation.Nullify();
}
// --- inherited field : streetNumber ---
Handle(TCollection_HAsciiString) aStreetNumber;
Standard_Boolean hasAstreetNumber = Standard_True;
if (data->IsParamDefined(num,2)) {
//szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
data->ReadString (num,2,"street_number",ach,aStreetNumber);
}
else {
hasAstreetNumber = Standard_False;
aStreetNumber.Nullify();
}
// --- inherited field : street ---
Handle(TCollection_HAsciiString) aStreet;
Standard_Boolean hasAstreet = Standard_True;
if (data->IsParamDefined(num,3)) {
//szv#4:S4163:12Mar99 `Standard_Boolean stat3 =` not needed
data->ReadString (num,3,"street",ach,aStreet);
}
else {
hasAstreet = Standard_False;
aStreet.Nullify();
}
// --- inherited field : postalBox ---
Handle(TCollection_HAsciiString) aPostalBox;
Standard_Boolean hasApostalBox = Standard_True;
if (data->IsParamDefined(num,4)) {
//szv#4:S4163:12Mar99 `Standard_Boolean stat4 =` not needed
data->ReadString (num,4,"postal_box",ach,aPostalBox);
}
else {
hasApostalBox = Standard_False;
aPostalBox.Nullify();
}
// --- inherited field : town ---
Handle(TCollection_HAsciiString) aTown;
Standard_Boolean hasAtown = Standard_True;
if (data->IsParamDefined(num,5)) {
//szv#4:S4163:12Mar99 `Standard_Boolean stat5 =` not needed
data->ReadString (num,5,"town",ach,aTown);
}
else {
hasAtown = Standard_False;
aTown.Nullify();
}
// --- inherited field : region ---
Handle(TCollection_HAsciiString) aRegion;
Standard_Boolean hasAregion = Standard_True;
if (data->IsParamDefined(num,6)) {
//szv#4:S4163:12Mar99 `Standard_Boolean stat6 =` not needed
data->ReadString (num,6,"region",ach,aRegion);
}
else {
hasAregion = Standard_False;
aRegion.Nullify();
}
// --- inherited field : postalCode ---
Handle(TCollection_HAsciiString) aPostalCode;
Standard_Boolean hasApostalCode = Standard_True;
if (data->IsParamDefined(num,7)) {
//szv#4:S4163:12Mar99 `Standard_Boolean stat7 =` not needed
data->ReadString (num,7,"postal_code",ach,aPostalCode);
}
else {
hasApostalCode = Standard_False;
aPostalCode.Nullify();
}
// --- inherited field : country ---
Handle(TCollection_HAsciiString) aCountry;
Standard_Boolean hasAcountry = Standard_True;
if (data->IsParamDefined(num,8)) {
//szv#4:S4163:12Mar99 `Standard_Boolean stat8 =` not needed
data->ReadString (num,8,"country",ach,aCountry);
}
else {
hasAcountry = Standard_False;
aCountry.Nullify();
}
// --- inherited field : facsimileNumber ---
Handle(TCollection_HAsciiString) aFacsimileNumber;
Standard_Boolean hasAfacsimileNumber = Standard_True;
if (data->IsParamDefined(num,9)) {
//szv#4:S4163:12Mar99 `Standard_Boolean stat9 =` not needed
data->ReadString (num,9,"facsimile_number",ach,aFacsimileNumber);
}
else {
hasAfacsimileNumber = Standard_False;
aFacsimileNumber.Nullify();
}
// --- inherited field : telephoneNumber ---
Handle(TCollection_HAsciiString) aTelephoneNumber;
Standard_Boolean hasAtelephoneNumber = Standard_True;
if (data->IsParamDefined(num,10)) {
//szv#4:S4163:12Mar99 `Standard_Boolean stat10 =` not needed
data->ReadString (num,10,"telephone_number",ach,aTelephoneNumber);
}
else {
hasAtelephoneNumber = Standard_False;
aTelephoneNumber.Nullify();
}
// --- inherited field : electronicMailAddress ---
Handle(TCollection_HAsciiString) aElectronicMailAddress;
Standard_Boolean hasAelectronicMailAddress = Standard_True;
if (data->IsParamDefined(num,11)) {
//szv#4:S4163:12Mar99 `Standard_Boolean stat11 =` not needed
data->ReadString (num,11,"electronic_mail_address",ach,aElectronicMailAddress);
}
else {
hasAelectronicMailAddress = Standard_False;
aElectronicMailAddress.Nullify();
}
// --- inherited field : telexNumber ---
Handle(TCollection_HAsciiString) aTelexNumber;
Standard_Boolean hasAtelexNumber = Standard_True;
if (data->IsParamDefined(num,12)) {
//szv#4:S4163:12Mar99 `Standard_Boolean stat12 =` not needed
data->ReadString (num,12,"telex_number",ach,aTelexNumber);
}
else {
hasAtelexNumber = Standard_False;
aTelexNumber.Nullify();
}
// --- own field : people ---
Handle(StepBasic_HArray1OfPerson) aPeople;
Handle(StepBasic_Person) anent13;
Standard_Integer nsub13;
if (data->ReadSubList (num,13,"people",ach,nsub13)) {
Standard_Integer nb13 = data->NbParams(nsub13);
aPeople = new StepBasic_HArray1OfPerson (1, nb13);
for (Standard_Integer i13 = 1; i13 <= nb13; i13 ++) {
//szv#4:S4163:12Mar99 `Standard_Boolean stat13 =` not needed
if (data->ReadEntity (nsub13, i13,"person", ach, STANDARD_TYPE(StepBasic_Person), anent13))
aPeople->SetValue(i13, anent13);
}
}
// --- own field : description ---
Handle(TCollection_HAsciiString) aDescription;
if (data->IsParamDefined (num,14)) { //gka 05.03.99 S4134 upgrade from CD to DIS
//szv#4:S4163:12Mar99 `Standard_Boolean stat14 =` not needed
data->ReadString (num,14,"description",ach,aDescription);
}
//--- Initialisation of the read entity ---
ent->Init(hasAinternalLocation, aInternalLocation, hasAstreetNumber, aStreetNumber, hasAstreet, aStreet, hasApostalBox, aPostalBox, hasAtown, aTown, hasAregion, aRegion, hasApostalCode, aPostalCode, hasAcountry, aCountry, hasAfacsimileNumber, aFacsimileNumber, hasAtelephoneNumber, aTelephoneNumber, hasAelectronicMailAddress, aElectronicMailAddress, hasAtelexNumber, aTelexNumber, aPeople, aDescription);
}
void RWStepBasic_RWPersonalAddress::WriteStep
(StepData_StepWriter& SW,
const Handle(StepBasic_PersonalAddress)& ent) const
{
// --- inherited field internalLocation ---
Standard_Boolean hasAinternalLocation = ent->HasInternalLocation();
if (hasAinternalLocation) {
SW.Send(ent->InternalLocation());
}
else {
SW.SendUndef();
}
// --- inherited field streetNumber ---
Standard_Boolean hasAstreetNumber = ent->HasStreetNumber();
if (hasAstreetNumber) {
SW.Send(ent->StreetNumber());
}
else {
SW.SendUndef();
}
// --- inherited field street ---
Standard_Boolean hasAstreet = ent->HasStreet();
if (hasAstreet) {
SW.Send(ent->Street());
}
else {
SW.SendUndef();
}
// --- inherited field postalBox ---
Standard_Boolean hasApostalBox = ent->HasPostalBox();
if (hasApostalBox) {
SW.Send(ent->PostalBox());
}
else {
SW.SendUndef();
}
// --- inherited field town ---
Standard_Boolean hasAtown = ent->HasTown();
if (hasAtown) {
SW.Send(ent->Town());
}
else {
SW.SendUndef();
}
// --- inherited field region ---
Standard_Boolean hasAregion = ent->HasRegion();
if (hasAregion) {
SW.Send(ent->Region());
}
else {
SW.SendUndef();
}
// --- inherited field postalCode ---
Standard_Boolean hasApostalCode = ent->HasPostalCode();
if (hasApostalCode) {
SW.Send(ent->PostalCode());
}
else {
SW.SendUndef();
}
// --- inherited field country ---
Standard_Boolean hasAcountry = ent->HasCountry();
if (hasAcountry) {
SW.Send(ent->Country());
}
else {
SW.SendUndef();
}
// --- inherited field facsimileNumber ---
Standard_Boolean hasAfacsimileNumber = ent->HasFacsimileNumber();
if (hasAfacsimileNumber) {
SW.Send(ent->FacsimileNumber());
}
else {
SW.SendUndef();
}
// --- inherited field telephoneNumber ---
Standard_Boolean hasAtelephoneNumber = ent->HasTelephoneNumber();
if (hasAtelephoneNumber) {
SW.Send(ent->TelephoneNumber());
}
else {
SW.SendUndef();
}
// --- inherited field electronicMailAddress ---
Standard_Boolean hasAelectronicMailAddress = ent->HasElectronicMailAddress();
if (hasAelectronicMailAddress) {
SW.Send(ent->ElectronicMailAddress());
}
else {
SW.SendUndef();
}
// --- inherited field telexNumber ---
Standard_Boolean hasAtelexNumber = ent->HasTelexNumber();
if (hasAtelexNumber) {
SW.Send(ent->TelexNumber());
}
else {
SW.SendUndef();
}
// --- own field : people ---
SW.OpenSub();
for (Standard_Integer i13 = 1; i13 <= ent->NbPeople(); i13 ++) {
SW.Send(ent->PeopleValue(i13));
}
SW.CloseSub();
// --- own field : description ---
SW.Send(ent->Description());
}
void RWStepBasic_RWPersonalAddress::Share(const Handle(StepBasic_PersonalAddress)& ent, Interface_EntityIterator& iter) const
{
Standard_Integer nbElem1 = ent->NbPeople();
for (Standard_Integer is1=1; is1<=nbElem1; is1 ++) {
iter.GetOneItem(ent->PeopleValue(is1));
}
}