NCBI C++ ToolKit
AaLocation_.cpp
Go to the documentation of this file.

Go to the SVN repository for this file.

1 /* $Id$
2  * ===========================================================================
3  *
4  * PUBLIC DOMAIN NOTICE
5  * National Center for Biotechnology Information
6  *
7  * This software/database is a "United States Government Work" under the
8  * terms of the United States Copyright Act. It was written as part of
9  * the author's official duties as a United States Government employee and
10  * thus cannot be copyrighted. This software/database is freely available
11  * to the public for use. The National Library of Medicine and the U.S.
12  * Government have not placed any restriction on its use or reproduction.
13  *
14  * Although all reasonable efforts have been taken to ensure the accuracy
15  * and reliability of the software and data, the NLM and the U.S.
16  * Government do not and cannot warrant the performance or results that
17  * may be obtained by using this software or data. The NLM and the U.S.
18  * Government disclaim all warranties, express or implied, including
19  * warranties of performance, merchantability or fitness for any particular
20  * purpose.
21  *
22  * Please cite the author in any work or product based on this material.
23  *
24  * ===========================================================================
25  *
26  * File Description:
27  * This code was generated by application DATATOOL
28  * using the following specifications:
29  * 'varrep.asn'.
30  *
31  * ATTENTION:
32  * Don't edit or commit this file into CVS as this file will
33  * be overridden (by DATATOOL) without warning!
34  * ===========================================================================
35  */
36 
37 // standard includes
38 #include <ncbi_pch.hpp>
39 #include <serial/serialimpl.hpp>
40 
41 // generated includes
47 
48 BEGIN_objects_SCOPE // namespace ncbi::objects::
49 
50 
51 // generated classes
52 
54 {
55  if ( m_choice != e_not_set )
57 }
58 
60 {
61  switch ( m_choice ) {
62  case e_Site:
63  case e_Range:
64  case e_Int:
65  m_object->RemoveReference();
66  break;
67  default:
68  break;
69  }
71 }
72 
73 void CAaLocation_Base::DoSelect(E_Choice index, NCBI_NS_NCBI::CObjectMemoryPool* pool)
74 {
75  switch ( index ) {
76  case e_Site:
77  (m_object = new(pool) ncbi::objects::CAaSite())->AddReference();
78  break;
79  case e_Range:
80  (m_object = new(pool) ncbi::objects::CAaSiteRange())->AddReference();
81  break;
82  case e_Int:
83  (m_object = new(pool) ncbi::objects::CAaInterval())->AddReference();
84  break;
85  default:
86  break;
87  }
88  m_choice = index;
89 }
90 
91 const char* const CAaLocation_Base::sm_SelectionNames[] = {
92  "not set",
93  "site",
94  "range",
95  "int"
96 };
97 
99 {
100  return NCBI_NS_NCBI::CInvalidChoiceSelection::GetName(index, sm_SelectionNames, sizeof(sm_SelectionNames)/sizeof(sm_SelectionNames[0]));
101 }
102 
104 {
105  throw NCBI_NS_NCBI::CInvalidChoiceSelection(DIAG_COMPILE_INFO, this, m_choice, index, sm_SelectionNames, sizeof(sm_SelectionNames)/sizeof(sm_SelectionNames[0]));
106 }
107 
109 {
111  return *static_cast<const TSite*>(m_object);
112 }
113 
115 {
117  return *static_cast<TSite*>(m_object);
118 }
119 
121 {
122  TSite* ptr = &value;
123  if ( m_choice != e_Site || m_object != ptr ) {
124  ResetSelection();
125  (m_object = ptr)->AddReference();
126  m_choice = e_Site;
127  }
128 }
129 
131 {
133  return *static_cast<const TRange*>(m_object);
134 }
135 
137 {
139  return *static_cast<TRange*>(m_object);
140 }
141 
143 {
144  TRange* ptr = &value;
145  if ( m_choice != e_Range || m_object != ptr ) {
146  ResetSelection();
147  (m_object = ptr)->AddReference();
148  m_choice = e_Range;
149  }
150 }
151 
153 {
155  return *static_cast<const TInt*>(m_object);
156 }
157 
159 {
161  return *static_cast<TInt*>(m_object);
162 }
163 
165 {
166  TInt* ptr = &value;
167  if ( m_choice != e_Int || m_object != ptr ) {
168  ResetSelection();
169  (m_object = ptr)->AddReference();
170  m_choice = e_Int;
171  }
172 }
173 
174 // helper methods
175 
176 // type info
178 {
179  SET_CHOICE_MODULE("NCBI-VariationIRep");
180  ADD_NAMED_REF_CHOICE_VARIANT("site", m_object, CAaSite);
181  ADD_NAMED_REF_CHOICE_VARIANT("range", m_object, CAaSiteRange);
182  ADD_NAMED_REF_CHOICE_VARIANT("int", m_object, CAaInterval);
183  info->CodeVersion(22301);
184  info->DataSpec(ncbi::EDataSpec::eASN);
185 }
187 
188 // constructor
190  : m_choice(e_not_set)
191 {
192 }
193 
194 // destructor
196 {
197  Reset();
198 }
199 
200 
201 
202 END_objects_SCOPE // namespace ncbi::objects::
203 
205 
User-defined methods of the data storage class.
User-defined methods of the data storage class.
BEGIN_NAMED_BASE_CHOICE_INFO("AaLocation", CAaLocation)
User-defined methods of the data storage class.
User-defined methods of the data storage class.
CAaSiteRange –.
Definition: AaSiteRange.hpp:66
CAaSite –.
Definition: AaSite.hpp:66
char value[7]
Definition: config.c:431
string
Definition: cgiapp.hpp:687
#define DIAG_COMPILE_INFO
Make compile time diagnostic information object to use in CNcbiDiag and CException.
Definition: ncbidiag.hpp:170
#define ADD_NAMED_REF_CHOICE_VARIANT(MemberAlias, MemberName, ClassName)
Definition: serialimpl.hpp:400
#define END_CHOICE_INFO
Definition: serialimpl.hpp:506
#define SET_CHOICE_MODULE(ModuleName)
Definition: serialimpl.hpp:500
@ eDoNotResetVariant
Definition: serialbase.hpp:78
void AddReference(void) const
Add reference to object.
Definition: ncbiobj.hpp:489
#define END_NCBI_SCOPE
End previously defined NCBI scope.
Definition: ncbistl.hpp:103
#define BEGIN_NCBI_SCOPE
Define ncbi namespace.
Definition: ncbistl.hpp:100
const TInt & GetInt(void) const
Get the variant data.
TInt & SetInt(void)
Select the variant.
E_Choice
Choice variants.
Definition: AaLocation_.hpp:88
virtual void ResetSelection(void)
Reset the selection (set it to e_not_set).
Definition: AaLocation_.cpp:59
virtual void Reset(void)
Reset the whole object.
Definition: AaLocation_.cpp:53
NCBI_NS_NCBI::CSerialObject * m_object
const TSite & GetSite(void) const
Get the variant data.
static const char *const sm_SelectionNames[]
TSite & SetSite(void)
Select the variant.
static string SelectionName(E_Choice index)
Retrieve selection name (for diagnostic purposes).
Definition: AaLocation_.cpp:98
void ThrowInvalidSelection(E_Choice index) const
Throw 'InvalidSelection' exception.
void Select(E_Choice index, EResetVariant reset=eDoResetVariant)
Select the requested variant if needed.
const TRange & GetRange(void) const
Get the variant data.
void CheckSelected(E_Choice index) const
Verify selection, throw exception if it differs from the expected.
TRange & SetRange(void)
Select the variant.
void DoSelect(E_Choice index, CObjectMemoryPool *pool=0)
Definition: AaLocation_.cpp:73
virtual ~CAaLocation_Base(void)
@ e_not_set
No variant selected.
Definition: AaLocation_.hpp:89
@ e_not_set
static MDB_envinfo info
Definition: mdb_load.c:37
Modified on Thu Nov 30 04:55:09 2023 by modify_doxy.py rev. 669887