Extensibility Pattern - Extending Through Scripting

Extending Through Scripting

A major complaint against GUIs is that they make it difficult to script repetitive tasks. Command line interfaces are difficult for most humans to work with. Neither give rich access to the application programming interface (API) of a program. A well-designed program is a few lines of Perl in the main program that use a number of modules – see Creating CPAN Modules. This makes it easier to reuse the program logic in other programs. Complex programs that build upon existing parts benefit from this, without question. How about the other case – a small script meant to automate some task? This requires that the script have knowledge about the structure of the application – it must know how to assemble the modules, initialize them, and so on. It is forced to work with aspects of the API that it almost certainly is not concerned with. It must itself be the framework.

This is a kind of abstraction inversion – where something abstract is graphed onto something concrete, or something simple is grafted onto the top of something complex.

It would make more sense in this case for the application to implement a sort of visitor pattern, and allow itself to be passed whole, already assembled, to another spat of code that knows how to perform specific operations on it. This lends itself to the sequential nature of the script: the user-defined extension could be a series of simple calls:

package UserExtention1; # we are expected to have a "run_macro" method sub run_macro { my $this = shift; my $app = shift; $app->place_cursor(0, 0); $app->set_color('white'); $app->draw_circle(radius=>1); $app->set_color('red'); $app->draw_circle(radius=>2); # and so on... make a little bull's eye return 1; }

The main application could prompt the user for a module to load, or load all of the modules in a plugins directory, then make them available as menu items in an "extensions" menu. When one of the extensions are select from the menu, a reference to the application – or a facade pattern providing an interface to it – is passed to the run_macro method of an instance of that package.

Many applications will have users that want to do simple automation without being bothered to learn even a little Perl (horrible but true!). Some applications (like Mathematica, for instance) will provide functionality that does not cleanly map to Perl. In this case, you would want to be able to parse expressions and manipulate them. In these cases, a Little Language may be just the thing.

A Little Language is a small programming language, created specifically for the task at hand. It can be similar to other languages. Having something clean and simple specifically targeted at the problem can be better solution than throwing an overpowered language at it. Just by neglecting unneeded features, user confusion is reduced.

place_cursor(0, 0) set_color(white) draw_circle(radius=1) set_color(red) draw_circle(radius=2)

A few options exist: we can compile this directly to Perl bytecode, using B::Generate (suitable for integrating legacy languages without performance loss), or we can munge this into Perl and ||eval|| it. Let us turn it into Perl.

# read in the users program my $input = join '', ; # 0 if we're expecting a function name, 1 if we're expecting an argument, # 2 if we're expecting a comma to separate arguments my $state = 0; # perl code we're creating my $perl = ' package UserExtention1; sub run_macros { my $this = shift; my $app = shift; '; while(1) { # function call name if($state == 0 && $input =~ /\G\s*(\w+)\s*\(/cgs) { $perl .= ' $app->' . $1 . '('; $state = 1; # a=b style parameter } elsif($state == 1 && $input =~ /\G\s*(\w+)\s*=\s*(\w+)/cgs) { $perl .= "$1=>'$2'"; $state = 2; # simple parameter } elsif($state == 1 && $input =~ /\G\s*(\w+)/cgs) { $perl .= "'$1'"; $state = 2; # comma to separate parameters } elsif($state == 2 && $input =~ /\G\s*,/cgs) { $perl .= ', '; $state = 1; # end of parameter list } elsif(($state == 1 || $state == 2) && $input =~ /\G\s*\)/cgs) { $perl .= ");\n"; $state = 0; # syntax error or end of input } else { return 1 unless $input =~ /\G./cgs; print "operation name expected\n" if $state == 0; print "parameter expected\n" if $state == 1; print "comma or end of parameter list expected\n" if $state == 2; return 0; } } $perl .= ' return 1; } '; eval $perl; if($@) { # display diagnostic information to user }

We're using the \G regex metacharacter that matches where the last global regex on that string left off. That let us take off several small bites from the string rather than having to do it all in one big bite. The flags on the end of the regex are:

  • g – global – needed for the \G token to work
  • c – not sure, but it makes g work
  • s – substring – treat the entire string as one string. Newlines become regular characters and match whitespace.

Out of context, the string "xyzzy" could be either a parameter or the name of a method to call. The solution is simply to keep track of context: that is where $state comes in. Every time we find something, we update $state to indicate what class of thing would be valid if it came next. After we find a function name and an opening parenthesis, either a hash style parameter or a single, lone parameter, or else a close parenthesis would be valid. We are not even looking for the start of another function .

After a parameter, we are looking for either the close parenthesis or another parameter.

Every time we match something, we append a Perl-ized version of exactly the same thing onto $perl. All of this is wrapped in a package and method declaration. Finally, $perl is evaluated. The result of evaluating should be to make this new package available to our code, ready to be called.

Read more about this topic:  Extensibility Pattern

Famous quotes containing the word extending:

    When the doctrine of allegiance to party can utterly up-end a man’s moral constitution and make a temporary fool of him besides, what excuse are you going to offer for preaching it, teaching it, extending it, perpetuating it? Shall you say, the best good of the country demands allegiance to party? Shall you also say it demands that a man kick his truth and his conscience into the gutter, and become a mouthing lunatic, besides?
    Mark Twain [Samuel Langhorne Clemens] (1835–1910)