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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: PluginValueConstraint.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 20:53:57  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: PluginValueConstraint.cpp,v 1000.1 2004/06/01 20:53:57 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author:  .......
  35.  *
  36.  * File Description:
  37.  *   .......
  38.  *
  39.  * Remark:
  40.  *   This code was originally generated by application DATATOOL
  41.  *   using specifications from the data definition file
  42.  *   'plugin.asn'.
  43.  */
  44. // standard includes
  45. #include <ncbi_pch.hpp>
  46. #include <gui/core/plugin_exception.hpp>
  47. // generated includes
  48. #include <gui/plugin/PluginValueConstraint.hpp>
  49. #include <gui/plugin/PluginValueRangeConstraint.hpp>
  50. // generated classes
  51. BEGIN_NCBI_SCOPE
  52. BEGIN_objects_SCOPE // namespace ncbi::objects::
  53. // destructor
  54. CPluginValueConstraint::~CPluginValueConstraint(void)
  55. {
  56. }
  57. // static creators
  58. CPluginValueConstraint*
  59. CPluginValueConstraint::CreateLower(const string& low_val)
  60. {
  61.     CRef<CPluginValueConstraint> con(new CPluginValueConstraint());
  62.     con->SetLower(low_val);
  63.     return con.Release();
  64. }
  65. CPluginValueConstraint*
  66. CPluginValueConstraint::CreateUpper(const string& hi_val)
  67. {
  68.     CRef<CPluginValueConstraint> con(new CPluginValueConstraint());
  69.     con->SetUpper(hi_val);
  70.     return con.Release();
  71. }
  72. CPluginValueConstraint*
  73. CPluginValueConstraint::CreateRange(const string& low_val,
  74.                                   const string& hi_val)
  75. {
  76.     CRef<CPluginValueConstraint> con(new CPluginValueConstraint());
  77.     con->SetRange().SetLower(low_val);
  78.     con->SetRange().SetUpper(hi_val);
  79.     return con.Release();
  80. }
  81. CPluginValueConstraint*
  82. CPluginValueConstraint::CreateSet(void)
  83. {
  84.     CRef<CPluginValueConstraint> con(new CPluginValueConstraint());
  85.     con->SetSet();
  86.     return con.Release();
  87. }
  88. CPluginValueConstraint*
  89. CPluginValueConstraint::CreateSeqRepr(void)
  90. {
  91.     CRef<CPluginValueConstraint> con(new CPluginValueConstraint());
  92.     con->SetSeq_repr();
  93.     return con.Release();
  94. }
  95. CPluginValueConstraint*
  96. CPluginValueConstraint::CreateSeqMol(void)
  97. {
  98.     CRef<CPluginValueConstraint> con(new CPluginValueConstraint());
  99.     con->SetSeq_mol();
  100.     return con.Release();
  101. }
  102. CPluginValueConstraint*
  103. CPluginValueConstraint::CreateSeqSameMol()
  104. {
  105.     CRef<CPluginValueConstraint> con(new CPluginValueConstraint());
  106.     con->SetSeq_mol_same_type();
  107.     return con.Release();
  108. }
  109. CPluginValueConstraint*
  110. CPluginValueConstraint::CreateSeqLenLower(TSeqPos min_len)
  111. {
  112.     CRef<CPluginValueConstraint> con(new CPluginValueConstraint());
  113.     con->SetSeq_length_lower(min_len);
  114.     return con.Release();
  115. }
  116. CPluginValueConstraint*
  117. CPluginValueConstraint::CreateSeqLenUpper(TSeqPos max_len)
  118. {
  119.     CRef<CPluginValueConstraint> con(new CPluginValueConstraint());
  120.     con->SetSeq_length_upper(max_len);
  121.     return con.Release();
  122. }
  123. CPluginValueConstraint*
  124. CPluginValueConstraint::CreateSeqLenRange(TSeqPos min_len, TSeqPos max_len)
  125. {
  126.     CRef<CPluginValueConstraint> con(new CPluginValueConstraint());
  127.     CPluginValueRangeConstraint& range = con->SetSeq_length_range();
  128.     range.SetLower(NStr::IntToString(min_len));
  129.     range.SetUpper(NStr::IntToString(max_len));
  130.     return con.Release();
  131. }
  132. CPluginValueConstraint*
  133. CPluginValueConstraint::CreateAnnotType(CSeq_annot::TData::E_Choice type)
  134. {
  135.     CRef<CPluginValueConstraint> con(new CPluginValueConstraint());
  136.     con->SetAnnot_type(type);
  137.     return con.Release();
  138. }
  139. CPluginValueConstraint*
  140. CPluginValueConstraint::CreateFeatType()
  141. {
  142.     CRef<CPluginValueConstraint> con(new CPluginValueConstraint());
  143.     con->SetFeat_type();
  144.     return con.Release();
  145. }
  146. CPluginValueConstraint*
  147. CPluginValueConstraint::CreateFeatSubtype()
  148. {
  149.     CRef<CPluginValueConstraint> con(new CPluginValueConstraint());
  150.     con->SetFeat_subtype();
  151.     return con.Release();
  152. }
  153. CPluginValueConstraint*
  154. CPluginValueConstraint::CreateFeatProduct()
  155. {
  156.     CRef<CPluginValueConstraint> con(new CPluginValueConstraint());
  157.     con->SetFeat_has_product();
  158.     return con.Release();
  159. }
  160. //
  161. // operator, for adding values
  162. //
  163. CPluginValueConstraint& CPluginValueConstraint::operator, (const string& val)
  164. {
  165.     if (Which() != e_Set) {
  166.         NCBI_THROW(CPluginException, eInvalidArg,
  167.                    "CPluginValueConstraint::operator,() is only valid for "
  168.                    "set constraints");
  169.     }
  170.     SetSet().push_back(val);
  171.     return *this;
  172. }
  173. //
  174. // operator, for adding values to non-set types
  175. //
  176. CPluginValueConstraint& CPluginValueConstraint::operator, (int val)
  177. {
  178.     switch (Which()) {
  179.     case e_Seq_mol:
  180.         SetSeq_mol().push_back(val);
  181.         return *this;
  182.     case e_Seq_repr:
  183.         SetSeq_repr().push_back(val);
  184.         return *this;
  185.     case e_Feat_type:
  186.         SetFeat_type().push_back(val);
  187.         return *this;
  188.     case e_Feat_subtype:
  189.         SetFeat_subtype().push_back(val);
  190.         return *this;
  191.     default:
  192.         NCBI_THROW(CPluginException, eInvalidArg,
  193.                    "CPluginValueConstraint::operator,(int): "
  194.                    "inavlid constraint type");
  195.     }
  196. }
  197. END_objects_SCOPE // namespace ncbi::objects::
  198. END_NCBI_SCOPE
  199. /*
  200. * ===========================================================================
  201. *
  202. * $Log: PluginValueConstraint.cpp,v $
  203. * Revision 1000.1  2004/06/01 20:53:57  gouriano
  204. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  205. *
  206. * Revision 1.3  2004/05/21 22:27:46  gorelenk
  207. * Added PCH ncbi_pch.hpp
  208. *
  209. * Revision 1.2  2003/10/15 18:28:30  dicuccio
  210. * Added new constraint types for feature subtype, features with products.
  211. * Changed feature constraint to be one-of-set
  212. *
  213. * Revision 1.1  2003/10/07 13:36:45  dicuccio
  214. * Renamed PluginURL* to PluginValue*.  Moved validation code into CPluginUtils
  215. *
  216. * Revision 1.6  2003/07/23 19:14:08  dicuccio
  217. * Moved logic for validating plugin arguments into CPluginUtils.
  218. *
  219. * Revision 1.5  2003/07/21 19:32:24  dicuccio
  220. * Changed calling semantics of CreateSeqRepr() / CreateSeqMol() - use only
  221. * operator,() to set values -- eliminates confusing API
  222. *
  223. * Revision 1.4  2003/05/19 13:37:46  dicuccio
  224. * Moved gui/core/plugin/ --> gui/plugin/
  225. *
  226. * Revision 1.3  2003/04/30 13:54:53  dicuccio
  227. * Added constraint for molecules of the same type
  228. *
  229. * Revision 1.2  2003/04/29 14:48:47  dicuccio
  230. * Added additional constraint types and factory functions to create these
  231. *
  232. * Revision 1.1  2003/03/03 14:50:56  dicuccio
  233. * Added plugin argument constraints - lower bound, upper bound, range, and
  234. * member-of-set
  235. *
  236. *
  237. * ===========================================================================
  238. */
  239. /* Original file checksum: lines: 64, chars: 1912, CRC32: ba941e07 */