Translates infix formulas into MathML and vice-versa, using the SBML Level 3 parser instead of the old Level 1 parser.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define BUFFER_SIZE 1024
char *translateMathML (const char *xml);
int
main (int argc, char* argv[])
{
char *line;
char *result;
char *buffer = (char*)calloc( 1, sizeof(char) );
unsigned long len;
int reading = 1;
printf( "\n" );
printf( "This program translates infix formulas into MathML and\n" );
printf( "vice-versa. An 'enter' or a 'return' on an empty line\n" );
printf( "triggers translation.\n" );
printf( "\n" );
while (reading)
{
printf( "Enter infix formula, MathML expression, \n");
printf( "or change parsing rules with the keywords:\n");
printf( "LOG_AS_LOG10, LOG_AS_LN, LOG_AS_ERROR, EXPAND_UMINUS, ");
printf( "COLLAPSE_UMINUS, TARGETL2, TARGETL3, NO_UNITS, UNITS, ");
printf( "or FILE:<filename>\n\n\n" );
printf( "> " );
do
{
line = trim_whitespace(get_line(stdin));
len = (unsigned int)strlen(line);
if (len > 0)
{
buffer = (char *) realloc( buffer, 1 + strlen(buffer) + len );
if (strcmp(line, "LOG_AS_LOG10")==0) {
printf( "Now parsing 'log(x)' as 'log10(x)'\n\n> ");
}
else if (strcmp(line, "LOG_AS_LN")==0) {
printf( "Now parsing 'log(x)' as 'ln(x)'\n\n> ");
}
else if (strcmp(line, "LOG_AS_ERROR")==0) {
printf( "Now parsing 'log(x)' as an error\n\n> ");
}
else if (strcmp(line, "EXPAND_UMINUS")==0) {
printf( "Will now leave multiple unary minuses expanded, ");
printf("and all negative numbers will be translated using the ");
printf("<minus> construct.\n\n> ");
}
else if (strcmp(line, "COLLAPSE_UMINUS")==0) {
printf( "Will now collapse multiple unary minuses, and incorporate ");
printf("a negative sign into digits.\n\n> ");
}
else if (strcmp(line, "NO_UNITS")==0) {
printf( "Will now target MathML but with no units on numbers.\n\n> ");
}
else if (strcmp(line, "UNITS")==0) {
printf( "Will now target MathML but with units on numbers.\n\n> ");
}
else if (line[0] == 'F' && line[1] == 'I' && line[2]=='L'
&& line[3]=='E' && line[4]==':') {
size_t len = strlen(line);
char *filename = (char*) malloc(len-5+1);
strncpy(filename, line+5, len-5);
printf( "File '%s' not found or no model present.", filename);
printf( "Clearing the Model parsing object.\n\n> ");
}
else {
printf( "Using model from file %s to parse infix:", filename);
printf( "all symbols present in that model will not be translated ");
printf( "as native MathML or SBML-defined elements.\n\n> ");;
}
}
else
{
strncat(buffer, line, len);
strncat(buffer, "\n", 1);
}
}
else
{
result = (buffer[0] == '<') ?
translateMathML(buffer) : translateInfix(buffer, settings);
printf("Result:\n\n%s\n\n\n", result);
free(result);
reading = 0;
}
}
while (len > 0);
}
free(line);
return 0;
}
char *
{
char* result;
if (math==NULL) {
}
else {
}
return result;
}
char *
translateMathML (const char* xml)
{
char* result;
return result;
}