My Project
StratigraphicColumnRankInterpretation.h
1 /*-----------------------------------------------------------------------
2 Copyright F2I-CONSULTING, (2014-2016)
3 
4 philippe.verney@f2i-consulting.com
5 
6 This software is a computer program whose purpose is to access to data formatted using Energistics standards.
7 
8 This software is governed by the CeCILL-B license under French law and
9 abiding by the rules of distribution of free software. You can use,
10 modify and/ or redistribute the software under the terms of the CeCILL-B
11 license as circulated by CEA, CNRS and INRIA at the following URL
12 "http://www.cecill.info".
13 
14 As a counterpart to the access to the source code and rights to copy,
15 modify and redistribute granted by the license, users are provided only
16 with a limited warranty and the software's author, the holder of the
17 economic rights, and the successive licensors have only limited
18 liability.
19 
20 In this respect, the user's attention is drawn to the risks associated
21 with loading, using, modifying and/or developing or reproducing the
22 software by the user in light of its specific status of free software,
23 that may mean that it is complicated to manipulate, and that also
24 therefore means that it is reserved for developers and experienced
25 professionals having in-depth computer knowledge. Users are therefore
26 encouraged to load and test the software's suitability as regards their
27 requirements in conditions enabling the security of their systems and/or
28 data to be ensured and, more generally, to use and operate it in the
29 same conditions as regards security.
30 
31 The fact that you are presently reading this means that you have had
32 knowledge of the CeCILL-B license and that you accept its terms.
33 -----------------------------------------------------------------------*/
34 #pragma once
35 
36 #include "resqml2_0_1/AbstractStratigraphicOrganizationInterpretation.h"
37 #include "resqml2_0_1/StratigraphicColumn.h"
38 #include "resqml2_0_1/StratigraphicOccurrenceInterpretation.h"
39 
40 namespace resqml2_0_1
41 {
46  {
47  public:
56  StratigraphicColumnRankInterpretation(class OrganizationFeature * orgFeat, const std::string & guid, const std::string & title, const unsigned long & rank, const gsoap_resqml2_0_1::resqml2__OrderingCriteria & orderingCriteria);
57 
62  StratigraphicColumnRankInterpretation(gsoap_resqml2_0_1::_resqml2__StratigraphicColumnRankInterpretation* fromGsoap) : AbstractStratigraphicOrganizationInterpretation(fromGsoap) {}
63 
68 
73  void pushBackStratiUnitInterpretation(class StratigraphicUnitInterpretation * stratiUnitInterpretation);
74 
75  void setHorizonOfLastContact(class HorizonInterpretation * partOf);
76 
80  void pushBackStratigraphicBinaryContact(StratigraphicUnitInterpretation* subject, const gsoap_resqml2_0_1::resqml2__ContactMode & subjectContactMode,
81  StratigraphicUnitInterpretation* directObject, const gsoap_resqml2_0_1::resqml2__ContactMode & directObjectMode,
82  class HorizonInterpretation * partOf = nullptr);
83 
88  bool isAChronoStratiRank() const;
89 
93  unsigned int getContactCount() const;
94 
100  gsoap_resqml2_0_1::resqml2__ContactMode getSubjectContactModeOfContact(const unsigned int & contactIndex) const;
101 
105  class StratigraphicUnitInterpretation* getSubjectOfContact(const unsigned int & contactIndex) const;
106 
112  gsoap_resqml2_0_1::resqml2__ContactMode getDirectObjectContactModeOfContact(const unsigned int & contactIndex) const;
113 
117  class StratigraphicUnitInterpretation* getDirectObjectOfContact(const unsigned int & contactIndex) const;
118 
122  class HorizonInterpretation* getHorizonInterpretationOfContact(const unsigned int & contactIndex) const;
123 
127  const std::vector<class StratigraphicUnitInterpretation*> & getStratigraphicUnitInterpretationSet() const;
128 
132  const std::vector<class StratigraphicOccurrenceInterpretation*> & getStratigraphicOccurrenceInterpretationSet() const;
133 
137  const std::vector<class HorizonInterpretation*> & getHorizonInterpretationSet() const;
138 
142  const std::vector<StratigraphicColumn*> & getStratigraphicColumnSet() const;
143 
144  static const char* XML_TAG;
145  virtual std::string getXmlTag() const {return XML_TAG;}
146 
147  private:
148 
149  std::vector<epc::Relationship> getAllEpcRelationships() const;
150  void importRelationshipSetFromEpc(common::EpcDocument* epcDoc);
151 
152  // forward relationships
153  std::vector<class StratigraphicUnitInterpretation*> stratigraphicUnitSet;
154  std::vector<class HorizonInterpretation*> horizonInterpretationSet;
155 
156  // Backward relationship
157  std::vector<StratigraphicColumn *> stratigraphicColumnSet;
158  std::vector<StratigraphicOccurrenceInterpretation *> stratigraphicOccurrenceInterpretationSet;
159 
160  friend void StratigraphicColumn::pushBackStratiColumnRank(StratigraphicColumnRankInterpretation * stratiColumnRank);
161  friend void StratigraphicOccurrenceInterpretation::setStratigraphicColumnRankInterpretation(StratigraphicColumnRankInterpretation * stratiColumnRankInterp);
162  };
163 }
virtual std::string getXmlTag() const
Definition: StratigraphicColumnRankInterpretation.h:145
Definition: OrganizationFeature.h:40
Definition: StratigraphicUnitInterpretation.h:40
Definition: AbstractStratigraphicOrganizationInterpretation.h:41
Definition: EpcDocument.h:79
Definition: EpcDocument.h:155
~StratigraphicColumnRankInterpretation()
Definition: StratigraphicColumnRankInterpretation.h:67
Definition: HorizonInterpretation.h:42
Definition: StratigraphicColumnRankInterpretation.h:45
StratigraphicColumnRankInterpretation(gsoap_resqml2_0_1::_resqml2__StratigraphicColumnRankInterpretation *fromGsoap)
Definition: StratigraphicColumnRankInterpretation.h:62