source: XIOS/trunk/src/interface/c/iccontext.cpp @ 2330

Last change on this file since 2330 was 1978, checked in by ymipsl, 4 years ago

Add get_current_context functionnality with string id, in fortran interface.

YM

  • 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: 3.0 KB
RevLine 
[325]1/* ************************************************************************** *
[335]2 *      Copyright © IPSL/LSCE, xios, Avril 2010 - Octobre 2011         *
[325]3 * ************************************************************************** */
4
5#include <boost/multi_array.hpp>
6
[1542]7#include <memory>
8
[591]9#include "xios.hpp"
[325]10
[352]11#include "attribute_template.hpp"
12#include "object_template.hpp"
13#include "group_template.hpp"
[325]14
15#include "calendar_type.hpp"
16
17#include "icutil.hpp"
[347]18#include "timer.hpp"
[352]19#include "context.hpp"
[325]20
21extern "C"
22{
23// /////////////////////////////// Définitions ////////////////////////////// //
24
25   // ----------------------- Redéfinition de types ----------------------------
26
27   typedef enum { D360 = 0 , ALLLEAP, NOLEAP, JULIAN, GREGORIAN } XCalendarType ;
28
[345]29   typedef xios::CContext * XContextPtr;
[325]30
31   // ------------------------ Création des handle -----------------------------
[545]32
[325]33   void cxios_context_handle_create (XContextPtr * _ret, const char * _id, int _id_len)
[1622]34   TRY
[325]35   {
[545]36      std::string id;
[325]37      if (!cstr2string(_id, _id_len, id)) return;
[347]38      CTimer::get("XIOS").resume() ;
[545]39
[347]40      std::vector<xios::CContext*> def_vector =
[346]41            xios::CContext::getRoot()->getChildList();
[325]42
43      for (std::size_t i = 0; i < def_vector.size(); i++)
[393]44      {
[325]45          if (def_vector[i]->getId().compare(id) == 0)
[393]46          {
47            *_ret = def_vector[i];
48             CTimer::get("XIOS").suspend() ;
49            return;
50          }
[325]51      }
[347]52       CTimer::get("XIOS").suspend() ;
[393]53       ERROR("void cxios_context_handle_create (XContextPtr * _ret, const char * _id, int _id_len)",
54             << "Context "<<id<<"  unknown");
[325]55      // Lever une exeception ici
56   }
[1622]57   CATCH_DUMP_STACK
[545]58
[325]59   // ------------------------ Changements de contextes ------------------------
[545]60
61   void cxios_context_get_current(XContextPtr* context)
[1622]62   TRY
[545]63   {
64      CTimer::get("XIOS").resume();
65      *context = CContext::getCurrent();
66      CTimer::get("XIOS").suspend();
67   }
[1622]68   CATCH_DUMP_STACK
[545]69
[1978]70   void cxios_context_get_id(XContextPtr context, char * _id, int _id_len)
71   TRY
72   {
73      string_copy(context->getId(),_id,_id_len);
74   }
75   CATCH_DUMP_STACK
76   
[325]77   void cxios_context_set_current(XContextPtr context, bool withswap)
[1622]78   TRY
[325]79   {
[347]80      CTimer::get("XIOS").resume() ;
[346]81      CContext::setCurrent(context->getId());
[347]82      CTimer::get("XIOS").suspend() ;
[325]83   }
[1622]84   CATCH_DUMP_STACK
[545]85
[325]86   // -------------------- Vérification des identifiants -----------------------
87
88   void cxios_context_valid_id (bool * _ret, const char * _id, int _id_len)
[1622]89   TRY
[325]90   {
91      std::string id;
92      if (!cstr2string(_id, _id_len, id)) return;
[545]93
[520]94      CTimer::get("XIOS").resume();
[347]95      std::vector<xios::CContext*> def_vector =
[346]96            xios::CContext::getRoot()->getChildList();
[325]97
[520]98      *_ret = false;
[325]99      for (std::size_t i = 0; i < def_vector.size(); i++)
[520]100      {
101        if (def_vector[i]->getId().compare(id) == 0)
102        {
[325]103          *_ret = true;
[520]104          break;
105        }
[325]106      }
[520]107      CTimer::get("XIOS").suspend();
[325]108   }
[1622]109   CATCH_DUMP_STACK
[325]110} // extern "C"
Note: See TracBrowser for help on using the repository browser.