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 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
|
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include "muParserDLL.h"
#define PARSER_CONST_PI 3.141592653589793238462643
#define PARSER_CONST_E 2.718281828459045235360287
#define PARSER_MAXVARS 10
extern void CalcBulk();
//---------------------------------------------------------------------------
// Callbacks for postfix operators
muFloat_t Mega(muFloat_t a_fVal)
{
return a_fVal * 1.0e6;
}
muFloat_t Milli(muFloat_t a_fVal)
{
return a_fVal / 1.0e3;
}
muFloat_t ZeroArg()
{
printf("i'm a function without arguments.\n");
return 123;
}
muFloat_t BulkTest(int nBulkIdx, int nThreadIdx, muFloat_t v1)
{
printf("%d,%2.2f\n", nBulkIdx, v1);
return v1/(nBulkIdx+1);
}
//---------------------------------------------------------------------------
// Callbacks for infix operators
muFloat_t Not(muFloat_t v) { return v==0; }
//---------------------------------------------------------------------------
// Function callbacks
muFloat_t Rnd(muFloat_t v) { return v * rand() / (muFloat_t)(RAND_MAX+1.0); }
muFloat_t SampleQuery(const muChar_t *szMsg)
{
if (szMsg)
printf("%s\n", szMsg);
return 999;
}
muFloat_t Sum(const muFloat_t *a_afArg, int a_iArgc)
{
muFloat_t fRes=0;
int i=0;
for (i=0; i<a_iArgc; ++i)
fRes += a_afArg[i];
return fRes;
}
//---------------------------------------------------------------------------
// Binarty operator callbacks
muFloat_t Add(muFloat_t v1, muFloat_t v2)
{
return v1+v2;
}
muFloat_t Mul(muFloat_t v1, muFloat_t v2)
{
return v1*v2;
}
//---------------------------------------------------------------------------
// Factory function for creating new parser variables
// This could as well be a function performing database queries.
muFloat_t* AddVariable(const muChar_t* a_szName, void *pUserData)
{
static muFloat_t afValBuf[PARSER_MAXVARS]; // I don't want dynamic allocation here
static int iVal = 0; // so i used this buffer
printf("Generating new variable \"%s\" (slots left: %d; context pointer: 0x%x)\n", a_szName, PARSER_MAXVARS-iVal, pUserData);
afValBuf[iVal] = 0;
if (iVal>=PARSER_MAXVARS-1)
{
printf("Variable buffer overflow.");
return NULL;
}
return &afValBuf[iVal++];
}
//---------------------------------------------------------------------------
void Intro(muParserHandle_t hParser)
{
printf(" __________ \n");
printf(" _____ __ __\\______ \\_____ _______ ______ ____ _______\n");
printf(" / \\ | | \\| ___/\\__ \\ \\_ __ \\/ ___/_/ __ \\\\_ __ \\ \n");
printf(" | Y Y \\| | /| | / __ \\_| | \\/\\___ \\ \\ ___/ | | \\/ \n");
printf(" |__|_| /|____/ |____| (____ /|__| /____ > \\___ >|__| \n");
printf(" \\/ \\/ \\/ \\/ \n");
printf(" Version %s (DLL)\n", mupGetVersion(hParser));
printf(" (C) 2011 Ingo Berg\n");
printf("---------------------------------------\n");
printf("Commands:\n");
printf(" list var - list parser variables\n");
printf(" list exprvar - list expression variables\n");
printf(" list const - list all numeric parser constants\n");
printf(" locale de - switch to german locale\n");
printf(" locale en - switch to english locale\n");
printf(" locale reset - reset locale\n");
printf(" test bulk - test bulk mode\n");
printf(" quit - exits the parser\n\n");
printf("---------------------------------------\n");
printf("Constants:\n");
printf(" \"_e\" 2.718281828459045235360287\n");
printf(" \"_pi\" 3.141592653589793238462643\n");
printf("---------------------------------------\n");
printf("Please enter an expression:\n");
}
//---------------------------------------------------------------------------
// Callback function for parser errors
void OnError(muParserHandle_t hParser)
{
printf("\nError:\n");
printf("------\n");
printf("Message: \"%s\"\n", mupGetErrorMsg(hParser));
printf("Token: \"%s\"\n", mupGetErrorToken(hParser));
printf("Position: %d\n", mupGetErrorPos(hParser));
printf("Errc: %d\n", mupGetErrorCode(hParser));
}
//---------------------------------------------------------------------------
void ListVar(muParserHandle_t a_hParser)
{
int iNumVar = mupGetVarNum(a_hParser);
int i = 0;
if (iNumVar==0)
{
printf("No variables defined\n");
return;
}
printf("\nExpression variables:\n");
printf("---------------------\n");
printf("Number: %d\n", iNumVar);
for (i=0; i<iNumVar; ++i)
{
const muChar_t* szName = 0;
muFloat_t* pVar = 0;
mupGetVar(a_hParser, i, &szName, &pVar);
printf("Name: %s Address: [0x%x]\n", szName, (long long)pVar);
}
}
//---------------------------------------------------------------------------
void ListExprVar(muParserHandle_t a_hParser)
{
muInt_t iNumVar = mupGetExprVarNum(a_hParser),
i = 0;
if (iNumVar==0)
{
printf("Expression dos not contain variables\n");
return;
}
printf("\nExpression variables:\n");
printf("---------------------\n");
printf("Expression: %s\n", mupGetExpr(a_hParser) );
printf("Number: %d\n", iNumVar);
for (i=0; i<iNumVar; ++i)
{
const muChar_t* szName = 0;
muFloat_t* pVar = 0;
mupGetExprVar(a_hParser, i, &szName, &pVar);
printf("Name: %s Address: [0x%x]\n", szName, (long long)pVar);
}
}
//---------------------------------------------------------------------------
void ListConst(muParserHandle_t a_hParser)
{
muInt_t iNumVar = mupGetConstNum(a_hParser),
i = 0;
if (iNumVar==0)
{
printf("No constants defined\n");
return;
}
printf("\nParser constants:\n");
printf("---------------------\n");
printf("Number: %d", iNumVar);
for (i=0; i<iNumVar; ++i)
{
const muChar_t* szName = 0;
muFloat_t fVal = 0;
mupGetConst(a_hParser, i, &szName, &fVal);
printf(" %s = %f\n", szName, fVal);
}
}
//---------------------------------------------------------------------------
/** \brief Check for external keywords.
*/
int CheckKeywords(const char *a_szLine, muParserHandle_t a_hParser)
{
if (!strcmp(a_szLine, "quit"))
{
return -1;
}
else if (!strcmp(a_szLine,"list var"))
{
ListVar(a_hParser);
return 1;
}
else if (!strcmp(a_szLine, "list exprvar"))
{
ListExprVar(a_hParser);
return 1;
}
else if (!strcmp(a_szLine, "list const"))
{
ListConst(a_hParser);
return 1;
}
else if (!strcmp(a_szLine, "locale de"))
{
printf("Setting german locale: ArgSep=';' DecSep=',' ThousandsSep='.'\n");
mupSetArgSep(a_hParser, ';');
mupSetDecSep(a_hParser, ',');
mupSetThousandsSep(a_hParser, '.');
return 1;
}
else if (!strcmp(a_szLine, "locale en"))
{
printf("Setting english locale: ArgSep=',' DecSep='.' ThousandsSep=''\n");
mupSetArgSep(a_hParser, ',');
mupSetDecSep(a_hParser, '.');
mupSetThousandsSep(a_hParser, 0);
return 1;
}
else if (!strcmp(a_szLine, "locale reset"))
{
printf("Resetting locale\n");
mupResetLocale(a_hParser);
return 1;
}
else if (!strcmp(a_szLine, "test bulk"))
{
printf("Testing bulk mode\n");
CalcBulk();
return 1;
}
return 0;
}
//---------------------------------------------------------------------------
void CalcBulk()
{
int nBulkSize = 200, i;
muFloat_t *x = (muFloat_t*)malloc(nBulkSize * sizeof(muFloat_t));
muFloat_t *y = (muFloat_t*)malloc(nBulkSize * sizeof(muFloat_t));
muFloat_t *r = (muFloat_t*)malloc(nBulkSize * sizeof(muFloat_t));
muParserHandle_t hParser = mupCreate(muBASETYPE_FLOAT); // initialize the parser
for (i=0; i<nBulkSize; ++i)
{
x[i] = i;
y[i] = i;
r[i] = 0;
}
mupDefineVar(hParser, "x", x);
mupDefineVar(hParser, "y", y);
mupDefineBulkFun1(hParser, "bulktest", BulkTest);
mupSetExpr(hParser, "bulktest(x+y)");
mupEvalBulk(hParser, r, nBulkSize);
if (mupError(hParser))
{
printf("\nError:\n");
printf("------\n");
printf("Message: %s\n", mupGetErrorMsg(hParser) );
printf("Token: %s\n", mupGetErrorToken(hParser) );
printf("Position: %d\n", mupGetErrorPos(hParser) );
printf("Errc: %d\n", mupGetErrorCode(hParser) );
return;
}
for (i=0; i<nBulkSize; ++i)
{
printf("%d: bulkfun(%2.2f + %2.2f) = %2.2f\n", i, x[i], y[i], r[i]);
x[i] = i;
y[i] = (muFloat_t)i/10;
}
free(x);
free(y);
free(r);
}
//---------------------------------------------------------------------------
void Calc()
{
muChar_t szLine[100];
muFloat_t fVal = 0,
afVarVal[] = { 1, 2 }; // Values of the parser variables
muParserHandle_t hParser;
hParser = mupCreate(muBASETYPE_FLOAT); // initialize the parser
Intro(hParser);
// Set an error handler [optional]
// the only function that does not take a parser instance handle
mupSetErrorHandler(hParser, OnError);
//#define GERMAN_LOCALS
#ifdef GERMAN_LOCALS
mupSetArgSep(hParser, ';');
mupSetDecSep(hParser, ',');
mupSetThousandsSep(hParser, '.');
#else
mupSetArgSep(hParser, ',');
mupSetDecSep(hParser, '.');
#endif
// Set a variable factory
mupSetVarFactory(hParser, AddVariable, NULL);
// Define parser variables and bind them to C++ variables [optional]
mupDefineConst(hParser, "const1", 1);
mupDefineConst(hParser, "const2", 2);
mupDefineStrConst(hParser, "strBuf", "Hallo welt");
// Define parser variables and bind them to C++ variables [optional]
mupDefineVar(hParser, "a", &afVarVal[0]);
mupDefineVar(hParser, "b", &afVarVal[1]);
// Define postfix operators [optional]
mupDefinePostfixOprt(hParser, "M", Mega, 0);
mupDefinePostfixOprt(hParser, "m", Milli, 0);
// Define infix operator [optional]
mupDefineInfixOprt(hParser, "!", Not, 0);
// Define functions [optional]
// mupDefineStrFun(hParser, "query", SampleQuery, 0); // Add an unoptimizeable function
mupDefineFun0(hParser, "zero", ZeroArg, 0);
mupDefineFun1(hParser, "rnd", Rnd, 0); // Add an unoptimizeable function
mupDefineFun1(hParser, "rnd2", Rnd, 1);
mupDefineMultFun(hParser, "_sum", Sum, 0); // "sum" is already a default function
// Define binary operators [optional]
mupDefineOprt(hParser, "add", Add, 0, muOPRT_ASCT_LEFT, 0);
mupDefineOprt(hParser, "mul", Mul, 1, muOPRT_ASCT_LEFT, 0);
while ( fgets(szLine, 99, stdin) )
{
szLine[strlen(szLine)-1] = 0; // overwrite the newline
switch(CheckKeywords(szLine, hParser))
{
case 0: break; // no keyword found; parse the line
case 1: continue; // A Keyword was found do not parse the line
case -1: return; // abort the application
}
mupSetExpr(hParser, szLine);
fVal = mupEval(hParser);
// Without an Error handler function
// you must use this for error treatment:
//if (mupError(hParser))
//{
// printf("\nError:\n");
// printf("------\n");
// printf("Message: %s\n", mupGetErrorMsg(hParser) );
// printf("Token: %s\n", mupGetErrorToken(hParser) );
// printf("Position: %s\n", mupGetErrorPos(hParser) );
// printf("Errc: %d\n", mupGetErrorCode(hParser) );
// continue;
//}
if (!mupError(hParser))
printf("%f\n", fVal);
} // while
// finalle free the parser ressources
mupRelease(hParser);
}
//---------------------------------------------------------------------------
int main(int argc, char *argv[])
{
// The next line is just for shutting up the compiler warning
// about unused variables without getting another warning about not
// beeing able to use type lists in function declarations.
printf("Executing \"%s\"\n", argv[0]);
Calc();
printf("done...");
}
|