Ice Sheet System Model  4.18
Code documentation
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
GenericOption.h
Go to the documentation of this file.
1 
5 #ifndef _GENERIC_OPTION_
6 #define _GENERIC_OPTION_
7 
8 /*Headers:{{{*/
9 #ifdef HAVE_CONFIG_H
10  #include <config.h>
11 #else
12 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
13 #endif
14 
15 #include <cstring>
16 #include "../../shared/shared.h"
17 #include "../../datastructures/datastructures.h"
18 #include "./OptionUtilities.h"
19 /*}}}*/
20 
21 template <class OptionType>
22 class GenericOption: public Option {
23 
24  public:
25  char *name;
26  OptionType value;
27  int size[2];
28 
29  /*GenericOption constructors, destructors*/
30  GenericOption(){ /*{{{*/
31  name = NULL;
32  size[0] = 0;
33  size[1] = 0;
34  } /*}}}*/
35  ~GenericOption(){ /*{{{*/
36  if(name) xDelete<char>(name);
37  } /*}}}*/
38 
39  /*Object virtual functions definitions:*/
40  Object* copy(){/*{{{*/
41  _error_("Not implemented yet");
42  };/*}}}*/
43  void DeepEcho(){ /*{{{*/
44  char indent[81]="";
45  this->DeepEcho(indent);
46  } /*}}}*/
47  void DeepEcho(char* indent){ /*{{{*/
48 
49  char cstr[81];
50 
51  _printf_(indent << " name: \"" << name << "\"\n");
52  _printf_(indent << " size: " << size[0] <<"x"<<size[1]<< "\n");
53  _printf_(indent << " value: " << value << "\n");
54  } /*}}}*/
55  void Echo(){ /*{{{*/
56  this->DeepEcho();
57  } /*}}}*/
58  int Id(){/*{{{*/
59  _error_("Not implemented yet");
60  };/*}}}*/
61  int ObjectEnum(){/*{{{*/
62  return GenericOptionEnum;
63  };/*}}}*/
64 
65  /*GenericOption functions: */
66  void Get(OptionType* pvalue){/*{{{*/
67  *pvalue=value;
68  };/*}}}*/
69  char* Name(){/*{{{*/
70  return name;
71  };/*}}}*/
72 };
73 
74 #if defined(_HAVE_AD_) && !defined(_WRAPPERS_)
75 /*We hook off this specific specialization when not running ADOLC, otherwise we get a redeclaration with the next specialization*/
76 template <> inline void GenericOption<IssmPDouble*>::Get(IssmPDouble** pvalue){ /*{{{*/
77 
78  /*Copy vector*/
79  int numel = this->size[0]*this->size[1];
80  IssmPDouble* outvalue=xNew<IssmPDouble>(numel);
81  for(int i=0;i<numel;i++) outvalue[i]=this->value[i];
82 
83  /*Assign output pointer*/
84  *pvalue=outvalue;
85 } /*}}}*/
86 #endif
87 template <> inline void GenericOption<IssmDouble*>::Get(IssmDouble** pvalue){ /*{{{*/
88 
89  /*Copy vector*/
90  int numel = this->size[0]*this->size[1];
91  IssmDouble* outvalue=xNew<IssmDouble>(numel);
92  for(int i=0;i<numel;i++) outvalue[i]=this->value[i];
93 
94  /*Assign output pointer*/
95  *pvalue=outvalue;
96 } /*}}}*/
97 template <> inline void GenericOption<char*>::Get(char** pvalue){ /*{{{*/
98 
99  int stringsize=strlen(this->value)+1;
100  char* outstring=xNew<char>(stringsize);
101  xMemCpy<char>(outstring,this->value,stringsize);
102 
103  *pvalue=outstring;
104 }
105 /*}}}*/
106 
107 /*Special destructors when there is a pointer*/
108 template <> inline GenericOption<char*>::~GenericOption(){ /*{{{*/
109  if(name) xDelete<char>(name);
110  if(value) xDelete<char>(value);
111 }
112 /*}}}*/
113 
114 #endif /* _OPTIONOBJECT_H */
GenericOption::size
int size[2]
Definition: GenericOption.h:27
GenericOption::DeepEcho
void DeepEcho(char *indent)
Definition: GenericOption.h:47
GenericOption::Name
char * Name()
Definition: GenericOption.h:69
IssmDouble
double IssmDouble
Definition: types.h:37
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
GenericOption::name
char * name
Definition: GenericOption.h:25
GenericOption::value
OptionType value
Definition: GenericOption.h:26
GenericOption::DeepEcho
void DeepEcho()
Definition: GenericOption.h:43
GenericOption::GenericOption
GenericOption()
Definition: GenericOption.h:30
Object
Definition: Object.h:13
GenericOption::ObjectEnum
int ObjectEnum()
Definition: GenericOption.h:61
GenericOption::Id
int Id()
Definition: GenericOption.h:58
GenericOptionEnum
@ GenericOptionEnum
Definition: EnumDefinitions.h:1082
GenericOption::copy
Object * copy()
Definition: GenericOption.h:40
Option
Definition: Option.h:13
OptionUtilities.h
: header file for option object utilities
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
GenericOption::Echo
void Echo()
Definition: GenericOption.h:55
GenericOption::Get
void Get(OptionType *pvalue)
Definition: GenericOption.h:66
GenericOption::~GenericOption
~GenericOption()
Definition: GenericOption.h:35
IssmPDouble
IssmDouble IssmPDouble
Definition: types.h:38
GenericOption
Definition: GenericOption.h:22