Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



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.
    • Comment removed (Score:5, Informative)

      by account_deleted ( 4530225 ) on Wednesday May 18, 2011 @09:51PM (#36173942)
      Comment removed based on user account deletion
      • 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

"There are things that are so serious that you can only joke about them" - Heisenberg

Working...