Tagged Questions
The embedded-language tag has no wiki summary.
14
votes
7answers
443 views
Embedding a Low Performance Scripting Language in Python
I have a web-application. As part of this, I need users of the app to be able to write (or copy and paste) very simple scripts to run against their data.
The scripts really can be very simple, and ...
14
votes
1answer
1k views
Embedded language: Lua vs Common Lisp (ECL)
Does anybody here have a experience with Common Lisp as a embedded language (using ECL)? If so, how good is ECL compared to Lua?
13
votes
13answers
2k views
Embedded Prolog Interpreter/Compiler for Java
I'm working on an application in Java, that needs to do some complex logic rule deductions as part of its functionality. I'd like to code my logic deductions in Prolog or some other logic/constraint ...
13
votes
14answers
2k views
What is a good embeddable language I can use for scripting inside my software?
What mature embeddable languages are available (or reversed, which popular languages have as a stated feature the ability to be embedded in other software)
and more importantly
What embeddable ...
11
votes
4answers
7k views
How to embed Ruby in C++?
What's the best way to embed Ruby as a scripting language in C++? Using ruby.h? SWIG? Something else? What I need is to expose some C++ objects to Ruby and have the Ruby interpreter evaluate scripts ...
8
votes
4answers
1k views
Deploying application with Python or another embedded scripting language
I'm thinking about using Python as an embedded scripting language in a hobby project written in C++. I would not like to depend on separately installed Python distribution. Python documentation seems ...
7
votes
2answers
345 views
Which interpreted language can work on on microchip PIC32?
I'm looking for an interpreted language that work on microchip PIC32.
Currently, I found that LUA and PAWN are working but before choosing I would like to know if some other languages are known to ...
7
votes
4answers
1k views
Python vs Lua for embedded scripting/text processing engine
For a project I'm currently working on, I'm looking to embed a scripting engine into my C++ code to allow for some extensibility down the line. The application will require a fair amount of text ...
7
votes
1answer
166 views
Embedded Python - Blocking operations in time module
I'm developing my own Python code interpreter using the Python C API, as described in the Python documentation. I've taken a look on the Python source code and I tried to follow the same steps that ...
7
votes
3answers
1k views
Is it possible to load and execute C# snippets using DLR?
The majority of material I have found regarding DLR is related to IronPython. Can you parse and execute C# using DLR? If so is there over head that would prevent you from attempting this on a web ...
6
votes
1answer
214 views
How to import a closure from groovy to java?
I'm trying to extract a closure from a groovy script. I define the closure as
def printMe = {str ->println str}
in my groovy file, and then try to use it by grabbing it from the binding as ...
6
votes
2answers
1k views
Stopping embedded Python
I'm embedding Python interpreter to a C program. However, it might happen that while running some python script via PyRun_SimpleString() will run into infinite loop or execute for too long. Consider ...
6
votes
4answers
928 views
Macro/Scripting language for non-developers with a simple GUI-based editor
We wish to provide people to be able to add some logic to their accounts(say, given a few arguments, how to compute a particular result). So, essentially, this would be tantamount to writing simple ...
5
votes
3answers
711 views
Are there any statically typed, embeddable scripting languages?
I am wondering if there are any statically typed, embeddable scripting languages. Python, JavaScript, etc. are great languages, but they are dynamically typed (that is, types are checked at run time). ...
5
votes
3answers
896 views
How do I compile Perl code within a C program?
I have a C program with an embedded Perl interpreter. I want to be able to precompile some Perl code from within the program. How do I do that?
Rationale (if anyone is interested) is to be able to ...
4
votes
2answers
741 views
How to embed LLVM?
As I understand, the LLVM Core project consists of:
Compiler - converts my source code to LLVM IR
VM - executes the compiled IR code
How can I embed this VM to my C++ application?
4
votes
2answers
321 views
How do I dynamically load a Clojure script from outside of my classpath from java?
I wish to enable user defined Clojure scripts to interact with my Java App. The problem is, I don't know in advance where the Clojure scripts will be located, so I can't include them in my classpath ...
4
votes
5answers
358 views
Looking for an embeddable scripting language for C++ with 64-bit support and Cross Platform
I'm looking for a scripting language that works on 32-bit and 64-bit machines as well as on Windows and Linux. I will be embedding it into a C++ application so I prefer it to be natively written in ...
4
votes
4answers
1k views
C# instead of IronRuby as an embedded “scripting” language in .NET 3.5
What is the best practice for using C# as an embedded internal scripting application for a .NET 3.5 application? I have an app with a few small IronRuby scripts in it. None of which is really ...
4
votes
4answers
318 views
Any systematic way to avoid “reentry” problem? (embedded system)
We are using C to build a system on ARM core (i.e. an embedded system). The question is: how can we avoid reentry problem in a formal way so that we are confident all reentry bugs are removed. This ...
4
votes
1answer
283 views
How to call R from within a web server (like Apache)?
That is, is there an embedded R interpreter available?
4
votes
2answers
258 views
Invoking a method on an object
Given a PyObject* pointing to a python object, how do I invoke one of the object methods? The documentation never gives an example of this:
PyObject* obj = ....
PyObject* args = Py_BuildValue("(s)", ...
4
votes
3answers
570 views
Embedded script languages for PHP?
i was wondering if anybody knows of a nice scripting language that can be embedded into php?
Javascript would be favorite and although there are several attempts they are either much too ...
4
votes
12answers
995 views
Is there a “safe” subset of Python for use as an embedded scripting language?
In the many Python applications I've created, I often create simple modules containing nothing but constants to be used as config files. Additionally, because the config file is actually a Python ...
3
votes
2answers
402 views
embedded scala vs embedded groovy
i'm searchin embedded language for my application. application writen in pure scala. i want to added some functional at runtime. and i have question, is scala embedded more faster than groovy embedded ...
3
votes
1answer
109 views
How can I dynamically load perl extensions in an embeded perl interpreter?
I am embeding perl interpreter in my C code (what fun!).
I need to dynamically load perl extensions (an extension that extends perl, written in C). When I run a perl script (using my embeded perl ...
3
votes
1answer
212 views
Embedding a Prolog engine in Obj-C projects
I'm looking for a light-weight Prolog engine to be embedded in an Obj-C application under Mac OSX. In Java there are some excellent implementations with the characteristics I need: deployability, ...
3
votes
6answers
627 views
What is the best scripting language to embed in Mac OS X 10.6 applications?
Is there any other scripting language that can be used to embed scripts inside applications, which can access Mac OS X, or application classes with the same features, or most of the features seen in ...
3
votes
2answers
624 views
Which javascript interpreter is the easiest to embedd in a C application?
There are a few available and i want to support many platforms so i guess V8 isn't that good unless someone has written an interpreter patch for it.
3
votes
1answer
3k views
How to use JPL (bidirectional Java/Prolog interface) on windows?
I'm interested in embedding a Prolog interpreter in Java. One option is using JPL, but the download links on the JPL site are broken, and the installation page mentions a jpl.zip that I can't find. I ...
3
votes
3answers
3k views
SpiderMonkey vs JavaScriptCore vs?
I have a C++ desktop application (written in wxWidgets) and I want to add support for some scripting language.
Scripting would mostly be used for run-time conversions of strings, numbers and dates by ...
3
votes
4answers
3k views
Calling python from a c++ program for distribution
I would like to call python script files from my c++ program.
I am not sure that the people I will distribute to will have python installed.
Basically I'm looking for a .lib file that I can use ...
2
votes
4answers
148 views
Create a new embedded language using PHP
I am trying to develop an administration panel and I have a command line. When a user send a command like below, i need to recognize it using PHP.
My aim is simplifying tasks in the admin panel.
...
2
votes
2answers
1k views
Any tutorial for embedding Clang as script interpreter into C++ Code?
I have no experience with llvm or clang, yet. From what I read clang is said to be easily embeddable Wikipedia-Clang, however, I did not find any tutorials about how to achieve this. So is it possible ...
2
votes
2answers
199 views
Pros/cons of embedded scripting environments?
There are several scripting environments available for .NET applications (e.g.this post).
My question is, what are the pros/cons of using each of them?
Examples include (but not limited to)
...
2
votes
1answer
296 views
Calling a Lua string with C
I'm trying to learn how to use Lua with C, so by now I want to try running a script without loading it from a file, since I don't want to be bothered with messing up with files.
Can anybody tell me ...
2
votes
7answers
925 views
Embedded scripting engine for DSL
I'm working on a project which needs an embedded DSL to fullfill its expected requirements.
The DSL would be user defined event based. Here goes a mockup of the desired syntax:
user-defined-event-1 ...
2
votes
1answer
196 views
What replacements are available for vbscript in an application?
An application I maintain has been around since VB6 days - ported to .Net 1.1, and now being updated/rewritten across to .Net 3.5
The application provides a mechanism to run VBScripts - this was done ...
2
votes
2answers
99 views
What factors drive you to use embedded scripting in your applications?
What factors do you weigh in your decision process when you select an embedded scripting, and can issues of configuration and variation be overcome purely with IOC and the Plugin pattern?
Many times ...
2
votes
2answers
577 views
What is the easiest way to build Python26.zip for embedded distribution?
I am using Python as a plug-in scripting language for an existing C++ application. I am able to embed the python interpreter as stated in the Python documentation. Everything works successfully with ...
2
votes
2answers
213 views
Python embedding — how to get the if() truth test behavior from C/C++?
I'm trying to write a function to return the truth value of a given PyObject. This function should return the same value as the if() truth test -- empty lists and strings are False, etc.
I have been ...
2
votes
2answers
826 views
How to use embedded c within Shoes? (ruby-serialport)
Is it possible to use something like:
require 'serialport.o'
with Shoes? serialport.o is compiled c code as a ruby extension.
When I attempt to run the following code in shoes, I see no visible ...
1
vote
1answer
66 views
Interrupt interpreted user code in Silverlight
I'd like to run some arbitrary user code in a Silverlight application. Of course I want to embed a Turing-complete language (easy enough), but don't want to allow the user to lock up their browser if ...
1
vote
2answers
151 views
Lua & implicit global state
I'm integrating Lua into my project at the moment, and I'm facing a small design problem on the way. Currently, if I want to get information from my host application into Lua scripts, I call a ...
1
vote
1answer
285 views
Python object to C++ pointer problem
this is my first post :). I could convert a python extended object into a C++ pointer, but I have a problem. First I will show you my code and then I will explain the problem.
This is my class:
...
1
vote
2answers
134 views
Dynamic user control over variables (embedded language?)
I'm creating a piece of software (written in C#, will be a windows application) and I ran into this problem-
I've got a set of variables, and I need to allow the user to define a wide range of ...
1
vote
2answers
281 views
Embedding Python thread safe
I'm trying to use Python in a module for an analysis software of vehicle bus systems. For this I have to embed Python in a thread safe manner, since there can be multiple instances of the module ...
1
vote
1answer
198 views
C++ and Embedded Python - NUL Terminated Strings
I'm working on embedding Python 2.6 into an existing c++ application. So far I have the Libraries linked in and am able to successfully initialize the Python Interpreter and can also transfer data to ...
1
vote
2answers
608 views
Scala parser combinators for language embedded in html or text (like php)
I have been playing around with Scala parser combinators for some time now, and learned some of the ways to make it behave nicely and do the most of the things I want, using the built in function.
...
1
vote
3answers
164 views
Can I use zipimport to ship a embedded python?
Currently I deploy a full python distribution (the original python 2.7 msi) with my app.
Is a embebed web server, made with delphi.
Reading ...