Ice Sheet System Model  4.18
Code documentation
Hook.cpp
Go to the documentation of this file.
1 
5 #ifdef HAVE_CONFIG_H
6  #include <config.h>
7 #else
8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
9 #endif
10 
11 #include <stdio.h>
12 #include <string.h>
13 #include "./classes.h"
14 #include "../shared/Enum/Enum.h"
15 #include "../shared/shared.h"
16 
17 /*Constructor/Destructors*/
18 Hook::Hook(){/*{{{*/
19  this->num = 0;
20  this->objects = NULL;
21  this->ids = NULL;
22  this->offsets = NULL;
23 }
24 /*}}}*/
25 Hook::Hook(int* in_ids, int in_num){/*{{{*/
26 
27  /*Get number of objects to hook*/
28  this->num=in_num;
29 
30  /*Get out if num=0*/
31  if (this->num<=0){
32  /*Empty hook*/
33  this->ids = NULL;
34  this->objects = NULL;
35  this->offsets = NULL;
36  this->num = 0;
37  }
38  else{
39  /*Allocate: */
40  this->objects=xNew<Object*>(in_num);
41  this->ids=xNew<int>(in_num);
42  this->offsets=xNew<int>(in_num);
43 
44  /*Copy ids: */
45  for(int i=0;i<this->num;i++){
46  this->ids[i] = in_ids[i];
47  this->objects[i] = NULL;
48  this->offsets[i] = 0;
49  }
50  }
51 }
52 /*}}}*/
53 Hook::~Hook(){/*{{{*/
54  xDelete<Object*>(this->objects);
55  xDelete<int>(this->ids);
56  xDelete<int>(this->offsets);
57 }
58 /*}}}*/
59 
60 /*Some of the Object functionality: */
61 Object* Hook::copy(void){/*{{{*/
62 
63  /*output: */
64  Hook* output=NULL;
65 
66  /*initalize output: */
67  output=new Hook(this->ids,this->num);
68 
69  for(int i=0;i<output->num;i++){
70  output->objects[i] = this->objects[i];
71  output->offsets[i] = this->offsets[i];
72  }
73 
74  return (Object*)output;
75 }
76 /*}}}*/
77 void Hook::DeepEcho(void){/*{{{*/
78 
79  int i;
80  if (num){
81  _printf_(" Hook: \n");
82  _printf_(" num=" << this->num << "\n");
83  _printf_(" ids: ");
84  for (i=0;i<this->num;i++) _printf_(this->ids[i] << " ");
85  _printf_("\n");
86  _printf_(" offsets: ");
87  for (i=0;i<this->num;i++) _printf_(this->offsets[i] << " ");
88  _printf_("\n");
89  if (!objects) _printf_(" warning: object not hooked yet\n");
90  else{
91  _printf_(" objects:\n ");
92  for (i=0;i<this->num;i++){
93  _printf_(" object " << i << "\n");
94  if(objects[i]) objects[i]->DeepEcho();
95  else _printf_(" no object hooked yet (not configured)\n");
96  }
97  }
98  }
99  else{
100  _printf_(" Hook: num=0 \n");
101  }
102 }
103 /*}}}*/
104 void Hook::Echo(void){/*{{{*/
105  _assert_(this);
106  int i;
107  if (num){
108  _printf_(" Hook: \n");
109  _printf_(" num=" << this->num << "\n");
110  _printf_(" ids: ");
111  for(i=0;i<this->num;i++) _printf_(this->ids[i] << " ");
112  _printf_("\n");
113  _printf_(" offsets: ");
114  for (i=0;i<this->num;i++) _printf_(this->offsets[i] << " ");
115  _printf_("\n");
116  }
117  else{
118  _printf_(" Hook: num=0 \n");
119  }
120 }
121 /*}}}*/
122 void Hook::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/
123 
124  if(marshall_direction==MARSHALLING_BACKWARD) reset();
125 
127  MARSHALLING(num);
128  if (num<=0){
129  /*Empty hook*/
130  this->ids = NULL;
131  this->objects = NULL;
132  this->offsets = NULL;
133  this->num = 0;
134  }
135  else{
139  }
140 
141 }
142 /*}}}*/
143 
144 /*Hook management: */
145 void Hook::configure(DataSet* dataset){/*{{{*/
146 
147  /*intermediary: */
148  Object* object=NULL;
149  int i;
150 
151  /*Checks if debugging mode*/
152  _assert_(this->num==0 || this->ids!=NULL);
153 
154  for(i=0;i<this->num;i++){
155 
156  /*is this object id -1? If so, drop this search, it was not requested: */
157  if (this->ids[i]==-1) continue;
158 
159  /*Check whether existing this->objects are correct: */
160  if(this->objects[i]){
161  if(this->objects[i]->Id()==this->ids[i]) continue; //this node is good.
162  else this->objects[i]=NULL; //this node was incorrect, reset it.
163  }
164 
165  /*May be the object this->offsets into this->objects are valid?: */
166  if(this->offsets[i]!=UNDEF){
167  /* Look at the this->offsets[i]'th node in the nodes dataset. If it has the correct id,
168  * we are good: */
169  object=(Object*)dataset->GetObjectByOffset(this->offsets[i]);
170  if (object->Id()==this->ids[i]){
171  this->objects[i]=object;
172  continue;
173  }
174  else this->offsets[i]=UNDEF; //object offset was wrong, reset it.
175  }
176  else this->offsets[i]=UNDEF;
177 
178  /*Now, for this->objects that did not get resolved, and for which we have no offset, chase them in the dataset, by id: */
179  if(this->objects[i]==NULL){
180  this->objects[i]=xDynamicCast<Object*>(dataset->GetObjectById(this->offsets+i,this->ids[i])); //remember the offset for later on.
181  /*check the id is correct!: */
182  if (this->objects[i]->Id()!=this->ids[i]) _error_("wrong id: " << this->objects[i]->Id() << " vs " << this->ids[i] << " in resolved pointer!");
183  }
184  }
185 }
186 /*}}}*/
187 Object** Hook::deliverp(void){/*{{{*/
188  return objects;
189 }
190 /*}}}*/
191 Object* Hook::delivers(void){/*{{{*/
192 
193  /*first, check that we only have one T object in our object list: */
194  if (this->num!=1) _error_("trying to deliver a single hook object when hook holds " << this->num << " objects" << "\n");
195 
196  /*check NULL: */
197  if (this->objects==NULL) _error_("hook is not pointing to any object, objects pointer is NULL");
198 
199  return *objects;
200 }
201 
202 /*}}}*/
203 int Hook::GetNum(void){/*{{{*/
204  return this->num;
205 }
206 /*}}}*/
207 int* Hook::Ids(void){/*{{{*/
208  return this->ids;
209 }
210 /*}}}*/
211 void Hook::reset(){/*{{{*/
212 
213  /*intermediary: */
214  Object* object=NULL;
215  int i;
216 
217  for(i=0;i<this->num;i++){
218  this->objects[i]=NULL; //reset this node.
219  }
220 }
221 /*}}}*/
222 Hook* Hook::Spawn(int* indices, int numindices){/*{{{*/
223 
224  /*output: */
225  Hook* output=NULL;
226 
227  /*allocate: */
228  output=new Hook();
229 
230  /*If this Hook is empty, simply return*/
231  if(this->num==0){
232  output->num=0;
233  return output;
234  }
235 
236  /*Else, check that we are requesting a half of num*/
237  if(numindices>this->num) _error_("Cannot spawn hook with " << numindices << " objects from a Hook of " << this->num << " objects");
238 
239  /*go pickup the correct objects, ids and offsets :*/
240  output->num=numindices;
241  if(output->num<1) _error_("Trying to spawn an empty ElementProperties!");
242 
243  output->objects = xNew<Object*>(output->num);
244  output->ids = xNew<int>(output->num);
245  output->offsets = xNew<int>(output->num);
246 
247  for(int i=0;i<output->num;i++){
248  output->objects[i] = this->objects[indices[i]];
249  output->ids[i] = this->ids[indices[i]];
250  output->offsets[i] = this->offsets[indices[i]];
251  }
252 
253  return output;
254 }
255 /*}}}*/
_assert_
#define _assert_(ignore)
Definition: exceptions.h:37
DataSet::GetObjectById
Object * GetObjectById(int *poffset, int eid)
Definition: DataSet.cpp:345
Hook::ids
int * ids
Definition: Hook.h:20
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
Hook::Hook
Hook()
Definition: Hook.cpp:18
Hook::deliverp
Object ** deliverp(void)
Definition: Hook.cpp:187
MARSHALLING_ENUM
#define MARSHALLING_ENUM(EN)
Definition: Marshalling.h:14
Hook::DeepEcho
void DeepEcho(void)
Definition: Hook.cpp:77
Hook::~Hook
~Hook()
Definition: Hook.cpp:53
Hook::reset
void reset(void)
Definition: Hook.cpp:211
MARSHALLING_DYNAMIC
#define MARSHALLING_DYNAMIC(FIELD, TYPE, SIZE)
Definition: Marshalling.h:61
Object
Definition: Object.h:13
Hook::delivers
Object * delivers(void)
Definition: Hook.cpp:191
Hook
Definition: Hook.h:16
Hook::configure
void configure(DataSet *dataset)
Definition: Hook.cpp:145
Hook::GetNum
int GetNum(void)
Definition: Hook.cpp:203
UNDEF
#define UNDEF
Definition: constants.h:8
MARSHALLING
#define MARSHALLING(FIELD)
Definition: Marshalling.h:29
Object::DeepEcho
virtual void DeepEcho()=0
Hook::objects
Object ** objects
Definition: Hook.h:22
Hook::copy
Object * copy(void)
Definition: Hook.cpp:61
HookEnum
@ HookEnum
Definition: EnumDefinitions.h:1097
MARSHALLING_BACKWARD
@ MARSHALLING_BACKWARD
Definition: Marshalling.h:10
Hook::num
int num
Definition: Hook.h:21
Hook::Spawn
Hook * Spawn(int *indices, int numindices)
Definition: Hook.cpp:222
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
DataSet::GetObjectByOffset
Object * GetObjectByOffset(int offset)
Definition: DataSet.cpp:334
Hook::Ids
int * Ids(void)
Definition: Hook.cpp:207
Hook::Echo
void Echo(void)
Definition: Hook.cpp:104
DataSet
Declaration of DataSet class.
Definition: DataSet.h:14
Object::Id
virtual int Id()=0
classes.h
Hook::offsets
int * offsets
Definition: Hook.h:23
Hook::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: Hook.cpp:122