source: XIOS/dev/dev_olga/src/group_factory.hpp @ 1627

Last change on this file since 1627 was 1542, checked in by oabramkina, 6 years ago

Replacing Boost's unordered_map and shared_pointer by its STL counterparts.

Two notes for Curie:

  • one can see the content of unordered_map with ddt only if XIOS has been compiled with gnu
  • XIOS will not compile any more with pgi (all available versions use old STL which are not up to the c++11 norms)
  • Property copyright set to
    Software name : XIOS (Xml I/O Server)
    http://forge.ipsl.jussieu.fr/ioserver
    Creation date : January 2009
    Licence : CeCCIL version2
    see license file in root directory : Licence_CeCILL_V2-en.txt
    or http://www.cecill.info/licences/Licence_CeCILL_V2-en.html
    Holder : CEA/LSCE (Laboratoire des Sciences du CLimat et de l'Environnement)
    CNRS/IPSL (Institut Pierre Simon Laplace)
    Project Manager : Yann Meurdesoif
    yann.meurdesoif@cea.fr
File size: 2.4 KB
Line 
1#ifndef __XIOS_CGroupFactory__
2#define __XIOS_CGroupFactory__
3
4/// XIOS headers ///
5#include "xios_spl.hpp"
6#include "exception.hpp"
7#include "object_factory.hpp"
8#include "group_template.hpp"
9#include "xml_parser.hpp"
10
11namespace xios
12{
13   /// ////////////////////// Déclarations ////////////////////// ///
14   class CGroupFactory
15   {
16      public :
17
18         /// Mutateurs ///
19         static void SetCurrentContextId(const StdString & context);
20
21         template <typename U>
22            static void AddGroup(std::shared_ptr<U> pgroup,
23                                        std::shared_ptr<U> cgroup);
24
25         template <typename U>
26            static void AddChild(std::shared_ptr<U> group,
27                                        std::shared_ptr<typename U::RelChild> child);
28
29         /// Accesseurs ///
30         static StdString & GetCurrentContextId(void);
31
32         template <typename U>
33            static std::shared_ptr<U>
34               GetGroup(std::shared_ptr<U> group, const StdString & id);
35
36         template <typename U>
37            static std::shared_ptr<typename U::RelChild>
38               GetChild(std::shared_ptr<U> group, const StdString & id);
39
40         template <typename U>
41            static int GetGroupNum(std::shared_ptr<U> group);
42         template <typename U>
43            static int GetGroupIdNum(std::shared_ptr<U> group);
44         template <typename U>
45            static int GetChildNum(std::shared_ptr<U> group);
46         template <typename U>
47            static int GetChildIdNum(std::shared_ptr<U> group);
48
49         /// Tests ///
50         template <typename U>
51            static bool HasGroup(std::shared_ptr<U> group, const StdString & id);
52
53         template <typename U>
54            static bool HasChild(std::shared_ptr<U> group, const StdString & id);
55
56         /// Instanciateur ///
57         template <typename U>
58            static std::shared_ptr<U>
59               CreateGroup(std::shared_ptr<U> group, const StdString & id = StdString(""));
60
61         template <typename U>
62            static std::shared_ptr<typename U::RelChild>
63               CreateChild(std::shared_ptr<U> group, const StdString & id = StdString(""));
64
65      private :
66
67         /// Propriétés statiques ///
68         static StdString CurrContext;
69
70   }; // class CGroupFactory
71} // namespace xios
72
73//#include "group_factory_impl.hpp"
74//#include "group_parser.hpp"
75
76#endif // __XIOS_CGroupFactory__
Note: See TracBrowser for help on using the repository browser.