Ice Sheet System Model  4.18
Code documentation
Options.cpp
Go to the documentation of this file.
1 /*
2  * \file Options.cpp
3  * \brief: Implementation of Options class, derived from DataSet class.
4  */
5 
6 /*Headers: {{{*/
7 #ifdef HAVE_CONFIG_H
8  #include <config.h>
9 #else
10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
11 #endif
12 
13 #include <vector>
14 #include <algorithm>
15 #include <cstring>
16 
17 #include "./Options.h"
18 #include "../../datastructures/datastructures.h"
19 #include "../../shared/shared.h"
20 /*}}}*/
21 
22 /*Object constructors and destructor*/
24  return;
25 }
26 /*}}}*/
28  return;
29 }
30 /*}}}*/
31 
32 /*Object management*/
33 int Options::AddOption(Option* in_option){/*{{{*/
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 }
66 /*}}}*/
67 Option* Options::GetOption(const char* name){/*{{{*/
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 }
104 /*}}}*/
_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
Options.h
Options::~Options
~Options()
Definition: Options.cpp:27
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
Options::AddOption
int AddOption(Option *in_oobject)
Definition: Options.cpp:33
Options::Options
Options()
Definition: Options.cpp:23