changed: gcc8 base update
[opensg.git] / Source / System / FileIO / Base / OSGFileContextAttachmentBase.cpp
blobb97a14a89f267d39c959f9aace1ebe3c9abfe818
1 /*---------------------------------------------------------------------------*\
2 * OpenSG *
3 * *
4 * *
5 * Copyright (C) 2000-2013 by the OpenSG Forum *
6 * *
7 * www.opensg.org *
8 * *
9 * contact: dirk@opensg.org, gerrit.voss@vossg.org, carsten_neumann@gmx.net *
10 * *
11 \*---------------------------------------------------------------------------*/
12 /*---------------------------------------------------------------------------*\
13 * License *
14 * *
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. *
18 * *
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. *
23 * *
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. *
27 * *
28 \*---------------------------------------------------------------------------*/
29 /*---------------------------------------------------------------------------*\
30 * Changes *
31 * *
32 * *
33 * *
34 * *
35 * *
36 * *
37 \*---------------------------------------------------------------------------*/
39 /*****************************************************************************\
40 *****************************************************************************
41 ** **
42 ** This file is automatically generated. **
43 ** **
44 ** Any changes made to this file WILL be lost when it is **
45 ** regenerated, which can become necessary at any time. **
46 ** **
47 ** Do not change this file, changes should be done in the derived **
48 ** class FileContextAttachment!
49 ** **
50 *****************************************************************************
51 \*****************************************************************************/
53 #include <cstdlib>
54 #include <cstdio>
56 #ifdef WIN32
57 #pragma warning(disable: 4355) // turn off 'this' : used in base member initializer list warning
58 #pragma warning(disable: 4290) // disable exception specification warning
59 #endif
61 #include "OSGConfig.h"
66 #include "OSGFileContextAttachmentBase.h"
67 #include "OSGFileContextAttachment.h"
69 #include <boost/bind.hpp>
71 OSG_BEGIN_NAMESPACE
73 /***************************************************************************\
74 * Description *
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",
97 "AttachmentPtr",
98 FileContextAttachment::getClassType(),
99 nsOSG);
100 #endif
102 OSG_FIELDTRAITS_GETTYPE_NS(FileContextAttachment *, nsOSG)
104 OSG_EXPORT_PTR_SFIELD_FULL(PointerSField,
105 FileContextAttachment *,
106 nsOSG)
108 OSG_EXPORT_PTR_MFIELD_FULL(PointerMField,
109 FileContextAttachment *,
110 nsOSG)
112 /***************************************************************************\
113 * Field Description *
114 \***************************************************************************/
116 void FileContextAttachmentBase::classDescInserter(TypeObject &oType)
118 FieldDescriptionBase *pDesc = NULL;
121 pDesc = new SFString::Description(
122 SFString::getClassType(),
123 "resolvedName",
125 ResolvedNameFieldId, ResolvedNameFieldMask,
126 false,
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",
139 nsOSG, //Namespace
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)),
145 false,
147 "<?xml version=\"1.0\"?>\n"
148 "\n"
149 "<FieldContainer\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"
160 " >\n"
161 " <Field\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"
167 "\t >\n"
168 " </Field>\n"
169 "</FieldContainer>\n",
173 /*------------------------------ get -----------------------------------*/
175 FieldContainerType &FileContextAttachmentBase::getType(void)
177 return _type;
180 const FieldContainerType &FileContextAttachmentBase::getType(void) const
182 return _type;
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();
221 return returnValue;
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);
260 return fc;
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);
276 return fc;
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);
292 return fc;
295 FileContextAttachment *FileContextAttachmentBase::createEmptyLocal(BitVector bFlags)
297 FileContextAttachment *returnValue;
299 newPtr<FileContextAttachment>(returnValue, bFlags);
301 returnValue->_pFieldFlags->_bNamespaceMask &= ~bFlags;
303 return returnValue;
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();
316 return returnValue;
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;
331 return returnValue;
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;
345 return returnValue;
348 FieldContainerTransitPtr FileContextAttachmentBase::shallowCopy(void) const
350 FileContextAttachment *tmpPtr;
352 newPtr(tmpPtr,
353 dynamic_cast<const FileContextAttachment *>(this),
354 Thread::getCurrentLocalFlags());
356 tmpPtr->_pFieldFlags->_bNamespaceMask &= ~Thread::getCurrentLocalFlags();
358 FieldContainerTransitPtr returnValue(tmpPtr);
360 return returnValue;
366 /*------------------------- constructors ----------------------------------*/
368 FileContextAttachmentBase::FileContextAttachmentBase(void) :
369 Inherited(),
370 _sfResolvedName ()
374 FileContextAttachmentBase::FileContextAttachmentBase(const FileContextAttachmentBase &source) :
375 Inherited(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(
392 &_sfResolvedName,
393 this->getType().getFieldDesc(ResolvedNameFieldId),
394 const_cast<FileContextAttachmentBase *>(this)));
396 return returnValue;
399 EditFieldHandlePtr FileContextAttachmentBase::editHandleResolvedName (void)
401 SFString::EditHandlePtr returnValue(
402 new SFString::EditHandle(
403 &_sfResolvedName,
404 this->getType().getFieldDesc(ResolvedNameFieldId),
405 this));
408 editSField(ResolvedNameFieldMask);
410 return returnValue;
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),
424 whichField,
425 oOffsets,
426 syncMode,
427 uiSyncInfo);
429 #endif
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));
442 return returnValue;
444 #endif
446 void FileContextAttachmentBase::resolveLinks(void)
448 Inherited::resolveLinks();
454 OSG_END_NAMESPACE