Ice Sheet System Model  4.18
Code documentation
ArrayInput2.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 "../classes.h"
12 #include "../../shared/shared.h"
13 #include "./ArrayInput2.h"
14 
15 /*ArrayInput2 constructors and destructor*/
17 
18  this->numberofelements_local = -1;
19  this->N = NULL;
20  this->values = NULL;
21 
22 }/*}}}*/
23 ArrayInput2::ArrayInput2(int nbe_in){/*{{{*/
24 
25  _assert_(nbe_in>0);
26  _assert_(nbe_in<1e11);
27  this->numberofelements_local = nbe_in;
28  this->N = xNewZeroInit<int>(this->numberofelements_local);
29  this->values = xNewZeroInit<IssmDouble*>(this->numberofelements_local);
30 
31 }/*}}}*/
33  if(this->values){
34  for(int i=0;i<this->numberofelements_local;i++) if(this->values[i]) xDelete<IssmDouble>(this->values[i]);
35  xDelete<IssmDouble>(this->values);
36  }
37  if(this->N) xDelete<int>(this->N);
38 }
39 /*}}}*/
40 
41 /*Object virtual functions definitions:*/
43 
44  ArrayInput2* output = new ArrayInput2(this->numberofelements_local);
45 
46  output->N = xNew<int>(this->numberofelements_local);
47  xMemCpy<int>(output->N,this->N,this->numberofelements_local);
48 
49  output->values = xNew<IssmDouble*>(this->numberofelements_local);
50  for(int i=0;i<this->numberofelements_local;i++){
51  if(this->values[i]){
52  _assert_(this->N[i]>0);
53  output->values[i] = xNew<IssmDouble>(this->N[i]);
54  xMemCpy<IssmDouble>(output->values[i],this->values[i],this->N[i]);
55  }
56  else{
57  output->values[i] = NULL;
58  }
59  }
60 
61  return output;
62 }
63 /*}}}*/
64 void ArrayInput2::DeepEcho(void){/*{{{*/
65  _printf_("ArrayInput2 Echo:\n");
67  //printarray(this->values,this->M,this->N);
68  //_printf_(setw(15)<<" ArrayInput2 "<<setw(25)<<left<<EnumToStringx(this->enum_type)<<" "<<(value?"true":"false") << "\n");
69 }
70 /*}}}*/
71 void ArrayInput2::Echo(void){/*{{{*/
72  this->DeepEcho();
73 }
74 /*}}}*/
75 int ArrayInput2::Id(void){/*{{{*/
76  return -1;
77 }/*}}}*/
78 void ArrayInput2::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/
79 
82  if(this->numberofelements_local){
84  for(int i=0;i<this->numberofelements_local;i++){
85  if(this->values[i]){
86  MARSHALLING_DYNAMIC(this->values[i],IssmDouble,this->N[i]);
87  }
88  }
89  }
90  else{
91  this->N = NULL;
92  this->values = NULL;
93  }
94 
95 }
96 /*}}}*/
97 int ArrayInput2::ObjectEnum(void){/*{{{*/
98  return ArrayInput2Enum;
99 }
100 /*}}}*/
101 
102 /*ArrayInput2 management*/
103 void ArrayInput2::SetInput(int row,int numindices,IssmDouble* values_in){/*{{{*/
104 
105  _assert_(this);
106  _assert_(row>=0 && row<this->numberofelements_local);
107 
108  if(this->N[row] != numindices){
109  if(this->values[row]) xDelete<IssmDouble>(this->values[row]);
110  this->values[row] = xNew<IssmDouble>(numindices);
111  }
112 
113  IssmDouble *el_values = this->values[row];
114  for(int i=0;i<numindices;i++) el_values[i] = values_in[i];
115 
116  this->N[row] = numindices;
117 }
118 /*}}}*/
119 void ArrayInput2::GetArray(int row,IssmDouble** pvalues,int* pN){/*{{{*/
120 
121  _assert_(this);
122  _assert_(row>=0 && row<this->numberofelements_local);
123  if(pvalues){
124  IssmDouble* outvalues = xNew<IssmDouble>(this->N[row]);
125  xMemCpy<IssmDouble>(outvalues,this->values[row],this->N[row]);
126  *pvalues = outvalues;
127  }
128  if(pN){
129  *pN = this->N[row];
130  }
131 }
132 /*}}}*/
133 void ArrayInput2::GetArrayPtr(int row,IssmDouble** pvalues,int* pN){/*{{{*/
134 
135  _assert_(this);
136  _assert_(row>=0 && row<this->numberofelements_local);
137  if(pvalues){
138  *pvalues = this->values[row];
139  }
140  if(pN){
141  *pN = this->N[row];
142  }
143 }
144 /*}}}*/
_assert_
#define _assert_(ignore)
Definition: exceptions.h:37
IssmDouble
double IssmDouble
Definition: types.h:37
ArrayInput2::values
IssmDouble ** values
Definition: ArrayInput2.h:12
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
MARSHALLING_ENUM
#define MARSHALLING_ENUM(EN)
Definition: Marshalling.h:14
ArrayInput2::Id
int Id()
Definition: ArrayInput2.cpp:75
ArrayInput2::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: ArrayInput2.cpp:78
ArrayInput2::N
int * N
Definition: ArrayInput2.h:11
MARSHALLING_DYNAMIC
#define MARSHALLING_DYNAMIC(FIELD, TYPE, SIZE)
Definition: Marshalling.h:61
ArrayInput2::GetArrayPtr
void GetArrayPtr(int row, IssmDouble **pvalues, int *pN)
Definition: ArrayInput2.cpp:133
ArrayInput2::SetInput
void SetInput(int row, int numinds, IssmDouble *values_in)
Definition: ArrayInput2.cpp:103
MARSHALLING
#define MARSHALLING(FIELD)
Definition: Marshalling.h:29
ArrayInput2
Definition: ArrayInput2.h:7
ArrayInput2.h
ArrayInput2::~ArrayInput2
~ArrayInput2()
Definition: ArrayInput2.cpp:32
ArrayInput2::numberofelements_local
int numberofelements_local
Definition: ArrayInput2.h:10
Input2
Definition: Input2.h:18
ArrayInput2::Echo
void Echo()
Definition: ArrayInput2.cpp:71
ArrayInput2::GetArray
void GetArray(int row, IssmDouble **pvalues, int *pN)
Definition: ArrayInput2.cpp:119
ArrayInput2Enum
@ ArrayInput2Enum
Definition: EnumDefinitions.h:1041
ArrayInput2::copy
Input2 * copy()
Definition: ArrayInput2.cpp:42
ArrayInput2::ArrayInput2
ArrayInput2()
Definition: ArrayInput2.cpp:16
ArrayInput2::ObjectEnum
int ObjectEnum()
Definition: ArrayInput2.cpp:97
ArrayInput2::DeepEcho
void DeepEcho()
Definition: ArrayInput2.cpp:64