|
NAMEBigtop::ScriptHelp::Style::Kickstart - handles kickstart syntax for scriptsSYNOPSISMost users use this module as the default style for the bigtop and tentmaker scripts:bigtop -n AppName [kickstart] See "KICKSTART SYNTAX" below for details, but note that kickstart could be a file whose contents are in kickstart syntax. If you are writing a script that wants to leverage styles do this: use Bigtop::ScriptHelp::Style; my $style = Bigtop::ScriptHelp::Style->get_style( 'Kickstart' ); # then pass $style to methods of Bigtop::ScriptHelp DESCRIPTIONSee "Bigtop::ScriptHelp::Style" for a description of what this module must do in general.SUBCLASSINGAs of version 0.33, this module has been revised to make subclassing easier. This allows you complete control over what columns are generated by default. All you need to do is subclass this module and implement two methods: "get_default_base_columns" and "get_default_filler_columns". But, you can rely on this module to handle the original kickstart syntax.METHODS
KICKSTART SYNTAXBigtop's kickstart syntax allows you to describe your tables, their columns, and how they are related to other tables in a compressed text style.Note well: Since the descriptions use punctuation that your shell probably loves, you must surround them with single quotes on the command line. But, there's no need to do that if you put the kickstart description in a file. To use the file method, put your kickstart in a file and give that file's name as in: tentmaker -a docs/app.bigtop kickstart_file It is easiest to understand kickstart syntax is by seeing an example. So, suppose we have a four table data model describing a bit of our personnel process: +-----------+ +----------+ | job |<------| position | +-----------+ +----------+ ^ | +-----------+ +----------+ | job_skill |------>| skill | +-----------+ +----------+ What this data model shows is that each position refers to a job, each job could require many skills, and each skill could be associated with many jobs. The last two mean that job and skill share a many-to-many relationship. Here's how to specify this data model with bigtop kickstart syntax: bigtop --new HR 'job<-position job<->skill' This indicates a foreign key from position to job and an implied table, called job_skill, to hold the many-to-many relationship between job and skill. The same kickstart can be used with --new and --add for both bigtop and tentmaker scripts. There are four kickstart table relationship operators:
COLUMN DEFINITIONSAs of Bigtop 0.23, you may use the syntax below to specify information about the columns in your tables, in addition to the table relationships above.Note Well: When following the instructions below, never be tempted to use spaces inside column definitions. If you need spaces, colons might work. If not, you'll need to edit the generated bigtop file, just like old times. Column definitions must be placed inside parnetheses immediately after the table name and immediately before any table relationship operator. Separate columns with commas. Specify type definitions with colons. Use equals for defaults and leading plus signs for optional fields. For example: bigtop -n App 'family(name,+phone)<-child(name,birth_day:date)' By default all columns will have type varchar (but note that SQL backends translate that into a valid string type for each supported database, if a bare varchar wouldn't work). If you need some other type, use a colon, as I did for birth_day. If your type definition needs multiple words, use colons instead of spaces. Do not include foreign key columns in the list. They will be generated based on the relationship punctuation between the tables. The phone column in the family table has a leading plus sign, and will therefore be optional on the HTML form. You can still augment the bigtop file later. Existing tables in the bigtop file will have foreign keys added as specified by relation operators, but parenthetical column lists will be used only for new tables. For example: bigtop -a docs/app.bigtop ' anniversary(anniversary:date,gift_pref=money)<-family' This will add a new table called anniversary with anniversary (a date) and gift_pref columns. The later will have a default value in the database and on HTML forms of 'money.' Finally, a new foreign key will be added to the existing family table pointing to the anniversary table. You may find it easier to supply the kickstart text by first specifying the relationships without including the columns, then defining the columns later: tentmaker -n App \ 'child->family anniversary->family child(name,birth_day:date) family(name,+phone) anniversary(anniversary:date,gift_pref=money)' You may mention a table as many times as you like, but only define its columns once. Finally, as mentioned in the SYNOPSIS, and described in more detail below (see "KICKSTART FILES"), you may put the kickstart in a file and supply the file name on the command line: tentmaker -n App app.kickstart None of the syntax changes when you use the file approach, except that you don't need the shell quotes. In paricular, using a file does not allow you to include spaces within a table's definition. FORMAL SUMMARYHere is the formal syntax for each table definition:name[(COL_DEF[,COL_DEF...])] I'm following the convention that brackets enclose optional elements. Everything else appears as is, or is defined below. Where name is a valid SQL table name and COL_DEF is as follows: [+]col_name[:TYPE_INFO][=default] Where plus makes the HTML form field for the column optional, col_name is a valid SQL column name, and all defaults are literal strings (they will be quoted in SQL). If you need more interesting defaults, edit the bigtop file after it is updated. TYPE_INFO is a colon separated list of column declaration words. Suppose you want this column definition: state int4 NOT NULL DEFAULT 4, Say this: state:int4:NOT:NULL=4 KICKSTART FILESTraditionally, kickstart text was specified on the command line. Now you can put it in a file and invoke bigtop or tentmaker like this:bigtop -n NewApp file.kickstart Unfortunately, you cannot currently pipe to bigtop or tentmaker, they do not read from standard in. Here is an example kickstart file for a blogging application: blog(active:int4,ident,title,subtitle,blurb,body,gps,comments_enabled:int4,rank:int4,section,username,tag) author(name,address,city,state,country,gps) comment(active:int4,rejected:int4,name,email,url,subject,body) link(active:int4,location,label,posted_date,score,username,tag) tag(active:int4,label,rank) image(active:int4,label,descr,file,default_image,file_ident,file_name,file_size:int4,file_mime,file_suffix) attachment(active:int4,label,descr,file,default_image,file_ident,file_name,file_size:int4,file_mime,file_suffix) section(active:int4,label) blog<-image blog<-attachment blog<-author blog<-comment blog<-section Note again that spaces are not allowed in column definition lists, since whitespace is the separator of table and table relationship entries. AUTHORPhil Crow, <crow.phil@gmail.com>COPYRIGHT AND LICENSECopyright (C) 2007, Phil CrowThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.
Visit the GSP FreeBSD Man Page Interface. |