bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
|
A DAP Grid with file out netcdf information included. More...
#include <FONcGrid.h>
Public Member Functions | |
virtual void | clear_embedded () |
Clears the list of embedded variable names. | |
void | convert (std::vector< std::string > embed) |
void | convert (std::vector< std::string > embed, bool is_dap4) |
virtual void | convert (std::vector< std::string > embed, bool is_dap4, bool is_dap4_group) |
virtual void | convert (vector< string > embed, bool _dap4, bool is_dap4_group) override |
convert the DAP Grid to a set of embedded variables | |
virtual void | define (int ncid) override |
define the DAP Grid in the netcdf file | |
void | dump (std::ostream &strm) const override=0 |
dump the contents of this object to the specified ostream | |
virtual void | dump (ostream &strm) const override |
dumps information about this object for debugging purposes | |
FONcGrid (libdap::BaseType *b) | |
Constructor for FONcGrid that takes a DAP Grid. | |
libdap::DDS * | get_dds () const |
libdap::ConstraintEvaluator * | get_eval () const |
bool | get_fdio_flag () const |
virtual libdap::AttrType | getAttrType (nc_type t) |
virtual D4AttributeType | getD4AttrType (nc_type t) |
virtual bool | isNetCDF4 () |
Returns true if NetCDF4 features will be required. | |
bool | isNetCDF4_ENHANCED () |
string | name () override |
returns the name of the DAP Grid | |
void | set_dds (libdap::DDS *dds) |
void | set_eval (libdap::ConstraintEvaluator *eval) |
void | set_fdio_flag (bool dio_flag_value=true) |
virtual void | set_is_dap4 (bool set_dap4) |
virtual void | setNC4DataModel (const string &nc4_datamodel) |
Identifies the netCDF4 data model (CLASSIC or ENHANCED) | |
virtual void | setVersion (const std::string &version) |
Identifies variable with use of NetCDF4 features. | |
virtual nc_type | type () |
Returns the type of data of this variable. | |
virtual void | updateAttrType (libdap::AttrTable &attrs, nc_type t) |
virtual void | updateD4AttrType (libdap::D4Attributes *d4_attrs, nc_type t) |
virtual int | varid () const |
virtual void | write (int ncid) override |
Write the maps and array for the grid. | |
virtual | ~FONcGrid () |
Destructor that cleans up the grid. | |
Static Public Member Functions | |
static FONcMap * | InMaps (libdap::Array *array) |
Static Public Attributes | |
static bool | InGrid = false |
tells whether we are converting or defining a grid. | |
static vector< FONcMap * > | Maps |
global list of maps that could be shared amongst the different grids | |
Protected Attributes | |
libdap::DDS * | d_dds = nullptr |
bool | d_defined = false |
std::vector< std::string > | d_embed |
libdap::ConstraintEvaluator * | d_eval = nullptr |
bool | d_is_dap4 = false |
bool | d_is_dap4_group = false |
std::string | d_nc4_datamodel |
std::string | d_ncVersion |
std::string | d_orig_varname |
int | d_varid = 0 |
std::string | d_varname |
bool | fdio_flag = false |
A DAP Grid with file out netcdf information included.
This class represents a DAP Grid with additional information needed to write it out to a netcdf file and includes a reference to the actual DAP Grid being converted, the maps of the grid stored as FONcMap instances, and the array of the grid stored as a FONcArray.
NetCDF does not have a grid representation, per se. For this reason, we flatten the DAP grid into different arrays (maps) as well as the grid's actual array.
It is possible to share maps among grids, so a global map list is kept as well.
Definition at line 61 of file FONcGrid.h.
|
explicit |
Constructor for FONcGrid that takes a DAP Grid.
This constructor takes a DAP BaseType and makes sure that it is a DAP Grid instance. If not, it throws an exception
b | A DAP BaseType that should be a grid |
BESInternalError | if the BaseType is not a Grid |
Definition at line 60 of file FONcGrid.cc.
|
virtual |
Destructor that cleans up the grid.
The DAP Grid instance does not belong to the FONcGrid instance, so it is not deleted.
Since maps can be shared by grids, FONcMap uses reference counting. So instead of deleting the FONcMap instance, its reference count is decremented.
Definition at line 78 of file FONcGrid.cc.
|
virtualinherited |
Clears the list of embedded variable names.
Definition at line 93 of file FONcBaseType.cc.
|
inlineinherited |
Definition at line 97 of file FONcBaseType.h.
|
inlineinherited |
Definition at line 100 of file FONcBaseType.h.
|
virtualinherited |
Reimplemented in FONcArray.
convert the DAP Grid to a set of embedded variables
A DAP Grid contains one or more maps (arrays) and an array of values. The convert method creates a FONcMap for each of the grid's maps, and a FONcArray for the grid's array.
A map can be shared by other grids if the name of the map is the same, the size of the map is the same, the type of the map is the same, and the values of the map are the same. If they are the same, then it references that shared map instead of creating a new one.
embed | The list of parent names for this grid |
BESInternalError | if there is a problem defining the Byte |
Definition at line 138 of file FONcGrid.cc.
|
overridevirtual |
define the DAP Grid in the netcdf file
Iterates through the maps for this grid and defines each of those, if they haven't already been defined by a grid that shares the map. Then it defines the grid's array in the netcdf file.
Any attributes for the grid will be written out for each of the maps and the array.
ncid | The id of the NetCDF file |
BESInternalError | if there is a problem defining the Byte |
Reimplemented from FONcBaseType.
Definition at line 104 of file FONcGrid.cc.
|
overridepure virtualinherited |
dump the contents of this object to the specified ostream
This method is implemented by all derived classes to dump their contents, in other words, any state they might have, private variables, etc...
The inline function below can be used to dump the contents of an OPeNDAPObj object. For example, the object Animal is derived from BESObj. A user could do the following:
Animal *a = new dog( "Sparky" ) ; cout << a << endl ;
And the dump method for dog could display the name passed into the constructor, the (this) pointer of the object, etc...
strm | C++ i/o stream to dump the object to |
Implements BESObj.
Implemented in FONcArray, and FONcArrayStructureField.
|
overridevirtual |
dumps information about this object for debugging purposes
Displays the pointer value of this instance plus instance data. Included is each FONcMap instance as well as the FONcArray representing the grid's array.
strm | C++ i/o stream to dump the information to |
Definition at line 262 of file FONcGrid.cc.
|
inlineinherited |
Definition at line 89 of file FONcBaseType.h.
|
inlineinherited |
Definition at line 92 of file FONcBaseType.h.
|
inlineinherited |
Definition at line 129 of file FONcBaseType.h.
|
virtualinherited |
Definition at line 163 of file FONcBaseType.cc.
|
virtualinherited |
Definition at line 211 of file FONcBaseType.cc.
|
static |
Definition at line 299 of file FONcGrid.cc.
|
virtualinherited |
Returns true if NetCDF4 features will be required.
Definition at line 118 of file FONcBaseType.cc.
|
inherited |
Definition at line 123 of file FONcBaseType.cc.
|
overridevirtual |
returns the name of the DAP Grid
Implements FONcBaseType.
Definition at line 249 of file FONcGrid.cc.
|
inlineinherited |
Definition at line 90 of file FONcBaseType.h.
|
inlineinherited |
Definition at line 93 of file FONcBaseType.h.
|
inlineinherited |
Definition at line 130 of file FONcBaseType.h.
|
inlinevirtualinherited |
Definition at line 121 of file FONcBaseType.h.
|
virtualinherited |
Identifies the netCDF4 data model (CLASSIC or ENHANCED)
Definition at line 109 of file FONcBaseType.cc.
|
virtualinherited |
Identifies variable with use of NetCDF4 features.
Definition at line 100 of file FONcBaseType.cc.
|
virtualinherited |
Returns the type of data of this variable.
This implementation of the method returns the default type of data. Subclasses of FONcBaseType will return the specific type of data for simple types
Reimplemented in FONcArrayStructureField, FONcByte, FONcDouble, FONcFloat, FONcInt64, FONcInt8, FONcInt, FONcShort, FONcStr, FONcUByte, FONcUInt64, FONcUInt, and FONcUShort.
Definition at line 86 of file FONcBaseType.cc.
|
virtualinherited |
Definition at line 144 of file FONcBaseType.cc.
|
virtualinherited |
Definition at line 128 of file FONcBaseType.cc.
|
inlinevirtualinherited |
Definition at line 113 of file FONcBaseType.h.
|
overridevirtual |
Write the maps and array for the grid.
Once defined, the values of the maps and the values of the grid's array can be written out to the netcdf file.
ncid | The id of the netcdf file |
BESInternalError | if there is a problem writing the grid out to the netcdf file |
Implements FONcBaseType.
Definition at line 223 of file FONcGrid.cc.
|
protectedinherited |
Definition at line 76 of file FONcBaseType.h.
|
protectedinherited |
Definition at line 66 of file FONcBaseType.h.
|
protectedinherited |
Definition at line 65 of file FONcBaseType.h.
|
protectedinherited |
Definition at line 77 of file FONcBaseType.h.
|
protectedinherited |
Definition at line 71 of file FONcBaseType.h.
|
protectedinherited |
Definition at line 74 of file FONcBaseType.h.
|
protectedinherited |
Definition at line 68 of file FONcBaseType.h.
|
protectedinherited |
Definition at line 67 of file FONcBaseType.h.
|
protectedinherited |
Definition at line 64 of file FONcBaseType.h.
|
protectedinherited |
Definition at line 62 of file FONcBaseType.h.
|
protectedinherited |
Definition at line 63 of file FONcBaseType.h.
|
protectedinherited |
Definition at line 82 of file FONcBaseType.h.
|
static |
tells whether we are converting or defining a grid.
This is used by FONcArray to tell if any single dimension arrays where the name of the array and the name of the dimension are the same. If they are, then that array is saved as a possible shared map
Definition at line 82 of file FONcGrid.h.
global list of maps that could be shared amongst the different grids
Definition at line 80 of file FONcGrid.h.