00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 #ifndef _structure_h
00040 #define _structure_h 1
00041
00042 #ifndef __POWERPC__
00043 #endif
00044
00045 #include <vector>
00046
00047
00048 #ifndef _basetype_h
00049 #include "BaseType.h"
00050 #endif
00051
00052 #ifndef _constructor_h
00053 #include "Constructor.h"
00054 #endif
00055
00056 #ifndef _dds_h
00057 #include "DDS.h"
00058 #endif
00059
00060 #ifndef constraint_evaluator_h
00061 #include "ConstraintEvaluator.h"
00062 #endif
00063
00064
00065
00098 class Structure: public Constructor
00099 {
00100 private:
00101 BaseType *m_leaf_match(const string &name, btp_stack *s = 0);
00102 BaseType *m_exact_match(const string &name, btp_stack *s = 0);
00103
00104 protected:
00105 void _duplicate(const Structure &s);
00106
00107 public:
00108 Structure(const string &n = "");
00109
00110 Structure(const Structure &rhs);
00111 virtual ~Structure();
00112
00113 Structure &operator=(const Structure &rhs);
00114 virtual BaseType *ptr_duplicate();
00115
00116 virtual int element_count(bool leaves = false);
00117 virtual bool is_linear();
00118
00119 virtual void set_send_p(bool state);
00120 virtual void set_read_p(bool state);
00121 virtual void set_in_selection(bool state);
00122 virtual void set_leaf_sequence(int level = 1);
00123
00124 virtual unsigned int width();
00125
00126 virtual void transfer_data(const string & dataset,
00127 ConstraintEvaluator & eval, DDS & dds);
00128 virtual bool serialize(const string &dataset, ConstraintEvaluator &eval,
00129 DDS &dds, XDR *sink, bool ce_eval = true);
00130 virtual bool deserialize(XDR *source, DDS *dds, bool reuse = false);
00131
00132
00133
00134
00135 virtual unsigned int val2buf(void *val, bool reuse = false);
00136 virtual unsigned int buf2val(void **val);
00137
00138 virtual BaseType *var(const string &name, bool exact_match = true,
00139 btp_stack *s = 0);
00140
00141 virtual BaseType *var(const string &n, btp_stack &s);
00142
00143 virtual void add_var(BaseType *bt, Part part = nil);
00144
00145 virtual void print_val(FILE *out, string space = "",
00146 bool print_decl_p = true);
00147
00159 virtual void print_all_vals(FILE *out, XDR *src, DDS *dds,
00160 string space = "", bool print_decl_p = true);
00161
00162 virtual bool check_semantics(string &msg, bool all = false);
00163
00164 virtual void dump(ostream &strm) const ;
00165 };
00166
00167 #endif // _structure_h