1 /*---------------------------------------------------------------------------*\
5 * Copyright (C) 2000-2013 by the OpenSG Forum *
9 * contact: dirk@opensg.org, gerrit.voss@vossg.org, carsten_neumann@gmx.net *
11 \*---------------------------------------------------------------------------*/
12 /*---------------------------------------------------------------------------*\
15 * This library is free software; you can redistribute it and/or modify it *
16 * under the terms of the GNU Library General Public License as published *
17 * by the Free Software Foundation, version 2. *
19 * This library is distributed in the hope that it will be useful, but *
20 * WITHOUT ANY WARRANTY; without even the implied warranty of *
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
22 * Library General Public License for more details. *
24 * You should have received a copy of the GNU Library General Public *
25 * License along with this library; if not, write to the Free Software *
26 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *
28 \*---------------------------------------------------------------------------*/
29 /*---------------------------------------------------------------------------*\
37 \*---------------------------------------------------------------------------*/
39 /*****************************************************************************\
40 *****************************************************************************
42 ** This file is automatically generated. **
44 ** Any changes made to this file WILL be lost when it is **
45 ** regenerated, which can become necessary at any time. **
47 ** Do not change this file, changes should be done in the derived **
48 ** class FileContextAttachment!
50 *****************************************************************************
51 \*****************************************************************************/
57 #pragma warning(disable: 4355) // turn off 'this' : used in base member initializer list warning
58 #pragma warning(disable: 4290) // disable exception specification warning
61 #include "OSGConfig.h"
66 #include "OSGFileContextAttachmentBase.h"
67 #include "OSGFileContextAttachment.h"
69 #include <boost/bind.hpp>
73 /***************************************************************************\
75 \***************************************************************************/
77 /*! \class OSG::FileContextAttachment
81 /***************************************************************************\
82 * Field Documentation *
83 \***************************************************************************/
85 /*! \var std::string FileContextAttachmentBase::_sfResolvedName
90 /***************************************************************************\
91 * FieldType/FieldTrait Instantiation *
92 \***************************************************************************/
94 #if !defined(OSG_DO_DOC) || defined(OSG_DOC_DEV)
95 PointerType FieldTraits
<FileContextAttachment
*, nsOSG
>::_type(
96 "FileContextAttachmentPtr",
98 FileContextAttachment::getClassType(),
102 OSG_FIELDTRAITS_GETTYPE_NS(FileContextAttachment
*, nsOSG
)
104 OSG_EXPORT_PTR_SFIELD_FULL(PointerSField
,
105 FileContextAttachment
*,
108 OSG_EXPORT_PTR_MFIELD_FULL(PointerMField
,
109 FileContextAttachment
*,
112 /***************************************************************************\
113 * Field Description *
114 \***************************************************************************/
116 void FileContextAttachmentBase::classDescInserter(TypeObject
&oType
)
118 FieldDescriptionBase
*pDesc
= NULL
;
121 pDesc
= new SFString::Description(
122 SFString::getClassType(),
125 ResolvedNameFieldId
, ResolvedNameFieldMask
,
127 (Field::SFDefaultFlags
| Field::FStdAccess
),
128 static_cast<FieldEditMethodSig
>(&FileContextAttachment::editHandleResolvedName
),
129 static_cast<FieldGetMethodSig
>(&FileContextAttachment::getHandleResolvedName
));
131 oType
.addInitialDesc(pDesc
);
135 FileContextAttachmentBase::TypeObject
FileContextAttachmentBase::_type(
136 FileContextAttachmentBase::getClassname(),
137 Inherited::getClassname(),
138 "FileContextAttachment",
140 reinterpret_cast<PrototypeCreateF
>(&FileContextAttachmentBase::createEmptyLocal
),
141 reinterpret_cast<InitContainerF
>(&FileContextAttachment::initMethod
),
142 reinterpret_cast<ExitContainerF
>(&FileContextAttachment::exitMethod
),
143 reinterpret_cast<InitalInsertDescFunc
>(
144 reinterpret_cast<void *>(&FileContextAttachment::classDescInserter
)),
147 "<?xml version=\"1.0\"?>\n"
150 " name=\"FileContextAttachment\"\n"
151 " parent=\"Attachment\"\n"
152 " library=\"System\"\n"
153 " pointerfieldtypes=\"both\"\n"
154 " structure=\"concrete\"\n"
155 " systemcomponent=\"true\"\n"
156 " parentsystemcomponent=\"true\"\n"
157 " decoratable=\"false\"\n"
158 " useLocalIncludes=\"false\"\n"
159 " docGroupBase=\"GrpSystemFileIO\"\n"
162 "\t name=\"resolvedName\"\n"
163 "\t type=\"std::string\"\n"
164 "\t cardinality=\"single\"\n"
165 "\t visibility=\"external\"\n"
166 "\t access=\"public\"\n"
169 "</FieldContainer>\n",
173 /*------------------------------ get -----------------------------------*/
175 FieldContainerType
&FileContextAttachmentBase::getType(void)
180 const FieldContainerType
&FileContextAttachmentBase::getType(void) const
185 UInt32
FileContextAttachmentBase::getContainerSize(void) const
187 return sizeof(FileContextAttachment
);
190 /*------------------------- decorator get ------------------------------*/
193 SFString
*FileContextAttachmentBase::editSFResolvedName(void)
195 editSField(ResolvedNameFieldMask
);
197 return &_sfResolvedName
;
200 const SFString
*FileContextAttachmentBase::getSFResolvedName(void) const
202 return &_sfResolvedName
;
210 /*------------------------------ access -----------------------------------*/
212 SizeT
FileContextAttachmentBase::getBinSize(ConstFieldMaskArg whichField
)
214 SizeT returnValue
= Inherited::getBinSize(whichField
);
216 if(FieldBits::NoField
!= (ResolvedNameFieldMask
& whichField
))
218 returnValue
+= _sfResolvedName
.getBinSize();
224 void FileContextAttachmentBase::copyToBin(BinaryDataHandler
&pMem
,
225 ConstFieldMaskArg whichField
)
227 Inherited::copyToBin(pMem
, whichField
);
229 if(FieldBits::NoField
!= (ResolvedNameFieldMask
& whichField
))
231 _sfResolvedName
.copyToBin(pMem
);
235 void FileContextAttachmentBase::copyFromBin(BinaryDataHandler
&pMem
,
236 ConstFieldMaskArg whichField
)
238 Inherited::copyFromBin(pMem
, whichField
);
240 if(FieldBits::NoField
!= (ResolvedNameFieldMask
& whichField
))
242 editSField(ResolvedNameFieldMask
);
243 _sfResolvedName
.copyFromBin(pMem
);
247 //! create a new instance of the class
248 FileContextAttachmentTransitPtr
FileContextAttachmentBase::createLocal(BitVector bFlags
)
250 FileContextAttachmentTransitPtr fc
;
252 if(getClassType().getPrototype() != NULL
)
254 FieldContainerTransitPtr tmpPtr
=
255 getClassType().getPrototype()-> shallowCopyLocal(bFlags
);
257 fc
= dynamic_pointer_cast
<FileContextAttachment
>(tmpPtr
);
263 //! create a new instance of the class, copy the container flags
264 FileContextAttachmentTransitPtr
FileContextAttachmentBase::createDependent(BitVector bFlags
)
266 FileContextAttachmentTransitPtr fc
;
268 if(getClassType().getPrototype() != NULL
)
270 FieldContainerTransitPtr tmpPtr
=
271 getClassType().getPrototype()-> shallowCopyDependent(bFlags
);
273 fc
= dynamic_pointer_cast
<FileContextAttachment
>(tmpPtr
);
279 //! create a new instance of the class
280 FileContextAttachmentTransitPtr
FileContextAttachmentBase::create(void)
282 FileContextAttachmentTransitPtr fc
;
284 if(getClassType().getPrototype() != NULL
)
286 FieldContainerTransitPtr tmpPtr
=
287 getClassType().getPrototype()-> shallowCopy();
289 fc
= dynamic_pointer_cast
<FileContextAttachment
>(tmpPtr
);
295 FileContextAttachment
*FileContextAttachmentBase::createEmptyLocal(BitVector bFlags
)
297 FileContextAttachment
*returnValue
;
299 newPtr
<FileContextAttachment
>(returnValue
, bFlags
);
301 returnValue
->_pFieldFlags
->_bNamespaceMask
&= ~bFlags
;
306 //! create an empty new instance of the class, do not copy the prototype
307 FileContextAttachment
*FileContextAttachmentBase::createEmpty(void)
309 FileContextAttachment
*returnValue
;
311 newPtr
<FileContextAttachment
>(returnValue
, Thread::getCurrentLocalFlags());
313 returnValue
->_pFieldFlags
->_bNamespaceMask
&=
314 ~Thread::getCurrentLocalFlags();
320 FieldContainerTransitPtr
FileContextAttachmentBase::shallowCopyLocal(
321 BitVector bFlags
) const
323 FileContextAttachment
*tmpPtr
;
325 newPtr(tmpPtr
, dynamic_cast<const FileContextAttachment
*>(this), bFlags
);
327 FieldContainerTransitPtr
returnValue(tmpPtr
);
329 tmpPtr
->_pFieldFlags
->_bNamespaceMask
&= ~bFlags
;
334 FieldContainerTransitPtr
FileContextAttachmentBase::shallowCopyDependent(
335 BitVector bFlags
) const
337 FileContextAttachment
*tmpPtr
;
339 newPtr(tmpPtr
, dynamic_cast<const FileContextAttachment
*>(this), ~bFlags
);
341 FieldContainerTransitPtr
returnValue(tmpPtr
);
343 tmpPtr
->_pFieldFlags
->_bNamespaceMask
= bFlags
;
348 FieldContainerTransitPtr
FileContextAttachmentBase::shallowCopy(void) const
350 FileContextAttachment
*tmpPtr
;
353 dynamic_cast<const FileContextAttachment
*>(this),
354 Thread::getCurrentLocalFlags());
356 tmpPtr
->_pFieldFlags
->_bNamespaceMask
&= ~Thread::getCurrentLocalFlags();
358 FieldContainerTransitPtr
returnValue(tmpPtr
);
366 /*------------------------- constructors ----------------------------------*/
368 FileContextAttachmentBase::FileContextAttachmentBase(void) :
374 FileContextAttachmentBase::FileContextAttachmentBase(const FileContextAttachmentBase
&source
) :
376 _sfResolvedName (source
._sfResolvedName
)
381 /*-------------------------- destructors ----------------------------------*/
383 FileContextAttachmentBase::~FileContextAttachmentBase(void)
388 GetFieldHandlePtr
FileContextAttachmentBase::getHandleResolvedName (void) const
390 SFString::GetHandlePtr
returnValue(
391 new SFString::GetHandle(
393 this->getType().getFieldDesc(ResolvedNameFieldId
),
394 const_cast<FileContextAttachmentBase
*>(this)));
399 EditFieldHandlePtr
FileContextAttachmentBase::editHandleResolvedName (void)
401 SFString::EditHandlePtr
returnValue(
402 new SFString::EditHandle(
404 this->getType().getFieldDesc(ResolvedNameFieldId
),
408 editSField(ResolvedNameFieldMask
);
414 #ifdef OSG_MT_CPTR_ASPECT
415 void FileContextAttachmentBase::execSyncV( FieldContainer
&oFrom
,
416 ConstFieldMaskArg whichField
,
417 AspectOffsetStore
&oOffsets
,
418 ConstFieldMaskArg syncMode
,
419 const UInt32 uiSyncInfo
)
421 FileContextAttachment
*pThis
= static_cast<FileContextAttachment
*>(this);
423 pThis
->execSync(static_cast<FileContextAttachment
*>(&oFrom
),
432 #ifdef OSG_MT_CPTR_ASPECT
433 FieldContainer
*FileContextAttachmentBase::createAspectCopy(
434 const FieldContainer
*pRefAspect
) const
436 FileContextAttachment
*returnValue
;
438 newAspectCopy(returnValue
,
439 dynamic_cast<const FileContextAttachment
*>(pRefAspect
),
440 dynamic_cast<const FileContextAttachment
*>(this));
446 void FileContextAttachmentBase::resolveLinks(void)
448 Inherited::resolveLinks();