[1492] | 1 | /* ************************************************************************** * |
---|
| 2 | * Copyright © IPSL/LSCE, xios, Avril 2010 - Octobre 2011 * |
---|
| 3 | * ************************************************************************** */ |
---|
| 4 | |
---|
| 5 | #include <boost/multi_array.hpp> |
---|
| 6 | |
---|
[1542] | 7 | #include <memory> |
---|
| 8 | |
---|
[1492] | 9 | #include "xios.hpp" |
---|
| 10 | |
---|
| 11 | #include "object_template.hpp" |
---|
| 12 | #include "group_template.hpp" |
---|
| 13 | #include "attribute_template.hpp" |
---|
| 14 | |
---|
| 15 | #include "icutil.hpp" |
---|
| 16 | #include "timer.hpp" |
---|
| 17 | #include "temporal_splitting.hpp" |
---|
| 18 | |
---|
| 19 | extern "C" |
---|
| 20 | { |
---|
| 21 | // /////////////////////////////// Définitions ////////////////////////////// // |
---|
| 22 | |
---|
| 23 | // ----------------------- Redéfinition de types ---------------------------- |
---|
| 24 | |
---|
| 25 | typedef xios::CTemporalSplitting * XTemporalSplittingPtr; |
---|
| 26 | |
---|
| 27 | // ------------------------ Création des handle ----------------------------- |
---|
| 28 | void cxios_temporal_splitting_handle_create(XTemporalSplittingPtr * _ret, const char * _id, int _id_len) |
---|
[1622] | 29 | TRY |
---|
[1492] | 30 | { |
---|
| 31 | std::string id; |
---|
| 32 | if (!cstr2string(_id, _id_len, id)) return; |
---|
| 33 | CTimer::get("XIOS").resume() ; |
---|
| 34 | *_ret = xios::CTemporalSplitting::get(id); |
---|
| 35 | CTimer::get("XIOS").suspend() ; |
---|
| 36 | } |
---|
[1622] | 37 | CATCH_DUMP_STACK |
---|
[1492] | 38 | |
---|
| 39 | // -------------------- Vérification des identifiants ----------------------- |
---|
| 40 | void cxios_temporal_splitting_valid_id(bool * _ret, const char * _id, int _id_len) |
---|
[1622] | 41 | TRY |
---|
[1492] | 42 | { |
---|
| 43 | std::string id; |
---|
| 44 | if (!cstr2string(_id, _id_len, id)) return; |
---|
| 45 | |
---|
| 46 | CTimer::get("XIOS").resume() ; |
---|
| 47 | *_ret = xios::CTemporalSplitting::has(id); |
---|
| 48 | CTimer::get("XIOS").suspend() ; |
---|
| 49 | } |
---|
[1622] | 50 | CATCH_DUMP_STACK |
---|
[1492] | 51 | |
---|
| 52 | } // extern "C" |
---|