1 | /*!\file ArrayInput.c
|
---|
2 | * \brief: implementation of the ArrayInput object
|
---|
3 | */
|
---|
4 |
|
---|
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 "./ArrayInput.h"
|
---|
14 |
|
---|
15 | /*ArrayInput constructors and destructor*/
|
---|
16 | ArrayInput::ArrayInput(void){/*{{{*/
|
---|
17 |
|
---|
18 | this->numberofelements_local = -1;
|
---|
19 | this->N = NULL;
|
---|
20 | this->values = NULL;
|
---|
21 |
|
---|
22 | }/*}}}*/
|
---|
23 | ArrayInput::ArrayInput(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 | }/*}}}*/
|
---|
32 | ArrayInput::~ArrayInput(){/*{{{*/
|
---|
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:*/
|
---|
42 | Input* ArrayInput::copy() {/*{{{*/
|
---|
43 |
|
---|
44 | ArrayInput* output = new ArrayInput(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 ArrayInput::DeepEcho(void){/*{{{*/
|
---|
65 | _printf_("ArrayInput Echo:\n");
|
---|
66 | ///_printf_(" Size: "<<N<<"\n");
|
---|
67 | //printarray(this->values,this->M,this->N);
|
---|
68 | //_printf_(setw(15)<<" ArrayInput "<<setw(25)<<left<<EnumToStringx(this->enum_type)<<" "<<(value?"true":"false") << "\n");
|
---|
69 | }
|
---|
70 | /*}}}*/
|
---|
71 | void ArrayInput::Echo(void){/*{{{*/
|
---|
72 | this->DeepEcho();
|
---|
73 | }
|
---|
74 | /*}}}*/
|
---|
75 | int ArrayInput::Id(void){/*{{{*/
|
---|
76 | return -1;
|
---|
77 | }/*}}}*/
|
---|
78 | void ArrayInput::Marshall(MarshallHandle* marshallhandle){ /*{{{*/
|
---|
79 |
|
---|
80 | int object_enum = ArrayInputEnum;
|
---|
81 | marshallhandle->call(object_enum);
|
---|
82 | marshallhandle->call(this->numberofelements_local);
|
---|
83 | if(this->numberofelements_local){
|
---|
84 | marshallhandle->call(this->N,this->numberofelements_local);
|
---|
85 | for(int i=0;i<this->numberofelements_local;i++){
|
---|
86 | if(this->values[i]){
|
---|
87 | marshallhandle->call(this->values[i],this->N[i]);
|
---|
88 | }
|
---|
89 | }
|
---|
90 | }
|
---|
91 | else{
|
---|
92 | this->N = NULL;
|
---|
93 | this->values = NULL;
|
---|
94 | }
|
---|
95 |
|
---|
96 | }
|
---|
97 | /*}}}*/
|
---|
98 | int ArrayInput::ObjectEnum(void){/*{{{*/
|
---|
99 | return ArrayInputEnum;
|
---|
100 | }
|
---|
101 | /*}}}*/
|
---|
102 |
|
---|
103 | /*ArrayInput management*/
|
---|
104 | void ArrayInput::SetInput(int row,int numindices,IssmDouble* values_in){/*{{{*/
|
---|
105 |
|
---|
106 | _assert_(this);
|
---|
107 | _assert_(row>=0 && row<this->numberofelements_local);
|
---|
108 |
|
---|
109 | if(this->N[row] != numindices){
|
---|
110 | if(this->values[row]) xDelete<IssmDouble>(this->values[row]);
|
---|
111 | this->values[row] = xNew<IssmDouble>(numindices);
|
---|
112 | }
|
---|
113 |
|
---|
114 | IssmDouble *el_values = this->values[row];
|
---|
115 | for(int i=0;i<numindices;i++) el_values[i] = values_in[i];
|
---|
116 |
|
---|
117 | this->N[row] = numindices;
|
---|
118 | }
|
---|
119 | /*}}}*/
|
---|
120 | void ArrayInput::GetArray(int row,IssmDouble** pvalues,int* pN){/*{{{*/
|
---|
121 |
|
---|
122 | _assert_(this);
|
---|
123 | _assert_(row>=0 && row<this->numberofelements_local);
|
---|
124 | if(pvalues){
|
---|
125 | IssmDouble* outvalues = xNew<IssmDouble>(this->N[row]);
|
---|
126 | xMemCpy<IssmDouble>(outvalues,this->values[row],this->N[row]);
|
---|
127 | *pvalues = outvalues;
|
---|
128 | }
|
---|
129 | if(pN){
|
---|
130 | *pN = this->N[row];
|
---|
131 | }
|
---|
132 | }
|
---|
133 | /*}}}*/
|
---|
134 | void ArrayInput::GetArrayPtr(int row,IssmDouble** pvalues,int* pN){/*{{{*/
|
---|
135 |
|
---|
136 | _assert_(this);
|
---|
137 | _assert_(row>=0 && row<this->numberofelements_local);
|
---|
138 | if(pvalues){
|
---|
139 | *pvalues = this->values[row];
|
---|
140 | }
|
---|
141 | if(pN){
|
---|
142 | *pN = this->N[row];
|
---|
143 | }
|
---|
144 | }
|
---|
145 | /*}}}*/
|
---|