source: XIOS/trunk/src/interface/c/icaxis.cpp @ 1542

Last change on this file since 1542 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
  • Property svn:eol-style set to native
File size: 2.0 KB
RevLine 
[325]1/* ************************************************************************** *
[335]2 *      Copyright © IPSL/LSCE, xios, Avril 2010 - Octobre 2011         *
[325]3 * ************************************************************************** */
4
5#include <boost/multi_array.hpp>
[1542]6#include <memory>
[325]7
[591]8#include "xios.hpp"
[325]9
[352]10#include "object_template.hpp"
11#include "group_template.hpp"
12#include "attribute_template.hpp"
[325]13
14#include "icutil.hpp"
[347]15#include "timer.hpp"
[352]16#include "axis.hpp"
[325]17
18extern "C"
19{
20// /////////////////////////////// Définitions ////////////////////////////// //
21
22   // ----------------------- Redéfinition de types ----------------------------
23   
[345]24   typedef xios::CAxis      * XAxisPtr;
25   typedef xios::CAxisGroup * XAxisGroupPtr;
[325]26
27   // ------------------------ Création des handle -----------------------------
28   
29   void cxios_axis_handle_create (XAxisPtr * _ret, const char * _id, int _id_len)
30   {
31      std::string id; 
32      if (!cstr2string(_id, _id_len, id)) return;
[347]33      CTimer::get("XIOS").resume() ;
34      *_ret = xios::CAxis::get(id);
35      CTimer::get("XIOS").suspend() ;
[325]36   }
37   
38   void cxios_axisgroup_handle_create (XAxisGroupPtr * _ret, const char * _id, int _id_len)
39   {
40      std::string id; 
41      if (!cstr2string(_id, _id_len, id)) return;
[347]42      CTimer::get("XIOS").resume() ;
43      *_ret = xios::CAxisGroup::get(id);
44      CTimer::get("XIOS").suspend() ;
45    }
[325]46
47   // -------------------- Vérification des identifiants -----------------------
48
49   void cxios_axis_valid_id (bool * _ret, const char * _id, int _id_len)
50   {
51      std::string id;
52      if (!cstr2string(_id, _id_len, id)) return;
53
[347]54      CTimer::get("XIOS").resume() ;
[346]55      *_ret = xios::CAxis::has(id);
[347]56      CTimer::get("XIOS").suspend() ;
[325]57   }
58
59   void cxios_axisgroup_valid_id (bool * _ret, const char * _id, int _id_len)
60   {
61      std::string id;
62      if (!cstr2string(_id, _id_len, id)) return;
63
[347]64      CTimer::get("XIOS").resume() ;
[346]65      *_ret = xios::CAxisGroup::has(id);
[347]66      CTimer::get("XIOS").suspend() ;
67
[325]68   }
69   
70} // extern "C"
Note: See TracBrowser for help on using the repository browser.