Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
×
Programming

Designing a Programming Language For Embeddability 52

CowboyRobot writes "The creators of the Lua language describe the process of designing a new language and the constraints that certain parameters, specifically embeddability, place on the process. 'Many languages (not necessarily scripting languages) support extending through an FFI (foreign function interface). An FFI is not enough to allow a function in the system language to do all that a function in the script can do. Nevertheless, in practice FFI covers most common needs for extending, such as access to external libraries and system calls. Embedding, on the other hand, is harder to support, because it usually demands closer integration between the host program and the script, and an FFI alone does not suffice.'"
This discussion has been archived. No new comments can be posted.

Designing a Programming Language For Embeddability

Comments Filter:
  • Oh good, another language.

  • Forth (Score:4, Informative)

    by smoothnorman ( 1670542 ) on Wednesday May 18, 2011 @07:58PM (#36172990)
    Forth http://en.wikipedia.org/wiki/Forth_(programming_language)/ [wikipedia.org] was designed to run on (albeit early) embedded platforms. Extensible, easy to learn, easy to implement. I guess it's just the RPN that scares folks off? ("no you old fool! modern processors are optimized away from stack intensive use!")
  • So what happened to Lua support in GRUB? I saw some pretty nifty things done with that.

  • by betterunixthanunix ( 980855 ) on Wednesday May 18, 2011 @08:33PM (#36173328)
    Why jump through so many hoops to get an embeddable language, when you could use the same language to write the "host program" as you use to write scripts for it? Lisp is an example of such a concept: compiled Lisp programs still have the ability to interpret Lisp code, and hence the most sensible scripting language for a programming written in Lisp is Lisp itself. Lisp is not the only language with this property, but it is one of the most prominent examples of such a language.
    • Re:Lisp (Score:5, Informative)

      by Darinbob ( 1142669 ) on Wednesday May 18, 2011 @09:51PM (#36173942)

      Because the host language may be a conventional language, designed to compile efficiently, run in small amounts of memory, has speed critical sections, etc. The embedded language on the other hand is used for doing stuff that wasn't thought of in the design phase and where it's simpler to add a small script than to add a new feature to the program. Generally what happens is that you're tying together a high level language with a low level language.

      For instance, take a boot loader. It is written to fit into a small area of flash or just a few blocks of mass storage. So it needs to be small and tight. In manufacturing you'd like to run a set of tests and the boot loader provides some simple commands to call that test various features. But maybe you want a particular test that the built in commands won't do, for example a stress test of memory. The default method is to have development write a new command, check it into source code control, have QA run through it, approve it with the release schedule, then release it to manufacturing. Alternately one could just write a quick script and use that instead if the boot loader supported a scripting language, and manufacturing could manage this themselves without begging for R&D resources. Every time a bug occurs in the process someone could write a new regression test using the scripting language to check for the bug and add the script to a growing collection.

      Now if we could somehow get fast/efficient/tiny host programs written in Lisp (which is indeed possible) and we manage to find a collection of developers who understand it (which is harder), then it makes sense to have the scripting language the same as the host language. But in the mean time most host programs are written in things like C or C++. Even if you have a high level interpreted language like Java that you wrote your host program in, it is very difficult to parse/interpret textual Java programs.

      Even if your host program is in Lisp it will be difficult to isolate any textual Lisp scripts from the host program itself; you don't want a buggy script to cause havoc with the host program. Most Lisp systems I've seen that allow extra scripting basically use "eval" which is not very safe. So you still need to put up a solid wall with a well defined set of methods to allow a script to run in its own sandbox while interacting occasionally with the host program.

      • by Anonymous Coward

        "The default method is to have development write a new command, check it into source code control, have QA run through it, approve it with the release schedule, then release it to manufacturing. Alternately one could just write a quick script and use that instead if the boot loader supported a scripting language, and manufacturing could manage this themselves without begging for R&D resources."

        This means that your development/release process is broken with respect to your business needs, not that you ne

  • So, if you design your DSL based on the D, it will effect the S of your L?

    Who'da thunkit?

  • After reading the headline, am I the only one that thought embedded in the context of microprocessors instead?

  • What's the track record for self-morphing languages like Lua and Forth? I just skimmed a Scala book, and it scares me.

    I can see niches like producing DSLs, but smells like bad news for general application/system programming.

  • by jdwoods ( 89242 )

    http://sourceforge.net/projects/tcl/ [sourceforge.net] says: "Tool Command Language (Tcl) is an interpreted language and very portable interpreter for that language. Tcl is embeddable and extensible, and has been widely used since its creation in 1988 by John Ousterhout. See http://www.tcl.tk/ [www.tcl.tk] for more info." Another good source of information on Tcl is http://wiki.tcl.tk/ [wiki.tcl.tk]

    Tcl functions well as glue between applications. Some folks know Tcl but call it "Expect" and may not realize Expect is simply Tcl plus an extension. Anoth

  • There are lots of peeps pushing FFI, it's a bunch of crap IMO. They never seem to have any reason except portability, and they always try to hide or deny that it is slow and not very powerful.

    There are already so many C libs, actually doing anything with it requires re-inventing all your wheels, and the wheels to make those wheels.

    If C is too hard, you're not going to be doing embedded stuff long enough to get good with FFI anyways.

  • Really you need to design your application round your embeded scripted language. If added as an afterthought it becomes a "lowest common denominator" interface between your application's type model and the embeded language's.

  • by drolli ( 522659 )

    i know, that will be hard to swallow, and tcl is not one of the , favourite 5 programming languages of mine, but its stable, easy to embed, has clear interfaces, and is leightweight. What else do you need?

    • by dublin ( 31215 )

      Tcl is indeed an excellent choice for many embedded applications. It's not as trendy as many of the newer languages, but it is an awesome tool for getting a lot done with a very small amount of code (some joke that it stands for "Try Coding Less"), and with very minimal overhead.

      Lua's certainly intriguing, and I might look at it for future projects, but the vast majority of what I've had my teams build in the past few years is Tcl (if small size is important), or Python (if it's less important).

      Like Python

Beware of Programmers who carry screwdrivers. -- Leonard Brandwein

Working...