Thoughts on (yet another ) scripting languageThis is the first article in a projected series consisting of design notes for a scripting language tentatively entitle RSL (Richard’s Scripting Language). The general theory is that it will be a language that I want to program in; however it will be put into the public domain. Comments and suggestions are welcome, of course. The format that I will use is a series of numbered notes covering a variety of topics and considerations. As a general remark I have a certain amount of experience in using and creating scripting languages. The discussion will cover both implementation considerations and language design. There will be references to a language that I developed called Lakota (this language is proprietary and I cannot release it; however I am drawing on lessons learned from usage of that language.) Some notes will be ideas I am playing with. Section I – General requirementsThis section has observations about the general requirements for the interpreter considered as a program.1.1 InvocationThe interpreter will be invokable in three separate modes: (a) by executing files using the standard hack, (b) as an interactive shell, and (c) as a callable routine with another program. When called it can be passed a string that is executed as text.1.2 History & editingIn interactive shell mode there should be a simple editor available. It should be possible to edit the prior input text or to edit a block of new text. The editor should be either a simplified vi or a simplified emacs or both (other suggestions?). I definitely don’t want to get into the fancy editor game. The kinds of things that should be editable include:
(a) files 1.3 ThreadingIt should be possible to create interpeter threads within a process. The threads should be able to suspend themselves and be resumed by the outside process.1.4 PlatformsAt a minimum it should run on m$ windows and linux. Freebsd should also be supported. The implementation will include code for other platforms – unix variants, VMS, and MVS (with posix) – since I know how to do this.1.5 Implementation languageThe source code will be in portable C. Machine and OS dependencies will be isolated and will be matrix factored.1.6 LibraryThe interpreter will consist of a main program to serve as a shell and a library which can be linked into C programs. Note: other languages may be supported depending on OS and language.1.7 ExtensionsThe interpreter will be extensible. There are several possibilities here. First of all there are syntax extensions which alter the language syntax. This is an open and unexamined can of worms at the moment. Then there are full functional extensions which add new functions; presumably these involve an boiler plated interface. Finally there are raw calls into C. This will require some minimal interface.1.8 Compilation and byte codesMy thought here is that as the interpreter parses input it “compiles” it into byte code (virtual machine code) and that byte code files can be executed by the interpreter. There are a number of issues here, e.g., selection of the byte code language. In a sense this is a separate language design issue. Another thought here is that the engine to process the byte code should be separate from the rest of the interpreter, i.e., the byte code language and the byte code engine can be changed without impacting the rest of the interpreter.
(a) Write a temp file, invoke the editor of choice (presumably specified in a user config file), and read the temp file when the editor terminates. This solution is general but rather clumsy. (b) Write a temp file. Invoke an editor (which may have been done previously – I usually keep an editor permanently open in a separate window) separately and edit the temp file. Read the temp file into the shell. This works in pretty much any windowed environment but not on a bare console screen environment. (c) Make text selectable for cut and paste. Copy the selected text into an edit window and paste it. This is OS and editor dependent. (d) Run the interpreter engine under the kitchen sink editor of one’s choice and interface it to said editor. This obviously is possible (and anybody who wants to do it is welcome to do so) but isn’t of particular interest to me. Note that the entire issue only arises for transient text. Anything that is relatively permanent is (I expect) going to be in a file. Typical examples that occur to me are: (a) You’ve entered a sequence of commands with a typo and you want to reissue the commands with the typo corrected. This goes beyond simple command line editing. (b) You want to alter the contents of a data set as an experiment but don’t want to alter the file from which the data set was extracted. (c) Similarly you want to alter the text of a function as an experiment without altering the file in which it is defined. Of these (a) is probably the one most likely to be used. This page was last updated September 9, 2001. |