vote up 1 vote down star

I have an application where for each object the user can specify his own measurepoints. The values of theese measurements will then be used to classify the object as i e A - needs service, B - service should be scheduled within X days, C - no service needed ATM

However theese objects can be almost anything and there is no way we can hard code how the measured values should be aggregated to a classification, we need to leave that to the user.

Have you any suggestions on how we can provide a way for the user to enter his own formulas for this? It does not have to be idiot-proof, we dont have that many customers so we can assist them as long as they can explain it to us.

flag

70% accept rate
1  
Can you explain the problem a little more? – BobbyShaftoe Oct 29 at 14:34
Can this be accomplished by letting the user define value limits that will flag an object as category 1,2 or 3 ? Or does the objects have different properties altogether ? – sindre j Oct 29 at 14:53
No that wont do it. I need something that supports most common mathematical functions and preferably also conditional operators. – Freddy Oct 29 at 16:03

7 Answers

vote up 1 vote down check

Flee expression evaluator

You could give the users a list of variables that are valid to use and let them come up with their own expressions. You would then pass all the expressions, variable names and values to Flee and it would resolve all expressions to a value or true/false.

link|flag
This looks like a really good option for me. Thanx! – Freddy Oct 29 at 15:44
You could also look at lundin.info, which does something similar. – Paddy Oct 29 at 16:44
Looks nice, but Flee provides better examples and documentation. – Freddy Oct 30 at 14:03
vote up 1 vote down

SpreadsheetGear for .NET might be a good choice. SpreadsheetGear accepts and calculates formulas in the language most users already know - Excel. SpreadsheetGear includes a Windows Forms spreadsheet control, or you can use it as a library if you are doing ASP.NET or a web service.

You can see simple ASP.NET calculation samples here, or download the free trial here if you want to try the WinForms control.

Disclaimer: I own SpreadsheetGear LLC

link|flag
Although I posted the ansewer about a DSL, I fully endorse and use Joe's Spreadsheet gear. It's a great product. – Darien Ford Oct 29 at 15:20
This would probably have been my choice if the user that was going to create the formulas wasnt a person with good programming skills, however at this point I cant see a situation where we would ever let the real end user configure this so a more complicated (and free) solution isnt a problem. But the product looks great and I will keep it in mind for future products. – Freddy Oct 29 at 15:57
vote up 0 vote down

Could the user use his knowledge of the object and just decide which category to put it in when he enters it into the system? Guess we need more info but if the user can define which measurepoints determine which category, couldn't they just choose the category?

link|flag
vote up 1 vote down

Your situation is a perfect case for a domain specific language. A DSL would allow you to specify an allowable grammar for your "formula language" and then provide feedback to the user as well as calculate the result.

Antlr is a very good tool for this. It is a parser/lexar generator. Basically you specify the grammar in Antlr's own description DSL, and it generates robust lexers and parsers for you in your language of choice.

For example, if your language allows simple calculations this is how it would be specified in antlr's language (from antlr's wiki):

grammar SimpleCalc;

options {
    language=CSharp2;
}

tokens {
    PLUS 	= '+' ;
    MINUS	= '-' ;
    MULT	= '*' ;
    DIV	= '/' ;
}

@members {
    public static void Main(string[] args) {
        SimpleCalcLexer lex = new SimpleCalcLexer(new ANTLRFileStream(args[0]));
        CommonTokenStream tokens = new CommonTokenStream(lex);

        SimpleCalcParser parser = new SimpleCalcParser(tokens);

        try {
            parser.expr();
        } catch (RecognitionException e)  {
            Console.Error.WriteLine(e.StackTrace);
        }
    }
}

/*------------------------------------------------------------------
 * PARSER RULES
 *------------------------------------------------------------------*/

expr    : term ( ( PLUS | MINUS )  term )* ;

term    : factor ( ( MULT | DIV ) factor )* ;

factor  : NUMBER ;


/*------------------------------------------------------------------
 * LEXER RULES
 *------------------------------------------------------------------*/

NUMBER  : (DIGIT)+ ;

WHITESPACE : ( '\t' | ' ' | '\r' | '\n'| '\u000C' )+    { $channel = HIDDEN; } ;

fragment DIGIT  : '0'..'9' ;

You can find out more about DSLs in general here.

link|flag
Good suggestion, but I think that Flee provides all I need with less lines of code than this. – Freddy Oct 29 at 15:49
vote up 0 vote down

You mention the objects can be "almost anything". Can the measure points also be almost anything? Presumably the measurements would be limited to defined properties of the object in question, in which case you could presumably expose a wizard-like editor that would allow the user to perform calculations based on object properties discovered via reflection. One thing you have going for you by way of bounding the problem is you seem to be enforcing 3 endpoints for measurement instead of 1 to N states.

One last suggestion, I think for sufficient flexibility you will need an independent measurement object model that binds to the objects you wish to measure.

How important is it for you to enforce exclusivity on the measurements? Protecting the user from defining overlapping states will perhaps be the toughest piece of this, since from your description it would seem that entirely different measurements are valid to attach to different states.

Also, do you know how you will be polling the objects to calculate measurements to define the state of the objects?

Sorry to speak so generally but really at this point your question is pretty general. Good luck.

link|flag
I will have to be more specific in my questions :) You have given med some things to think about but I think I have found my solution in Flee. – Freddy Oct 29 at 15:52
vote up 0 vote down

You should use .NET 3.5 Expressions, in System.Linq.Expressions. Scott Gu has provided a Dynamic Expression API that allows you to evaluate strings to turn them into expression trees, which may then be evaluated by code either to examine the expression contents, or compiled for execution.

http://weblogs.asp.net/scottgu/archive/2008/01/07/dynamic-linq-part-1-using-the-linq-dynamic-query-library.aspx

link|flag
vote up 0 vote down

This might work:

http://www.codeproject.com/KB/recipes/dynamicformula.aspx

link|flag
I don't think OP is talking about evaluating expressions. – Groo Oct 29 at 14:40
I think he does – zvolkov Oct 29 at 15:07
Maybe I was a bit unclear in my question. But this is too simple for my needs. – Freddy Oct 29 at 15:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.