Ice Sheet System Model  4.18
Code documentation
ToolkitOptions.cpp
Go to the documentation of this file.
1 
5 #include <string.h>
6 #include "./ToolkitOptions.h"
7 #include "../shared/Numerics/types.h"
8 #include "../shared/Exceptions/exceptions.h"
9 #include "../shared/MemOps/MemOps.h"
10 
11 void ToolkitOptions::Init(const char* toolkit_in,const char* options){ /*{{{*/
12 
13  /*First, avoid a leak: */
14  xDelete<char>(toolkitoptions);
15  xDelete<char>(toolkittype);
16 
17  /*copy options into toolkitoptions:*/
18  _assert_(toolkit_in);
19  _assert_(options);
20  toolkittype = xNew<char>(strlen(toolkit_in)+1);
21  sprintf(toolkittype,"%s",toolkit_in);
22  toolkitoptions = xNew<char>(strlen(options)+1);
23  sprintf(toolkitoptions,"%s",options);
24 }/*}}}*/
25 void ToolkitOptions::Init(){ /*{{{*/
26  toolkittype = NULL;
27  toolkitoptions = NULL;
28 }/*}}}*/
30 
31  if(toolkittype==NULL) _error_("toolkittype not set (may be a mex?)");
32  char* toolkittype_out = xNew<char>(strlen(toolkittype)+1);
33  sprintf(toolkittype_out,"%s",toolkittype);
34  return toolkittype_out;
35 }/*}}}*/
36 char* ToolkitOptions::GetToolkitOptionValue(const char* option){ /*{{{*/
37 
38  return TokenValue(toolkitoptions,option);
39 
40 }/*}}}*/
41 char* TokenValue(char* tokenlist,const char* target){ /*{{{*/
42 
43  /*output:*/
44  char* value=NULL;
45 
46  /*intermediary: */
47  char *token = NULL;
48  char *tokenlistcopy = NULL;
49 
50  /*First, because tokenizing destroys a string, copy what we have: */
51  if(tokenlist==NULL) _error_("tokenlist not set (may be a mex?)");
52  tokenlistcopy= xNew<char>(strlen(tokenlist)+1);
53  sprintf(tokenlistcopy,"%s",tokenlist);
54 
55  /*Now go through list of tokens, and look for target, return value: */
56  token=strtok(tokenlistcopy, " ");
57  while(token != NULL) {
58 
59  /*Is this token starting with "-", if so, compare to our target: */
60  if (strncmp(token,"-",1)==0){
61  if (strcmp(token+1,target)==0){
62  /*Ok, we found our target. Get next token: */
63  token = strtok(NULL, " ");
64  /*This token could actually be another option start with "-", just be sure: */
65  if (strncmp(token,"-",1)==0){
66  /*ok, we hit another option, which means our target value is "":*/
67  value= xNew<char>(strlen("")+1);
68  sprintf(value,"%s","");
69  continue;
70  }
71  else{
72  /*this token is the value we are looking for, copy: */
73  value= xNew<char>(strlen(token)+1);
74  sprintf(value,"%s",token);
75  }
76  }
77  else{
78  /*we found the wrong target. Go to the next option: */
79  token = strtok(NULL, " ");
80  if (strncmp(token,"-",1)==0){
81  /*this is indeed an option, continue: */
82  continue;
83  }
84  else{
85  /*this is the value of the option, discard it: */
86  }
87  }
88  }
89  else _error_("token list should start with an option, not a value");
90 
91  /*Get new token and continue*/
92  token = strtok(NULL, " ");
93  }
94 
95  /*Clean up and return*/
96  xDelete<char>(tokenlistcopy);
97  return value;
98 }
99 /*}}}*/
_assert_
#define _assert_(ignore)
Definition: exceptions.h:37
ToolkitOptions::toolkittype
static char * toolkittype
Definition: ToolkitOptions.h:13
ToolkitOptions::GetToolkitType
static char * GetToolkitType(void)
Definition: ToolkitOptions.cpp:29
ToolkitOptions::GetToolkitOptionValue
static char * GetToolkitOptionValue(const char *option)
Definition: ToolkitOptions.cpp:36
TokenValue
char * TokenValue(char *tokenlist, const char *target)
Definition: ToolkitOptions.cpp:41
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
ToolkitOptions::toolkitoptions
static char * toolkitoptions
Definition: ToolkitOptions.h:14
ToolkitOptions::Init
static void Init(void)
Definition: ToolkitOptions.cpp:25
ToolkitOptions.h