1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
|
/*
new_opts.c:
Copyright (C) 2005 Istvan Varga
This file is part of Csound.
The Csound Library is free software; you can redistribute it
and/or modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
Csound is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with Csound; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
02110-1301 USA
*/
/**
* Assignment to configuration variables from the command line can be done
* with '-+NAME=VALUE'. Boolean variables can be set to true with any of
* '-+NAME', '-+NAME=1', '-+NAME=yes', '-+NAME=on', and '-+NAME=true',
* while setting to false is possible with any of '-+no-NAME', '-+NAME=0',
* '-+NAME=no', '-+NAME=off', and '-+NAME=false'.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "csoundCore.h"
#include "csound.h"
#include "new_opts.h"
/* list command line usage of all registered configuration variables */
void dump_cfg_variables(CSOUND *csound)
{
csCfgVariable_t **p;
int i;
p = csoundListConfigurationVariables(csound);
if (p == NULL)
return;
if (p[0] == NULL)
return;
csound->Message(csound, "\n");
i = 0;
do {
csound->Message(csound, "-+%s=", (char*) ((p[i])->h.name));
switch ((p[i])->h.type) {
case CSOUNDCFG_INTEGER:
csound->Message(csound, Str("<integer>"));
if ((p[i])->i.min > -0x7FFFFFFF)
csound->Message(csound, ", %s%d", Str("min: "), (p[i])->i.min);
if ((p[i])->i.max < 0x7FFFFFFF)
csound->Message(csound, ", %s%d", Str("max: "), (p[i])->i.max);
if ((p[i])->i.flags & CSOUNDCFG_POWOFTWO)
csound->Message(csound, ", %s", Str("must be power of two"));
break;
case CSOUNDCFG_BOOLEAN:
csound->Message(csound, Str("<boolean>"));
break;
case CSOUNDCFG_FLOAT:
csound->Message(csound, Str("<float>"));
if ((p[i])->f.min > -1.0e24f)
csound->Message(csound, ", %s%g", Str("min: "),
(double) (p[i])->f.min);
if ((p[i])->f.max < 1.0e24f)
csound->Message(csound, ", %s%g", Str("max: "),
(double) (p[i])->f.max);
break;
case CSOUNDCFG_DOUBLE:
csound->Message(csound, Str("<float>"));
if ((p[i])->d.min > -1.0e24)
csound->Message(csound, ", %s%g", Str("min: "),
(double) (p[i])->d.min);
if ((p[i])->d.max < 1.0e24)
csound->Message(csound, ", %s%g", Str("max: "),
(double) (p[i])->d.max);
break;
case CSOUNDCFG_MYFLT:
csound->Message(csound, Str("<float>"));
if ((p[i])->m.min > ((MYFLT) -1.0e24))
csound->Message(csound, ", %s%g", Str("min: "),
(double) (p[i])->m.min);
if ((p[i])->m.max < ((MYFLT) 1.0e24))
csound->Message(csound, ", %s%g", Str("max: "),
(double) (p[i])->m.max);
break;
case CSOUNDCFG_STRING:
csound->Message(csound, Str("<string> (max. length = %d characters)"),
(p[i])->s.maxlen - 1);
break;
default:
csound->Message(csound, Str("<unknown>"));
}
csound->Message(csound, "\n");
if ((p[i])->h.longDesc != NULL)
csound->Message(csound, "\t%s\n", Str((char*) p[i]->h.longDesc));
else if ((p[i])->h.shortDesc != NULL)
csound->Message(csound, "\t%s\n", Str((char*) p[i]->h.shortDesc));
} while (p[++i] != NULL);
}
/* Parse 's' as an assignment to a configuration variable in the format */
/* '-+NAME=VALUE'. In the case of boolean variables, the format may also */
/* be '-+NAME' for true, and '-+no-NAME' for false. */
/* Return value is zero on success. */
int parse_option_as_cfgvar(CSOUND *csound, const char *s)
{
csCfgVariable_t *p;
if (UNLIKELY((int) strlen(s) < 3)) {
csound->Warning(csound, Str(" *** '%s' is not a valid "
"Csound command line option."), s);
csound->Warning(csound, Str(" *** Type 'csound --help' for the list of "
"available options"));
return 0;
}
if (UNLIKELY(strncmp(s, "-+", 2) != 0)) {
csound->Warning(csound, Str(" *** '%s' is not a valid "
"Csound command line option."), s);
csound->Warning(csound, Str(" *** Type 'csound --help' for the list of "
"available options"));
return 0;
}
if (strchr(s, '=') == NULL) {
/* there is no '=' character, must be a boolean */
p = csoundQueryConfigurationVariable(csound, s + 2);
if (p != NULL) {
if (UNLIKELY(p->h.type != CSOUNDCFG_BOOLEAN)) {
csound->Warning(csound, Str(" *** type of option '%s' "
"is not boolean"), s + 2);
return 0;
}
*(p->b.p) = 1;
}
else if (LIKELY((int) strlen(s) > 5)) {
if (UNLIKELY(strncmp(s, "-+no-", 5) != 0)) {
csound->Warning(csound, Str(" *** '%s': invalid option name"),
s + 2);
return 0;
}
p = csoundQueryConfigurationVariable(csound, s + 5);
if (UNLIKELY(p == NULL)) {
csound->Warning(csound, Str(" *** '%s': invalid option name"),
s + 2);
return -1;
}
if (UNLIKELY(p->h.type != CSOUNDCFG_BOOLEAN)) {
csound->Warning(csound, Str(" *** type of option '%s' "
"is not boolean"), s + 2);
return 0;
}
*(p->b.p) = 0;
}
else {
csound->Warning(csound, Str(" *** '%s': invalid option name"), s + 2);
return 0;
}
}
else if (LIKELY((int) strlen(s) > 3)) {
char *buf, *val, *tmp;
int retval;
buf = (char*) csound->Malloc(csound,
sizeof(char) * (size_t) ((int) strlen(s) - 1));
if (UNLIKELY(buf == NULL)) {
csound->Warning(csound, Str(" *** memory allocation failure"));
return -1;
}
/* strcpy(buf, s + 2); */
val = (char*) s+2;
tmp = buf;
while (*val!='\0') {
/*
* CAN char used during the parsing in CsOptions to mark
* the removable characters '\'. ETX char used to mark
* the limits of a string.
*/
if (*val != 0x18 && *val != 3)
*tmp++ = *val;
val++;
}
*tmp='\0';
val = strchr(buf, '=');
*(val++) = '\0'; /* 'buf' is now the name, 'val' is the value string */
retval = csoundParseConfigurationVariable(csound, buf, val);
if (UNLIKELY(retval != CSOUNDCFG_SUCCESS)) {
csound->Warning(csound,
Str(" *** error setting option '%s' to '%s': %s"),
buf, val, csoundCfgErrorCodeToString(retval));
csound->Free(csound, (void*) buf);
return 0;
}
csound->Free(csound, (void*) buf);
}
else {
csound->Warning(csound, Str(" *** '%s' is not a valid "
"Csound command line option."), s);
csound->Warning(csound, Str(" *** Type 'csound --help' for the list of "
"available options."));
return 0;
}
return 0;
}
|