ome-xml  5.5.1
FilterSet.h
1 /*
2  * #%L
3  * OME-XML C++ library for working with OME-XML metadata structures.
4  * %%
5  * Copyright © 2006 - 2016 Open Microscopy Environment:
6  * - Massachusetts Institute of Technology
7  * - National Institutes of Health
8  * - University of Dundee
9  * - Board of Regents of the University of Wisconsin-Madison
10  * - Glencoe Software, Inc.
11  * %%
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions are met:
14  *
15  * 1. Redistributions of source code must retain the above copyright notice,
16  * this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright notice,
18  * this list of conditions and the following disclaimer in the documentation
19  * and/or other materials provided with the distribution.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
25  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  * POSSIBILITY OF SUCH DAMAGE.
32  *
33  * The views and conclusions contained in the software and documentation are
34  * those of the authors and should not be interpreted as representing official
35  * policies, either expressed or implied, of any organization.
36  * #L%
37  */
38 
39 /*─────────────────────────────────────────────────────────────────────────────
40  *
41  * THIS IS AUTOMATICALLY GENERATED CODE. DO NOT MODIFY.
42  *
43  *─────────────────────────────────────────────────────────────────────────────
44  */
45 
46 #ifndef OME_XML_MODEL_FILTERSET_H
47 #define OME_XML_MODEL_FILTERSET_H
48 
49 #include <algorithm>
50 #include <list>
51 #include <stdexcept>
52 #include <string>
53 #include <vector>
54 
55 #include <ome/common/log.h>
56 
57 #include <ome/common/xml/dom/Document.h>
58 #include <ome/common/xml/dom/Element.h>
59 #include <ome/common/xml/dom/Node.h>
60 
61 #include <ome/xml/model/primitives/Quantity.h>
62 
63 #include <ome/xml/model/Dichroic.h>
64 #include <ome/xml/model/Instrument.h>
65 #include <ome/xml/model/ManufacturerSpec.h>
66 
67 namespace ome
68 {
69  namespace xml
70  {
71  namespace model
72  {
73 
74  // Forward declarations.
75  class Channel;
76  class Filter;
77  class OMEModel;
78 
82  class FilterSet : public ManufacturerSpec
83  {
84  private:
85  class Impl;
87  std::shared_ptr<Impl> impl;
88 
89  public:
91  FilterSet();
92 
98  FilterSet (const FilterSet& copy);
99 
101  virtual
102  ~FilterSet ();
103 
118  static std::shared_ptr<FilterSet>
119  create(const common::xml::dom::Element& element,
121 
122  // Documented in superclass.
123  const std::string&
124  elementName() const;
125 
126  // Documented in superclass.
127  bool
128  validElementName(const std::string& name) const;
129 
130  private:
132  FilterSet&
133  operator= (const FilterSet&);
134 
135  public:
136  // -- OMEModelObject API methods --
137 
139  virtual void
140  update(const common::xml::dom::Element& element,
142 
143  public:
144  // -- FilterSet API methods --
145 
147  bool
148  link (std::shared_ptr<Reference>& reference,
149  std::shared_ptr<ome::xml::model::OMEModelObject>& object);
150 
156  const std::string&
157  getID () const;
158 
164  void
165  setID (const std::string& id);
166 
174 
182 
190  const std::weak_ptr<ome::xml::model::Filter>&
192 
203  const std::weak_ptr<ome::xml::model::Filter>&
205  const std::shared_ptr<ome::xml::model::Filter>& excitationFilter);
206 
217  bool
218  linkExcitationFilter (const std::shared_ptr<ome::xml::model::Filter>& excitationFilter);
219 
235  bool
236  unlinkExcitationFilter (const std::shared_ptr<ome::xml::model::Filter>& excitationFilter);
237 
244  std::weak_ptr<ome::xml::model::Dichroic>
246 
253  const std::weak_ptr<ome::xml::model::Dichroic>
254  getLinkedDichroic () const;
255 
261  void
262  linkDichroic (std::shared_ptr<ome::xml::model::Dichroic>& dichroic);
263 
273  void
274  unlinkDichroic (std::shared_ptr<ome::xml::model::Dichroic>& dichroic);
275 
283 
291 
299  const std::weak_ptr<ome::xml::model::Filter>&
301 
312  const std::weak_ptr<ome::xml::model::Filter>&
314  const std::shared_ptr<ome::xml::model::Filter>& emissionFilter);
315 
326  bool
327  linkEmissionFilter (const std::shared_ptr<ome::xml::model::Filter>& emissionFilter);
328 
344  bool
345  unlinkEmissionFilter (const std::shared_ptr<ome::xml::model::Filter>& emissionFilter);
346 
353  sizeOfLinkedChannelList () const;
354 
361  getLinkedChannelList () const;
362 
370  const std::weak_ptr<ome::xml::model::Channel>&
372 
383  const std::weak_ptr<ome::xml::model::Channel>&
385  const std::shared_ptr<ome::xml::model::Channel>& channel_BackReference);
386 
397  bool
398  linkChannel (const std::shared_ptr<ome::xml::model::Channel>& channel_BackReference);
399 
415  bool
416  unlinkChannel (const std::shared_ptr<ome::xml::model::Channel>& channel_BackReference);
417 
423  std::weak_ptr<ome::xml::model::Instrument>
424  getInstrument ();
425 
431  const std::weak_ptr<ome::xml::model::Instrument>
432  getInstrument () const;
433 
439  void
440  setInstrument (std::weak_ptr<ome::xml::model::Instrument>& instrument_BackReference);
441 
442  protected:
443  // Documented in base class.
444  virtual void
446  common::xml::dom::Element& element) const;
447 
448  public:
449  // Documented in superclass.
450  const std::string&
451  getXMLNamespace() const;
452  };
453 
454  }
455  }
456 }
457 
458 #endif // OME_XML_MODEL_FILTERSET_H
459 
460 /*
461  * Local Variables:
462  * mode:C++
463  * End:
464  */
OME model interface (abstract top-level container)
Definition: OMEModel.h:61
const std::weak_ptr< ome::xml::model::Filter > & setLinkedExcitationFilter(OMEModelObject::indexed_container< ome::xml::model::Filter, std::weak_ptr >::type::size_type index, const std::shared_ptr< ome::xml::model::Filter > &excitationFilter)
Set linked ExcitationFilter.
Definition: FilterSet.cpp:342
FilterSet()
Default constructor.
Definition: FilterSet.cpp:152
void setID(const std::string &id)
Set the ID property.
Definition: FilterSet.cpp:317
bool validElementName(const std::string &name) const
Check if a given element name is valid for processing by this model object.
Definition: FilterSet.cpp:188
const std::weak_ptr< ome::xml::model::Channel > & getLinkedChannel(OMEModelObject::indexed_container< ome::xml::model::Channel, std::weak_ptr >::type::size_type index) const
Get linked Channel.
Definition: FilterSet.cpp:485
const std::string & getID() const
Get the ID property.
Definition: FilterSet.cpp:310
void setInstrument(std::weak_ptr< ome::xml::model::Instrument > &instrument_BackReference)
Set the Instrument property.
Definition: FilterSet.cpp:545
bool linkExcitationFilter(const std::shared_ptr< ome::xml::model::Filter > &excitationFilter)
Link ExcitationFilter.
Definition: FilterSet.cpp:352
const std::weak_ptr< ome::xml::model::Filter > & getLinkedExcitationFilter(OMEModelObject::indexed_container< ome::xml::model::Filter, std::weak_ptr >::type::size_type index) const
Get linked ExcitationFilter.
Definition: FilterSet.cpp:336
void linkDichroic(std::shared_ptr< ome::xml::model::Dichroic > &dichroic)
Link Dichroic.
Definition: FilterSet.cpp:397
bool linkChannel(const std::shared_ptr< ome::xml::model::Channel > &channel_BackReference)
Link Channel.
Definition: FilterSet.cpp:501
const std::weak_ptr< ome::xml::model::Filter > & getLinkedEmissionFilter(OMEModelObject::indexed_container< ome::xml::model::Filter, std::weak_ptr >::type::size_type index) const
Get linked EmissionFilter.
Definition: FilterSet.cpp:425
boost::multi_index_container< Ptr< T >, boost::multi_index::indexed_by< boost::multi_index::random_access<>, boost::multi_index::ordered_unique< boost::multi_index::identity< Ptr< T > >, std::owner_less< Ptr< T > > > > > type
Multi-index container type.
Definition: OMEModelObject.h:93
OMEModelObject::indexed_container< ome::xml::model::Filter, std::weak_ptr >::type getLinkedEmissionFilterList() const
Get the linked EmissionFilter list.
Definition: FilterSet.cpp:419
virtual ~FilterSet()
Destructor.
Definition: FilterSet.cpp:167
void unlinkDichroic(std::shared_ptr< ome::xml::model::Dichroic > &dichroic)
Unlink Dichroic.
Definition: FilterSet.cpp:403
OMEModelObject::indexed_container< ome::xml::model::Channel, std::weak_ptr >::type::size_type sizeOfLinkedChannelList() const
Get size of linked Channel list.
Definition: FilterSet.cpp:473
virtual void asXMLElementInternal(common::xml::dom::Document &document, common::xml::dom::Element &element) const
Transform the object hierarchy rooted at this element to XML.
Definition: FilterSet.cpp:551
const std::string & elementName() const
Get the element name of this model object.
Definition: FilterSet.cpp:181
Multi-index container for efficient ordered insertion and deletion of model object references...
Definition: OMEModelObject.h:84
Open Microscopy Environment C++ implementation.
bool unlinkChannel(const std::shared_ptr< ome::xml::model::Channel > &channel_BackReference)
Unlink Channel.
Definition: FilterSet.cpp:514
std::weak_ptr< ome::xml::model::Instrument > getInstrument()
Get the Instrument property.
Definition: FilterSet.cpp:531
bool link(std::shared_ptr< Reference > &reference, std::shared_ptr< ome::xml::model::OMEModelObject > &object)
Link a given OME model object to this model object.
Definition: FilterSet.cpp:252
OMEModelObject::indexed_container< ome::xml::model::Filter, std::weak_ptr >::type::size_type sizeOfLinkedEmissionFilterList() const
Get size of linked EmissionFilter list.
Definition: FilterSet.cpp:413
ManufacturerSpec model object.
Definition: ManufacturerSpec.h:78
Private implementation details of FilterSet model object.
Definition: FilterSet.cpp:78
bool unlinkEmissionFilter(const std::shared_ptr< ome::xml::model::Filter > &emissionFilter)
Unlink EmissionFilter.
Definition: FilterSet.cpp:455
bool unlinkExcitationFilter(const std::shared_ptr< ome::xml::model::Filter > &excitationFilter)
Unlink ExcitationFilter.
Definition: FilterSet.cpp:366
bool linkEmissionFilter(const std::shared_ptr< ome::xml::model::Filter > &emissionFilter)
Link EmissionFilter.
Definition: FilterSet.cpp:441
std::weak_ptr< ome::xml::model::Dichroic > getLinkedDichroic()
Get linked Dichroic.
Definition: FilterSet.cpp:384
OMEModelObject::indexed_container< ome::xml::model::Channel, std::weak_ptr >::type getLinkedChannelList() const
Get the linked Channel list.
Definition: FilterSet.cpp:479
std::shared_ptr< Impl > impl
Private implementation details.
Definition: FilterSet.h:85
FilterSet model object.
Definition: FilterSet.h:82
const std::weak_ptr< ome::xml::model::Channel > & setLinkedChannel(OMEModelObject::indexed_container< ome::xml::model::Channel, std::weak_ptr >::type::size_type index, const std::shared_ptr< ome::xml::model::Channel > &channel_BackReference)
Set linked Channel.
Definition: FilterSet.cpp:491
virtual void update(const common::xml::dom::Element &element, ome::xml::model::OMEModel &model)
Update the object hierarchy recursively from an XML DOM tree.
Definition: FilterSet.cpp:194
const std::string & getXMLNamespace() const
Get the XML namespace for this model object.
Definition: FilterSet.cpp:628
const std::weak_ptr< ome::xml::model::Filter > & setLinkedEmissionFilter(OMEModelObject::indexed_container< ome::xml::model::Filter, std::weak_ptr >::type::size_type index, const std::shared_ptr< ome::xml::model::Filter > &emissionFilter)
Set linked EmissionFilter.
Definition: FilterSet.cpp:431
OMEModelObject::indexed_container< ome::xml::model::Filter, std::weak_ptr >::type getLinkedExcitationFilterList() const
Get the linked ExcitationFilter list.
Definition: FilterSet.cpp:330
static std::shared_ptr< FilterSet > create(const common::xml::dom::Element &element, ome::xml::model::OMEModel &model)
Create a FilterSet model object from DOM element.
Definition: FilterSet.cpp:172
OMEModelObject::indexed_container< ome::xml::model::Filter, std::weak_ptr >::type::size_type sizeOfLinkedExcitationFilterList() const
Get size of linked ExcitationFilter list.
Definition: FilterSet.cpp:324
FilterSet & operator=(const FilterSet &)
Assignment operator (deleted).