| Author |
custom interpreted language or full blown python language
|
Avi Dixit
Greenhorn
Joined: Jun 13, 2012
Posts: 10
|
|
Hi,
I am a Basic java user. I want to create an application where I want to give user a chance to plugin its own calculations. Now users won't be expert in any language.
I need to do the following
1. Give access to the variables for user to use
2. run user defined script to calculate an output variable and use it further. User run scripts will be very simple ones. like simple if functions, for functions. they won't be full blown Object oriented language.
I want to be able to have at least a basic check on the syntax that user is using.
Please give me some direction so that I can implement this. What you guys think would be the best way to do this
Whats your opinion about using Jython, can it be done. I know there is "antlr" but I am thinking of easiest way to do it.
Sorry if my question is not clear, its kind of hard to frame it exactly the right way.
regards,
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12911
|
|
|
Java has a scripting API; look at the documentation for the package javax.script. By default it comes at least with an interpreter for JavaScript, and you can plug in scripting engines for other languages. There's no need to build your own parser etc. (unless you really want to invent your own little language).
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
 |
|
|
subject: custom interpreted language or full blown python language
|
|
|