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

Last change on this file since 782 was 782, checked in by mhnguyen, 8 years ago

Reading attributes of curvilinear grid from file

+) Correct some minor bugs detecting type of grid
+) Use constant string for attributes conforming to CF convention
+) Add part of code to read attributes of curvilinear grid

Test
+) On Curie
+) test_remap passes

  • 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.7 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  std::vector<char> attName(NC_MAX_NAME + 1,' ');
606  int status = nc_inq_attname(ncid, varid, attnum, &attName[0]);
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  int nameSize = 0;
620  while ((nameSize < NC_MAX_NAME) && (' ' != attName[nameSize] )) ++nameSize;
621  name.resize(nameSize);
622//  for (int idx = 0; idx < nameSize; ++idx) name.at(idx) = attName[idx];
623  std::copy(&attName[0], &attName[nameSize-1], name.begin());
624
625  return status;
626}
627
628/*!
629This function makes a request to netcdf with a id of a prent groupd and then return id of the created group, given its name
630\param [in] parentNcid Id of parent groupd(or File Id)
631\param [in] grpName Name of the desired group
632\param [in/out] grpId Group id if this group is created sucessfully
633\return Status code
634*/
635int CNetCdfInterface::defGrp(int parentNcid, const StdString& grpName, int& grpId)
636{
637  int status = nc_def_grp(parentNcid, grpName.c_str(), &grpId);
638  if (NC_NOERR != status)
639  {
640    StdString errormsg(nc_strerror(status));
641    StdStringStream sstr;
642
643    sstr << "Error when calling function nc_def_grp(parentNcid, grpName.c_str(), &grpId)" << std::endl;
644    sstr << errormsg << std::endl;
645    sstr << "Unable to create group Id, given its name: " << grpName << std::endl;
646    StdString e = sstr.str();
647    throw CNetCdfException(e);
648  }
649
650  return status;
651}
652
653/*!
654This function makes a request to netcdf, add a new dimension to an open netcdf in define mode
655\param [in] ncid Id of groupd(or File Id)
656\param [in] dimName Name of the desired dimension
657\param [in/out] grpId Group id if this group is created sucessfully
658\return Status code
659*/
660int CNetCdfInterface::defDim(int ncid, const StdString& dimName, StdSize dimLen, int& dimId)
661{
662  int status = nc_def_dim(ncid, dimName.c_str(), dimLen, &dimId);
663  if (NC_NOERR != status)
664  {
665    StdString errormsg(nc_strerror(status));
666    StdStringStream sstr;
667
668    sstr << "Error when calling function nc_def_dim(ncid, dimName.c_str(), dimLen, &dimId)" << std::endl;
669    sstr << errormsg << std::endl;
670    sstr << "Unable to create dimension with name: " << dimName
671         << " and with length " << dimLen << std::endl;
672    StdString e = sstr.str();
673    throw CNetCdfException(e);
674  }
675
676  return status;
677}
678
679/*!
680This function makes a request to netcdf with its id, to add a new variable to an open netCdf in define mode,
681return a variable id, given its name, type, the number of dimensions and list of dimension id
682\param [in] ncid Id of groupd(or File Id)
683\param [in] varName Name of the desired dimension
684\param [in] xtypes One of the set of predefined netCDF data types
685\param [in] nDims Number of dimension for the variable
686\param [in] dimIds List of ndims dimension ids corresponding to the variable dimensions
687\param [in/out] varId Variable id if it is added sucessfully
688\return Status code
689*/
690int CNetCdfInterface::defVar(int ncid, const StdString& varName, nc_type xtype,
691                             int nDims, const int dimIds[], int& varId)
692{
693  int status = nc_def_var(ncid, varName.c_str(), xtype, nDims, dimIds, &varId);
694  if (NC_NOERR != status)
695  {
696    StdString errormsg(nc_strerror(status));
697    StdStringStream sstr;
698
699    sstr << "Error when calling function  nc_def_var(ncid, varName.c_str(), xtype, nDims, dimIds, &varId)" << std::endl;
700    sstr << errormsg << std::endl;
701    sstr << "Unable to add a new variable with name: " << varName
702         << " with type " << xtype
703         << " and number of dimension " << nDims << std::endl;
704    StdString e = sstr.str();
705    throw CNetCdfException(e);
706  }
707
708  return status;
709}
710
711/*!
712This function makes a request to netcdf with a ncid, to set the chunking size of a variable,
713given variable id and type of storage
714\param [in] ncid Id groupd(or File Id)
715\param [in] varId Id of the variable
716\param [in] storage Type of storage (It can be: NC_CONTIGUOUS, NC_CHUNKED)
717\param [in/out] chunkSize array list of chunk sizes
718\return Status code
719*/
720int CNetCdfInterface::defVarChunking(int ncid, int varId, int storage, StdSize chunkSize[])
721{
722  int status = nc_def_var_chunking(ncid, varId, storage, chunkSize);
723  if (NC_NOERR != status)
724  {
725    StdString errormsg(nc_strerror(status));
726    StdStringStream sstr;
727
728    sstr << "Error when calling function nc_def_var_chunking(ncid, varId, storage, chunkSize)" << std::endl;
729    sstr << errormsg << std::endl;
730    sstr << "Unable to set chunk size of the variable with id: " << varId
731      << " and storage type " << storage << std::endl;
732    StdString e = sstr.str();
733    throw CNetCdfException(e);
734  }
735
736  return status;
737}
738
739/*!
740This function sets the compression level to the specified variable
741\param [in] ncid Groud id (or file id)
742\param [in] varId Id of the variable
743\param [in] compressionLevel The compression level from 0 to 9 (0 disables the compression, 9 is the higher compression)
744\return Status code
745*/
746int CNetCdfInterface::defVarDeflate(int ncid, int varId, int compressionLevel)
747{
748  int status = nc_def_var_deflate(ncid, varId, false, (compressionLevel > 0), compressionLevel);
749  if (NC_NOERR != status)
750  {
751    StdString errormsg(nc_strerror(status));
752    StdStringStream sstr;
753
754    sstr << "Error when calling function nc_def_var_deflate(ncid, varId, false, (compressionLevel > 0), compressionLevel)" << std::endl;
755    sstr << errormsg << std::endl;
756    sstr << "Unable to set the compression level of the variable with id: " << varId
757         << " and compression level: " << compressionLevel << std::endl;
758    StdString e = sstr.str();
759    throw CNetCdfException(e);
760  }
761
762  return status;
763}
764
765/*!
766Set or unset the fill mode for a NetCDF file specified by its file id.
767\param [in] ncid File id
768\param [in] fill Define whether the fill mode should be enabled or not
769\return Status code
770*/
771int CNetCdfInterface::setFill(int ncid, bool fill)
772{
773  int old_fill_mode;
774  int status = nc_set_fill(ncid, fill ? NC_FILL: NC_NOFILL, &old_fill_mode);
775  if (NC_NOERR != status)
776  {
777    StdString errormsg(nc_strerror(status));
778    StdStringStream sstr;
779
780    sstr << "Error when calling function nc_set_fill(ncid, fill ? NC_FILL: NC_NOFILL, &old_fill_mode)" << std::endl;
781    sstr << errormsg << std::endl;
782    sstr << "Unable to set the fill mode to: " << (fill ? "NC_FILL": "NC_NOFILL") << std::endl;
783    StdString e = sstr.str();
784    throw CNetCdfException(e);
785  }
786
787  return status;
788}
789
790/*!
791This function makes a request to netcdf with a ncid, to set the fill parameters for a variable,
792given variable id and type of fill
793\param [in] ncid Id groupd(or File Id)
794\param [in] varId Id of the variable
795\param [in] noFill turn on/off nofill mode on a variable
796\param [in/out] fillValue
797\return Status code
798*/
799int CNetCdfInterface::defVarFill(int ncid, int varId, int noFill, void* fillValue)
800{
801  int status = nc_def_var_fill(ncid, varId, noFill, fillValue);
802  if (NC_NOERR != status)
803  {
804    StdString errormsg(nc_strerror(status));
805    StdStringStream sstr;
806
807    sstr << "Error when calling function nc_def_var_fill(ncid, varId, noFill, fillValue)" << std::endl;
808    sstr << errormsg << std::endl;
809    sstr << "Unable to set fill parameters of the variable with id: " << varId
810      << " and fill option " << noFill << std::endl;
811    StdString e = sstr.str();
812    throw CNetCdfException(e);
813  }
814
815  return status;
816}
817
818/*!
819This function makes a request to netcdf with a ncid, to change the way read/write operations are performed
820collectively or independently on the variable.
821\param [in] ncid Id groupd(or File Id)
822\param [in] varId Id of the variable
823\param [in] noFill turn on/off nofill mode on a variable
824\param [in/out] fillValue
825\return Status code
826*/
827int CNetCdfInterface::varParAccess(int ncid, int varId, int access)
828{
829  int status = nc_var_par_access(ncid, varId, access);
830  if (NC_NOERR != status)
831  {
832    StdString errormsg(nc_strerror(status));
833    StdStringStream sstr;
834
835    sstr << "Error when calling function nc_var_par_access(ncid, varId, access)" << std::endl;
836    sstr << errormsg << std::endl;
837    sstr << "Unable to change read/write option of the variable with id: " << varId << std::endl;
838    StdString e = sstr.str();
839    throw CNetCdfException(e);
840  }
841
842  return status;
843}
844
845/*!
846This function makes a synchronisation of the disk copy of a netCDF dataset.
847\param [in] ncid Id groupd(or File Id)
848\return Status code
849*/
850int CNetCdfInterface::sync(int ncid)
851{
852  int status = nc_sync(ncid);
853  if (NC_NOERR != status)
854  {
855    StdString errormsg(nc_strerror(status));
856    StdStringStream sstr;
857
858    sstr << "Error when calling function nc_sync(ncid)" << std::endl;
859    sstr << errormsg << std::endl;
860    sstr << "Unable to make a synchronization of a netCDF file with id: " << ncid << std::endl;
861    StdString e = sstr.str();
862    throw CNetCdfException(e);
863  }
864
865  return status;
866}
867
868// Some specializations of getAttributeType
869template<>
870int CNetCdfInterface::ncGetAttType(int ncid, int varid, const char* attrName, double* data)
871{
872  return nc_get_att_double(ncid, varid, attrName, data);
873}
874
875template<>
876int CNetCdfInterface::ncGetAttType(int ncid, int varid, const char* attrName, float* data)
877{
878  return nc_get_att_float(ncid, varid, attrName, data);
879}
880
881template<>
882int CNetCdfInterface::ncGetAttType(int ncid, int varid, const char* attrName, int* data)
883{
884  return nc_get_att_int(ncid, varid, attrName, data);
885}
886
887template<>
888int CNetCdfInterface::ncGetAttType(int ncid, int varid, const char* attrName, long* data)
889{
890  return nc_get_att_long(ncid, varid, attrName, data);
891}
892
893template<>
894int CNetCdfInterface::ncGetAttType(int ncid, int varid, const char* attrName, short* data)
895{
896  return nc_get_att_short(ncid, varid, attrName, data);
897}
898
899template<>
900int CNetCdfInterface::ncGetAttType(int ncid, int varid, const char* attrName, char* data)
901{
902  return nc_get_att_text(ncid, varid, attrName, data);
903}
904
905// Some specializations of putAttributeType
906template<>
907int CNetCdfInterface::ncPutAttType(int ncid, int varid, const char* attrName,
908                                   StdSize numVal, const double* data)
909{
910  return nc_put_att_double(ncid, varid, attrName, NC_DOUBLE, numVal, data);
911}
912
913template<>
914int CNetCdfInterface::ncPutAttType(int ncid, int varid, const char* attrName,
915                                   StdSize numVal, const float* data)
916{
917  return nc_put_att_float(ncid, varid, attrName, NC_FLOAT, numVal, data);
918}
919
920template<>
921int CNetCdfInterface::ncPutAttType(int ncid, int varid, const char* attrName,
922                                   StdSize numVal, const int* data)
923{
924  return nc_put_att_int(ncid, varid, attrName, NC_INT, numVal, data);
925}
926
927template<>
928int CNetCdfInterface::ncPutAttType(int ncid, int varid, const char* attrName,
929                                   StdSize numVal, const long* data)
930{
931  return nc_put_att_long(ncid, varid, attrName, NC_LONG, numVal, data);
932}
933
934template<>
935int CNetCdfInterface::ncPutAttType(int ncid, int varid, const char* attrName,
936                                   StdSize numVal, const short* data)
937{
938  return nc_put_att_short(ncid, varid, attrName, NC_SHORT, numVal, data);
939}
940
941template<>
942int CNetCdfInterface::ncPutAttType(int ncid, int varid, const char* attrName,
943                                   StdSize numVal, const char* data)
944{
945  return nc_put_att_text(ncid, varid, attrName, numVal, data);
946}
947
948// Some specializations of getVariableType
949template<>
950int CNetCdfInterface::ncGetVaraType(int ncid, int varid, const StdSize* start, const StdSize* count, double* data)
951{
952  return nc_get_vara_double(ncid, varid, start, count, data);
953}
954
955template<>
956int CNetCdfInterface::ncGetVaraType(int ncid, int varid, const StdSize* start, const StdSize* count, float* data)
957{
958  return nc_get_vara_float(ncid, varid, start, count, data);
959}
960
961template<>
962int CNetCdfInterface::ncGetVaraType(int ncid, int varid, const StdSize* start, const StdSize* count, int* data)
963{
964  return nc_get_vara_int(ncid, varid, start, count, data);
965}
966
967// Some specializations of putVariableType
968template<>
969int CNetCdfInterface::ncPutVaraType(int ncid, int varid, const StdSize* start, const StdSize* count, const double* data)
970{
971  return nc_put_vara_double(ncid, varid, start, count, data);
972}
973
974template<>
975int CNetCdfInterface::ncPutVaraType(int ncid, int varid, const StdSize* start, const StdSize* count, const float* data)
976{
977  return nc_put_vara_float(ncid, varid, start, count, data);
978}
979
980template<>
981int CNetCdfInterface::ncPutVaraType(int ncid, int varid, const StdSize* start, const StdSize* count, const int* data)
982{
983  return nc_put_vara_int(ncid, varid, start, count, data);
984}
985
986 /*!
987 This function verifies an existence of a variable by using its name.
988 Be careful, althoug false means variable doens't exist, it could show that netCDF file doesn't either
989 \param [in] ncid Id of groupd(or File Id)
990 \param [in] attrName Name of the variable
991 \return Existence of variable
992 */
993bool CNetCdfInterface::isVarExisted(int ncId, const StdString& varName)
994{
995   int varId = 0;
996   return (NC_NOERR == (nc_inq_varid(ncId, varName.c_str(), &varId)));
997}
998
999StdString CNetCdfInterface::openMode2String(int oMode)
1000{
1001  StdString modeMes;
1002  switch (oMode)
1003  {
1004  case NC_NOWRITE:
1005    modeMes = StdString("NC_NOWRITE: Opening netCDF file with read-only access with buffering and caching access");
1006    break;
1007  case NC_SHARE:
1008    modeMes = StdString("NC_SHARE: Several processes can read the file concurrently");
1009    break;
1010  case NC_WRITE:
1011    modeMes = StdString("NC_WRITE: NetCDF file is readable and writable");
1012    break;
1013  default:
1014    modeMes = StdString("In the composed opening mode");
1015    break;
1016  }
1017  return modeMes;
1018}
1019
1020StdString CNetCdfInterface::creationMode2String(int cMode)
1021{
1022  StdString modeMes;
1023  switch (cMode)
1024  {
1025  case NC_NOCLOBBER:
1026    modeMes = StdString("NC_NOCLOBBER: Not overwrite an exisiting netCDF file ");
1027    break;
1028  case NC_SHARE:
1029    modeMes = StdString("NC_SHARE: Several processes can read from and write into the file concurrently");
1030    break;
1031  case NC_64BIT_OFFSET:
1032    modeMes = StdString("NC_64BIT_OFFSET: NetCDF file is 64-bit offset");
1033    break;
1034  case NC_NETCDF4:
1035    modeMes = StdString("NC_NETCDF4: NetCDF file is HDF5/NetCDF-4");
1036    break;
1037  case NC_CLASSIC_MODEL:
1038    modeMes = StdString("NC_CLASSIC_MODEL: NetCDF file is classical model");
1039    break;
1040  default:
1041    modeMes = StdString("In the composed creation mode");
1042    break;
1043  }
1044  return modeMes;
1045}
1046
1047}
Note: See TracBrowser for help on using the repository browser.