source: XIOS/dev/XIOS_DEV_CMIP6/src/declare_ref_func.hpp @ 1436

Last change on this file since 1436 was 1361, checked in by ymipsl, 6 years ago

Fix : when making a reference to an object and when attribut "name" is empty, the name was automatically set using référence name or id, even if the objcet has a defined id. Now take name first , then take id and after that look at the referenced object.

Side effect may be expected....

YM

  • Property svn:executable set to *
File size: 8.4 KB
RevLine 
[540]1/*!
2   \file declare_ref_func.hpp
3   \author Ha NGUYEN
4   \date 02 Dec 2014
5   \since 02 Dec 2014
6
[750]7   \brief Macros to add functions used to solve references in class CDomain, CAxis and CField
[540]8 */
9#ifndef __XIOS_DECLARE_REF_FUNC_HPP__
10#define __XIOS_DECLARE_REF_FUNC_HPP__
11
[750]12// Declarations
[540]13
[770]14#define DECLARE_REF_FUNC(type, name_)                       \
[750]15public:                                                     \
[771]16  void solveRefInheritance(bool apply = true);              \
17  void removeRefInheritance();                              \
[750]18  bool hasDirect##type##Reference(void) const;              \
19  C##type* getDirect##type##Reference(void) const;          \
[962]20  const StdString get##type##OutputName(void) const;        \
[922]21  void setAttributesReference(bool apply = true);           \
[941]22  bool hasRefTo(C##type* ref) const;                        \
[777]23                                                                       \
24private:                                                               \
[941]25  std::vector<C##type*> refObjects;
[540]26
[750]27// Definitions
28
[770]29#define DEFINE_REF_FUNC(type, name_)                                   \
[540]30void C##type::solveRefInheritance(bool apply)                          \
[750]31{                                                                      \
[777]32  std::set<C##type*> tmpRefObjects;                                    \
[750]33  C##type* refer_ptr = this;                                           \
[941]34  std::vector<C##type*>().swap(refObjects);                            \
[777]35  refObjects.push_back(this);                                          \
[750]36                                                                       \
37  while (refer_ptr->hasDirect##type##Reference())                      \
38  {                                                                    \
[777]39    tmpRefObjects.insert(refer_ptr);                                   \
[751]40                                                                       \
[750]41    refer_ptr = refer_ptr->getDirect##type##Reference();               \
42                                                                       \
[777]43    if (tmpRefObjects.end() != tmpRefObjects.find(refer_ptr))          \
[750]44    {                                                                  \
[751]45      ERROR("void C" #type "::solveRefInheritance(bool apply)",        \
[770]46            << "Circular dependency stopped for " #name_ " object "    \
[751]47            << "with id = \"" << refer_ptr->getId() << "\".");         \
[750]48    }                                                                  \
49                                                                       \
[777]50    refObjects.push_back(refer_ptr);                                   \
[750]51    SuperClassAttribute::setAttributes(refer_ptr, apply);              \
52  }                                                                    \
[1009]53  if (this->hasAttribute("name") && this->name.isEmpty())              \
54    this->name.setValue(this->get##type##OutputName());                \
[750]55}                                                                      \
56                                                                       \
[777]57void C##type::setAttributesReference(bool apply)                       \
[775]58{                                                                      \
[777]59  for (int i = 1; i < refObjects.size(); ++i)                          \
[820]60    refObjects[i]->setAttributes(refObjects[i-1], apply);              \
61  if (refObjects.size() > 1)                                           \
62    refObjects[refObjects.size()-1]->removeRefInheritance();           \
[775]63}                                                                      \
64                                                                       \
[540]65void C##type::removeRefInheritance()                                   \
[750]66{                                                                      \
[770]67  if (!this->name_##_ref.isEmpty())                                    \
68    this->name_##_ref.reset();                                         \
[750]69}                                                                      \
70                                                                       \
[771]71bool C##type::hasDirect##type##Reference(void) const                   \
[750]72{                                                                      \
[1099]73  return (!this->name_##_ref.isEmpty() &&                              \
74          C##type::has(this->name_##_ref));                            \
[750]75}                                                                      \
76                                                                       \
77C##type* C##type::getDirect##type##Reference(void) const               \
78{                                                                      \
[770]79  if (this->name_##_ref.isEmpty())                                     \
[771]80    ERROR("C" #type "* C" #type "::getDirect" #type "Reference(void)", \
81          << "The " #name_ " with id = '" << getId() << "'"            \
82          << " has no " #name_ "_ref.");                               \
[750]83                                                                       \
[770]84  if (!C##type::has(this->name_##_ref))                                \
[752]85    ERROR("C" #type "* C" #type "::getDirect" #type "Reference(void)", \
[770]86          << this->name_##_ref                                         \
87          << " refers to an unknown " #name_ " id.");                  \
[750]88                                                                       \
[770]89  return C##type::get(this->name_##_ref);                              \
[750]90}                                                                      \
91                                                                       \
[1361]92const StdString C##type::get##type##OutputName(void) const             \
[770]93{                                                                      \
[1361]94  if (!this->name.isEmpty())  return this->name;                       \
95  else if (this->hasAutoGeneratedId() && hasDirect##type##Reference()) \
[921]96  {                                                                    \
97    const C##type* refer_ptr = this, *tmp_ptr;                         \
98    StdString nameRef = this->name_##_ref;                             \
[1009]99    std::set<const C##type*> tmpRefObjects;                            \
[921]100    while (refer_ptr->hasAutoGeneratedId() &&                          \
[922]101          (C##type::has(nameRef)))                                     \
102    {                                                                  \
[962]103      tmpRefObjects.insert(refer_ptr);                                 \
[921]104      tmp_ptr = refer_ptr;                                             \
105      refer_ptr = tmp_ptr->getDirect##type##Reference();               \
[1009]106      if (refer_ptr->hasAutoGeneratedId() &&                           \
107          refer_ptr->hasDirect##type##Reference())                     \
[1158]108        nameRef = refer_ptr->name_##_ref;                              \
[1009]109      else {                                                           \
[1158]110        nameRef = refer_ptr->getId(); break;                           \
111      }                                                                \
112      if (tmpRefObjects.end() != tmpRefObjects.find(refer_ptr))        \
113      {                                                                \
[962]114        ERROR("const StdString& C" #type "::get" #type "OutputName(void) const ",      \
[1158]115              << "Circular dependency stopped for " #name_ " object "  \
116              << "with id = \"" << refer_ptr->getId() << "\".");       \
117      }                                                                \
[922]118    }                                                                  \
[962]119    return nameRef;                                                    \
[921]120  }                                                                    \
[770]121  else                                                                 \
122    return getId();                                                    \
123}                                                                      \
[941]124                                                                       \
125bool C##type::hasRefTo(C##type* ref) const                             \
126{                                                                      \
127  bool found = false;                                                  \
128  for (int idx = 0; idx < refObjects.size(); ++idx)                    \
129    if (ref == refObjects[idx]) { found = true; break; }                \
130  return found;                                                        \
131}
[540]132
133#endif // __XIOS_DECLARE_REF_FUNC_HPP__
Note: See TracBrowser for help on using the repository browser.