source: XIOS/trunk/src/io/netCdfInterface.cpp @ 759

Last change on this file since 759 was 686, checked in by rlacroix, 9 years ago

Use the NetCDF wrapper for inputs for better error checking.

  • 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
File size: 32.5 KB
Line 
1/*!
2   \file netCdfInterface.cpp
3   \author Ha NGUYEN
4   \date 08 Oct 2014
5   \since 03 Oct 2014
6
7   \brief Wrapper of netcdf functions.
8 */
9
10#include "netCdfInterface.hpp"
11#include "netCdfException.hpp"
12
13namespace xios
14{
15/*!
16This function creates a new netcdf file and return its id
17\param [in] fileName Name of the file
18\param [in] cMode create mode
19\param [in/out] ncId id of the created file
20\return Status code
21*/
22int CNetCdfInterface::create(const StdString& fileName, int cMode, int& ncId)
23{
24  int status = nc_create(fileName.c_str(), cMode, &ncId);
25  if (NC_NOERR != status)
26  {
27    StdString errormsg(nc_strerror(status));
28    StdStringStream sstr;
29    sstr << "Error when calling function: nc_create(fileName.c_str(), cMode, &ncId) " << std::endl
30         << errormsg << std::endl
31         << "Unable to create file, given its name: " << fileName
32         << "and its creation mode " << creationMode2String(cMode) << std::endl;
33    StdString e = sstr.str();
34    throw CNetCdfException(e);
35  }
36
37  return status;
38}
39
40/*!
41This function creates a new netcdf file on parallel file system
42\param [in] fileName Name of the file
43\param [in] cMode create mode
44\param [in] comm MPI communicator
45\param [in] info MPI information
46\param [in/out] ncId id of the created file
47\return Status code
48*/
49int CNetCdfInterface::createPar(const StdString& fileName, int cMode, MPI_Comm comm, MPI_Info info, int& ncId)
50{
51  int status = xios::nc_create_par(fileName.c_str(), cMode, comm, info, &ncId);
52  if (NC_NOERR != status)
53  {
54    StdString errormsg(nc_strerror(status));
55    StdStringStream sstr;
56    sstr << "Error when calling function: nc_create_par(fileName.c_str(), cMode, comm, info, &ncId) " << std::endl
57         << errormsg << std::endl
58         << "Unable to create file on parallel file system, given its name: " << std::endl
59         << "and its creation mode " << creationMode2String(cMode) << std::endl;
60    StdString e = sstr.str();
61    throw CNetCdfException(e);
62  }
63
64  return status;
65}
66
67/*!
68This function opens a netcdf file, given its name and open mode, return its id
69\param [in] fileName Name of the file
70\param [in] oMode open mode
71\param [in/out] ncId id of the opening file
72\return Status code
73*/
74int CNetCdfInterface::open(const StdString& fileName, int oMode, int& ncId)
75{
76  int status = nc_open(fileName.c_str(), oMode, &ncId);
77  if (NC_NOERR != status)
78  {
79    StdString errormsg(nc_strerror(status));
80    StdStringStream sstr;
81    sstr << "Error when calling function: nc_open(fileName.c_str(), oMode, &ncId) "<< std::endl
82         << errormsg << std::endl
83         << "Unable to open file, given its name: " << fileName
84         << "and its open mode " << openMode2String(oMode) << std::endl;
85    StdString e = sstr.str();
86    throw CNetCdfException(e);
87  }
88
89  return status;
90}
91
92
93/*!
94This function opens a new netcdf file on parallel file system
95\param [in] fileName Name of the file
96\param [in] oMode open mode
97\param [in] comm MPI communicator
98\param [in] info MPI information
99\param [in/out] ncId id of the opened file
100\return Status code
101*/
102int CNetCdfInterface::openPar(const StdString& fileName, int oMode, MPI_Comm comm, MPI_Info info, int& ncId)
103{
104  int status = xios::nc_open_par(fileName.c_str(), oMode, comm, info, &ncId);
105  if (NC_NOERR != status)
106  {
107    StdString errormsg(nc_strerror(status));
108    StdStringStream sstr;
109    sstr << "Error when calling function nc_open_par(fileName.c_str(), oMode, comm, info, &ncId) " << std::endl
110         << errormsg << std::endl
111         << "Unable to open file on parallel file system, given its name: " << fileName
112         << "and its open mode " << openMode2String(oMode) << std::endl;
113    StdString e = sstr.str();
114    throw CNetCdfException(e);
115  }
116
117  return status;
118}
119
120/*!
121This function closes a netcdf file, given its id
122\param [in] ncId id of the opening netcdf file
123\return Status code
124*/
125int CNetCdfInterface::close(int ncId)
126{
127  int status = nc_close(ncId);
128  if (NC_NOERR != status)
129  {
130    StdString errormsg(nc_strerror(status));
131    StdStringStream sstr;
132    sstr << "Error when calling function nc_close(ncId)" << std::endl
133         << errormsg << std::endl
134         << "Unable to close file, given its id: " << ncId << std::endl;
135    StdString e = sstr.str();
136    throw CNetCdfException(e);
137  }
138
139  return status;
140}
141
142/*!
143This function put a netcdf file into define mode, given its id
144\param [in] ncId id of the opening netcdf file to be put into define mode
145\return Status code
146*/
147int CNetCdfInterface::reDef(int ncId)
148{
149  int status = nc_redef(ncId);
150  if (NC_NOERR != status)
151  {
152    StdString errormsg(nc_strerror(status));
153    StdStringStream sstr;
154    sstr << "Error when calling function nc_redef(ncId)" << std::endl
155      << errormsg << std::endl
156      << "Unable to put this file into define mode given its id: " << ncId << std::endl;
157    StdString e = sstr.str();
158    throw CNetCdfException(e);
159  }
160
161  return status;
162}
163
164/*!
165This function ends a netcdf file define mode, given its id
166\param [in] ncId id of the opening netcdf file to be put into define mode
167\return Status code
168*/
169int CNetCdfInterface::endDef(int ncId)
170{
171  int status = nc_enddef(ncId);
172  if (NC_NOERR != status)
173  {
174    StdString errormsg(nc_strerror(status));
175    StdStringStream sstr;
176
177    sstr << "Error when calling function nc_enddef(ncId)" << std::endl
178         << errormsg << std::endl
179         << "Unable to end define mode of this file, given its id: " << ncId << std::endl;
180    StdString e = sstr.str();
181    throw CNetCdfException(e);
182  }
183
184  return status;
185}
186
187/*!
188This function makes a request to netcdf with ncid and group name then return ncid of the named group
189\param [in] ncid Groupd id (or File Id)
190\param [in] grpName Name of the desired group (or file)
191\param [in/out] grpId Group id if the group is found
192\return Status code
193*/
194int CNetCdfInterface::inqNcId(int ncid, const StdString& grpName, int& grpId)
195{
196  int status = nc_inq_ncid(ncid, grpName.c_str(), &grpId);
197  if (NC_NOERR != status)
198  {
199    StdString errormsg(nc_strerror(status));
200    StdStringStream sstr;
201
202    sstr << "Error when calling function nc_inq_ncid(ncid, grpName.c_str(), &grpId)" << std::endl
203         << errormsg << std::endl
204         << "Unable to get id of a group (File), given its name: " << grpName << std::endl;
205    StdString e = sstr.str();
206    throw CNetCdfException(e);
207  }
208
209  return status;
210}
211
212
213/*!
214This function makes a request to netcdf with ncid and variable name then return ncid of the named variable
215\param [in] ncid Groupd id (or File Id)
216\param [in] varName Name of the desired variable
217\param [in/out] varId Variable id if this variable is found
218\return Status code
219*/
220int CNetCdfInterface::inqVarId(int ncid, const StdString& varName, int& varId)
221{
222  int status = nc_inq_varid(ncid, varName.c_str(), &varId);
223  if (NC_NOERR != status)
224  {
225    StdString errormsg(nc_strerror(status));
226    StdStringStream sstr;
227
228    sstr << "Error when calling function: nc_inq_varid(ncid, varName.c_str(), &varId)" << std::endl
229         << (errormsg) << std::endl
230         << "Unable to get id of variable with name: " << varName << std::endl;
231    StdString e = sstr.str();
232    throw CNetCdfException(e);
233  }
234
235  return status;
236}
237
238/*!
239This function makes a request to netcdf with a netCdf dimension name then return ncid of the named dimension
240\param [in] ncid Groupd id (or File Id)
241\param [in] dimName Name of the desired dimension
242\param [in/out] dimId Dimension id if this dimension is found
243\return Status code
244*/
245int CNetCdfInterface::inqDimId(int ncid, const StdString& dimName, int& dimId)
246{
247  int status = nc_inq_dimid(ncid, dimName.c_str(), &dimId);
248  if (NC_NOERR != status)
249  {
250    StdString errormsg(nc_strerror(status));
251    StdStringStream sstr;
252
253    sstr << "Error when calling function nc_inq_dimid(ncid, dimName.c_str(), &dimId)" << std::endl
254         << errormsg << std::endl
255         << "Unable to get id of dimension, given its name: " << dimName << std::endl;
256    StdString e = sstr.str();
257    throw CNetCdfException(e);
258  }
259
260  return status;
261}
262
263/*!
264This function queries the name of a variable given its id.
265\param [in] ncid Groupd id (or File Id)
266\param [in] varId Id of desired variable
267\param [out] varName name of desired variable
268\return Status code
269*/
270int CNetCdfInterface::inqVarName(int ncid, int varId, StdString& varName)
271{
272  char varNameBuff[NC_MAX_NAME + 1];
273  int status = nc_inq_varname(ncid, varId, varNameBuff);
274  if (NC_NOERR != status)
275  {
276    StdString errormsg(nc_strerror(status));
277    StdStringStream sstr;
278
279    sstr << "Error when calling function nc_inq_varname(ncid, varId, varNameBuff)" << std::endl
280         << errormsg << std::endl
281         << "Unable to get variable name given its id: " << varId << std::endl;
282    StdString e = sstr.str();
283    throw CNetCdfException(e);
284  }
285  varName = varNameBuff;
286  return status;
287}
288
289/*!
290This function makes a request to netcdf with a netCdf dimension name then return ncid of the named dimension
291\param [in] ncid Groupd id (or File Id)
292\param [in/out] dimId Dimension id if this dimension is found
293\return Status code
294*/
295int CNetCdfInterface::inqUnLimDim(int ncid, int& dimId)
296{
297  int status = nc_inq_unlimdim(ncid, &dimId);
298  if (NC_NOERR != status)
299  {
300    StdString errormsg(nc_strerror(status));
301    StdStringStream sstr;
302
303    sstr << "Error when calling function nc_inq_dimid" << std::endl
304      << errormsg << std::endl
305      << "Unable to get id of unlimited dimension " << std::endl;
306    StdString e = sstr.str();
307    throw CNetCdfException(e);
308 }
309
310  return status;
311}
312
313/*!
314This function makes a request to netcdf, returns name of a dimension, given its id
315\param [in] ncid Groupd id (or File Id)
316\param [in] dimId Id of desired dimension
317\param [out] dimName Name of desired dimension
318\return Status code
319*/
320int CNetCdfInterface::inqDimName(int ncid, int dimId, StdString& dimName)
321{
322  char fullNameIn[NC_MAX_NAME + 1];
323  int status = nc_inq_dimname(ncid, dimId, fullNameIn);
324  if (NC_NOERR != status)
325  {
326    StdString errormsg(nc_strerror(status));
327    StdStringStream sstr;
328
329    sstr << "Error when calling function nc_inq_dimname(ncid, dimId, fullNameIn)" << std::endl
330         << errormsg << std::endl
331         << "Unable to get dimension name given its id: " << dimId << std::endl;
332    StdString e = sstr.str();
333    throw CNetCdfException(e);
334  }
335  dimName = StdString(fullNameIn);
336  return status;
337}
338
339/*!
340This function makes a request to netcdf, returns length of a dimension, given its id
341\param [in] ncid Groupd id (or File Id)
342\param [in] dimId Id of desired dimension
343\param [in/out] dimLen Length of desired dimension
344\return Status code
345*/
346int CNetCdfInterface::inqDimLen(int ncid, int dimId, StdSize& dimLen)
347{
348  int status = nc_inq_dimlen(ncid, dimId, &dimLen);
349  if (NC_NOERR != status)
350  {
351    StdString errormsg(nc_strerror(status));
352    StdStringStream sstr;
353
354    sstr << "Error when calling function nc_inq_dimlen(ncid, dimId, &dimLen)" << std::endl
355         << errormsg << std::endl
356         << "Unable to get dimension length given its id: " << dimId << std::endl;
357    StdString e = sstr.str();
358    throw CNetCdfException(e);
359  }
360
361  return status;
362}
363
364/*!
365This function makes a request to netcdf, returns number of dimensions of a variable, given its id
366\param [in] ncid Groupd id (or File Id)
367\param [in] varId Id of variable
368\param [in/out] ndims number of dimension of the variable
369\return Status code
370*/
371int CNetCdfInterface::inqVarNDims(int ncid, int varId, int& nDims)
372{
373  int status = nc_inq_varndims(ncid, varId, &nDims);
374  if (NC_NOERR != status)
375  {
376    StdString errormsg(nc_strerror(status));
377    StdStringStream sstr;
378
379    sstr << "Error when calling function nc_inq_varndims(ncid, varId, &nDims)" << std::endl
380         << errormsg << std::endl
381         << "Unable to get the number of dimension of variable with Id: " << varId << std::endl;
382    StdString e = sstr.str();
383    throw CNetCdfException(e);
384  }
385
386  return status;
387}
388
389/*!
390This function makes a request to netcdf, returns a list of dimension ID describing the shape of the variable, given its id
391\param [in] ncid Groupd id (or File Id)
392\param [in] varId Id of variable
393\param [in/out] dimIds list of dimension of the variable
394\return Status code
395*/
396int CNetCdfInterface::inqVarDimId(int ncid, int varId, int* dimIds)
397{
398  int status = nc_inq_vardimid(ncid, varId, dimIds);
399  if (NC_NOERR != status)
400  {
401    StdString errormsg(nc_strerror(status));
402    StdStringStream sstr;
403
404    sstr << "Error when calling function nc_inq_vardimid(ncid, varId, dimIds)" << std::endl
405         << errormsg << std::endl
406         << "Unable to get list of dimension id of the variable with id " << varId << std::endl;
407    StdString e = sstr.str();
408    throw CNetCdfException(e);
409  }
410
411  return status;
412}
413
414/*!
415This function makes a request to netcdf, to find all dimension in a group
416\param [in] ncid Groupd id (or File Id)
417\param [in/out] nDims number of list of dimension
418\param [in/out] dimIds list of dimension in a group or any of its parent
419\param [in] includeParents number of parents
420\return Status code
421*/
422int CNetCdfInterface::inqDimIds(int ncid, int& nDims, int* dimIds, int includeParents)
423{
424  int status = nc_inq_dimids(ncid, &nDims, dimIds, includeParents);
425  if (NC_NOERR != status)
426  {
427    StdString errormsg(nc_strerror(status));
428    StdStringStream sstr;
429
430    sstr << "Error when calling function nc_inq_dimids(ncid, &nDims, dimIds, includeParents)" << std::endl;
431    sstr << errormsg << std::endl;
432    sstr << "Unable to retrieve number of dimension in the group with id: " << ncid << std::endl;
433    sstr << "With number of Parents " << includeParents << std::endl;
434    StdString e = sstr.str();
435    throw CNetCdfException(e);
436  }
437
438  return status;
439}
440
441/*!
442This function queries the full name of a group given its id.
443\param [in] ncid Groupd id (or File Id)
444\param [in/out] grpFullName the full name of the group
445\return Status code
446*/
447int CNetCdfInterface::inqGrpFullName(int ncid, StdString& grpFullName)
448{
449  StdSize strlen = 0;
450  std::vector<char> buff;
451  int status = nc_inq_grpname_full(ncid, &strlen, NULL);
452  if (NC_NOERR == status)
453  {
454    buff.resize(strlen + 1);
455    status = nc_inq_grpname_full(ncid, NULL, &buff[0]);
456  }
457
458  if (NC_NOERR != status)
459  {
460    StdString errormsg(nc_strerror(status));
461    StdStringStream sstr;
462
463    sstr << "Error when calling function nc_inq_grpname_full(ncid, &strlen, &buff[0])" << std::endl
464         << errormsg << std::endl
465         << "Unable to get the full group name given its id: " << ncid << std::endl;
466    StdString e = sstr.str();
467    throw CNetCdfException(e);
468  }
469
470  grpFullName.assign(buff.begin(), buff.end());
471
472  return status;
473}
474
475/*!
476This function queries the list of group ids given a location id.
477\param [in] ncid Groupd id (or File Id)
478\param [in/out] numgrps number of groups
479\param [in/out] ncids list of group ids
480\return Status code
481*/
482int CNetCdfInterface::inqGrpIds(int ncid, int& numgrps, int* ncids)
483{
484  int status = nc_inq_grps(ncid, &numgrps, ncids);
485  if (NC_NOERR != status)
486  {
487    StdString errormsg(nc_strerror(status));
488    StdStringStream sstr;
489
490    sstr << "Error when calling function nc_inq_grps(ncid, &numgrps, ncids)" << std::endl;
491    sstr << errormsg << std::endl;
492    sstr << "Unable to retrieve the list of groups for location id: " << ncid << std::endl;
493    StdString e = sstr.str();
494    throw CNetCdfException(e);
495  }
496
497  return status;
498}
499
500/*!
501This function queries the list of variable ids given a location id.
502\param [in] ncid Groupd id (or File Id)
503\param [in/out] nvars number of variables
504\param [in/out] varids list of variable ids
505\return Status code
506*/
507int CNetCdfInterface::inqVarIds(int ncid, int& nvars, int* varids)
508{
509  int status = nc_inq_varids(ncid, &nvars, varids);
510  if (NC_NOERR != status)
511  {
512    StdString errormsg(nc_strerror(status));
513    StdStringStream sstr;
514
515    sstr << "Error when calling function nc_inq_varids(ncid, &nvars, varids)" << std::endl;
516    sstr << errormsg << std::endl;
517    sstr << "Unable to retrieve the list of variables for location id: " << ncid << std::endl;
518    StdString e = sstr.str();
519    throw CNetCdfException(e);
520  }
521
522  return status;
523}
524
525/*!
526This function queries the type and the size of an attribute given its name and the id of the variable to which it is attached.
527\param [in] ncid Groupd id (or File Id)
528\param [in] varid the id of the variable to which the attribute is attached
529\param [in] name the name of the attribute
530\param [out] type the type of the attribute
531\param [out] len the size of the attribute
532\return Status code
533*/
534int CNetCdfInterface::inqAtt(int ncid, int varid, const StdString& name, nc_type& type, size_t& len)
535{
536  int status = nc_inq_att(ncid, varid, name.c_str(), &type, &len);
537  if (NC_NOERR != status)
538  {
539    StdString errormsg(nc_strerror(status));
540    StdStringStream sstr;
541
542    sstr << "Error when calling function nc_inq_att(ncid, varid, name.c_str(), &type, &len)" << std::endl;
543    sstr << errormsg << std::endl;
544    sstr << "Unable to query the attribute information given its name: " << name << " and its variable id:" << varid << std::endl;
545    StdString e = sstr.str();
546    throw CNetCdfException(e);
547  }
548
549  return status;
550}
551
552/*!
553This function queries the number of global attributes given a location id.
554\param [in] ncid Groupd id (or File Id)
555\param [out] ngatts the number of global attributes
556\return Status code
557*/
558int CNetCdfInterface::inqNAtts(int ncid, int& ngatts)
559{
560  int status = nc_inq_natts(ncid, &ngatts);
561  if (NC_NOERR != status)
562  {
563    StdString errormsg(nc_strerror(status));
564    StdStringStream sstr;
565
566    sstr << "Error when calling function nc_inq_natts(ncid, &ngatts)" << std::endl;
567    sstr << errormsg << std::endl;
568    sstr << "Unable to query the number of global attributes given the location id:" << ncid << std::endl;
569    StdString e = sstr.str();
570    throw CNetCdfException(e);
571  }
572
573  return status;
574}
575
576/*!
577This function queries the number of global attributes given a location id and a variable id.
578\param [in] ncid Groupd id (or File Id)
579\param [in] varid the id of the variable
580\param [out] natts the number of global attributes
581\return Status code
582*/
583int CNetCdfInterface::inqVarNAtts(int ncid, int varid, int& natts)
584{
585  int status = nc_inq_varnatts(ncid, varid, &natts);
586  if (NC_NOERR != status)
587  {
588    StdString errormsg(nc_strerror(status));
589    StdStringStream sstr;
590
591    sstr << "Error when calling function nc_inq_varnatts(ncid, varid, &natts)" << std::endl;
592    sstr << errormsg << std::endl;
593    sstr << "Unable to query the number of attributes given the location id:" << ncid << " and the variable id:" << varid << std::endl;
594    StdString e = sstr.str();
595    throw CNetCdfException(e);
596  }
597
598  return status;
599}
600
601
602//! Query the name of an attribute given a location id, a variable id and the attribute number
603int CNetCdfInterface::inqAttName(int ncid, int varid, int attnum, StdString& name)
604{
605  char attName[NC_MAX_NAME + 1];
606  int status = nc_inq_attname(ncid, varid, attnum, attName);
607  if (NC_NOERR != status)
608  {
609    StdString errormsg(nc_strerror(status));
610    StdStringStream sstr;
611
612    sstr << "Error when calling function nc_inq_attname(ncid, varid, attnum, attName)" << std::endl;
613    sstr << errormsg << std::endl;
614    sstr << "Unable to query the name of attribute " << attnum << " given the location id:" << ncid << " and the variable id:" << varid << std::endl;
615    StdString e = sstr.str();
616    throw CNetCdfException(e);
617  }
618
619  return status;
620}
621
622/*!
623This function makes a request to netcdf with a id of a prent groupd and then return id of the created group, given its name
624\param [in] parentNcid Id of parent groupd(or File Id)
625\param [in] grpName Name of the desired group
626\param [in/out] grpId Group id if this group is created sucessfully
627\return Status code
628*/
629int CNetCdfInterface::defGrp(int parentNcid, const StdString& grpName, int& grpId)
630{
631  int status = nc_def_grp(parentNcid, grpName.c_str(), &grpId);
632  if (NC_NOERR != status)
633  {
634    StdString errormsg(nc_strerror(status));
635    StdStringStream sstr;
636
637    sstr << "Error when calling function nc_def_grp(parentNcid, grpName.c_str(), &grpId)" << std::endl;
638    sstr << errormsg << std::endl;
639    sstr << "Unable to create group Id, given its name: " << grpName << std::endl;
640    StdString e = sstr.str();
641    throw CNetCdfException(e);
642  }
643
644  return status;
645}
646
647/*!
648This function makes a request to netcdf, add a new dimension to an open netcdf in define mode
649\param [in] ncid Id of groupd(or File Id)
650\param [in] dimName Name of the desired dimension
651\param [in/out] grpId Group id if this group is created sucessfully
652\return Status code
653*/
654int CNetCdfInterface::defDim(int ncid, const StdString& dimName, StdSize dimLen, int& dimId)
655{
656  int status = nc_def_dim(ncid, dimName.c_str(), dimLen, &dimId);
657  if (NC_NOERR != status)
658  {
659    StdString errormsg(nc_strerror(status));
660    StdStringStream sstr;
661
662    sstr << "Error when calling function nc_def_dim(ncid, dimName.c_str(), dimLen, &dimId)" << std::endl;
663    sstr << errormsg << std::endl;
664    sstr << "Unable to create dimension with name: " << dimName
665         << " and with length " << dimLen << std::endl;
666    StdString e = sstr.str();
667    throw CNetCdfException(e);
668  }
669
670  return status;
671}
672
673/*!
674This function makes a request to netcdf with its id, to add a new variable to an open netCdf in define mode,
675return a variable id, given its name, type, the number of dimensions and list of dimension id
676\param [in] ncid Id of groupd(or File Id)
677\param [in] varName Name of the desired dimension
678\param [in] xtypes One of the set of predefined netCDF data types
679\param [in] nDims Number of dimension for the variable
680\param [in] dimIds List of ndims dimension ids corresponding to the variable dimensions
681\param [in/out] varId Variable id if it is added sucessfully
682\return Status code
683*/
684int CNetCdfInterface::defVar(int ncid, const StdString& varName, nc_type xtype,
685                             int nDims, const int dimIds[], int& varId)
686{
687  int status = nc_def_var(ncid, varName.c_str(), xtype, nDims, dimIds, &varId);
688  if (NC_NOERR != status)
689  {
690    StdString errormsg(nc_strerror(status));
691    StdStringStream sstr;
692
693    sstr << "Error when calling function  nc_def_var(ncid, varName.c_str(), xtype, nDims, dimIds, &varId)" << std::endl;
694    sstr << errormsg << std::endl;
695    sstr << "Unable to add a new variable with name: " << varName
696         << " with type " << xtype
697         << " and number of dimension " << nDims << std::endl;
698    StdString e = sstr.str();
699    throw CNetCdfException(e);
700  }
701
702  return status;
703}
704
705/*!
706This function makes a request to netcdf with a ncid, to set the chunking size of a variable,
707given variable id and type of storage
708\param [in] ncid Id groupd(or File Id)
709\param [in] varId Id of the variable
710\param [in] storage Type of storage (It can be: NC_CONTIGUOUS, NC_CHUNKED)
711\param [in/out] chunkSize array list of chunk sizes
712\return Status code
713*/
714int CNetCdfInterface::defVarChunking(int ncid, int varId, int storage, StdSize chunkSize[])
715{
716  int status = nc_def_var_chunking(ncid, varId, storage, chunkSize);
717  if (NC_NOERR != status)
718  {
719    StdString errormsg(nc_strerror(status));
720    StdStringStream sstr;
721
722    sstr << "Error when calling function nc_def_var_chunking(ncid, varId, storage, chunkSize)" << std::endl;
723    sstr << errormsg << std::endl;
724    sstr << "Unable to set chunk size of the variable with id: " << varId
725      << " and storage type " << storage << std::endl;
726    StdString e = sstr.str();
727    throw CNetCdfException(e);
728  }
729
730  return status;
731}
732
733/*!
734This function sets the compression level to the specified variable
735\param [in] ncid Groud id (or file id)
736\param [in] varId Id of the variable
737\param [in] compressionLevel The compression level from 0 to 9 (0 disables the compression, 9 is the higher compression)
738\return Status code
739*/
740int CNetCdfInterface::defVarDeflate(int ncid, int varId, int compressionLevel)
741{
742  int status = nc_def_var_deflate(ncid, varId, false, (compressionLevel > 0), compressionLevel);
743  if (NC_NOERR != status)
744  {
745    StdString errormsg(nc_strerror(status));
746    StdStringStream sstr;
747
748    sstr << "Error when calling function nc_def_var_deflate(ncid, varId, false, (compressionLevel > 0), compressionLevel)" << std::endl;
749    sstr << errormsg << std::endl;
750    sstr << "Unable to set the compression level of the variable with id: " << varId
751         << " and compression level: " << compressionLevel << std::endl;
752    StdString e = sstr.str();
753    throw CNetCdfException(e);
754  }
755
756  return status;
757}
758
759/*!
760Set or unset the fill mode for a NetCDF file specified by its file id.
761\param [in] ncid File id
762\param [in] fill Define whether the fill mode should be enabled or not
763\return Status code
764*/
765int CNetCdfInterface::setFill(int ncid, bool fill)
766{
767  int old_fill_mode;
768  int status = nc_set_fill(ncid, fill ? NC_FILL: NC_NOFILL, &old_fill_mode);
769  if (NC_NOERR != status)
770  {
771    StdString errormsg(nc_strerror(status));
772    StdStringStream sstr;
773
774    sstr << "Error when calling function nc_set_fill(ncid, fill ? NC_FILL: NC_NOFILL, &old_fill_mode)" << std::endl;
775    sstr << errormsg << std::endl;
776    sstr << "Unable to set the fill mode to: " << (fill ? "NC_FILL": "NC_NOFILL") << std::endl;
777    StdString e = sstr.str();
778    throw CNetCdfException(e);
779  }
780
781  return status;
782}
783
784/*!
785This function makes a request to netcdf with a ncid, to set the fill parameters for a variable,
786given variable id and type of fill
787\param [in] ncid Id groupd(or File Id)
788\param [in] varId Id of the variable
789\param [in] noFill turn on/off nofill mode on a variable
790\param [in/out] fillValue
791\return Status code
792*/
793int CNetCdfInterface::defVarFill(int ncid, int varId, int noFill, void* fillValue)
794{
795  int status = nc_def_var_fill(ncid, varId, noFill, fillValue);
796  if (NC_NOERR != status)
797  {
798    StdString errormsg(nc_strerror(status));
799    StdStringStream sstr;
800
801    sstr << "Error when calling function nc_def_var_fill(ncid, varId, noFill, fillValue)" << std::endl;
802    sstr << errormsg << std::endl;
803    sstr << "Unable to set fill parameters of the variable with id: " << varId
804      << " and fill option " << noFill << std::endl;
805    StdString e = sstr.str();
806    throw CNetCdfException(e);
807  }
808
809  return status;
810}
811
812/*!
813This function makes a request to netcdf with a ncid, to change the way read/write operations are performed
814collectively or independently on the variable.
815\param [in] ncid Id groupd(or File Id)
816\param [in] varId Id of the variable
817\param [in] noFill turn on/off nofill mode on a variable
818\param [in/out] fillValue
819\return Status code
820*/
821int CNetCdfInterface::varParAccess(int ncid, int varId, int access)
822{
823  int status = nc_var_par_access(ncid, varId, access);
824  if (NC_NOERR != status)
825  {
826    StdString errormsg(nc_strerror(status));
827    StdStringStream sstr;
828
829    sstr << "Error when calling function nc_var_par_access(ncid, varId, access)" << std::endl;
830    sstr << errormsg << std::endl;
831    sstr << "Unable to change read/write option of the variable with id: " << varId << std::endl;
832    StdString e = sstr.str();
833    throw CNetCdfException(e);
834  }
835
836  return status;
837}
838
839/*!
840This function makes a synchronisation of the disk copy of a netCDF dataset.
841\param [in] ncid Id groupd(or File Id)
842\return Status code
843*/
844int CNetCdfInterface::sync(int ncid)
845{
846  int status = nc_sync(ncid);
847  if (NC_NOERR != status)
848  {
849    StdString errormsg(nc_strerror(status));
850    StdStringStream sstr;
851
852    sstr << "Error when calling function nc_sync(ncid)" << std::endl;
853    sstr << errormsg << std::endl;
854    sstr << "Unable to make a synchronization of a netCDF file with id: " << ncid << std::endl;
855    StdString e = sstr.str();
856    throw CNetCdfException(e);
857  }
858
859  return status;
860}
861
862// Some specializations of getAttributeType
863template<>
864int CNetCdfInterface::ncGetAttType(int ncid, int varid, const char* attrName, double* data)
865{
866  return nc_get_att_double(ncid, varid, attrName, data);
867}
868
869template<>
870int CNetCdfInterface::ncGetAttType(int ncid, int varid, const char* attrName, float* data)
871{
872  return nc_get_att_float(ncid, varid, attrName, data);
873}
874
875template<>
876int CNetCdfInterface::ncGetAttType(int ncid, int varid, const char* attrName, int* data)
877{
878  return nc_get_att_int(ncid, varid, attrName, data);
879}
880
881template<>
882int CNetCdfInterface::ncGetAttType(int ncid, int varid, const char* attrName, long* data)
883{
884  return nc_get_att_long(ncid, varid, attrName, data);
885}
886
887template<>
888int CNetCdfInterface::ncGetAttType(int ncid, int varid, const char* attrName, short* data)
889{
890  return nc_get_att_short(ncid, varid, attrName, data);
891}
892
893template<>
894int CNetCdfInterface::ncGetAttType(int ncid, int varid, const char* attrName, char* data)
895{
896  return nc_get_att_text(ncid, varid, attrName, data);
897}
898
899// Some specializations of putAttributeType
900template<>
901int CNetCdfInterface::ncPutAttType(int ncid, int varid, const char* attrName,
902                                   StdSize numVal, const double* data)
903{
904  return nc_put_att_double(ncid, varid, attrName, NC_DOUBLE, numVal, data);
905}
906
907template<>
908int CNetCdfInterface::ncPutAttType(int ncid, int varid, const char* attrName,
909                                   StdSize numVal, const float* data)
910{
911  return nc_put_att_float(ncid, varid, attrName, NC_FLOAT, numVal, data);
912}
913
914template<>
915int CNetCdfInterface::ncPutAttType(int ncid, int varid, const char* attrName,
916                                   StdSize numVal, const int* data)
917{
918  return nc_put_att_int(ncid, varid, attrName, NC_INT, numVal, data);
919}
920
921template<>
922int CNetCdfInterface::ncPutAttType(int ncid, int varid, const char* attrName,
923                                   StdSize numVal, const long* data)
924{
925  return nc_put_att_long(ncid, varid, attrName, NC_LONG, numVal, data);
926}
927
928template<>
929int CNetCdfInterface::ncPutAttType(int ncid, int varid, const char* attrName,
930                                   StdSize numVal, const short* data)
931{
932  return nc_put_att_short(ncid, varid, attrName, NC_SHORT, numVal, data);
933}
934
935template<>
936int CNetCdfInterface::ncPutAttType(int ncid, int varid, const char* attrName,
937                                   StdSize numVal, const char* data)
938{
939  return nc_put_att_text(ncid, varid, attrName, numVal, data);
940}
941
942// Some specializations of getVariableType
943template<>
944int CNetCdfInterface::ncGetVaraType(int ncid, int varid, const StdSize* start, const StdSize* count, double* data)
945{
946  return nc_get_vara_double(ncid, varid, start, count, data);
947}
948
949template<>
950int CNetCdfInterface::ncGetVaraType(int ncid, int varid, const StdSize* start, const StdSize* count, float* data)
951{
952  return nc_get_vara_float(ncid, varid, start, count, data);
953}
954
955template<>
956int CNetCdfInterface::ncGetVaraType(int ncid, int varid, const StdSize* start, const StdSize* count, int* data)
957{
958  return nc_get_vara_int(ncid, varid, start, count, data);
959}
960
961// Some specializations of putVariableType
962template<>
963int CNetCdfInterface::ncPutVaraType(int ncid, int varid, const StdSize* start, const StdSize* count, const double* data)
964{
965  return nc_put_vara_double(ncid, varid, start, count, data);
966}
967
968template<>
969int CNetCdfInterface::ncPutVaraType(int ncid, int varid, const StdSize* start, const StdSize* count, const float* data)
970{
971  return nc_put_vara_float(ncid, varid, start, count, data);
972}
973
974template<>
975int CNetCdfInterface::ncPutVaraType(int ncid, int varid, const StdSize* start, const StdSize* count, const int* data)
976{
977  return nc_put_vara_int(ncid, varid, start, count, data);
978}
979
980 /*!
981 This function verifies an existence of a variable by using its name.
982 Be careful, althoug false means variable doens't exist, it could show that netCDF file doesn't either
983 \param [in] ncid Id of groupd(or File Id)
984 \param [in] attrName Name of the variable
985 \return Existence of variable
986 */
987bool CNetCdfInterface::isVarExisted(int ncId, const StdString& varName)
988{
989   int varId = 0;
990   return (NC_NOERR == (nc_inq_varid(ncId, varName.c_str(), &varId)));
991}
992
993StdString CNetCdfInterface::openMode2String(int oMode)
994{
995  StdString modeMes;
996  switch (oMode)
997  {
998  case NC_NOWRITE:
999    modeMes = StdString("NC_NOWRITE: Opening netCDF file with read-only access with buffering and caching access");
1000    break;
1001  case NC_SHARE:
1002    modeMes = StdString("NC_SHARE: Several processes can read the file concurrently");
1003    break;
1004  case NC_WRITE:
1005    modeMes = StdString("NC_WRITE: NetCDF file is readable and writable");
1006    break;
1007  default:
1008    modeMes = StdString("In the composed opening mode");
1009    break;
1010  }
1011  return modeMes;
1012}
1013
1014StdString CNetCdfInterface::creationMode2String(int cMode)
1015{
1016  StdString modeMes;
1017  switch (cMode)
1018  {
1019  case NC_NOCLOBBER:
1020    modeMes = StdString("NC_NOCLOBBER: Not overwrite an exisiting netCDF file ");
1021    break;
1022  case NC_SHARE:
1023    modeMes = StdString("NC_SHARE: Several processes can read from and write into the file concurrently");
1024    break;
1025  case NC_64BIT_OFFSET:
1026    modeMes = StdString("NC_64BIT_OFFSET: NetCDF file is 64-bit offset");
1027    break;
1028  case NC_NETCDF4:
1029    modeMes = StdString("NC_NETCDF4: NetCDF file is HDF5/NetCDF-4");
1030    break;
1031  case NC_CLASSIC_MODEL:
1032    modeMes = StdString("NC_CLASSIC_MODEL: NetCDF file is classical model");
1033    break;
1034  default:
1035    modeMes = StdString("In the composed creation mode");
1036    break;
1037  }
1038  return modeMes;
1039}
1040
1041}
Note: See TracBrowser for help on using the repository browser.