source: XIOS/trunk/src/interface/c_attr/icvariable_attr.cpp @ 529

Last change on this file since 529 was 527, checked in by rlacroix, 9 years ago

Make the variable typing stricter.

The type must now be one of:

  • bool
  • int or int32
  • int16
  • int64
  • float
  • double
  • string

WARNING: The variable type was previously not checked and using an unsupported type did not lead to any error message. Be aware that this change can make your existing configuration files invalid. However the adjustments required to adapt existing files should be minor.

  • 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.3 KB
Line 
1/* ************************************************************************** *
2 *               Interface auto generated - do not modify                   *
3 * ************************************************************************** */
4
5#include <boost/multi_array.hpp>
6#include <boost/shared_ptr.hpp>
7#include "xmlioserver.hpp"
8#include "attribute_template.hpp"
9#include "object_template.hpp"
10#include "group_template.hpp"
11#include "icutil.hpp"
12#include "timer.hpp"
13#include "node_type.hpp"
14
15extern "C"
16{
17  typedef xios::CVariable*  variable_Ptr;
18 
19  void cxios_set_variable_name(variable_Ptr variable_hdl, const char * name, int name_size)
20  {
21    std::string name_str;
22    if(!cstr2string(name, name_size, name_str)) return;
23     CTimer::get("XIOS").resume();
24    variable_hdl->name.setValue(name_str);
25     CTimer::get("XIOS").suspend();
26  }
27 
28  void cxios_get_variable_name(variable_Ptr variable_hdl, char * name, int name_size)
29  {
30     CTimer::get("XIOS").resume();
31    if(!string_copy(variable_hdl->name.getInheritedValue(),name , name_size))
32      ERROR("void cxios_get_variable_name(variable_Ptr variable_hdl, char * name, int name_size)", <<"Input string is to short");
33     CTimer::get("XIOS").suspend();
34  }
35 
36  bool cxios_is_defined_variable_name(variable_Ptr variable_hdl )
37  {
38     CTimer::get("XIOS").resume();
39    return variable_hdl->name.hasInheritedValue();
40     CTimer::get("XIOS").suspend();
41  }
42 
43 
44 
45  void cxios_set_variable_type(variable_Ptr variable_hdl, const char * type, int type_size)
46  {
47    std::string type_str;
48    if(!cstr2string(type, type_size, type_str)) return;
49     CTimer::get("XIOS").resume();
50    variable_hdl->type.fromString(type_str);
51     CTimer::get("XIOS").suspend();
52  }
53 
54  void cxios_get_variable_type(variable_Ptr variable_hdl, char * type, int type_size)
55  {
56     CTimer::get("XIOS").resume();
57    if(!string_copy(variable_hdl->type.getInheritedStringValue(),type , type_size))
58      ERROR("void cxios_get_variable_type(variable_Ptr variable_hdl, char * type, int type_size)", <<"Input string is to short");
59     CTimer::get("XIOS").suspend();
60  }
61 
62  bool cxios_is_defined_variable_type(variable_Ptr variable_hdl )
63  {
64     CTimer::get("XIOS").resume();
65    return variable_hdl->type.hasInheritedValue();
66     CTimer::get("XIOS").suspend();
67  }
68 
69 
70 
71 
72}
Note: See TracBrowser for help on using the repository browser.