OpenMS  2.4.0
ToolDescription.h
Go to the documentation of this file.
1 // --------------------------------------------------------------------------
2 // OpenMS -- Open-Source Mass Spectrometry
3 // --------------------------------------------------------------------------
4 // Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
5 // ETH Zurich, and Freie Universitaet Berlin 2002-2018.
6 //
7 // This software is released under a three-clause BSD license:
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above copyright
11 // notice, this list of conditions and the following disclaimer in the
12 // documentation and/or other materials provided with the distribution.
13 // * Neither the name of any author or any participating institution
14 // may be used to endorse or promote products derived from this software
15 // without specific prior written permission.
16 // For a full list of authors, refer to the file AUTHORS.
17 // --------------------------------------------------------------------------
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 // ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
22 // INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
25 // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26 // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
27 // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
28 // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 //
30 // --------------------------------------------------------------------------
31 // $Maintainer: Chris Bielow $
32 // $Authors: Chris Bielow, Mathias Walzer $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
39 
40 #include <OpenMS/OpenMSConfig.h>
41 
42 #include <map>
43 
44 namespace OpenMS
45 {
46 
47  namespace Internal
48  {
53  struct FileMapping
54  {
55  String location; // a regex/macro mix; to be expanded by tool;
56  String target; // TOPP parameter that determines the desired name
57  // thus: move location -> target
58 
59  FileMapping& operator=(const FileMapping& rhs);
60  };
61 
66  struct MappingParam
67  {
68  std::map<Int, String> mapping;
69  std::vector<FileMapping> pre_moves;
70  std::vector<FileMapping> post_moves;
71 
72  OPENMS_DLLAPI MappingParam& operator=(const MappingParam& rhs);
73 
74  };
75 
83  struct OPENMS_DLLAPI ToolDescriptionInternal
84  {
88  StringList types; // -types of the tool (if any, e.g. ['centroided','wavelet'])
89 
90  // default C'Tor
92 
93  // C'Tor with arguments
94  ToolDescriptionInternal(const bool p_is_internal, const String& p_name, const String& p_category, const StringList& p_types);
95 
96  // short C'Tor
97  ToolDescriptionInternal(const String& p_name, const StringList& p_types);
98 
99  ToolDescriptionInternal& operator=(const ToolDescriptionInternal& rhs);
100 
101  bool operator==(const ToolDescriptionInternal& rhs) const;
102 
103  bool operator<(const ToolDescriptionInternal& rhs) const;
104  };
105 
106  struct OPENMS_DLLAPI ToolExternalDetails
107  {
117  };
118 
122  struct OPENMS_DLLAPI ToolDescription :
124  {
125  // additional details for external tools (one entry for each 'type')
126  std::vector<ToolExternalDetails> external_details;
127 
128  // default CTor
129  ToolDescription();
130 
131  // C'Tor for internal TOPP tools
132  ToolDescription(const String& p_name, const String& p_category, const StringList& p_types = StringList());
133 
134  void addExternalType(const String& type, const ToolExternalDetails& details);
135 
136  void append(const ToolDescription& other);
137 
138  ToolDescription& operator=(const ToolDescription& rhs);
139  };
140 
141  } // namespace Internal
142 
143 } // namespace OPENMS
144 
std::vector< FileMapping > pre_moves
Definition: ToolDescription.h:69
A more convenient string class.
Definition: String.h:57
Definition: ToolDescription.h:106
MappingParam tr_table
Definition: ToolDescription.h:115
String path
filename to external tool
Definition: ToolDescription.h:113
Filename mappings for all input/output files.
Definition: ToolDescription.h:66
String text_startup
Definition: ToolDescription.h:108
Definition: ToolDescription.h:122
String target
Definition: ToolDescription.h:56
bool operator==(_Iterator< _Val, _Ref, _Ptr > const &, _Iterator< _Val, _Ref, _Ptr > const &)
Definition: KDTree.h:806
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:46
String text_finish
Definition: ToolDescription.h:110
bool operator<(const MultiplexDeltaMasses &dm1, const MultiplexDeltaMasses &dm2)
String category
Definition: ToolDescription.h:111
Maps input/output files to filenames for the external program.
Definition: ToolDescription.h:53
String category
Definition: ToolDescription.h:87
FileMapping & operator=(const FileMapping &rhs)
ToolDescription Class.
Definition: ToolDescription.h:83
String location
Definition: ToolDescription.h:55
String working_directory
folder where the command will be executed from
Definition: ToolDescription.h:114
StringList types
Definition: ToolDescription.h:88
std::map< Int, String > mapping
Definition: ToolDescription.h:68
String name
Definition: ToolDescription.h:86
std::vector< ToolExternalDetails > external_details
Definition: ToolDescription.h:126
std::vector< String > StringList
Vector of String.
Definition: ListUtils.h:73
Management and storage of parameters / INI files.
Definition: Param.h:74
Param param
Definition: ToolDescription.h:116
MappingParam & operator=(const MappingParam &rhs)
String text_fail
Definition: ToolDescription.h:109
String commandline
Definition: ToolDescription.h:112
bool is_internal
Definition: ToolDescription.h:85
std::vector< FileMapping > post_moves
Definition: ToolDescription.h:70