vote up 10 vote down star
4
  • 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 languages have a really good tutorial on embedding their language and extending it for your specific software

Bonus points:

  • Embeddable languages that can easily be cut down in size/features/runtime/code size/memory consumption/etc for small systems (microcontrollers, for instance)

-Adam

flag

What level of 'embedding' are you considering here? Are you considering the ability to embed one language inside another such as with C++ embedded asm, or just the ability to call out from your core, compiled language into a separate script that is more easily modified? – workmad3 Oct 10 '08 at 13:44

14 Answers

vote up 13 vote down check

Lua is not only designed specifically for this, it's very small in codesize and memory footprint, and it's the fastest non-JIT language available. And, of course, it has one of the very few full-blown JITs available for fully dynamic languages (only x86 for now).

It's written in ANSI C, and is already working in several small microcontrollers. There's a well-supported patch for non-FPU CPUs. The included libraries are all optional, so you can just not include what's not useful for your device.

here is a good summary of how Lua can help on small devices.

link|flag
vote up 1 vote down

I've seen Python inside quite a few software packages, and it seems to be working just fine (I'll mention just Tecplot 360 cause it's currently open in the other window, but there are a lot others).

link|flag
vote up 2 vote down

Just for future reference: there's another fairly compact, lightweight but still feature-complete, cross-platform scripting language called Nasal (LGPL), which was specifically designed just as an extension language for embedded use, so that it can be really easily embedded in other programs (it doesn't take much longer than say 10-15 minutes to get it integrated into your code).

Also, Nasal doesn't add/introduce any new dependencies to your code, while there are several wrapper modules available to implement support for libraries such as gtk, readline or xml processing, none of these are really required to compile Nasal.

Nasal is in fact just used by a handful of open source projects, most notably the FlightGear project, an open source flight simulator-where it serves as the primary means of customizing FlightGear and adding custom logics to it. Two other neat application (including screenshots) that makes use of Nasal can be found here and here.

The core library documentation is available here, sample source code here and some background on the technical design here. A basic comparison with lua can be found here.

Independent reviews and opinions on Nasal can for example be found at GameDev.net:here,and here, or at reddit.

link|flag
vote up 3 vote down

I recommend Lua.

Lua is written in ANSI C which is the lowest common denominator for languages. Lua can be integrated into an embedded C program by linking the libraries. Utilities exist to call Lua functions from C code, and C functions from Lua code. Lua has a very small footprint, making it great for embedded systems and video games.

A friend of mine integrated Lua 5.0 into a high-performance DSP application on a TI digital signal processor. There was no operating system, and a few libraries. The DSP code was written in C or assembler. He managed to port Lua to this platform. He found that using Lua on this platform approximately doubled his productivity because the edit-compile-link-load-initialize-test cycle was reduced from about 20 minutes to about 1 minute for simple changes. When he showed a demo to the customer, and the customer wasn't quite satisfied with some aspect of the code, he quickly changed the code while it was running (by transferring Lua scripts to the processor) and it then behaved properly. (The customer was impressed). The only issues they had was the occasional failure of the garbage collector, but that problem was fixed in Lua 5.1. In spite of using Lua, overall the real-time critical DSP application worked fine.

Asides from that application, Lua is known for being the valuable scripting language embedded in platforms such as World of Warcraft and many other games and game engines.

link|flag
vote up 3 vote down

Don't forget about PowerShell... PowerShell can be embedded in any .NET application as a scripting language.

link|flag
vote up 2 vote down

V8 JavaScript Engine is worth mentioning - supported by Google, and you are embedding a language that is easily more popular than the other suggestions. See JavaScript: The Lingua Franca of the Web.

link|flag
I don't think V8 is fit for small systems. Especially since most of embedded device microcontrollers are not x86 – Javier Oct 10 '08 at 14:30
@Javier - Some of the other (not Lua) suggestions also do not fit fit limited devices. Just thought I'd mention JavaScript... – gimel Oct 10 '08 at 14:52
Nobody is a bigger JS fanboi than myself, but the phrase "embedded" screams lua :) – annakata Mar 13 at 16:37
vote up 4 vote down

My personal choice would be Python, but I recommend that you have a look at SWIG, if you are using C/C++. You can then use it to generate the wrappers for a variety of languages including Python, Ruby and Lua. It makes adding the bindings much easier.

We have used SWIG to create python bindings for our application.

link|flag
vote up 4 vote down

Previous tips like Lua (very preferrable) and Python / Ruby are excellent. If your software however is written in Java, there are quite some other possibilities, like:

Of course, there are also Python and Ruby implementations in Java.

link|flag
a big +1 on this answer: bingo – Michael Easter Oct 10 '08 at 15:41
vote up 3 vote down

I would recommend Python. It's really easy to embed in any language that has decent C interoperability and there are a number of tutorials on it. It only took me a couple of hours to figure out how to embed it having no prior experience.

Also, if you're working in C++ then Boost.Python makes exposing your existing classes/functions a snap.

The one place it probably loses out to some of the others is the memory requirements.

link|flag
vote up 2 vote down

Angelscript is to much C like. If you're planning to share your script with programmers only it's great. But we used it once in a 3D engine, and we had a problem people, who were not exactly coders, comparing it's too comlicated.

link|flag
vote up 5 vote down
  • Tcl
  • Lua

Both of the were designed to be embedded in other programs. Personally, I prefer Tcl as I find it a lot more readable and, well, it's it's one of the most dynamic languages out available.

link|flag
I used to be a Tcl booster, but I think Lua is a little easier for non-porgrammer types to pick up. – Mark Bessey Oct 11 '08 at 1:43
vote up 3 vote down

I have had a really good experience with Angelscript, the documentation is pretty good and the author and community are very helpful. I have also used Lua and Python, but I found that Angelscript felt the most natural to me.

http://www.angelcode.com/angelscript/

link|flag
I also have had a really good experience with AngelScript. Of course the target audience was programmers... – Subtwo Feb 25 at 12:22
vote up 5 vote down
  • Python
  • Ruby
  • Lua

Whatever you do, please, please, please use one of these languages. Don't make the mistake of creating your own application-specific scripting language, and don't use any of the obsolete alternatives (Tcl, Guile, VBScript, etc.).

link|flag
Would you care to elaborate on why not to use those "weird alternatives"? That might be good advice, but without knowing your reasoning how can we judge that? – Richard Turner Oct 10 '08 at 13:29
Basically, my reasoning is that the scripting language should be easy to pick up, and take advantage of existing programmers' knowledge and skills. Python, Ruby, and Lua are all pretty simple, and based upon current "mainstream" programming constructs. The "weird" languages I mention are not. – Kristopher Johnson Oct 11 '08 at 12:17
vote up 17 vote down

Lua has been developed for this very purpose. Scripting languages like Ruby and Python have excellent C/C++ bindings and there exist good, yet experimental (beta) bindings for .NET and Java in the form of JRuby/Jython and IronRuby/IronPython.

link|flag
Lua is used in both World of Warcraft as well as Warhammer Online as an embedded language for add-ons. It is also pretty easy to learn. – crashmstr Oct 10 '08 at 13:23

Your Answer

Get an OpenID
or

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