libdap  Updated for version 3.20.6
libdap4 is an implementation of OPeNDAP's DAP protocol.
libdap::DAS Class Reference

Hold attribute data for a DAP2 dataset. More...

#include <DAS.h>

Inheritance diagram for libdap::DAS:
Inheritance graph

Public Member Functions

virtual AttrTablecontainer ()
 Returns the current attribute container when multiple files used to build this DAS. More...
 
virtual string container_name () const
 Returns the name of the current attribute container when multiple files used to build this DAS. More...
 
virtual void container_name (const string &cn)
 Sets the name of the current attribute container when multiple files used to build this DAS. More...
 
 DAS (const DAS &das)
 
virtual void dump (ostream &strm) const
 dumps information about this object More...
 
virtual void erase ()
 erase all attributes in this DAS More...
 
string get_name (AttrTable::Attr_iter &i)
 Returns the name of the referenced variable attribute table. More...
 
virtual unsigned int get_size () const
 Returns the number of attributes in the current attribute table. More...
 
AttrTableget_table (AttrTable::Attr_iter &i)
 Returns the referenced variable attribute table. More...
 
virtual AttrTableget_table (const string &name)
 Returns the variable attribute table with the given name. More...
 
virtual AttrTableget_top_level_attributes ()
 Returns the top most set of attributes. More...
 
DASoperator= (const DAS &rhs)
 
virtual void print (FILE *out, bool dereference=false)
 
virtual void print (ostream &out, bool dereference=false)
 
AttrTable::Attr_iter var_begin ()
 Returns a reference to the attribute table for the first variable. More...
 
AttrTable::Attr_iter var_end ()
 
add_table()

Adds an attribute table to the DAS.

virtual AttrTableadd_table (const string &name, AttrTable *at)
 Adds a variable attribute table to the DAS or the current dataset container attribute table. More...
 
parse()

Reads a DAS in from an external source.

virtual void parse (string fname)
 Reads a DAS from the named file. More...
 
virtual void parse (int fd)
 Read attributes from a file descriptor. More...
 
virtual void parse (FILE *in=stdin)
 Reads a DAS from an open file descriptor. More...
 

Detailed Description

Hold attribute data for a DAP2 dataset.

The Data Attribute Structure is a set of name-value pairs used to describe the data in a particular dataset. The name-value pairs are called the ``attributes''. The values may be of any of the DAP2 simple data types (Byte, Int16, UInt16, Int32, UInt32, Float32, Float64, String and URL), and may be scalar or vector. Note that all values are actually stored as String data, making the easy to read/check using a web browser.

A value may also consist of a set of other name-value pairs. This makes it possible to nest collections of attributes, giving rise to a hierarchy of attributes. DAP2 uses this structure to provide information about variables in a dataset. For example, consider the dataset used in the DDS example earlier.

In the following example of a DAS, several of the attribute collections have names corresponding to the names of variables in the DDS example. The attributes in that collection are said to belong to that variable. For example, the lat variable has an attribute units'' ofdegrees_north''.

Attributes {
    GLOBAL {
        String title "Reynolds Optimum Interpolation (OI) SST";
    }
    lat {
        String units "degrees_north";
        String long_name "Latitude";
        Float64 actual_range 89.5, -89.5;
    }
    lon {
        String units "degrees_east";
        String long_name "Longitude";
        Float64 actual_range 0.5, 359.5;
    }
    time {
        String units "days since 1-1-1 00:00:00";
        String long_name "Time";
        Float64 actual_range 726468., 729289.;
        String delta_t "0000-00-07 00:00:00";
    }
    sst {
        String long_name "Weekly Means of Sea Surface Temperature";
        Float64 actual_range -1.8, 35.09;
        String units "degC";
        Float64 add_offset 0.;
        Float64 scale_factor 0.0099999998;
        Int32 missing_value 32767;
    }
}

Attributes may have arbitrary names, although in most datasets it is important to choose these names so a reader will know what they describe. In the above example, the ``GLOBAL'' attribute provides information about the entire dataset.

Data attribute information is an important part of the the data provided to a DAP2 client by a server, and the DAS is how this data is packaged for sending (and how it is received).

The DAS class is simply a sequence of attribute tables and names. It may be thought of as the top level of the attribute hierarchy.

See also
DDS
AttrTable

Definition at line 121 of file DAS.h.

Member Function Documentation

◆ add_table()

AttrTable * libdap::DAS::add_table ( const string &  name,
AttrTable at 
)
virtual

Adds a variable attribute table to the DAS or the current dataset container attribute table.

Definition at line 209 of file DAS.cc.

◆ container()

virtual AttrTable* libdap::DAS::container ( )
inlinevirtual

Returns the current attribute container when multiple files used to build this DAS.

Returns
current attribute table for current container

Definition at line 158 of file DAS.h.

◆ container_name() [1/2]

virtual string libdap::DAS::container_name ( ) const
inlinevirtual

Returns the name of the current attribute container when multiple files used to build this DAS.

Definition at line 149 of file DAS.h.

◆ container_name() [2/2]

void libdap::DAS::container_name ( const string &  cn)
virtual

Sets the name of the current attribute container when multiple files used to build this DAS.

Parameters
cncontainer name

Definition at line 102 of file DAS.cc.

◆ dump()

void libdap::DAS::dump ( ostream &  strm) const
virtual

dumps information about this object

Displays the pointer value of this instance and then calls parent dump

Parameters
strmC++ i/o stream to dump the information to
Returns
void

Implements libdap::DapObj.

Definition at line 369 of file DAS.cc.

◆ erase()

void libdap::DAS::erase ( )
virtual

erase all attributes in this DAS

Definition at line 135 of file DAS.cc.

◆ get_name()

string libdap::DAS::get_name ( AttrTable::Attr_iter &  i)

Returns the name of the referenced variable attribute table.

Definition at line 168 of file DAS.cc.

◆ get_size()

unsigned int libdap::DAS::get_size ( ) const
virtual

Returns the number of attributes in the current attribute table.

If the there is a container set, then return the number of variable attribute tables for the current container. If not set then return the number of current attribute tables in the outermost attribute table.

Definition at line 125 of file DAS.cc.

◆ get_table() [1/2]

AttrTable * libdap::DAS::get_table ( AttrTable::Attr_iter &  i)

Returns the referenced variable attribute table.

Definition at line 179 of file DAS.cc.

◆ get_table() [2/2]

AttrTable * libdap::DAS::get_table ( const string &  name)
virtual

Returns the variable attribute table with the given name.

Definition at line 190 of file DAS.cc.

◆ get_top_level_attributes()

virtual AttrTable* libdap::DAS::get_top_level_attributes ( )
inlinevirtual

Returns the top most set of attributes.

This could be the top most variable attribute tables, or it could be the top most dataset container attribute tables, if we have multiple datasets being used to construct this DAS

Definition at line 166 of file DAS.h.

◆ parse() [1/3]

void libdap::DAS::parse ( string  fname)
virtual

Reads a DAS from the named file.

Read a DAS by parsing the specified file

Read attributes from a file. Throws Error if unable to open the file, otherwise parses the file.

Definition at line 232 of file DAS.cc.

◆ parse() [2/3]

void libdap::DAS::parse ( int  fd)
virtual

Read attributes from a file descriptor.

If the file descriptor cannot be fdopen'd, return false, otherwise return the status of the mfunc parse.

Note
Added call to dup() within fdopen so that once the FILE * is closed the decriptor fd will not also be closed (instead the duplicate descriptor will be closed). Thus further information can be read from the descriptor fd.

Definition at line 259 of file DAS.cc.

◆ parse() [3/3]

void libdap::DAS::parse ( FILE *  in = stdin)
virtual

Reads a DAS from an open file descriptor.

Read attributes from in (which defaults to stdin). If dasrestart() fails, return false, otherwise return the status of dasparse().

Definition at line 292 of file DAS.cc.

◆ print() [1/2]

void libdap::DAS::print ( FILE *  out,
bool  dereference = false 
)
virtual

Print the DAS

Creates an ASCII representation of a DAS on the given output stream.

When an identifier contains a character that contains characters that cannot be present in a URL (e.g., a space) AttrTable::print replaces those characters with WWW escape codes. 7/13/2001 jhrg

Parameters
outoutput FILE on which to print the DAS
dereferenceIf true, follow aliases. Default is false.

Definition at line 331 of file DAS.cc.

◆ print() [2/2]

void libdap::DAS::print ( ostream &  out,
bool  dereference = false 
)
virtual

Creates an ASCII representation of a DAS on the given output stream.

When an identifier contains a character that contains characters that cannot be present in a URL (e.g., a space) AttrTable::print replaces those characters with WWW escape codes. 7/13/2001 jhrg

Parameters
outoutput ostream on which to print the DAS
dereferenceIf true, follow aliases. Default is false.

Definition at line 353 of file DAS.cc.

◆ var_begin()

AttrTable::Attr_iter libdap::DAS::var_begin ( )

Returns a reference to the attribute table for the first variable.

Definition at line 147 of file DAS.cc.

◆ var_end()

AttrTable::Attr_iter libdap::DAS::var_end ( )

Returns a reference to the end of the attribute table. Does not point to an attribute table.

Definition at line 158 of file DAS.cc.


The documentation for this class was generated from the following files: