49 #ifndef _constructor_h
53 #ifndef base_type_factory_h
187 string d_container_name;
193 string d_dap_version;
194 string d_request_xml_base;
199 vector<BaseType *> vars;
206 long d_max_response_size;
220 typedef std::vector<BaseType *>::reverse_iterator
Vars_riter ;
320 Vars_citer var_cbegin()
const {
return vars.cbegin(); }
328 Vars_citer var_cend()
const {
return vars.cend(); }
343 void del_var(Vars_iter i1, Vars_iter i2);
351 void parse(
string fname);
353 void parse(FILE *in = stdin);
356 void print(FILE *out);
358 void print_xml(FILE *out,
bool constrained,
const string &blob =
"");
361 void print(ostream &out);
363 void print_xml(ostream &out,
bool constrained,
const string &blob =
"");
366 void print_xml_writer(ostream &out,
bool constrained,
const string &blob =
"");
369 void print_dmr(ostream &out,
bool constrained);
374 bool mark(
const string &name,
bool state);
379 virtual void dump(ostream &strm)
const ;
void print(FILE *out)
Print the entire DDS to the specified file.
void insert_var_nocopy(Vars_iter i, BaseType *ptr)
Contains the attributes for a dataset.
string get_dmr_version() const
Vars_iter get_vars_iter(int i)
Get an iterator.
void set_response_limit(long size)
BaseType * leaf_match(const string &name, BaseType::btp_stack *s=0)
void insert_var(Vars_iter i, BaseType *ptr)
Insert a variable before the referenced element.
Vars_iter var_begin()
Return an iterator to the first variable.
long get_response_limit()
Get the maximum response size, in KB. Zero indicates no limit.
string get_request_xml_base() const
Get the URL that will return this DDS/DDX/DataThing.
DDS(BaseTypeFactory *factory, const string &name="")
int get_request_size(bool constrained)
Get the estimated response size.
BaseType * var(const string &n, BaseType::btp_stack &s)
virtual void transfer_attributes(DAS *das)
void print_xml(FILE *out, bool constrained, const string &blob="")
std::vector< BaseType * >::const_iterator Vars_citer
void print_xml_writer(ostream &out, bool constrained, const string &blob="")
void add_var_nocopy(BaseType *bt)
Adds the variable to the DDS.
Holds a structure (aggregate) type.
Vars_riter var_rend()
Return a reverse iterator.
int num_var()
Returns the number of variables in the DDS.
std::vector< BaseType * >::reverse_iterator Vars_riter
stack< BaseType * > btp_stack
bool mark(const string &name, bool state)
Mark the send_p flag of the named variable to state.
void parse(string fname)
Parse a DDS from a file with the given d_name.
DDS & operator=(const DDS &rhs)
string get_namespace() const
Get the namespace associated with the DDS - likely set only by DDX responses.
string get_dap_version() const
int get_dap_major() const
Get the DAP major version as sent by the client.
void mark_all(bool state)
Keywords & get_keywords()
std::vector< BaseType * >::iterator Vars_iter
void print_das(ostream &out)
void print_dmr(ostream &out, bool constrained)
virtual AttrTable & get_attr_table()
BaseType * get_var_index(int i)
Get a variable.
bool check_semantics(bool all=false)
Check the semantics of each of the variables represented in the DDS.
BaseTypeFactory * set_factory(BaseTypeFactory *factory)
Vars_iter var_end()
Return an iterator.
BaseType * exact_match(const string &name, BaseType::btp_stack *s=0)
BaseTypeFactory * get_factory() const
void set_namespace(const string &ns)
Set the namespace for this DDS/DDX object/response.
void tag_nested_sequences()
Traverse DDS, set Sequence leaf nodes.
void set_dap_minor(int p)
void set_dataset_name(const string &n)
The basic data type for the DODS DAP types.
libdap base object for common functionality of libdap objects
void del_var(const string &n)
Removes a variable from the DDS.
Vars_riter var_rbegin()
Return a reverse iterator.
Hold attribute data for a DAP2 dataset.
int get_dap_minor() const
Get the DAP minor version as sent by the client.
string get_dataset_name() const
void duplicate(const DDS &dds)
void set_dap_major(int p)
void print_constrained(FILE *out)
Print a constrained DDS to the specified file.
virtual void dump(ostream &strm) const
dumps information about this object
void set_dap_version(const string &version_string="2.0")
void add_var(BaseType *bt)
Adds a copy of the variable to the DDS. Using the ptr_duplicate() method, perform a deep copy on the ...
void set_request_xml_base(const string &xb)