source: XIOS/trunk/src/interface/c/icfile.cpp @ 325

Last change on this file since 325 was 325, checked in by ymipsl, 12 years ago

port to gfortran/g++

YM

  • Property svn:eol-style set to native
File size: 1.9 KB
Line 
1/* ************************************************************************** *
2 *      Copyright © IPSL/LSCE, XMLIOServer, Avril 2010 - Octobre 2011         *
3 * ************************************************************************** */
4
5#include <boost/multi_array.hpp>
6#include <boost/shared_ptr.hpp>
7
8#include "xmlioserver.hpp"
9
10#include "attribute_template_impl.hpp"
11#include "object_template_impl.hpp"
12#include "group_template_impl.hpp"
13
14#include "icutil.hpp"
15
16extern "C"
17{
18// /////////////////////////////// Définitions ////////////////////////////// //
19
20   // ----------------------- Redéfinition de types ----------------------------
21   
22   typedef xmlioserver::tree::CFile      * XFilePtr;
23   typedef xmlioserver::tree::CFileGroup * XFileGroupPtr;
24
25   // ------------------------ Création des handle -----------------------------
26   
27   void cxios_file_handle_create (XFilePtr * _ret, const char * _id, int _id_len)
28   {
29      std::string id; 
30      if (!cstr2string(_id, _id_len, id)) return;
31
32      *_ret = xmlioserver::CObjectFactory::GetObject<xmlioserver::tree::CFile>(id).get();
33   }
34   
35   void cxios_filegroup_handle_create (XFileGroupPtr * _ret, const char * _id, int _id_len)
36   {
37      std::string id; 
38      if (!cstr2string(_id, _id_len, id)) return;
39
40      *_ret = xmlioserver::CObjectFactory::GetObject<xmlioserver::tree::CFileGroup>(id).get();
41   }
42
43   // -------------------- Vérification des identifiants -----------------------
44
45   void cxios_file_valid_id (bool * _ret, const char * _id, int _id_len)
46   {
47      std::string id;
48      if (!cstr2string(_id, _id_len, id)) return;
49
50      *_ret = xmlioserver::CObjectFactory::HasObject<xmlioserver::tree::CFile>(id);
51   }
52
53   void cxios_filegroup_valid_id (bool * _ret, const char * _id, int _id_len)
54   {
55      std::string id;
56      if (!cstr2string(_id, _id_len, id)) return;
57
58      *_ret = xmlioserver::CObjectFactory::HasObject<xmlioserver::tree::CFileGroup>(id);
59   }
60} // extern "C"
Note: See TracBrowser for help on using the repository browser.