Ice Sheet System Model  4.18
Code documentation
Public Member Functions | Private Attributes
Hook Class Reference

#include <Hook.h>

Public Member Functions

 Hook ()
 
 Hook (int *ids, int num)
 
 ~Hook ()
 
Objectcopy (void)
 
void DeepEcho (void)
 
void Echo (void)
 
void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
 
void configure (DataSet *dataset)
 
Object ** deliverp (void)
 
Objectdelivers (void)
 
int GetNum (void)
 
int * Ids (void)
 
void reset (void)
 
HookSpawn (int *indices, int numindices)
 

Private Attributes

int * ids
 
int num
 
Object ** objects
 
int * offsets
 

Detailed Description

Definition at line 16 of file Hook.h.

Constructor & Destructor Documentation

◆ Hook() [1/2]

Hook::Hook ( )

Definition at line 18 of file Hook.cpp.

18  {/*{{{*/
19  this->num = 0;
20  this->objects = NULL;
21  this->ids = NULL;
22  this->offsets = NULL;
23 }

◆ Hook() [2/2]

Hook::Hook ( int *  ids,
int  num 
)

Definition at line 25 of file Hook.cpp.

25  {/*{{{*/
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 }

◆ ~Hook()

Hook::~Hook ( )

Definition at line 53 of file Hook.cpp.

53  {/*{{{*/
54  xDelete<Object*>(this->objects);
55  xDelete<int>(this->ids);
56  xDelete<int>(this->offsets);
57 }

Member Function Documentation

◆ copy()

Object * Hook::copy ( void  )

Definition at line 61 of file Hook.cpp.

61  {/*{{{*/
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 }

◆ DeepEcho()

void Hook::DeepEcho ( void  )

Definition at line 77 of file Hook.cpp.

77  {/*{{{*/
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 }

◆ Echo()

void Hook::Echo ( void  )

Definition at line 104 of file Hook.cpp.

104  {/*{{{*/
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 }

◆ Marshall()

void Hook::Marshall ( char **  pmarshalled_data,
int *  pmarshalled_data_size,
int  marshall_direction 
)

Definition at line 122 of file Hook.cpp.

122  { /*{{{*/
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 }

◆ configure()

void Hook::configure ( DataSet dataset)

Definition at line 145 of file Hook.cpp.

145  {/*{{{*/
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 }

◆ deliverp()

Object ** Hook::deliverp ( void  )

Definition at line 187 of file Hook.cpp.

187  {/*{{{*/
188  return objects;
189 }

◆ delivers()

Object * Hook::delivers ( void  )

Definition at line 191 of file Hook.cpp.

191  {/*{{{*/
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 }

◆ GetNum()

int Hook::GetNum ( void  )

Definition at line 203 of file Hook.cpp.

203  {/*{{{*/
204  return this->num;
205 }

◆ Ids()

int * Hook::Ids ( void  )

Definition at line 207 of file Hook.cpp.

207  {/*{{{*/
208  return this->ids;
209 }

◆ reset()

void Hook::reset ( void  )

Definition at line 211 of file Hook.cpp.

211  {/*{{{*/
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 }

◆ Spawn()

Hook * Hook::Spawn ( int *  indices,
int  numindices 
)

Definition at line 222 of file Hook.cpp.

222  {/*{{{*/
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 }

Field Documentation

◆ ids

int* Hook::ids
private

Definition at line 20 of file Hook.h.

◆ num

int Hook::num
private

Definition at line 21 of file Hook.h.

◆ objects

Object** Hook::objects
private

Definition at line 22 of file Hook.h.

◆ offsets

int* Hook::offsets
private

Definition at line 23 of file Hook.h.


The documentation for this class was generated from the following files:
_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
MARSHALLING_ENUM
#define MARSHALLING_ENUM(EN)
Definition: Marshalling.h:14
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
Definition: Hook.h:16
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
HookEnum
@ HookEnum
Definition: EnumDefinitions.h:1097
MARSHALLING_BACKWARD
@ MARSHALLING_BACKWARD
Definition: Marshalling.h:10
Hook::num
int num
Definition: Hook.h:21
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
DataSet::GetObjectByOffset
Object * GetObjectByOffset(int offset)
Definition: DataSet.cpp:334
Object::Id
virtual int Id()=0
Hook::offsets
int * offsets
Definition: Hook.h:23