source: XIOS/dev/branch_openmp/src/group_factory.hpp @ 1545

Last change on this file since 1545 was 1545, checked in by yushan, 6 years ago

branch_openmp merged with trunk r1544

  • 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_ptr;
69         #pragma omp threadprivate(CurrContext_ptr)
70
71   }; // class CGroupFactory
72} // namespace xios
73
74//#include "group_factory_impl.hpp"
75//#include "group_parser.hpp"
76
77#endif // __XIOS_CGroupFactory__
Note: See TracBrowser for help on using the repository browser.