BlogMe3 as Lua classesI started to learn Lua in 2000, and one of the first "serious" things that I did with it was an extensible HTML generator called BlogMe, that replaced my previous HTML generator written in Tcl, called TH. I rewrote BlogMe several times, and now - 2023 - most of my HTML files are still generated with blogme3, that is, ahem, a mess. The source files of blogme3 are here - blogme3/ - and in 2007 I made this attempt to document it... that is quite bad, too. Fast forward to 2023. I started to rewrite the core of blogme3 as just three classes, all defined with eoo.lua. The classes are:
The old blogme3 used lots of functions and lots of global variables. Look:
In the new "blogme3 with classes" - let me refer to it as "BlogMe3.lua", with some of the letters in the file name in uppercase - I reduced all those globals to just:
Here is a short explanation of each of the tables:
Most blogme "words" are defined using def, def_, bdef, and bdef_. For example:
If we just run these calls to the functions def and bdef they will define the blogme "words" "HREF", "lua:", and "P"; the "code" for HREF and lua: will be stored in _G, and the "code" for "P" will be stored in _B. Both def and bdef - and also def_ and bdef_ - return objects of the class BlogMeDef; the class BlogMeDef defines a __tostring metamethod, and if we run this eepitch block,
The last part of each "print" shows the field body1 of the BlogMeDef object, that contains the code that the "def"s and the "bdef" execute after manipulating the "body" of the definition and the "shorthand for the argument parser" in several ways: And this test block show how different parsers parse parts of a BlogMe object, and what they return:
Here is a screenshot: Note that the parsers with "q"s in their names return "quoted" versions of what they parse, like Lisp's QUOTE, macros, and special forms, and the parsers with "v"s in their names return the "values" of what they parse - they evaluate the "[...]" blocks. 1. Try it!
2. What's missingI haven't started to port my .blogme files to BlogMe3.lua yet! These are the main things that I still need to integrate with BlogMe3.lua:
|