source: XIOS/trunk/src/declare_ref_func.hpp @ 1211

Last change on this file since 1211 was 996, checked in by mhnguyen, 7 years ago

Some modifications to make sure there is no strange _undefined_id_ name appearing in netcdf file

+) Improve the algo to search for correct name
+) Some minor changes in code

Test
+) On Curie
+) Names are correct as they should be.

  • Property svn:executable set to *
File size: 8.3 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  }                                                                    \
[996]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{                                                                      \
[771]73  return !this->name_##_ref.isEmpty();                                 \
[750]74}                                                                      \
75                                                                       \
76C##type* C##type::getDirect##type##Reference(void) const               \
77{                                                                      \
[770]78  if (this->name_##_ref.isEmpty())                                     \
[771]79    ERROR("C" #type "* C" #type "::getDirect" #type "Reference(void)", \
80          << "The " #name_ " with id = '" << getId() << "'"            \
81          << " has no " #name_ "_ref.");                               \
[750]82                                                                       \
[770]83  if (!C##type::has(this->name_##_ref))                                \
[752]84    ERROR("C" #type "* C" #type "::getDirect" #type "Reference(void)", \
[770]85          << this->name_##_ref                                         \
86          << " refers to an unknown " #name_ " id.");                  \
[750]87                                                                       \
[770]88  return C##type::get(this->name_##_ref);                              \
[750]89}                                                                      \
90                                                                       \
[962]91const StdString C##type::get##type##OutputName(void) const            \
[770]92{                                                                      \
93  if (!this->name.isEmpty())                                           \
[922]94    return this->name;                                                 \
[921]95  else if (hasDirect##type##Reference())                               \
96  {                                                                    \
97    const C##type* refer_ptr = this, *tmp_ptr;                         \
98    StdString nameRef = this->name_##_ref;                             \
[962]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();               \
[996]106      if (refer_ptr->hasAutoGeneratedId() &&                           \
107          refer_ptr->hasDirect##type##Reference())                     \
[922]108        nameRef = refer_ptr->name_##_ref;                              \
[996]109      else {                                                           \
110        nameRef = refer_ptr->getId(); break;                           \
111      }                                                                \
[962]112      if (tmpRefObjects.end() != tmpRefObjects.find(refer_ptr))        \
113      {                                                                \
114        ERROR("const StdString& C" #type "::get" #type "OutputName(void) const ",      \
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.