This was Sniffles the Elf's big chance! After years of drudgery in the ribbon mines, they'd finally been moved up into the List Management Department. As a shiny new Associate Nice List Auditor, Sniffles was on their way to the big time.
On their first day, when Sniffles arrived, Mr. Grumble--their new boss, was waiting. "Nice List management is deep trouble, our data was accidentally erased when someone spilled milk and cookie crumbs on the server. We'd been so busy checking the list that we forgot to check our backups! And now we have to rebuild everything from scratch! After the sackings, we're a little short handed, so it's up to you to save the day."
Sniffles, being particularly industrious, dove into the problem with relish. After a bit of research they realized that all the data they needed was available, they just needed to collect it.
Their friend in the ribbon mines, a self-professed oral historian named Hermie had been going on about how great Perl6 is. Sniffles decided to give it a try.
Sniffles started by tossing out the standard first script in a new language:
use v6.d;
say "Nice List restored!!!";
The script ran and dutifully printed out the message. With just a few days left until Christmas, it was time to get serious and hit the Perl6 documentation.
A little browsing lead Sniffles to the page on the Perl 6 command line interface utilities . They liked the looks of the special MAIN
subroutine it describes.
say 'Started initializing nice lister.';
sub MAIN() { say "Nice List restored!!!" }
say 'Finished initializing nice lister.';
Generates:
Started initializing nice lister.
Finished initializing nice lister.
Nice List restored!!!
Well at least that corralled their startup code. Sniffles ditched the initialization messages, they were just noise. But they were sure that this MAIN
function had to have some more tricks up it's sleeve to get Hermie so excited.
Back to the docs... Sniffles checked Learn X in Y Minutes Perl6 page. The extra section on MAIN
near the end was a gold-mine! Sniffles shuddered at the thought.
"Okay, so if we provide MAIN
with a subroutine signature, Perl6 handles the command line parsing for us. Even better, it auto-generates help content," they mumbled to themself.
sub MAIN (
:$list-of-all-kids,
:$naughty-list
) { ... }
Generates:
$ nice-list
Usage:
nicelist [--list-of-all-kids=<Any>] [--naughty-list=<Any>]
And running the script gets:
Stub code executed
in sub MAIN at foo line 1
in block <unit> at foo line 1
Nice.
But the switch names are kind of long. Since TheNorthPole.io is a devops shop, Sniffles figured they'd probably have to type them a bunch. Yuck. Shorter names would be fine if you could add some explanatory text. Perl6's support for literate programming using POD6 markup made it easy to add annotation.
#| Rebuild the Nice List
sub MAIN (
:$all, #= path to file containing the list of all children
:$naughty #= path to file containing the Naughty List
) { ... }
Generates:
Usage:
nicelist [--all=<Any>] [--naughty=<Any>] -- Rebuild the Nice List
--all=<Any> path to file containing the list of all children
--naughty=<Any> path to file containing the Naughty List
Sniffles was impressed, but they knew that argument validation is the other part of writing a CLI that can get tedious. "What has Perl6 done for me lately?" they wondered.
Perl6 has a gradual type system with both compile and run-time type checking. Gradual typing allowed Sniffles to ignore type checking so far. They added some types and see what happened.
Sniffles defined a subset of Str with a type smiley that uses whatever code to verify that a file exists at the given path.
subset FilePath of Str:D where *.IO.f;
#| Rebuild the Nice List
sub MAIN (
FilePath :$all, #= path to file containing the list of all children
FilePath :$naughty #= path to file containing the Naughty List
) { ... }
They ran the script:
$nice-list --naughty=naughty.kids --all=notAFile.bleh
Usage:
nice-list [--all=<FilePath>] [--naughty=<FilePath>] -- Rebuild the Nice List
--all=<FilePath> path to file containing the list of all children
--naughty=<FilePath> path to file containing the Naughty List
Sniffles ran the script again without arguments and a couple of other invalid ways. Each time it caught the invalid input and automatically displayed the usage message. "Very nice," Sniffles thought, "Thing is, the error reporting still sucks. You get the same result if you leave off an argument as if you pass in a missing file."
"Ugh! How do I get around this problem?" Sniffles shuffled around the docs some more. Multiple Dispatch and slurpy parameters. They added another subset and a couple of new definitions of MAIN:
subset FileNotFound of Str:D where !*.IO.f();
multi sub MAIN (
FilePath :$all, #= path to file containing the list of all children
FilePath :$naughty #= path to file containing the Naughty List
) { ... }
multi sub MAIN (
FileNotFound :$all,
*%otherStuff
) {
die "List of all children file does not exist";
}
multi sub MAIN (
FileNotFound :$naughty,
*%otherStuff
) {
die "Naughty List file does not exist";
}
They got:
Usage:
nice-list [--all=<FilePath>] [--naughty=<FilePath>] -- Rebuild the Nice List
nice-list [--all=<FileNotFound>] [--naughty=<FilePath>]
nice-list [--all=<FilePath>] [--naughty=<FileNotFound>]
--all=<FilePath> path to file containing the list of all children
--naughty=<FilePath> path to file containing the Naughty List
Which worked perfectly...except now they had error generation entries in the usage! Double yuck. Sniffles returned to the article on CLI interfaces. Adding the right trait to the MAIN
subs will make them disapper from auto-generated usage:
multi sub MAIN (
FileNotFound :$all,
*%otherStuff
) is hidden-from-USAGE {
die "List of all children file does not exist";
}
And the mess was gone!
Mr. Grumble walked up, he paused to peer at Sniffles' screen. "Interesting work there, Sniffles. We need that script and we need it yesterday. Oh, and we need it to be able to audit an existing Nice List as well as rebuild one. We need that too. See ya." He disappeared before Sniffles could blink.
Okay, working on a creeping feature is better than being forced to eat figgy pudding, Sniffles thought. They added those commands:
#| Rebuild the Nice List
multi sub MAIN (
'build',
FilePath :$all, #= path to file containing the list of all children
FilePath :$naughty #= path to file containing the Naughty List
) { ... }
#| Compare all the lists for correctness
multi sub MAIN (
'audit',
FilePath :$all, #= path to file containing the list of all children
FilePath :$naughty, #= path to file containing the Naughty List
FilePath :$nice, #= path to file containing the Nice List
) { ... }
"Great," they thought, "but you have to run the script like nicelist --all=foo --naughty=bar build
. Horrible."
my %*SUB-MAIN-OPTS =
:named-anywhere, # allow named variables at any location
;
"It was fixed!" Sniffles did a little dance in their seat.
Usage:
nicelist build [--all=<FilePath>] [--naughty=<FilePath>] -- Rebuild the Nice List
nicelist audit [--all=<FilePath>] [--naughty=<FilePath>] [--nice=<FilePath>] -- Compare all the lists for correctness
--all=<FilePath> path to file containing the list of all children
--naughty=<FilePath> path to file containing the Naughty List
--nice=<FilePath> path to file containing the Nice List
Okay, now Sniffles had the perfect framework for a great utility script. It was time to actually write the actual thing. Sniffles knew that they were really going to sleigh this project.
In no time flat, Snuffles found that Perl6's feature set helped them whip up a powerful, correct script. They made a Child class, defined identity operations on it, wrote a cheesey CSV parser to load list data, and a reporting function. The built in Set data type provided operators that made it easy to look for entries that were out of place and even easier to rebuild the Nice List.
As soon as they were done, they recovered the Nice List and sent a departmental email to Mr. Grumbles and the rest of their team, proclaiming their success. When Mr. Grumbles saw how nice the script was, with it's usage and error checking, for once, he didn't live up to their name.
In recognition of their hard work and resourcefulness, Sniffles was asked to cut the ribbon at the opening of Santa's newest workshop.