/*!\file ArrayInput.c * \brief: implementation of the ArrayInput object */ #ifdef HAVE_CONFIG_H #include #else #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" #endif #include "../classes.h" #include "../../shared/shared.h" #include "./ArrayInput.h" /*ArrayInput constructors and destructor*/ ArrayInput::ArrayInput(void){/*{{{*/ this->numberofelements_local = -1; this->N = NULL; this->values = NULL; }/*}}}*/ ArrayInput::ArrayInput(int nbe_in){/*{{{*/ _assert_(nbe_in>0); _assert_(nbe_in<1e11); this->numberofelements_local = nbe_in; this->N = xNewZeroInit(this->numberofelements_local); this->values = xNewZeroInit(this->numberofelements_local); }/*}}}*/ ArrayInput::~ArrayInput(){/*{{{*/ if(this->values){ for(int i=0;inumberofelements_local;i++) if(this->values[i]) xDelete(this->values[i]); xDelete(this->values); } if(this->N) xDelete(this->N); } /*}}}*/ /*Object virtual functions definitions:*/ Input* ArrayInput::copy() {/*{{{*/ ArrayInput* output = new ArrayInput(this->numberofelements_local); //not needed, already allocated //output->N = xNew(this->numberofelements_local); xMemCpy(output->N,this->N,this->numberofelements_local); //not needed, already allocated //output->values = xNew(this->numberofelements_local); for(int i=0;inumberofelements_local;i++){ if(this->values[i]){ _assert_(this->N[i]>0); output->values[i] = xNew(this->N[i]); xMemCpy(output->values[i],this->values[i],this->N[i]); } else{ output->values[i] = NULL; } } return output; } /*}}}*/ void ArrayInput::DeepEcho(void){/*{{{*/ _printf_("ArrayInput Echo:\n"); ///_printf_(" Size: "<values,this->M,this->N); //_printf_(setw(15)<<" ArrayInput "<enum_type)<<" "<<(value?"true":"false") << "\n"); } /*}}}*/ void ArrayInput::Echo(void){/*{{{*/ this->DeepEcho(); } /*}}}*/ int ArrayInput::Id(void){/*{{{*/ return -1; }/*}}}*/ void ArrayInput::Marshall(MarshallHandle* marshallhandle){ /*{{{*/ int object_enum = ArrayInputEnum; marshallhandle->call(object_enum); marshallhandle->call(this->numberofelements_local); if(this->numberofelements_local){ marshallhandle->call(this->N,this->numberofelements_local); for(int i=0;inumberofelements_local;i++){ if(this->values[i]){ marshallhandle->call(this->values[i],this->N[i]); } } } else{ this->N = NULL; this->values = NULL; } } /*}}}*/ int ArrayInput::ObjectEnum(void){/*{{{*/ return ArrayInputEnum; } /*}}}*/ /*ArrayInput management*/ void ArrayInput::SetInput(int row,int numindices,IssmDouble* values_in){/*{{{*/ _assert_(this); _assert_(row>=0 && rownumberofelements_local); if(this->N[row] != numindices){ if(this->values[row]) xDelete(this->values[row]); this->values[row] = xNew(numindices); } IssmDouble *el_values = this->values[row]; for(int i=0;iN[row] = numindices; } /*}}}*/ void ArrayInput::GetArray(int row,IssmDouble** pvalues,int* pN){/*{{{*/ _assert_(this); _assert_(row>=0 && rownumberofelements_local); if(pvalues){ IssmDouble* outvalues = xNew(this->N[row]); xMemCpy(outvalues,this->values[row],this->N[row]); *pvalues = outvalues; } if(pN){ *pN = this->N[row]; } } /*}}}*/ void ArrayInput::GetArrayPtr(int row,IssmDouble** pvalues,int* pN){/*{{{*/ _assert_(this); _assert_(row>=0 && rownumberofelements_local); if(pvalues){ *pvalues = this->values[row]; } if(pN){ *pN = this->N[row]; } } /*}}}*/