source: XIOS/dev/branch_yushan_merged/src/interface/c_attr/icfile_attr.cpp @ 1205

Last change on this file since 1205 was 1205, checked in by yushan, 7 years ago

branch merged with trunk @1200

  • 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: 26.8 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 "xios.hpp"
8#include "attribute_template.hpp"
9#include "object_template.hpp"
10#include "group_template.hpp"
11#include "icutil.hpp"
12#include "icdate.hpp"
13#include "timer.hpp"
14#include "node_type.hpp"
15
16extern "C"
17{
18  typedef xios::CFile* file_Ptr;
19
20  void cxios_set_file_append(file_Ptr file_hdl, bool append)
21  {
22    CTimer::get("XIOS").resume();
23    file_hdl->append.setValue(append);
24    CTimer::get("XIOS").suspend();
25  }
26
27  void cxios_get_file_append(file_Ptr file_hdl, bool* append)
28  {
29    CTimer::get("XIOS").resume();
30    *append = file_hdl->append.getInheritedValue();
31    CTimer::get("XIOS").suspend();
32  }
33
34  bool cxios_is_defined_file_append(file_Ptr file_hdl)
35  {
36     CTimer::get("XIOS").resume();
37     bool isDefined = file_hdl->append.hasInheritedValue();
38     CTimer::get("XIOS").suspend();
39     return isDefined;
40  }
41
42
43  void cxios_set_file_compression_level(file_Ptr file_hdl, int compression_level)
44  {
45    CTimer::get("XIOS").resume();
46    file_hdl->compression_level.setValue(compression_level);
47    CTimer::get("XIOS").suspend();
48  }
49
50  void cxios_get_file_compression_level(file_Ptr file_hdl, int* compression_level)
51  {
52    CTimer::get("XIOS").resume();
53    *compression_level = file_hdl->compression_level.getInheritedValue();
54    CTimer::get("XIOS").suspend();
55  }
56
57  bool cxios_is_defined_file_compression_level(file_Ptr file_hdl)
58  {
59     CTimer::get("XIOS").resume();
60     bool isDefined = file_hdl->compression_level.hasInheritedValue();
61     CTimer::get("XIOS").suspend();
62     return isDefined;
63  }
64
65
66  void cxios_set_file_convention(file_Ptr file_hdl, const char * convention, int convention_size)
67  {
68    std::string convention_str;
69    if (!cstr2string(convention, convention_size, convention_str)) return;
70    CTimer::get("XIOS").resume();
71    file_hdl->convention.fromString(convention_str);
72    CTimer::get("XIOS").suspend();
73  }
74
75  void cxios_get_file_convention(file_Ptr file_hdl, char * convention, int convention_size)
76  {
77    CTimer::get("XIOS").resume();
78    if (!string_copy(file_hdl->convention.getInheritedStringValue(), convention, convention_size))
79      ERROR("void cxios_get_file_convention(file_Ptr file_hdl, char * convention, int convention_size)", << "Input string is too short");
80    CTimer::get("XIOS").suspend();
81  }
82
83  bool cxios_is_defined_file_convention(file_Ptr file_hdl)
84  {
85     CTimer::get("XIOS").resume();
86     bool isDefined = file_hdl->convention.hasInheritedValue();
87     CTimer::get("XIOS").suspend();
88     return isDefined;
89  }
90
91
92  void cxios_set_file_convention_str(file_Ptr file_hdl, const char * convention_str, int convention_str_size)
93  {
94    std::string convention_str_str;
95    if (!cstr2string(convention_str, convention_str_size, convention_str_str)) return;
96    CTimer::get("XIOS").resume();
97    file_hdl->convention_str.setValue(convention_str_str);
98    CTimer::get("XIOS").suspend();
99  }
100
101  void cxios_get_file_convention_str(file_Ptr file_hdl, char * convention_str, int convention_str_size)
102  {
103    CTimer::get("XIOS").resume();
104    if (!string_copy(file_hdl->convention_str.getInheritedValue(), convention_str, convention_str_size))
105      ERROR("void cxios_get_file_convention_str(file_Ptr file_hdl, char * convention_str, int convention_str_size)", << "Input string is too short");
106    CTimer::get("XIOS").suspend();
107  }
108
109  bool cxios_is_defined_file_convention_str(file_Ptr file_hdl)
110  {
111     CTimer::get("XIOS").resume();
112     bool isDefined = file_hdl->convention_str.hasInheritedValue();
113     CTimer::get("XIOS").suspend();
114     return isDefined;
115  }
116
117
118  void cxios_set_file_cyclic(file_Ptr file_hdl, bool cyclic)
119  {
120    CTimer::get("XIOS").resume();
121    file_hdl->cyclic.setValue(cyclic);
122    CTimer::get("XIOS").suspend();
123  }
124
125  void cxios_get_file_cyclic(file_Ptr file_hdl, bool* cyclic)
126  {
127    CTimer::get("XIOS").resume();
128    *cyclic = file_hdl->cyclic.getInheritedValue();
129    CTimer::get("XIOS").suspend();
130  }
131
132  bool cxios_is_defined_file_cyclic(file_Ptr file_hdl)
133  {
134     CTimer::get("XIOS").resume();
135     bool isDefined = file_hdl->cyclic.hasInheritedValue();
136     CTimer::get("XIOS").suspend();
137     return isDefined;
138  }
139
140
141  void cxios_set_file_description(file_Ptr file_hdl, const char * description, int description_size)
142  {
143    std::string description_str;
144    if (!cstr2string(description, description_size, description_str)) return;
145    CTimer::get("XIOS").resume();
146    file_hdl->description.setValue(description_str);
147    CTimer::get("XIOS").suspend();
148  }
149
150  void cxios_get_file_description(file_Ptr file_hdl, char * description, int description_size)
151  {
152    CTimer::get("XIOS").resume();
153    if (!string_copy(file_hdl->description.getInheritedValue(), description, description_size))
154      ERROR("void cxios_get_file_description(file_Ptr file_hdl, char * description, int description_size)", << "Input string is too short");
155    CTimer::get("XIOS").suspend();
156  }
157
158  bool cxios_is_defined_file_description(file_Ptr file_hdl)
159  {
160     CTimer::get("XIOS").resume();
161     bool isDefined = file_hdl->description.hasInheritedValue();
162     CTimer::get("XIOS").suspend();
163     return isDefined;
164  }
165
166
167  void cxios_set_file_enabled(file_Ptr file_hdl, bool enabled)
168  {
169    CTimer::get("XIOS").resume();
170    file_hdl->enabled.setValue(enabled);
171    CTimer::get("XIOS").suspend();
172  }
173
174  void cxios_get_file_enabled(file_Ptr file_hdl, bool* enabled)
175  {
176    CTimer::get("XIOS").resume();
177    *enabled = file_hdl->enabled.getInheritedValue();
178    CTimer::get("XIOS").suspend();
179  }
180
181  bool cxios_is_defined_file_enabled(file_Ptr file_hdl)
182  {
183     CTimer::get("XIOS").resume();
184     bool isDefined = file_hdl->enabled.hasInheritedValue();
185     CTimer::get("XIOS").suspend();
186     return isDefined;
187  }
188
189
190  void cxios_set_file_format(file_Ptr file_hdl, const char * format, int format_size)
191  {
192    std::string format_str;
193    if (!cstr2string(format, format_size, format_str)) return;
194    CTimer::get("XIOS").resume();
195    file_hdl->format.fromString(format_str);
196    CTimer::get("XIOS").suspend();
197  }
198
199  void cxios_get_file_format(file_Ptr file_hdl, char * format, int format_size)
200  {
201    CTimer::get("XIOS").resume();
202    if (!string_copy(file_hdl->format.getInheritedStringValue(), format, format_size))
203      ERROR("void cxios_get_file_format(file_Ptr file_hdl, char * format, int format_size)", << "Input string is too short");
204    CTimer::get("XIOS").suspend();
205  }
206
207  bool cxios_is_defined_file_format(file_Ptr file_hdl)
208  {
209     CTimer::get("XIOS").resume();
210     bool isDefined = file_hdl->format.hasInheritedValue();
211     CTimer::get("XIOS").suspend();
212     return isDefined;
213  }
214
215
216  void cxios_set_file_min_digits(file_Ptr file_hdl, int min_digits)
217  {
218    CTimer::get("XIOS").resume();
219    file_hdl->min_digits.setValue(min_digits);
220    CTimer::get("XIOS").suspend();
221  }
222
223  void cxios_get_file_min_digits(file_Ptr file_hdl, int* min_digits)
224  {
225    CTimer::get("XIOS").resume();
226    *min_digits = file_hdl->min_digits.getInheritedValue();
227    CTimer::get("XIOS").suspend();
228  }
229
230  bool cxios_is_defined_file_min_digits(file_Ptr file_hdl)
231  {
232     CTimer::get("XIOS").resume();
233     bool isDefined = file_hdl->min_digits.hasInheritedValue();
234     CTimer::get("XIOS").suspend();
235     return isDefined;
236  }
237
238
239  void cxios_set_file_mode(file_Ptr file_hdl, const char * mode, int mode_size)
240  {
241    std::string mode_str;
242    if (!cstr2string(mode, mode_size, mode_str)) return;
243    CTimer::get("XIOS").resume();
244    file_hdl->mode.fromString(mode_str);
245    CTimer::get("XIOS").suspend();
246  }
247
248  void cxios_get_file_mode(file_Ptr file_hdl, char * mode, int mode_size)
249  {
250    CTimer::get("XIOS").resume();
251    if (!string_copy(file_hdl->mode.getInheritedStringValue(), mode, mode_size))
252      ERROR("void cxios_get_file_mode(file_Ptr file_hdl, char * mode, int mode_size)", << "Input string is too short");
253    CTimer::get("XIOS").suspend();
254  }
255
256  bool cxios_is_defined_file_mode(file_Ptr file_hdl)
257  {
258     CTimer::get("XIOS").resume();
259     bool isDefined = file_hdl->mode.hasInheritedValue();
260     CTimer::get("XIOS").suspend();
261     return isDefined;
262  }
263
264
265  void cxios_set_file_name(file_Ptr file_hdl, const char * name, int name_size)
266  {
267    std::string name_str;
268    if (!cstr2string(name, name_size, name_str)) return;
269    CTimer::get("XIOS").resume();
270    file_hdl->name.setValue(name_str);
271    CTimer::get("XIOS").suspend();
272  }
273
274  void cxios_get_file_name(file_Ptr file_hdl, char * name, int name_size)
275  {
276    CTimer::get("XIOS").resume();
277    if (!string_copy(file_hdl->name.getInheritedValue(), name, name_size))
278      ERROR("void cxios_get_file_name(file_Ptr file_hdl, char * name, int name_size)", << "Input string is too short");
279    CTimer::get("XIOS").suspend();
280  }
281
282  bool cxios_is_defined_file_name(file_Ptr file_hdl)
283  {
284     CTimer::get("XIOS").resume();
285     bool isDefined = file_hdl->name.hasInheritedValue();
286     CTimer::get("XIOS").suspend();
287     return isDefined;
288  }
289
290
291  void cxios_set_file_name_suffix(file_Ptr file_hdl, const char * name_suffix, int name_suffix_size)
292  {
293    std::string name_suffix_str;
294    if (!cstr2string(name_suffix, name_suffix_size, name_suffix_str)) return;
295    CTimer::get("XIOS").resume();
296    file_hdl->name_suffix.setValue(name_suffix_str);
297    CTimer::get("XIOS").suspend();
298  }
299
300  void cxios_get_file_name_suffix(file_Ptr file_hdl, char * name_suffix, int name_suffix_size)
301  {
302    CTimer::get("XIOS").resume();
303    if (!string_copy(file_hdl->name_suffix.getInheritedValue(), name_suffix, name_suffix_size))
304      ERROR("void cxios_get_file_name_suffix(file_Ptr file_hdl, char * name_suffix, int name_suffix_size)", << "Input string is too short");
305    CTimer::get("XIOS").suspend();
306  }
307
308  bool cxios_is_defined_file_name_suffix(file_Ptr file_hdl)
309  {
310     CTimer::get("XIOS").resume();
311     bool isDefined = file_hdl->name_suffix.hasInheritedValue();
312     CTimer::get("XIOS").suspend();
313     return isDefined;
314  }
315
316
317  void cxios_set_file_output_freq(file_Ptr file_hdl, cxios_duration output_freq_c)
318  {
319    CTimer::get("XIOS").resume();
320    file_hdl->output_freq.allocate();
321    CDuration& output_freq = file_hdl->output_freq.get();
322    output_freq.year = output_freq_c.year;
323    output_freq.month = output_freq_c.month;
324    output_freq.day = output_freq_c.day;
325    output_freq.hour = output_freq_c.hour;
326    output_freq.minute = output_freq_c.minute;
327    output_freq.second = output_freq_c.second;
328    output_freq.timestep = output_freq_c.timestep;
329    CTimer::get("XIOS").suspend();
330  }
331
332  void cxios_get_file_output_freq(file_Ptr file_hdl, cxios_duration* output_freq_c)
333  {
334    CTimer::get("XIOS").resume();
335    CDuration output_freq = file_hdl->output_freq.getInheritedValue();
336    output_freq_c->year = output_freq.year;
337    output_freq_c->month = output_freq.month;
338    output_freq_c->day = output_freq.day;
339    output_freq_c->hour = output_freq.hour;
340    output_freq_c->minute = output_freq.minute;
341    output_freq_c->second = output_freq.second;
342    output_freq_c->timestep = output_freq.timestep;
343    CTimer::get("XIOS").suspend();
344  }
345
346  bool cxios_is_defined_file_output_freq(file_Ptr file_hdl)
347  {
348     CTimer::get("XIOS").resume();
349     bool isDefined = file_hdl->output_freq.hasInheritedValue();
350     CTimer::get("XIOS").suspend();
351     return isDefined;
352  }
353
354
355  void cxios_set_file_output_level(file_Ptr file_hdl, int output_level)
356  {
357    CTimer::get("XIOS").resume();
358    file_hdl->output_level.setValue(output_level);
359    CTimer::get("XIOS").suspend();
360  }
361
362  void cxios_get_file_output_level(file_Ptr file_hdl, int* output_level)
363  {
364    CTimer::get("XIOS").resume();
365    *output_level = file_hdl->output_level.getInheritedValue();
366    CTimer::get("XIOS").suspend();
367  }
368
369  bool cxios_is_defined_file_output_level(file_Ptr file_hdl)
370  {
371     CTimer::get("XIOS").resume();
372     bool isDefined = file_hdl->output_level.hasInheritedValue();
373     CTimer::get("XIOS").suspend();
374     return isDefined;
375  }
376
377
378  void cxios_set_file_par_access(file_Ptr file_hdl, const char * par_access, int par_access_size)
379  {
380    std::string par_access_str;
381    if (!cstr2string(par_access, par_access_size, par_access_str)) return;
382    CTimer::get("XIOS").resume();
383    file_hdl->par_access.fromString(par_access_str);
384    CTimer::get("XIOS").suspend();
385  }
386
387  void cxios_get_file_par_access(file_Ptr file_hdl, char * par_access, int par_access_size)
388  {
389    CTimer::get("XIOS").resume();
390    if (!string_copy(file_hdl->par_access.getInheritedStringValue(), par_access, par_access_size))
391      ERROR("void cxios_get_file_par_access(file_Ptr file_hdl, char * par_access, int par_access_size)", << "Input string is too short");
392    CTimer::get("XIOS").suspend();
393  }
394
395  bool cxios_is_defined_file_par_access(file_Ptr file_hdl)
396  {
397     CTimer::get("XIOS").resume();
398     bool isDefined = file_hdl->par_access.hasInheritedValue();
399     CTimer::get("XIOS").suspend();
400     return isDefined;
401  }
402
403
404  void cxios_set_file_record_offset(file_Ptr file_hdl, int record_offset)
405  {
406    CTimer::get("XIOS").resume();
407    file_hdl->record_offset.setValue(record_offset);
408    CTimer::get("XIOS").suspend();
409  }
410
411  void cxios_get_file_record_offset(file_Ptr file_hdl, int* record_offset)
412  {
413    CTimer::get("XIOS").resume();
414    *record_offset = file_hdl->record_offset.getInheritedValue();
415    CTimer::get("XIOS").suspend();
416  }
417
418  bool cxios_is_defined_file_record_offset(file_Ptr file_hdl)
419  {
420     CTimer::get("XIOS").resume();
421     bool isDefined = file_hdl->record_offset.hasInheritedValue();
422     CTimer::get("XIOS").suspend();
423     return isDefined;
424  }
425
426
427  void cxios_set_file_split_freq(file_Ptr file_hdl, cxios_duration split_freq_c)
428  {
429    CTimer::get("XIOS").resume();
430    file_hdl->split_freq.allocate();
431    CDuration& split_freq = file_hdl->split_freq.get();
432    split_freq.year = split_freq_c.year;
433    split_freq.month = split_freq_c.month;
434    split_freq.day = split_freq_c.day;
435    split_freq.hour = split_freq_c.hour;
436    split_freq.minute = split_freq_c.minute;
437    split_freq.second = split_freq_c.second;
438    split_freq.timestep = split_freq_c.timestep;
439    CTimer::get("XIOS").suspend();
440  }
441
442  void cxios_get_file_split_freq(file_Ptr file_hdl, cxios_duration* split_freq_c)
443  {
444    CTimer::get("XIOS").resume();
445    CDuration split_freq = file_hdl->split_freq.getInheritedValue();
446    split_freq_c->year = split_freq.year;
447    split_freq_c->month = split_freq.month;
448    split_freq_c->day = split_freq.day;
449    split_freq_c->hour = split_freq.hour;
450    split_freq_c->minute = split_freq.minute;
451    split_freq_c->second = split_freq.second;
452    split_freq_c->timestep = split_freq.timestep;
453    CTimer::get("XIOS").suspend();
454  }
455
456  bool cxios_is_defined_file_split_freq(file_Ptr file_hdl)
457  {
458     CTimer::get("XIOS").resume();
459     bool isDefined = file_hdl->split_freq.hasInheritedValue();
460     CTimer::get("XIOS").suspend();
461     return isDefined;
462  }
463
464
465  void cxios_set_file_split_freq_format(file_Ptr file_hdl, const char * split_freq_format, int split_freq_format_size)
466  {
467    std::string split_freq_format_str;
468    if (!cstr2string(split_freq_format, split_freq_format_size, split_freq_format_str)) return;
469    CTimer::get("XIOS").resume();
470    file_hdl->split_freq_format.setValue(split_freq_format_str);
471    CTimer::get("XIOS").suspend();
472  }
473
474  void cxios_get_file_split_freq_format(file_Ptr file_hdl, char * split_freq_format, int split_freq_format_size)
475  {
476    CTimer::get("XIOS").resume();
477    if (!string_copy(file_hdl->split_freq_format.getInheritedValue(), split_freq_format, split_freq_format_size))
478      ERROR("void cxios_get_file_split_freq_format(file_Ptr file_hdl, char * split_freq_format, int split_freq_format_size)", << "Input string is too short");
479    CTimer::get("XIOS").suspend();
480  }
481
482  bool cxios_is_defined_file_split_freq_format(file_Ptr file_hdl)
483  {
484     CTimer::get("XIOS").resume();
485     bool isDefined = file_hdl->split_freq_format.hasInheritedValue();
486     CTimer::get("XIOS").suspend();
487     return isDefined;
488  }
489
490
491  void cxios_set_file_sync_freq(file_Ptr file_hdl, cxios_duration sync_freq_c)
492  {
493    CTimer::get("XIOS").resume();
494    file_hdl->sync_freq.allocate();
495    CDuration& sync_freq = file_hdl->sync_freq.get();
496    sync_freq.year = sync_freq_c.year;
497    sync_freq.month = sync_freq_c.month;
498    sync_freq.day = sync_freq_c.day;
499    sync_freq.hour = sync_freq_c.hour;
500    sync_freq.minute = sync_freq_c.minute;
501    sync_freq.second = sync_freq_c.second;
502    sync_freq.timestep = sync_freq_c.timestep;
503    CTimer::get("XIOS").suspend();
504  }
505
506  void cxios_get_file_sync_freq(file_Ptr file_hdl, cxios_duration* sync_freq_c)
507  {
508    CTimer::get("XIOS").resume();
509    CDuration sync_freq = file_hdl->sync_freq.getInheritedValue();
510    sync_freq_c->year = sync_freq.year;
511    sync_freq_c->month = sync_freq.month;
512    sync_freq_c->day = sync_freq.day;
513    sync_freq_c->hour = sync_freq.hour;
514    sync_freq_c->minute = sync_freq.minute;
515    sync_freq_c->second = sync_freq.second;
516    sync_freq_c->timestep = sync_freq.timestep;
517    CTimer::get("XIOS").suspend();
518  }
519
520  bool cxios_is_defined_file_sync_freq(file_Ptr file_hdl)
521  {
522     CTimer::get("XIOS").resume();
523     bool isDefined = file_hdl->sync_freq.hasInheritedValue();
524     CTimer::get("XIOS").suspend();
525     return isDefined;
526  }
527
528
529  void cxios_set_file_time_counter(file_Ptr file_hdl, const char * time_counter, int time_counter_size)
530  {
531    std::string time_counter_str;
532    if (!cstr2string(time_counter, time_counter_size, time_counter_str)) return;
533    CTimer::get("XIOS").resume();
534    file_hdl->time_counter.fromString(time_counter_str);
535    CTimer::get("XIOS").suspend();
536  }
537
538  void cxios_get_file_time_counter(file_Ptr file_hdl, char * time_counter, int time_counter_size)
539  {
540    CTimer::get("XIOS").resume();
541    if (!string_copy(file_hdl->time_counter.getInheritedStringValue(), time_counter, time_counter_size))
542      ERROR("void cxios_get_file_time_counter(file_Ptr file_hdl, char * time_counter, int time_counter_size)", << "Input string is too short");
543    CTimer::get("XIOS").suspend();
544  }
545
546  bool cxios_is_defined_file_time_counter(file_Ptr file_hdl)
547  {
548     CTimer::get("XIOS").resume();
549     bool isDefined = file_hdl->time_counter.hasInheritedValue();
550     CTimer::get("XIOS").suspend();
551     return isDefined;
552  }
553
554
555  void cxios_set_file_time_counter_name(file_Ptr file_hdl, const char * time_counter_name, int time_counter_name_size)
556  {
557    std::string time_counter_name_str;
558    if (!cstr2string(time_counter_name, time_counter_name_size, time_counter_name_str)) return;
559    CTimer::get("XIOS").resume();
560    file_hdl->time_counter_name.setValue(time_counter_name_str);
561    CTimer::get("XIOS").suspend();
562  }
563
564  void cxios_get_file_time_counter_name(file_Ptr file_hdl, char * time_counter_name, int time_counter_name_size)
565  {
566    CTimer::get("XIOS").resume();
567    if (!string_copy(file_hdl->time_counter_name.getInheritedValue(), time_counter_name, time_counter_name_size))
568      ERROR("void cxios_get_file_time_counter_name(file_Ptr file_hdl, char * time_counter_name, int time_counter_name_size)", << "Input string is too short");
569    CTimer::get("XIOS").suspend();
570  }
571
572  bool cxios_is_defined_file_time_counter_name(file_Ptr file_hdl)
573  {
574     CTimer::get("XIOS").resume();
575     bool isDefined = file_hdl->time_counter_name.hasInheritedValue();
576     CTimer::get("XIOS").suspend();
577     return isDefined;
578  }
579
580
581  void cxios_set_file_time_stamp_format(file_Ptr file_hdl, const char * time_stamp_format, int time_stamp_format_size)
582  {
583    std::string time_stamp_format_str;
584    if (!cstr2string(time_stamp_format, time_stamp_format_size, time_stamp_format_str)) return;
585    CTimer::get("XIOS").resume();
586    file_hdl->time_stamp_format.setValue(time_stamp_format_str);
587    CTimer::get("XIOS").suspend();
588  }
589
590  void cxios_get_file_time_stamp_format(file_Ptr file_hdl, char * time_stamp_format, int time_stamp_format_size)
591  {
592    CTimer::get("XIOS").resume();
593    if (!string_copy(file_hdl->time_stamp_format.getInheritedValue(), time_stamp_format, time_stamp_format_size))
594      ERROR("void cxios_get_file_time_stamp_format(file_Ptr file_hdl, char * time_stamp_format, int time_stamp_format_size)", << "Input string is too short");
595    CTimer::get("XIOS").suspend();
596  }
597
598  bool cxios_is_defined_file_time_stamp_format(file_Ptr file_hdl)
599  {
600     CTimer::get("XIOS").resume();
601     bool isDefined = file_hdl->time_stamp_format.hasInheritedValue();
602     CTimer::get("XIOS").suspend();
603     return isDefined;
604  }
605
606
607  void cxios_set_file_time_stamp_name(file_Ptr file_hdl, const char * time_stamp_name, int time_stamp_name_size)
608  {
609    std::string time_stamp_name_str;
610    if (!cstr2string(time_stamp_name, time_stamp_name_size, time_stamp_name_str)) return;
611    CTimer::get("XIOS").resume();
612    file_hdl->time_stamp_name.setValue(time_stamp_name_str);
613    CTimer::get("XIOS").suspend();
614  }
615
616  void cxios_get_file_time_stamp_name(file_Ptr file_hdl, char * time_stamp_name, int time_stamp_name_size)
617  {
618    CTimer::get("XIOS").resume();
619    if (!string_copy(file_hdl->time_stamp_name.getInheritedValue(), time_stamp_name, time_stamp_name_size))
620      ERROR("void cxios_get_file_time_stamp_name(file_Ptr file_hdl, char * time_stamp_name, int time_stamp_name_size)", << "Input string is too short");
621    CTimer::get("XIOS").suspend();
622  }
623
624  bool cxios_is_defined_file_time_stamp_name(file_Ptr file_hdl)
625  {
626     CTimer::get("XIOS").resume();
627     bool isDefined = file_hdl->time_stamp_name.hasInheritedValue();
628     CTimer::get("XIOS").suspend();
629     return isDefined;
630  }
631
632
633  void cxios_set_file_time_units(file_Ptr file_hdl, const char * time_units, int time_units_size)
634  {
635    std::string time_units_str;
636    if (!cstr2string(time_units, time_units_size, time_units_str)) return;
637    CTimer::get("XIOS").resume();
638    file_hdl->time_units.fromString(time_units_str);
639    CTimer::get("XIOS").suspend();
640  }
641
642  void cxios_get_file_time_units(file_Ptr file_hdl, char * time_units, int time_units_size)
643  {
644    CTimer::get("XIOS").resume();
645    if (!string_copy(file_hdl->time_units.getInheritedStringValue(), time_units, time_units_size))
646      ERROR("void cxios_get_file_time_units(file_Ptr file_hdl, char * time_units, int time_units_size)", << "Input string is too short");
647    CTimer::get("XIOS").suspend();
648  }
649
650  bool cxios_is_defined_file_time_units(file_Ptr file_hdl)
651  {
652     CTimer::get("XIOS").resume();
653     bool isDefined = file_hdl->time_units.hasInheritedValue();
654     CTimer::get("XIOS").suspend();
655     return isDefined;
656  }
657
658
659  void cxios_set_file_timeseries(file_Ptr file_hdl, const char * timeseries, int timeseries_size)
660  {
661    std::string timeseries_str;
662    if (!cstr2string(timeseries, timeseries_size, timeseries_str)) return;
663    CTimer::get("XIOS").resume();
664    file_hdl->timeseries.fromString(timeseries_str);
665    CTimer::get("XIOS").suspend();
666  }
667
668  void cxios_get_file_timeseries(file_Ptr file_hdl, char * timeseries, int timeseries_size)
669  {
670    CTimer::get("XIOS").resume();
671    if (!string_copy(file_hdl->timeseries.getInheritedStringValue(), timeseries, timeseries_size))
672      ERROR("void cxios_get_file_timeseries(file_Ptr file_hdl, char * timeseries, int timeseries_size)", << "Input string is too short");
673    CTimer::get("XIOS").suspend();
674  }
675
676  bool cxios_is_defined_file_timeseries(file_Ptr file_hdl)
677  {
678     CTimer::get("XIOS").resume();
679     bool isDefined = file_hdl->timeseries.hasInheritedValue();
680     CTimer::get("XIOS").suspend();
681     return isDefined;
682  }
683
684
685  void cxios_set_file_ts_prefix(file_Ptr file_hdl, const char * ts_prefix, int ts_prefix_size)
686  {
687    std::string ts_prefix_str;
688    if (!cstr2string(ts_prefix, ts_prefix_size, ts_prefix_str)) return;
689    CTimer::get("XIOS").resume();
690    file_hdl->ts_prefix.setValue(ts_prefix_str);
691    CTimer::get("XIOS").suspend();
692  }
693
694  void cxios_get_file_ts_prefix(file_Ptr file_hdl, char * ts_prefix, int ts_prefix_size)
695  {
696    CTimer::get("XIOS").resume();
697    if (!string_copy(file_hdl->ts_prefix.getInheritedValue(), ts_prefix, ts_prefix_size))
698      ERROR("void cxios_get_file_ts_prefix(file_Ptr file_hdl, char * ts_prefix, int ts_prefix_size)", << "Input string is too short");
699    CTimer::get("XIOS").suspend();
700  }
701
702  bool cxios_is_defined_file_ts_prefix(file_Ptr file_hdl)
703  {
704     CTimer::get("XIOS").resume();
705     bool isDefined = file_hdl->ts_prefix.hasInheritedValue();
706     CTimer::get("XIOS").suspend();
707     return isDefined;
708  }
709
710
711  void cxios_set_file_type(file_Ptr file_hdl, const char * type, int type_size)
712  {
713    std::string type_str;
714    if (!cstr2string(type, type_size, type_str)) return;
715    CTimer::get("XIOS").resume();
716    file_hdl->type.fromString(type_str);
717    CTimer::get("XIOS").suspend();
718  }
719
720  void cxios_get_file_type(file_Ptr file_hdl, char * type, int type_size)
721  {
722    CTimer::get("XIOS").resume();
723    if (!string_copy(file_hdl->type.getInheritedStringValue(), type, type_size))
724      ERROR("void cxios_get_file_type(file_Ptr file_hdl, char * type, int type_size)", << "Input string is too short");
725    CTimer::get("XIOS").suspend();
726  }
727
728  bool cxios_is_defined_file_type(file_Ptr file_hdl)
729  {
730     CTimer::get("XIOS").resume();
731     bool isDefined = file_hdl->type.hasInheritedValue();
732     CTimer::get("XIOS").suspend();
733     return isDefined;
734  }
735
736
737  void cxios_set_file_uuid_format(file_Ptr file_hdl, const char * uuid_format, int uuid_format_size)
738  {
739    std::string uuid_format_str;
740    if (!cstr2string(uuid_format, uuid_format_size, uuid_format_str)) return;
741    CTimer::get("XIOS").resume();
742    file_hdl->uuid_format.setValue(uuid_format_str);
743    CTimer::get("XIOS").suspend();
744  }
745
746  void cxios_get_file_uuid_format(file_Ptr file_hdl, char * uuid_format, int uuid_format_size)
747  {
748    CTimer::get("XIOS").resume();
749    if (!string_copy(file_hdl->uuid_format.getInheritedValue(), uuid_format, uuid_format_size))
750      ERROR("void cxios_get_file_uuid_format(file_Ptr file_hdl, char * uuid_format, int uuid_format_size)", << "Input string is too short");
751    CTimer::get("XIOS").suspend();
752  }
753
754  bool cxios_is_defined_file_uuid_format(file_Ptr file_hdl)
755  {
756     CTimer::get("XIOS").resume();
757     bool isDefined = file_hdl->uuid_format.hasInheritedValue();
758     CTimer::get("XIOS").suspend();
759     return isDefined;
760  }
761
762
763  void cxios_set_file_uuid_name(file_Ptr file_hdl, const char * uuid_name, int uuid_name_size)
764  {
765    std::string uuid_name_str;
766    if (!cstr2string(uuid_name, uuid_name_size, uuid_name_str)) return;
767    CTimer::get("XIOS").resume();
768    file_hdl->uuid_name.setValue(uuid_name_str);
769    CTimer::get("XIOS").suspend();
770  }
771
772  void cxios_get_file_uuid_name(file_Ptr file_hdl, char * uuid_name, int uuid_name_size)
773  {
774    CTimer::get("XIOS").resume();
775    if (!string_copy(file_hdl->uuid_name.getInheritedValue(), uuid_name, uuid_name_size))
776      ERROR("void cxios_get_file_uuid_name(file_Ptr file_hdl, char * uuid_name, int uuid_name_size)", << "Input string is too short");
777    CTimer::get("XIOS").suspend();
778  }
779
780  bool cxios_is_defined_file_uuid_name(file_Ptr file_hdl)
781  {
782     CTimer::get("XIOS").resume();
783     bool isDefined = file_hdl->uuid_name.hasInheritedValue();
784     CTimer::get("XIOS").suspend();
785     return isDefined;
786  }
787}
Note: See TracBrowser for help on using the repository browser.