Ice Sheet System Model  4.18
Code documentation
Public Member Functions
Options Class Reference

#include <Options.h>

Inheritance diagram for Options:
DataSet

Public Member Functions

 Options ()
 
 ~Options ()
 
int AddOption (Option *in_oobject)
 
OptionGetOption (const char *name)
 
template<class OptionType >
void Get (OptionType *pvalue, const char *name)
 
template<class OptionType >
void Get (OptionType *pvalue, const char *name, OptionType default_value)
 
template<>
void Get (char **pvalue, const char *name, char *default_value)
 
- Public Member Functions inherited from DataSet
 DataSet ()
 
 DataSet (int enum_type)
 
 ~DataSet ()
 
void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
 
int GetEnum ()
 
int GetEnum (int offset)
 
void Echo ()
 
void DeepEcho ()
 
int AddObject (Object *object)
 
int DeleteObject (int id)
 
int Size ()
 
void clear ()
 
ObjectGetObjectByOffset (int offset)
 
ObjectGetObjectById (int *poffset, int eid)
 
void Presort ()
 
void Sort ()
 
DataSetCopy (void)
 
int DeleteObject (Object *object)
 

Additional Inherited Members

- Data Fields inherited from DataSet
std::vector< Object * > objects
 
int enum_type
 
int sorted
 
int presorted
 
int numsorted
 
int * sorted_ids
 
int * id_offsets
 

Detailed Description

Definition at line 9 of file Options.h.

Constructor & Destructor Documentation

◆ Options()

Options::Options ( )

Definition at line 23 of file Options.cpp.

23  {/*{{{*/
24  return;
25 }

◆ ~Options()

Options::~Options ( )

Definition at line 27 of file Options.cpp.

27  {/*{{{*/
28  return;
29 }

Member Function Documentation

◆ AddOption()

int Options::AddOption ( Option in_oobject)

Definition at line 33 of file Options.cpp.

33  {/*{{{*/
34 
35  char* name=NULL;
36 
37  vector<Object*>::iterator object;
38  Option* option=NULL;
39 
40  /*In debugging mode, check that the option is not a NULL pointer*/
41  _assert_(in_option);
42 
43  /*Also, check the option name*/
44  name=in_option->Name();
45 
46  if(!name) _error_("input option has an empty name");
47  if(strchr(name,'.')) _error_("Option \"" << name << "\" has a protected character \".\"");
48  if(strchr(name,'[')) _error_("Option \"" << name << "\" has a protected character \"[\"");
49  if(strchr(name,']')) _error_("Option \"" << name << "\" has a protected character \"]\"");
50 
51  /*Finally, check that no option of the same name already exists in the dataset*/
52  for(object=objects.begin();object<objects.end();object++){
53 
54  option=xDynamicCast<Option*>(*object);
55  if (!strcmp(option->Name(),name)){
56  _error_("Options \"" << name << "\" found multiple times");
57  break;
58  }
59  }
60 
61  /*OK, all checks went well, add option to dataset*/
62  this->AddObject(in_option);
63 
64  return 1;
65 }

◆ GetOption()

Option * Options::GetOption ( const char *  name)

Definition at line 67 of file Options.cpp.

67  {/*{{{*/
68 
69  vector<Object*>::iterator object;
70  Option* option=NULL;
71 
72  /*Go through options and find option: */
73  for ( object=objects.begin() ; object < objects.end(); object++ ){
74 
75  option=xDynamicCast<Option*>(*object);
76  //option=(Option*)(*object); //C-like cast
77  /*There is a crash on some machines (Einar Olason) that needs to be fixed*/
78  if(!option){
79  _printf_("The dynamic_cast from Object* to Option* is failing.\n");
80  _printf_("\n");
81  _printf_("A quick workaround consists of using a C-like cast\n");
82  _printf_("\n");
83  _printf_("Open Options.cpp and change the dynamic_cast in Options::GetOption by a C-like cast\n");
84  //_printf_("Open Options.h and replace the dynamic_cast of all the Get functions to C-like cats\n");
85  _printf_("\n");
86  _error_("Make the fix above and recompile ISSM");
87  }
88 
89  if (!strncmp(name,option->Name(),strlen(option->Name()))){
90 
91  /*OK, now do we have a complete name? If not, it is a cell or a structure, we need to go further*/
92  if(!strcmp(name,option->Name())){
93  return option;
94  }
95  else{
96  _error_("Cannot recover field \"" << name << "\" for an option of type " << EnumToStringx(option->ObjectEnum()));
97  }
98  }
99  }
100 
101  /*Option not found return NULL pointer*/
102  return NULL;
103 }

◆ Get() [1/3]

template<class OptionType >
void Options::Get ( OptionType *  pvalue,
const char *  name 
)
inline

Definition at line 21 of file Options.h.

21  { /*{{{*/
22 
23  /*Get option*/
24  GenericOption<OptionType>* genericoption=xDynamicCast<GenericOption<OptionType>*>(GetOption(name));
25 
26  /*If the pointer is not NULL, the option has been found*/
27  if(genericoption){
28  genericoption->Get(pvalue);
29  }
30  /*Else, the Option does not exist, no default provided*/
31  else{
32  _error_("option of name \"" << name << "\" not found, and no default value has been provided");
33  }
34  }

◆ Get() [2/3]

template<class OptionType >
void Options::Get ( OptionType *  pvalue,
const char *  name,
OptionType  default_value 
)
inline

Definition at line 36 of file Options.h.

36  { /*{{{*/
37 
38  /*Get option*/
39  GenericOption<OptionType>* genericoption=xDynamicCast<GenericOption<OptionType>*>(GetOption(name));
40 
41  /*If the pointer is not NULL, the option has been found*/
42  if(genericoption){
43  genericoption->Get(pvalue);
44  }
45  else{
46  if(GetOption(name)) _printf_("WARNING: option "<<name<<" found but fetched format not consistent, defaulting...\n");
47  *pvalue=default_value;
48  }
49  }

◆ Get() [3/3]

template<>
void Options::Get ( char **  pvalue,
const char *  name,
char *  default_value 
)
inline

Definition at line 56 of file Options.h.

56  { /*{{{*/
57 
58  /*Get option*/
59  GenericOption<char*>* genericoption=xDynamicCast<GenericOption<char*>*>(GetOption(name));
60 
61  /*If the pointer is not NULL, the option has been found*/
62  if(genericoption){
63  genericoption->Get(pvalue);
64  }
65  else{
66  /*Make a copy*/
67  int stringsize=strlen(default_value)+1;
68  char* outstring=xNew<char>(stringsize);
69  xMemCpy<char>(outstring,default_value,stringsize);
70  *pvalue=outstring;
71  }
72 }

The documentation for this class was generated from the following files:
_assert_
#define _assert_(ignore)
Definition: exceptions.h:37
DataSet::AddObject
int AddObject(Object *object)
Definition: DataSet.cpp:252
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
DataSet::objects
std::vector< Object * > objects
Definition: DataSet.h:19
Option::ObjectEnum
int ObjectEnum()
Definition: Option.h:28
EnumToStringx
const char * EnumToStringx(int enum_in)
Definition: EnumToStringx.cpp:15
Option::Name
virtual char * Name()=0
Option
Definition: Option.h:13
Options::GetOption
Option * GetOption(const char *name)
Definition: Options.cpp:67
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
GenericOption::Get
void Get(OptionType *pvalue)
Definition: GenericOption.h:66
GenericOption
Definition: GenericOption.h:22