NCBI C++ ToolKit
Results_.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  * 'blastxml2.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
46 
47 BEGIN_objects_SCOPE // namespace ncbi::objects::
48 
49 BEGIN_blastxml2_SCOPE // namespace ncbi::objects::blastxml2::
50 
51 
52 // generated classes
53 
55 {
56  if ( m_choice != e_not_set )
58 }
59 
61 {
62  switch ( m_choice ) {
63  case e_Iterations:
64  m_Iterations.Destruct();
65  break;
66  case e_Bl2seq:
67  m_Bl2seq.Destruct();
68  break;
69  case e_Search:
70  m_object->RemoveReference();
71  break;
72  default:
73  break;
74  }
76 }
77 
78 void CResults_Base::DoSelect(E_Choice index, NCBI_NS_NCBI::CObjectMemoryPool* pool)
79 {
80  switch ( index ) {
81  case e_Iterations:
82  m_Iterations.Construct();
83  break;
84  case e_Search:
85  (m_object = new(pool) ncbi::objects::blastxml2::CSearch())->AddReference();
86  break;
87  case e_Bl2seq:
88  m_Bl2seq.Construct();
89  break;
90  default:
91  break;
92  }
93  m_choice = index;
94 }
95 
96 const char* const CResults_Base::sm_SelectionNames[] = {
97  "not set",
98  "iterations",
99  "search",
100  "bl2seq"
101 };
102 
104 {
105  return NCBI_NS_NCBI::CInvalidChoiceSelection::GetName(index, sm_SelectionNames, sizeof(sm_SelectionNames)/sizeof(sm_SelectionNames[0]));
106 }
107 
109 {
110  throw NCBI_NS_NCBI::CInvalidChoiceSelection(DIAG_COMPILE_INFO, this, m_choice, index, sm_SelectionNames, sizeof(sm_SelectionNames)/sizeof(sm_SelectionNames[0]));
111 }
112 
114 {
116  return *static_cast<const TSearch*>(m_object);
117 }
118 
120 {
122  return *static_cast<TSearch*>(m_object);
123 }
124 
126 {
127  TSearch* ptr = &value;
128  if ( m_choice != e_Search || m_object != ptr ) {
129  ResetSelection();
130  (m_object = ptr)->AddReference();
131  m_choice = e_Search;
132  }
133 }
134 
135 // helper methods
136 
137 // type info
139 {
140  SET_CHOICE_MODULE("NCBI-BlastOutput2");
141  ADD_NAMED_BUF_CHOICE_VARIANT("iterations", m_Iterations, STL_list, (STL_CRef, (CLASS, (CIteration))));
142  ADD_NAMED_REF_CHOICE_VARIANT("search", m_object, CSearch);
143  ADD_NAMED_BUF_CHOICE_VARIANT("bl2seq", m_Bl2seq, STL_list, (STL_CRef, (CLASS, (CSearch))));
144  info->CodeVersion(22400);
145  info->DataSpec(ncbi::EDataSpec::eASN);
146 }
148 
149 // constructor
151  : m_choice(e_not_set)
152 {
153 }
154 
155 // destructor
157 {
158  Reset();
159 }
160 
161 
162 
163 END_blastxml2_SCOPE // namespace ncbi::objects::blastxml2::
164 
165 END_objects_SCOPE // namespace ncbi::objects::
166 
168 
#define BEGIN_blastxml2_SCOPE
#define END_blastxml2_SCOPE
User-defined methods of the data storage class.
BEGIN_NAMED_BASE_CHOICE_INFO("Results", CResults)
Definition: Results_.cpp:138
User-defined methods of the data storage class.
User-defined methods of the data storage class.
CIteration –.
Definition: Iteration.hpp:66
CResults –.
Definition: Results.hpp:68
CSearch –.
Definition: Search.hpp:68
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
#define ADD_NAMED_BUF_CHOICE_VARIANT(MemberAlias, MemberName, TypeMacro, TypeMacroArgs)
Definition: serialimpl.hpp:385
@ 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
virtual ~CResults_Base(void)
Definition: Results_.cpp:156
E_Choice
Choice variants.
Definition: Results_.hpp:97
static const char *const sm_SelectionNames[]
Definition: Results_.hpp:241
void CheckSelected(E_Choice index) const
Verify selection, throw exception if it differs from the expected.
Definition: Results_.hpp:266
void Select(E_Choice index, EResetVariant reset=eDoResetVariant)
Select the requested variant if needed.
NCBI_NS_NCBI::CUnionBuffer< TIterations > m_Iterations
Definition: Results_.hpp:244
TSearch & SetSearch(void)
Select the variant.
Definition: Results_.cpp:119
void DoSelect(E_Choice index, CObjectMemoryPool *pool=0)
Definition: Results_.cpp:78
virtual void Reset(void)
Reset the whole object.
Definition: Results_.cpp:54
void ThrowInvalidSelection(E_Choice index) const
Throw 'InvalidSelection' exception.
Definition: Results_.cpp:108
virtual void ResetSelection(void)
Reset the selection (set it to e_not_set).
Definition: Results_.cpp:60
NCBI_NS_NCBI::CUnionBuffer< TBl2seq > m_Bl2seq
Definition: Results_.hpp:245
NCBI_NS_NCBI::CSerialObject * m_object
Definition: Results_.hpp:246
CResults_Base(void)
Definition: Results_.cpp:150
E_Choice m_choice
Definition: Results_.hpp:237
const TSearch & GetSearch(void) const
Get the variant data.
Definition: Results_.cpp:113
static string SelectionName(E_Choice index)
Retrieve selection name (for diagnostic purposes).
Definition: Results_.cpp:103
@ e_Bl2seq
bl2seq
Definition: Results_.hpp:101
@ e_Search
iterative search (psi and delta blast) db search
Definition: Results_.hpp:100
@ e_not_set
No variant selected.
Definition: Results_.hpp:98
@ e_not_set
static MDB_envinfo info
Definition: mdb_load.c:37
const GenericPointer< typename T::ValueType > T2 value
Definition: pointer.h:1227
Modified on Tue May 07 08:14:09 2024 by modify_doxy.py rev. 669887