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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: PluginArgSet.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 18:14:40  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.14
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: PluginArgSet.hpp,v 1000.1 2004/04/12 18:14:40 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:  Mike DiCuccio, Denis Vakatov, Anatoliy Kuznetsov
  35.  *
  36.  * File Description:
  37.  *    CPluginArgSet -- defines an interface for a collection of arguments for a
  38.  *                     plugin
  39.  *
  40.  * Remark:
  41.  *   This code was originally generated by application DATATOOL
  42.  *   using specifications from the data definition file
  43.  *   'plugin.asn'.
  44.  */
  45. #ifndef GUI_CORE_PLUGIN_PLUGINARGSET_HPP
  46. #define GUI_CORE_PLUGIN_PLUGINARGSET_HPP
  47. // generated includes
  48. #include <gui/plugin/PluginArgSet_.hpp>
  49. #include <gui/plugin/PluginArg.hpp>
  50. #include <gui/plugin/PluginValueConstraint.hpp>
  51. // generated classes
  52. BEGIN_NCBI_SCOPE
  53. BEGIN_objects_SCOPE // namespace ncbi::objects::
  54. //
  55. // class CPluginArgSet is the primary argument interface class.
  56. //
  57. class NCBI_XGBPLUGIN_EXPORT CPluginArgSet : public CPluginArgSet_Base
  58. {
  59.     typedef CPluginArgSet_Base Tparent;
  60. public:
  61.     // constructor
  62.     CPluginArgSet(void);
  63.     // destructor
  64.     ~CPluginArgSet(void);
  65.     // operator[] for indexing based on named argument
  66.     // this will throw if the named argument isn't found
  67.     const CPluginArg&   operator[](const string& name) const;
  68.     // operator[] for indexing based on named argument (non-const)
  69.     // this will throw if the named argument isn't found
  70.     CPluginArg&          operator[](const string& name);
  71.     // HasArgument() verifies that an argument exists
  72.     bool HasArgument(const string& name) const;
  73.     // add a named argument.  This argument is required, and has no default
  74.     // value.  Attempts to access the value without setting the value will
  75.     // result in an exception being thrown.
  76.     CPluginArg& AddArgument(const string& name, const string& desc,
  77.                             CPluginArg::EType type,
  78.                             CPluginArg::TData::E_Choice single_or_array =
  79.                             CPluginArg::TData::e_Single);
  80.     // add a named argument.  This argument is required, and has no default
  81.     // value.  Attempts to access the value without setting the value will
  82.     // result in an exception being thrown.
  83.     CPluginArg& AddArgument(const string& name, const string& desc,
  84.                             const CTypeInfo* info,
  85.                             CPluginArg::TData::E_Choice single_or_array =
  86.                             CPluginArg::TData::e_Single);
  87.     // Add a flag value.  This is a helper API; the request is reformatted
  88.     // and passed on to AddArgument()
  89.     CPluginArg& AddFlag(const string& name, const string& desc);
  90.     // Add a default argument to the set of arguments.  This function creates a
  91.     // named argument with a default value of type string.
  92.     CPluginArg& AddDefaultArgument(const string& name,
  93.                                    const string& description,
  94.                                    CPluginArg::EType type, const string& val);
  95.     // Add a flag argument with a default value.  This is a helper API; the
  96.     // request is reformatted and passed on to AddDefaultArgument
  97.     CPluginArg& AddDefaultFlag(const string& name, const string& desc,
  98.                                bool val);
  99.     // add an optional argument to the set of arguments.  This supports an
  100.     // optional default value argument.  For non-built-in types, the default
  101.     // value is ignored.
  102.     CPluginArg&
  103.     AddOptionalArgument(const string& name,
  104.                         const string& description,
  105.                         CPluginArg::EType type,
  106.                         CPluginArg::TData::E_Choice single_or_array =
  107.                         CPluginArg::TData::e_Array);
  108.     CPluginArg&
  109.     AddOptionalArgument(const string& name, const string& description,
  110.                         const CTypeInfo* info,
  111.                         CPluginArg::TData::E_Choice single_or_array =
  112.                         CPluginArg::TData::e_Array);
  113.     // Set the constraint of a named argument.  This will throw an exception if
  114.     // the argument is not found, and will replace all previous constraints if
  115.     // the argument is found
  116.     void SetConstraint(const string& name, CPluginValueConstraint& constraint);
  117.     // Add a constraint to a named argument.  This will throw an exception if
  118.     // the argument is not found
  119.     void AddConstraint(const string& name, CPluginValueConstraint& constraint);
  120. private:
  121.     // Prohibit copy constructor and assignment operator
  122.     CPluginArgSet(const CPluginArgSet& value);
  123.     CPluginArgSet& operator=(const CPluginArgSet& value);
  124. };
  125. /////////////////// CPluginArgSet inline methods
  126. // constructor
  127. inline
  128. CPluginArgSet::CPluginArgSet(void)
  129. {
  130. }
  131. /////////////////// end of CPluginArgSet inline methods
  132. END_objects_SCOPE // namespace ncbi::objects::
  133. END_NCBI_SCOPE
  134. /*
  135. * ===========================================================================
  136. *
  137. * $Log: PluginArgSet.hpp,v $
  138. * Revision 1000.1  2004/04/12 18:14:40  gouriano
  139. * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.14
  140. *
  141. * Revision 1.14  2004/01/21 14:13:15  dicuccio
  142. * Added AddFlag() and AddDefaultFlag() - front-ends to AddArgument() and
  143. * AddDefaultArgument()
  144. *
  145. * Revision 1.13  2003/10/07 13:33:43  dicuccio
  146. * Renamed CPluginURL* to CPluginValue*.  Dropped find_if.hpp.  Moved validation
  147. * code into CPluginUtils.
  148. *
  149. * Revision 1.12  2003/07/23 17:52:24  dicuccio
  150. * Moved logic for validating arguments into CPluginUtils.
  151. *
  152. * Revision 1.11  2003/06/20 14:45:52  dicuccio
  153. * Revised handling of default arguments - now, all built-in argument types are
  154. * supported.
  155. *
  156. * Revision 1.10  2003/05/19 13:33:02  dicuccio
  157. * Moved gui/core/plugin --> gui/plugin/
  158. *
  159. * Revision 1.9  2003/05/09 16:43:25  dicuccio
  160. * Added HasArgument() - useful for (non-throwing) check to see if a set of
  161. * arguments contains a given named argument
  162. *
  163. * Revision 1.8  2003/04/30 13:52:45  dicuccio
  164. * Added interface for creating multiple constraints for a given argument
  165. *
  166. * Revision 1.7  2003/04/29 14:32:27  dicuccio
  167. * Added interface function to check validity of plugin arguments
  168. *
  169. * Revision 1.6  2003/04/25 14:13:17  dicuccio
  170. * Changed API for optional arguments - permit data model objects as optional
  171. * components; eliminate old "optional-and-default" combination
  172. *
  173. * Revision 1.5  2003/04/24 16:16:45  dicuccio
  174. * Clarified addition of arguments that take data model objects.
  175. *
  176. * Revision 1.4  2003/03/20 19:55:16  dicuccio
  177. * Removed dead code
  178. *
  179. * Revision 1.3  2003/03/20 19:54:47  dicuccio
  180. * Added non-const op[] for indexing - permits explicit setting of arguments
  181. *
  182. * Revision 1.2  2003/03/03 14:22:04  dicuccio
  183. * Added argument constraints - lower bound, upper bound, range, and member-of-set
  184. *
  185. * Revision 1.1  2003/02/24 13:00:18  dicuccio
  186. * Renamed classes in plugin spec:
  187. *     CArgSeg --> CPluginArgSet
  188. *     CArgument --> CPluginArg
  189. *     CPluginArgs --> CPluginCommand
  190. *     CPluginCommands --> CPluginCommandSet
  191. *
  192. * Revision 1.2  2003/02/21 16:44:13  dicuccio
  193. * Added Win32 export specifiers for new plugin library.  Fixed compilation
  194. * issues for Win32.
  195. *
  196. * Revision 1.1  2003/02/20 19:44:06  dicuccio
  197. * Created new plugin architecture, mediated via an ASN.1 spec.  Moved GBENCH
  198. * framework over to use new plugin architecture.
  199. *
  200. *
  201. * ===========================================================================
  202. */
  203. #endif // GUI_CORE_PLUGIN_PLUGINARGSET_HPP
  204. /* Original file checksum: lines: 93, chars: 2348, CRC32: 56c3af4a */