Java - parse user defined functions

孤人 提交于 2019-12-13 09:07:21

问题


I am working on a program, where I want users to define a simple functions like randomInt(0,10) or randomString(10) instead of static arguments. What is the best way to parse and process such functions ?

I have not found any examples of such problem, the parser does not have to be ultra-efficient, it will not be called often, but mainly I want to focus on good code readability and scalability.

Example of user input:

"This is user randomString(5) and he is randomInt(18,60) years old!"

Expected output(s):

"This is user phiob and he is 45 years old!"

"This is user sdfrt and he is 30 years old!"


回答1:


One option is to use Spring SPEL. But it forces you to change the expression a little and use Spring library:

The expression can look like this:

'This is user ' + randomString(5) + ' and he is ' + randomInt(18,60) + ' years old!'

or this:

This is user #{randomString(5)} and he is #{randomInt(18,60)} years old!

or you can implement your own by having a custom TemplateParserContext.

And here is the code:

import org.springframework.expression.Expression;
import org.springframework.expression.ExpressionParser;
import org.springframework.expression.spel.standard.SpelExpressionParser;
import org.springframework.expression.spel.support.StandardEvaluationContext;

public class SomeTest {

        @Test
        public void test() {
            ExpressionParser parser = new SpelExpressionParser();

            Expression exp = parser.parseExpression(
                "This is user #{randomString(5)} and he is #{randomInt(18,60)} years old!", 
                new TemplateParserContext() );

            //alternative
            //Expression exp = parser.parseExpression(
            //        "'This is user ' + randomString(5) + ' and he is ' + randomInt(18,60) + ' years old!'");
            //    String message = (String) exp.getValue( new StandardEvaluationContext(this) );


            String message = (String) exp.getValue( new StandardEvaluationContext(this) );
        }

        public String randomString(int i) {
            return "rs-" + i;
        }

        public String randomInt(int i, int j) {
            return "ri-" + i + ":" + "j";
        }

    }

Whatever object you pass to StandardEvaluationContext should have those methods. I put them in the same class that also runs the expression.




回答2:


You could use something such as the following: Warning, I haven't tested it. Just something to get started with

public String parseInput(String input){
    String[] inputArray = input.split(" ");
    String output = "";
    for(String in : inputArray){ //run through each word of the user input
        if(in.contains("randomString(")){ //if the user is calling randomString
            String params = in.replace("randomString(", ""); //strip away function to get to params
            params = in.replace("(", ""); //strip away function to get to params
            String[] paramsArray = params.split(",");  //these are string integers, and could be converted
            //send off these split apart parameters to your randomString method
            String out = randomString(paramsArray); //method parses string integers, outputs string
            output += out + " ";
        }else if(in.contains("randomInt(")){ //if the user is calling randomInt
            String params = in.replace("randomInt(", ""); //strip away function to get to params
            params = in.replace("(", ""); //strip away function to get to params
            String[] paramsArray = params.split(","); //these are string integers, and could be converted
            //send off these split apart parameters to your randomInt method
            String out = randomInt(paramsArray); //method parses string integers, outputs string
            output += out + " ";
        }else{ //if the user is just entering text
            output += in + " "; //concat the output with what the user wrote plus a space
        }

    }
    return output;
}


来源:https://stackoverflow.com/questions/54693122/java-parse-user-defined-functions

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!