-
Notifications
You must be signed in to change notification settings - Fork 14
/
Constructor.cc
756 lines (621 loc) · 23.6 KB
/
Constructor.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
// -*- mode: c++; c-basic-offset:4 -*-
// This file is part of libdap, A C++ implementation of the OPeNDAP Data
// Access Protocol.
// Copyright (c) 2002,2003 OPeNDAP, Inc.
// Author: James Gallagher <jgallagher@opendap.org>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
// You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.
// (c) COPYRIGHT URI/MIT 1995-1999
// Please read the full copyright statement in the file COPYRIGHT_URI.
//
// Authors:
// jhrg,jimg James Gallagher <jgallagher@gso.uri.edu>
#include "config.h"
#include <algorithm>
#include <cstdint>
#include <sstream>
#include <string>
#include "crc.h"
#include "Constructor.h"
#include "Grid.h"
#include "D4Group.h"
#include "D4StreamMarshaller.h"
#include "D4StreamUnMarshaller.h"
#include "DMR.h"
#include "XMLWriter.h"
#include "D4Attributes.h"
#include "DapIndent.h"
#include "InternalErr.h"
#include "escaping.h"
#include "util.h"
#include "debug.h"
using namespace std;
namespace libdap {
// Private member functions
void Constructor::m_duplicate(const Constructor &c) {
// Clear out any spurious vars in Constructor::d_vars
// Moved from Grid::m_duplicate. jhrg 4/3/13
d_vars.clear(); // [mjohnson 10 Sep 2009]
for (auto var : c.d_vars) {
BaseType *btp = var->ptr_duplicate();
btp->set_parent(this);
d_vars.push_back(btp);
}
}
// Public member functions
// A public method, but just barely...
// TODO Understand what this method does. What is dest? Is it the parent-to-be
// of the variables in this Constructor? jhrg 4/25/22
void Constructor::transform_to_dap4(D4Group *root, Constructor *dest) {
for (Constructor::Vars_citer i = var_begin(), e = var_end(); i != e; ++i) {
BaseType *d4_var = dest->var((*i)->name());
// Don't add duplicate variables. We have to make this check
// because some child variables may add arrays
// to the root object. For example, this happens in
// Grid with the Map Arrays - ndp - 05/08/17
if (!d4_var) {
(*i)->transform_to_dap4(root /*group*/, dest /*container*/);
}
}
dest->attributes()->transform_to_dap4(get_attr_table());
dest->set_is_dap4(true);
}
string Constructor::FQN() const {
if (get_parent() == 0)
return name();
else if (get_parent()->type() == dods_group_c)
return get_parent()->FQN() + name();
else if (get_parent()->type() == dods_array_c)
return get_parent()->FQN();
else
return get_parent()->FQN() + "." + name();
}
int Constructor::element_count(bool leaves) {
if (!leaves)
return d_vars.size();
else {
int i = 0;
for (auto var : d_vars) {
i += var->element_count(leaves);
}
return i;
}
}
void Constructor::set_send_p(bool state) {
for (auto var : d_vars) {
var->set_send_p(state);
}
BaseType::set_send_p(state);
}
/**
* @brief Set the 'read_p' property for the Constructor and its members
*
* This method sets read_p for all of the Constructor. The read() method
* is much more selective and only sets read_p for the Constructor itself,
* leaving the value of the property of the members up to their read()
* methods. Calling this with false will clear the property of all the
* member variables.
*
* @param state Set the read_p property to this state.
*/
void Constructor::set_read_p(bool state) {
for (auto var : d_vars) {
var->set_read_p(state);
}
BaseType::set_read_p(state);
}
/** This version of width simply returns the same thing as width() for simple
types and Arrays. For Structure it returns the total size if constrained
is false, or the size of the elements in the current projection if true.
@param constrained If true, return the size after applying a constraint.
@return The number of bytes used by the variable.
@deprecated Use width_ll()
*/
unsigned int Constructor::width(bool constrained) const {
unsigned int sz = 0;
for (auto var : d_vars) {
if (constrained) {
if (var->send_p())
sz += var->width(constrained);
} else {
sz += var->width(constrained);
}
}
return sz;
}
/**
* @brief Get the width of the Constructor's fields
* @param constrained If true, return the constrained size
* @return The number of bytes needed to store the values of this instance
*/
int64_t Constructor::width_ll(bool constrained) const {
int64_t sz = 0;
for (auto var : d_vars) {
if (constrained) {
if (var->send_p())
sz += var->width_ll(constrained);
} else {
sz += var->width_ll(constrained);
}
}
return sz;
}
BaseType *Constructor::var(const string &name, bool exact_match, btp_stack *s) {
string n = www2id(name);
if (exact_match)
return m_exact_match(n, s);
else
return m_leaf_match(n, s);
}
/** @deprecated See comment in BaseType */
BaseType *Constructor::var(const string &n, btp_stack &s) {
// This should probably be removed. The BES code should remove web encoding
// with the possible exception of spaces. jhrg 11/25/13
string name = www2id(n);
BaseType *btp = m_exact_match(name, &s);
if (btp)
return btp;
return m_leaf_match(name, &s);
}
// Protected method
BaseType *Constructor::m_leaf_match(const string &name, btp_stack *s) {
for (auto var : d_vars) {
if (var->name() == name) {
if (s) {
s->push(static_cast<BaseType *>(this));
}
return var;
}
if (var->is_constructor_type()) {
BaseType *btp = var->var(name, false, s);
if (btp) {
if (s) {
s->push(static_cast<BaseType *>(this));
}
return btp;
}
}
}
return nullptr;
}
// Protected method
BaseType *Constructor::m_exact_match(const string &name, btp_stack *s) {
// Look for name at the top level first.
for (auto var : d_vars) {
if (var->name() == name) {
if (s)
s->push(static_cast<BaseType *>(this));
return var;
}
}
// If it was not found using the simple search, look for a dot and
// search the hierarchy.
string::size_type dot_pos = name.find("."); // zero-based index of `.'
if (dot_pos != string::npos) {
string aggregate = name.substr(0, dot_pos);
string field = name.substr(dot_pos + 1);
BaseType *agg_ptr = var(aggregate);
if (agg_ptr) {
if (s)
s->push(static_cast<BaseType *>(this));
return agg_ptr->var(field, true, s); // recurse
} else
return nullptr; // qualified names must be *fully* qualified
}
return nullptr;
}
/** Returns an iterator referencing the first structure element. */
Constructor::Vars_iter Constructor::var_begin() { return d_vars.begin(); }
/** Returns an iterator referencing the end of the list of structure
elements. Does not reference the last structure element. */
Constructor::Vars_iter Constructor::var_end() { return d_vars.end(); }
/** Return a reverse iterator that references the last element. */
Constructor::Vars_riter Constructor::var_rbegin() { return d_vars.rbegin(); }
/** Return a reverse iterator that references a point 'before' the first
element. */
Constructor::Vars_riter Constructor::var_rend() { return d_vars.rend(); }
/** Return the iterator for the \e ith variable.
@param i the index
@return The corresponding Vars_iter */
Constructor::Vars_iter Constructor::get_vars_iter(int i) { return d_vars.begin() + i; }
/** Return the BaseType pointer for the \e ith variable.
@param i This index
@return The corresponding BaseType*. */
BaseType *Constructor::get_var_index(int i) { return *(d_vars.begin() + i); }
/**
* @brief Set the ith element of d_vars to a variable object.
* @note This method only sets the ith element to a BaseType object.
* The user should be responsible to release or allocate the resource properly.
* Use this method cautionally.
* @param bt A pointer to the variable that is assigned to the ith element.
* @param i The index of the variable to be set.
*/
void Constructor::set_var_index(BaseType *bt, int i) {
if (!bt)
throw InternalErr(__FILE__, __LINE__, "The BaseType parameter cannot be null.");
if (i < 0 || i >= (int)(d_vars.size()))
throw InternalErr(__FILE__, __LINE__, "The index must be within the variable vector range..");
bt->set_parent(this);
// Update the is_dap4 property
if (bt->is_dap4())
set_is_dap4(true);
d_vars[i] = bt;
}
/** Adds an element to a Constructor.
@param bt A pointer to the variable to add to this Constructor.
@param part Not used by this class, defaults to nil */
void Constructor::add_var(BaseType *bt, Part) {
// Jose Garcia
// Passing and invalid pointer to an object is a developer's error.
if (!bt)
throw InternalErr(__FILE__, __LINE__, "The BaseType parameter cannot be null.");
// Jose Garcia
// Now we add a copy of bt so the external user is able to destroy bt as
// he/she wishes. The policy is: "If it is allocated outside, it is
// deallocated outside, if it is allocated inside, it is deallocated
// inside"
add_var_nocopy(bt->ptr_duplicate());
}
/** Adds an element to a Constructor.
@param bt A pointer to thee variable to add to this Constructor.
@param part Not used by this class, defaults to nil */
void Constructor::add_var_nocopy(BaseType *bt, Part) {
if (!bt)
throw InternalErr(__FILE__, __LINE__, "The BaseType parameter cannot be null.");
bt->set_parent(this);
d_vars.push_back(bt);
// Update the is_dap4 property
if (bt->is_dap4())
set_is_dap4(true);
}
/**
* @brief Remove an element from a Constructor.
* @note New version. There is a subtle change in that this version will
* remove all variables in this Constructor with name 'n' while the old
* version would just remove the first variable.
* @param n name of the variable to remove
*/
void Constructor::del_var(const string &n) {
auto to_remove = stable_partition(d_vars.begin(), d_vars.end(), [n](BaseType *btp) { return btp->name() != n; });
for_each(to_remove, d_vars.end(), [](BaseType *btp) { delete btp; });
d_vars.erase(to_remove, d_vars.end());
}
/**
* @brief Delete the BaseType* and erase the iterator .
* @note It is OK to call this with an iterator that points to nullptr.
* @param i The iterator that points to the BaseType.
*/
void Constructor::del_var(Vars_iter i) {
delete *i;
d_vars.erase(i);
}
/**
* @brief Read the elements of Constructor marked for transmission
*
* Iterate over the top level members of the Constructor and read all
* of them that have the 'send_p' property set to true. Assume the
* read() methods correctly set the 'read_p' property. Once done,
* set 'read_p' for the Constructor itself (but not for the members,
* that is left up to their individual read() methods).
*
* @return returns false; the return value is a relic.
*/
bool Constructor::read() {
if (!read_p()) {
for (auto var : d_vars) {
if (var->send_p())
var->read();
}
// Set read_p for the Constructor
BaseType::set_read_p(true);
}
return false;
}
void Constructor::intern_data(ConstraintEvaluator &eval, DDS &dds) {
if (is_dap4())
throw Error(string("A method usable only with DAP2 variables was called on a DAP4 variable (")
.append(name())
.append(")."),
__FILE__, __LINE__);
if (!read_p())
read(); // read() throws Error and InternalErr
for (auto var : d_vars) {
if (var->send_p()) {
var->intern_data(eval, dds);
}
}
}
bool Constructor::serialize(ConstraintEvaluator &eval, DDS &dds, Marshaller &m, bool ce_eval) {
if (!read_p())
read(); // read() throws Error and InternalErr
if (ce_eval && !eval.eval_selection(dds, dataset()))
return true;
for (auto var : d_vars) {
if (var->send_p()) {
#ifdef CHECKSUMS
XDRStreamMarshaller *sm = dynamic_cast<XDRStreamMarshaller *>(&m);
if (sm && sm->checksums() && var->type() != dods_structure_c && var->type() != dods_grid_c)
sm->reset_checksum();
var->serialize(eval, dds, m, false);
if (sm && sm->checksums() && var->type() != dods_structure_c && var->type() != dods_grid_c)
sm->get_checksum();
#else
// (*i)->serialize(eval, dds, m, false);
// Only Sequence and Vector run the evaluator.
var->serialize(eval, dds, m, true);
#endif
}
}
return true;
}
bool Constructor::deserialize(UnMarshaller &um, DDS *dds, bool reuse) {
for (auto var : d_vars) {
var->deserialize(um, dds, reuse);
}
return false;
}
void Constructor::compute_checksum(Crc32 &) {
throw InternalErr(__FILE__, __LINE__, "Computing a checksum alone is not supported for Constructor types.");
}
void Constructor::intern_data() {
if (!read_p())
read(); // read() throws Error
for (auto var : d_vars) {
if (var->send_p()) {
var->intern_data(/*checksum, dmr, eval*/);
}
}
}
/**
* @brief Serialize a Constructor
*
* @todo See notebook for 8/21/14
*
* @param m
* @param dmr Unused
* @param eval Unused
* @param filter Unused
* @exception Error is thrown if the value needs to be read and that operation fails.
*/
void Constructor::serialize(D4StreamMarshaller &m, DMR &dmr, bool filter) {
// Not used for the same reason the equivalent code in D4Group::serialize()
// is not used. Fail for D4Sequence and general issues with memory use.
//
// Revisit this - I had to uncomment this to get the netcdf_handler code
// to work - it relies on having NCStructure::read() called. The D4Sequence
// ::serialize() method calls read_next_instance(). What seems to be happening
// is that this call to read gets the first set of values, but does not store
// them; the call to serialize then runs the D4Sequence::serialize() method that
// _does_ read all the sequence data and then serialize it. However, the first
// sequence instance is missing...
if (!read_p())
read(); // read() throws Error
for (auto var : d_vars) {
if (var->send_p()) {
var->serialize(m, dmr, filter);
}
}
}
void Constructor::deserialize(D4StreamUnMarshaller &um, DMR &dmr) {
for (auto var : d_vars) {
var->deserialize(um, dmr);
}
}
void Constructor::print_decl(FILE *out, string space, bool print_semi, bool constraint_info, bool constrained) {
ostringstream oss;
print_decl(oss, space, print_semi, constraint_info, constrained);
fwrite(oss.str().data(), sizeof(char), oss.str().length(), out);
}
void Constructor::print_decl(ostream &out, string space, bool print_semi, bool constraint_info, bool constrained) {
if (constrained && !send_p())
return;
out << space << type_name() << " {\n";
for (auto var : d_vars) {
var->print_decl(out, space + " ", true, constraint_info, constrained);
}
out << space << "} " << id2www(name());
if (constraint_info) { // Used by test drivers only.
if (send_p())
out << ": Send True";
else
out << ": Send False";
}
if (print_semi)
out << ";\n";
}
void Constructor::print_val(FILE *out, string space, bool print_decl_p) {
ostringstream oss;
print_val(oss, space, print_decl_p);
fwrite(oss.str().data(), sizeof(char), oss.str().length(), out);
}
void Constructor::print_val(ostream &out, string space, bool print_decl_p) {
if (print_decl_p) {
print_decl(out, space, false);
out << " = ";
}
out << "{ ";
for (Vars_citer i = d_vars.begin(), e = d_vars.end(); i != e; i++, (void)(i != e && out << ", ")) {
(*i)->print_val(out, "", false);
}
out << " }";
if (print_decl_p)
out << ";\n";
}
/**
* @deprecated
*/
void Constructor::print_xml(FILE *out, string space, bool constrained) {
XMLWriter xml(space);
print_xml_writer(xml, constrained);
fwrite(xml.get_doc(), sizeof(char), xml.get_doc_size(), out);
}
/**
* @deprecated
*/
void Constructor::print_xml(ostream &out, string space, bool constrained) {
XMLWriter xml(space);
print_xml_writer(xml, constrained);
out << xml.get_doc();
}
void Constructor::print_xml_writer(XMLWriter &xml, bool constrained) {
if (constrained && !send_p())
return;
if (xmlTextWriterStartElement(xml.get_writer(), (const xmlChar *)type_name().c_str()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write " + type_name() + " element");
if (!name().empty())
if (xmlTextWriterWriteAttribute(xml.get_writer(), (const xmlChar *)"name", (const xmlChar *)name().c_str()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write attribute for name");
// DAP2 prints attributes first. For some reason we decided that DAP4 should
// print them second. No idea why... jhrg 8/15/14
if (!is_dap4() && get_attr_table().get_size() > 0)
get_attr_table().print_xml_writer(xml);
if (!d_vars.empty())
for_each(d_vars.begin(), d_vars.end(),
[&xml, constrained](BaseType *btp) { btp->print_xml_writer(xml, constrained); });
if (is_dap4())
attributes()->print_dap4(xml);
if (xmlTextWriterEndElement(xml.get_writer()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not end " + type_name() + " element");
}
void Constructor::print_dap4(XMLWriter &xml, bool constrained) {
if (constrained && !send_p())
return;
if (xmlTextWriterStartElement(xml.get_writer(), (const xmlChar *)type_name().c_str()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write " + type_name() + " element");
if (!name().empty())
if (xmlTextWriterWriteAttribute(xml.get_writer(), (const xmlChar *)"name", (const xmlChar *)name().c_str()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not write attribute for name");
if (!d_vars.empty())
for_each(d_vars.begin(), d_vars.end(),
[&xml, constrained](BaseType *btp) { btp->print_dap4(xml, constrained); });
attributes()->print_dap4(xml);
if (xmlTextWriterEndElement(xml.get_writer()) < 0)
throw InternalErr(__FILE__, __LINE__, "Could not end " + type_name() + " element");
}
bool Constructor::check_semantics(string &msg, bool all) {
if (!BaseType::check_semantics(msg))
return false;
if (!unique_names(d_vars, name(), type_name(), msg))
return false;
if (all) {
for (auto var : d_vars) {
if (!var->check_semantics(msg, true)) {
return false;
}
}
}
return true;
}
/** True if the instance can be flattened and printed as a single table
of values. For Arrays and Grids this is always false. For Structures
and Sequences the conditions are more complex. The implementation
provided by this class always returns false. Other classes should
override this implementation.
@brief Check to see whether this variable can be printed simply.
@return True if the instance can be printed as a single table of
values, false otherwise. */
bool Constructor::is_linear() { return false; }
/** Set the \e in_selection property for this variable and all of its
children.
@brief Set the \e in_selection property.
@param state Set the property value to \e state. */
void Constructor::set_in_selection(bool state) {
for (auto var : d_vars) {
var->set_in_selection(state);
}
BaseType::set_in_selection(state);
}
void Constructor::transfer_attributes(AttrTable *at_container) {
AttrTable *at = at_container->get_attr_table(name());
if (at) {
BaseType::transfer_attributes(at_container);
for (auto var : d_vars) {
var->transfer_attributes(at);
}
}
}
AttrTable *Constructor::make_dropped_vars_attr_table(vector<BaseType *> *dropped_vars) {
AttrTable *dv_table = nullptr;
if (!dropped_vars->empty()) {
dv_table = new AttrTable;
dv_table->set_name("dap4:dropped_members");
vector<BaseType *>::iterator dvIter = dropped_vars->begin();
vector<BaseType *>::iterator dvEnd = dropped_vars->end();
unsigned int i = 0;
for (; dvIter != dvEnd; dvIter++, i++) {
BaseType *bt = (*dvIter);
AttrTable *bt_attr_table = new AttrTable(bt->get_attr_table());
bt_attr_table->set_name(bt->name());
string type_name = bt->type_name();
if (bt->is_vector_type()) {
Array *array = dynamic_cast<Array *>(bt);
if (array) { // This is always true - only an Array is_vector_type(). jhrg 4/25/22
type_name = array->prototype()->type_name();
Array::Dim_iter d_iter = array->dim_begin();
Array::Dim_iter end = array->dim_end();
for (; d_iter < end; d_iter++) {
ostringstream dim_size;
dim_size << (*d_iter).size;
bt_attr_table->append_attr("array_dimensions", AttrType_to_String(Attr_uint32), dim_size.str());
}
}
}
bt_attr_table->append_attr("dap4:type", "String", type_name);
dv_table->append_container(bt_attr_table, bt_attr_table->get_name());
// Clear entry now that we're done.
(*dvIter) = 0;
}
}
return dv_table;
}
/**
* When send_p() is true and the attributes or variables contain dap4 data types then
* a description of the instance is added to the inventory and true is returned.
* @param inventory is a value-result parameter
* @return True when send_p() is true and this object contains dap4 types variables or attributes, false otherwise
*/
bool Constructor::is_dap4_projected(std::vector<std::string> &inventory) {
bool has_projected_dap4 = false;
if (send_p()) {
has_projected_dap4 = attributes()->has_dap4_types(FQN(), inventory);
for (const auto var : variables()) {
has_projected_dap4 |= var->is_dap4_projected(inventory);
}
}
return has_projected_dap4;
}
/** @brief dumps information about this object
*
* Displays the pointer value of this instance and information about this
* instance.
*
* @param strm C++ i/o stream to dump the information to
* @return void
*/
void Constructor::dump(ostream &strm) const {
strm << DapIndent::LMarg << "Constructor::dump - (" << (void *)this << ")" << endl;
DapIndent::Indent();
BaseType::dump(strm);
strm << DapIndent::LMarg << "vars: " << endl;
DapIndent::Indent();
for (auto var : d_vars) {
var->dump(strm);
}
DapIndent::UnIndent();
DapIndent::UnIndent();
}
} // namespace libdap