objistrimpl.inl
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:6k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: objistrimpl.inl,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 17:15:12  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #if defined(OBJISTRIMPL__HPP)  &&  !defined(OBJISTRIMPL__INL)
  10. #define OBJISTRIMPL__INL
  11. /*  $Id: objistrimpl.inl,v 1000.1 2004/04/12 17:15:12 gouriano Exp $
  12. * ===========================================================================
  13. *
  14. *                            PUBLIC DOMAIN NOTICE
  15. *               National Center for Biotechnology Information
  16. *
  17. *  This software/database is a "United States Government Work" under the
  18. *  terms of the United States Copyright Act.  It was written as part of
  19. *  the author's official duties as a United States Government employee and
  20. *  thus cannot be copyrighted.  This software/database is freely available
  21. *  to the public for use. The National Library of Medicine and the U.S.
  22. *  Government have not placed any restriction on its use or reproduction.
  23. *
  24. *  Although all reasonable efforts have been taken to ensure the accuracy
  25. *  and reliability of the software and data, the NLM and the U.S.
  26. *  Government do not and cannot warrant the performance or results that
  27. *  may be obtained by using this software or data. The NLM and the U.S.
  28. *  Government disclaim all warranties, express or implied, including
  29. *  warranties of performance, merchantability or fitness for any particular
  30. *  purpose.
  31. *
  32. *  Please cite the author in any work or product based on this material.
  33. *
  34. * ===========================================================================
  35. *
  36. * Author: Eugene Vasilchenko
  37. *
  38. * File Description:
  39. *   !!! PUT YOUR DESCRIPTION HERE !!!
  40. */
  41. #define ClassRandomContentsBegin(classType) 
  42.     vector<bool> read(classType->GetMembers().LastIndex() + 1); 
  43.     BEGIN_OBJECT_FRAME(eFrameClassMember); 
  44.     {
  45. #define ClassRandomContentsMember(Func, Args) 
  46.     { 
  47.         const CMemberInfo* memberInfo = classType->GetMemberInfo(index); 
  48.         SetTopMemberId(memberInfo->GetId()); 
  49.         _ASSERT(index >= kFirstMemberIndex && index <= read.size()); 
  50.         if ( read[index] ) 
  51.             DuplicatedMember(memberInfo); 
  52.         else { 
  53.             read[index] = true; 
  54.             { 
  55.                 memberInfo->NCBI_NAME2(Func,Member)Args; 
  56.             } 
  57.         } 
  58.     }
  59. #define ClassRandomContentsEnd(Func, Args) 
  60.     } 
  61.     END_OBJECT_FRAME(); 
  62.     for ( CClassTypeInfo::CIterator i(classType); i.Valid(); ++i ) { 
  63.         if ( !read[*i] ) { 
  64.             classType->GetMemberInfo(i)->NCBI_NAME2(Func,MissingMember)Args; 
  65.         } 
  66.     } 
  67. }
  68. #define ReadClassRandomContentsBegin(classType) 
  69.     ClassRandomContentsBegin(classType)
  70. #define ReadClassRandomContentsMember(classPtr) 
  71.     ClassRandomContentsMember(Read, (*this, classPtr))
  72. #define ReadClassRandomContentsEnd() 
  73.     ClassRandomContentsEnd(Read, (*this, classPtr))
  74. #define SkipClassRandomContentsBegin(classType) 
  75.     ClassRandomContentsBegin(classType)
  76. #define SkipClassRandomContentsMember() 
  77.     ClassRandomContentsMember(Skip, (*this))
  78. #define SkipClassRandomContentsEnd() 
  79.     ClassRandomContentsEnd(Skip, (*this))
  80. #define ClassSequentialContentsBegin(classType) 
  81.     CClassTypeInfo::CIterator pos(classType); 
  82.     BEGIN_OBJECT_FRAME(eFrameClassMember); 
  83.     {
  84. #define ClassSequentialContentsMember(Func, Args) 
  85.     { 
  86.         const CMemberInfo* memberInfo = classType->GetMemberInfo(index); 
  87.         SetTopMemberId(memberInfo->GetId()); 
  88.         for ( TMemberIndex i = *pos; i < index; ++i ) { 
  89.             classType->GetMemberInfo(i)->NCBI_NAME2(Func,MissingMember)Args; 
  90.         } 
  91.         { 
  92.             memberInfo->NCBI_NAME2(Func,Member)Args; 
  93.         } 
  94.         pos.SetIndex(index + 1); 
  95.     }
  96. #define ClassSequentialContentsEnd(Func, Args) 
  97.     } 
  98.     END_OBJECT_FRAME(); 
  99.     for ( ; pos.Valid(); ++pos ) { 
  100.         classType->GetMemberInfo(pos)->NCBI_NAME2(Func,MissingMember)Args; 
  101.     } 
  102. }
  103. #define ReadClassSequentialContentsBegin(classType) 
  104.     ClassSequentialContentsBegin(classType)
  105. #define ReadClassSequentialContentsMember(classPtr) 
  106.     ClassSequentialContentsMember(Read, (*this, classPtr))
  107. #define ReadClassSequentialContentsEnd(classPtr) 
  108.     ClassSequentialContentsEnd(Read, (*this, classPtr))
  109. #define SkipClassSequentialContentsBegin(classType) 
  110.     ClassSequentialContentsBegin(classType)
  111. #define SkipClassSequentialContentsMember() 
  112.     ClassSequentialContentsMember(Skip, (*this))
  113. #define SkipClassSequentialContentsEnd() 
  114.     ClassSequentialContentsEnd(Skip, (*this))
  115. #endif /* def OBJISTRIMPL__HPP  &&  ndef OBJISTRIMPL__INL */
  116. /* ---------------------------------------------------------------------------
  117. * $Log: objistrimpl.inl,v $
  118. * Revision 1000.1  2004/04/12 17:15:12  gouriano
  119. * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.5
  120. *
  121. * Revision 1.5  2004/01/05 14:24:08  gouriano
  122. * Added possibility to set serialization hooks by stack path
  123. *
  124. * Revision 1.4  2003/08/25 15:58:32  gouriano
  125. * added possibility to use namespaces in XML i/o streams
  126. *
  127. * Revision 1.3  2002/12/23 18:38:51  dicuccio
  128. * Added WIn32 export specifier: NCBI_XSERIAL_EXPORT.
  129. * Moved all CVS logs to the end.
  130. *
  131. * Revision 1.2  2000/10/03 17:22:34  vasilche
  132. * Reduced header dependency.
  133. * Reduced size of debug libraries on WorkShop by 3 times.
  134. * Fixed tag allocation for parent classes.
  135. * Fixed CObject allocation/deallocation in streams.
  136. * Moved instantiation of several templates in separate source file.
  137. *
  138. * Revision 1.1  2000/09/18 20:00:06  vasilche
  139. * Separated CVariantInfo and CMemberInfo.
  140. * Implemented copy hooks.
  141. * All hooks now are stored in CTypeInfo/CMemberInfo/CVariantInfo.
  142. * Most type specific functions now are implemented via function pointers instead of virtual functions.
  143. *
  144. * ===========================================================================
  145. */