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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: timetypeinfo.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 17:15:59  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef TIMETYPEINFO__HPP
  10. #define TIMETYPEINFO__HPP
  11. /*  $Id: timetypeinfo.hpp,v 1000.1 2004/04/12 17:15:59 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: Aleksey Grichenko
  37. *
  38. * File Description:
  39. *   TypeInfo and serialization functions for CTime class
  40. */
  41. #include <corelib/ncbistd.hpp>
  42. #include <corelib/ncbitime.hpp>
  43. #include <serial/objistr.hpp>
  44. #include <serial/objostr.hpp>
  45. #include <serial/objcopy.hpp>
  46. #include <serial/serial.hpp>
  47. #include <serial/stdtypesimpl.hpp>
  48. /** @addtogroup TypeInfoCPP
  49.  *
  50.  * @{
  51.  */
  52. BEGIN_NCBI_SCOPE
  53. const string kSerialTimeFormat = "M/D/Y h:m:s.S Z";
  54. class NCBI_XSERIAL_EXPORT CTimeFunctions
  55. {
  56. public:
  57.     static CTime& Get(TObjectPtr object)
  58.         {
  59.             return CTypeConverter<CTime>::Get(object);
  60.         }
  61.     static const CTime& Get(TConstObjectPtr object)
  62.         {
  63.             return CTypeConverter<CTime>::Get(object);
  64.         }
  65.     static void SetIOFunctions(CPrimitiveTypeInfo* info)
  66.         {
  67.             info->SetIOFunctions(&Read, &Write, &Copy, &Skip);
  68.         }
  69.     static void SetMemFunctions(CPrimitiveTypeInfo* info)
  70.         {
  71.             info->SetMemFunctions(&Create,
  72.                                   &IsDefault, &SetDefault,
  73.                                   &Equals, &Assign);
  74.         }
  75.     static TObjectPtr Create(TTypeInfo )
  76.         {
  77.             return new CTime();
  78.         }
  79.     static bool IsDefault(TConstObjectPtr objectPtr)
  80.         {
  81.             return Get(objectPtr).IsEmpty();
  82.         }
  83.     static void SetDefault(TObjectPtr objectPtr)
  84.         {
  85.             Get(objectPtr).Clear();
  86.         }
  87.     static bool Equals(TConstObjectPtr obj1, TConstObjectPtr obj2,
  88.                        ESerialRecursionMode)
  89.         {
  90.             return Get(obj1) == Get(obj2);
  91.         }
  92.     static void Assign(TObjectPtr dst, TConstObjectPtr src,
  93.                        ESerialRecursionMode)
  94.         {
  95.             Get(dst) = Get(src);
  96.         }
  97.     static void Read(CObjectIStream& in,
  98.                      TTypeInfo , TObjectPtr objectPtr)
  99.         {
  100.             string s;
  101.             in.ReadStd(s);
  102.             CTime tmp(s, kSerialTimeFormat);
  103.             Get(objectPtr) = tmp;
  104.         }
  105.     static void Write(CObjectOStream& out,
  106.                       TTypeInfo , TConstObjectPtr objectPtr)
  107.         {
  108.             out.WriteStd(Get(objectPtr).AsString(kSerialTimeFormat));
  109.         }
  110.     static void Skip(CObjectIStream& in, TTypeInfo )
  111.         {
  112.             string s;
  113.             in.ReadStd(s);
  114.             CTime(s, kSerialTimeFormat);
  115.         }
  116.     static void Copy(CObjectStreamCopier& copier, TTypeInfo )
  117.         {
  118.             string s;
  119.             copier.In().ReadStd(s);
  120.             CTime(s, kSerialTimeFormat);
  121.             copier.Out().WriteStd(s);
  122.         }
  123. };
  124. class NCBI_XSERIAL_EXPORT CTimeTypeInfo : public CPrimitiveTypeInfoString
  125. {
  126. public:
  127.     CTimeTypeInfo(void);
  128.     void GetValueString(TConstObjectPtr objectPtr, string& value) const;
  129.     void SetValueString(TObjectPtr objectPtr, const string& value) const;
  130. private:
  131. };
  132. /* @} */
  133. inline
  134. CTimeTypeInfo::CTimeTypeInfo(void)
  135. {
  136.     typedef CTimeFunctions TFunctions;
  137.     SetMemFunctions(&TFunctions::Create,
  138.                     &TFunctions::IsDefault, &TFunctions::SetDefault,
  139.                     &TFunctions::Equals, &TFunctions::Assign);
  140.     SetIOFunctions(&TFunctions::Read, &TFunctions::Write,
  141.                    &TFunctions::Copy, &TFunctions::Skip);
  142. }
  143. inline
  144. void CTimeTypeInfo::GetValueString(TConstObjectPtr object,
  145.                                    string& value) const
  146. {
  147.     value = CTimeFunctions::Get(object);
  148. }
  149. inline
  150. void CTimeTypeInfo::SetValueString(TObjectPtr object,
  151.                                    const string& value) const
  152. {
  153.     CTimeFunctions::Get(object) = value;
  154. }
  155. /** @addtogroup TypeInfoCPP
  156.  *
  157.  * @{
  158.  */
  159. EMPTY_TEMPLATE
  160. class NCBI_XSERIAL_EXPORT CStdTypeInfo<CTime>
  161. {
  162. public:
  163.     static TTypeInfo GetTypeInfo(void);
  164.     static CTypeInfo* CreateTypeInfo(void);
  165. };
  166. /* @} */
  167. inline
  168. TTypeInfo CStdTypeInfo<CTime>::GetTypeInfo(void)
  169. {
  170.     static TTypeInfo info = CreateTypeInfo();
  171.     return info;
  172. }
  173. inline
  174. CTypeInfo* CStdTypeInfo<CTime>::CreateTypeInfo(void)
  175. {
  176.     return new CTimeTypeInfo();
  177. }
  178. inline
  179. TTypeInfoGetter GetStdTypeInfoGetter(const CTime* )
  180. {
  181.     return &CStdTypeInfo<CTime>::GetTypeInfo;
  182. }
  183. END_NCBI_SCOPE
  184. #endif  /* TIMETYPEINFO__HPP */
  185. /* ---------------------------------------------------------------------------
  186. * $Log: timetypeinfo.hpp,v $
  187. * Revision 1000.1  2004/04/12 17:15:59  gouriano
  188. * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.5
  189. *
  190. * Revision 1.5  2004/03/25 15:57:55  gouriano
  191. * Added possibility to copy and compare serial object non-recursively
  192. *
  193. * Revision 1.4  2003/09/29 21:22:43  golikov
  194. * fix GetStdTypeInfoGetter to actually work, remove unused vars warnings
  195. *
  196. * Revision 1.3  2003/04/15 16:19:05  siyan
  197. * Added doxygen support
  198. *
  199. * Revision 1.2  2002/12/23 18:38:51  dicuccio
  200. * Added WIn32 export specifier: NCBI_XSERIAL_EXPORT.
  201. * Moved all CVS logs to the end.
  202. *
  203. * Revision 1.1  2002/11/19 15:12:03  grichenk
  204. * Initial Revision
  205. *
  206. *
  207. * ===========================================================================
  208. */