Home  · Classes  · Annotated Classes  · Modules  · Members  · Namespaces  · Related Pages

ControlledVocabulary.h

Go to the documentation of this file.
00001 // --------------------------------------------------------------------------
00002 //                   OpenMS -- Open-Source Mass Spectrometry
00003 // --------------------------------------------------------------------------
00004 // Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
00005 // ETH Zurich, and Freie Universitaet Berlin 2002-2012.
00006 //
00007 // This software is released under a three-clause BSD license:
00008 //  * Redistributions of source code must retain the above copyright
00009 //    notice, this list of conditions and the following disclaimer.
00010 //  * Redistributions in binary form must reproduce the above copyright
00011 //    notice, this list of conditions and the following disclaimer in the
00012 //    documentation and/or other materials provided with the distribution.
00013 //  * Neither the name of any author or any participating institution
00014 //    may be used to endorse or promote products derived from this software
00015 //    without specific prior written permission.
00016 // For a full list of authors, refer to the file AUTHORS.
00017 // --------------------------------------------------------------------------
00018 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
00019 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00020 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00021 // ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
00022 // INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
00023 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
00024 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
00025 // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
00026 // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
00027 // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
00028 // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00029 //
00030 // --------------------------------------------------------------------------
00031 // $Maintainer: Andreas Bertsch $
00032 // $Authors: Marc Sturm, Andreas Bertsch, Mathias Walzer $
00033 // --------------------------------------------------------------------------
00034 
00035 #ifndef OPENMS_FORMAT_CONTROLLEDVOCABULARY_H
00036 #define OPENMS_FORMAT_CONTROLLEDVOCABULARY_H
00037 
00038 #include <OpenMS/DATASTRUCTURES/StringList.h>
00039 #include <OpenMS/DATASTRUCTURES/Map.h>
00040 #include <OpenMS/CONCEPT/Exception.h>
00041 
00042 #include <set>
00043 
00044 namespace OpenMS
00045 {
00054   class OPENMS_DLLAPI ControlledVocabulary
00055   {
00056     friend OPENMS_DLLAPI std::ostream& operator<<(std::ostream& os, const ControlledVocabulary& cv);
00057 
00058 public:
00060     struct OPENMS_DLLAPI CVTerm
00061     {
00063       enum XRefType
00064       {
00065         XSD_STRING = 0, // xsd:string A string
00066         XSD_INTEGER, // xsd:integer Any integer
00067         XSD_DECIMAL, // xsd:decimal Any real number
00068         XSD_NEGATIVE_INTEGER, // xsd:negativeInteger Any negative integer
00069         XSD_POSITIVE_INTEGER, // xsd:positiveInteger Any integer > 0
00070         XSD_NON_NEGATIVE_INTEGER, // xsd:nonNegativeInteger Any integer >= 0
00071         XSD_NON_POSITIVE_INTEGER, // xsd:nonPositiveInteger Any integer < 0
00072         XSD_BOOLEAN, // xsd:boolean True or false
00073         XSD_DATE, // xsd:date An XML-Schema date
00074         XSD_ANYURI, // xsd:anyURI uniform resource identifier
00075         NONE
00076       };
00077 
00078       static String getXRefTypeName(XRefType type);
00079 
00080       String name; 
00081       String id; 
00082       std::set<String> parents; 
00083       std::set<String> children; 
00084       bool obsolete; 
00085       String description; 
00086       StringList synonyms; 
00087       StringList unparsed; 
00088       XRefType xref_type; 
00089       StringList xref_binary; 
00090       std::set<String> units; 
00091 
00093       CVTerm();
00094 
00095       CVTerm(const CVTerm& rhs);
00096 
00097       CVTerm& operator=(const CVTerm& rhs);
00098 
00100       String toXMLString(const String& ref, const String& value = String("")) const;
00101 
00103       String toXMLString(const String& ref, const DataValue& value) const;
00104 
00105     };
00106 
00108     ControlledVocabulary();
00109 
00111     virtual ~ControlledVocabulary();
00112 
00114     const String& name() const;
00115 
00122     void loadFromOBO(const String& name, const String& filename);
00123 
00125     bool exists(const String& id) const;
00126 
00128     bool hasTermWithName(const String& name) const;
00129 
00135     const CVTerm& getTerm(const String& id) const;
00136 
00142     const CVTerm& getTermByName(const String& name, const String& desc = "") const;
00143 
00144 
00146     const Map<String, CVTerm>& getTerms() const;
00147 
00155     void getAllChildTerms(std::set<String>& terms, const String& parent) const;
00156 
00162     bool isChildOf(const String& child, const String& parent) const;
00163 
00164 protected:
00170     bool checkName_(const String& id, const String& name, bool ignore_case = true);
00171 
00173     Map<String, CVTerm> terms_;
00175     Map<String, String> namesToIds_;
00177     String name_;
00178   };
00179 
00181   OPENMS_DLLAPI std::ostream& operator<<(std::ostream& os, const ControlledVocabulary& cv);
00182 
00183 
00184 } // namespace OpenMS
00185 
00186 #endif // OPENMS_FORMAT_CONTROLLEDVOCABULARY_H

OpenMS / TOPP release 1.10.0 Documentation generated on Thu Mar 7 2013 09:42:38 using doxygen 1.7.1