# -*- perl -*- ######################################################################## # Copyright (c) 2003-2006 University of Chicago and Fellowship # for Interpretations of Genomes. All Rights Reserved. # # This file is part of the SEED Toolkit. # # The SEED Toolkit is free software. You can redistribute # it and/or modify it under the terms of the SEED Toolkit # Public License. # # You should have received a copy of the SEED Toolkit Public License # along with this program; if not write to the University of Chicago # at info@ci.uchicago.edu or the Fellowship for Interpretation of # Genomes at veronika@thefig.info or download a copy from # http://www.theseed.org/LICENSE.TXT. ######################################################################## package Tracer; require Exporter; @ISA = ('Exporter'); @EXPORT = qw(Trace T TSetup QTrace Confess Cluck Min Max Assert Open OpenDir TICK StandardSetup EmergencyKey ETracing Constrain Insure ChDir Emergency Warn); @EXPORT_OK = qw(GetFile GetOptions Merge MergeOptions ParseCommand ParseRecord UnEscape Escape PrintLine PutLine); use strict; use Carp qw(longmess croak carp); use CGI; use Cwd; use FIG_Config; use PageBuilder; use Digest::MD5; use File::Basename; use File::Path; use File::stat; use LWP::UserAgent; use Time::HiRes 'gettimeofday'; use URI::Escape; use Time::Local; use POSIX qw(strftime); use Time::Zone; use Fcntl ':flock'; =head1 Tracing and Debugging Helpers =head2 Tracing This package provides simple tracing for debugging and reporting purposes. To use it simply call the L or L method to set the options and call L to write out trace messages. L and L both establish a I and a list of I. Similarly, each trace message has a I and I associated with it. Only messages whose trace level is less than or equal to the setup trace level and whose category is activated will be written. Thus, a higher trace level on a message indicates that the message is less likely to be seen, while a higher trace level passed to B means more trace messages will appear. =head3 Putting Trace Messages in Your Code To generate a trace message, use the following syntax. Trace($message) if T(errors => 4); This statement will produce a trace message if the trace level is 4 or more and the C category is active. There is a special category C
that is always active, so Trace($message) if T(main => 4); will trace if the trace level is 4 or more. If the category name is the same as the package name, all you need is the number. So, if the following call is made in the B package, it will appear if the C category is active and the trace level is 2 or more. Trace($message) if T(2); In scripts, where no package name is available, the category defaults to C
. =head3 Custom Tracing Many programs have customized tracing configured using the L method. This is no longer the preferred method, but a knowledge of how custom tracing works can make the more modern L easier to understand. To set up custom tracing, you call the L method. The method takes as input a trace level, a list of category names, and a destination. The trace level and list of category names are specified as a space-delimited string. Thus TSetup('3 errors Sprout ERDB', 'TEXT'); sets the trace level to 3, activates the C, C, and C categories, and specifies that messages should be sent to the standard output. To turn on tracing for ALL categories, use an asterisk. The call below sets every category to level 3 and writes the output to the standard error output. This sort of thing might be useful in a CGI environment. TSetup('3 *', 'WARN'); In addition standard error and file output for trace messages, you can specify that the trace messages be queued. The messages can then be retrieved by calling the L method. This approach is useful if you are building a web page. Instead of having the trace messages interspersed with the page output, they can be gathered together and displayed at the end of the page. This makes it easier to debug page formatting problems. Finally, you can specify that all trace messages be emitted to a file, or the standard output and a file at the same time. To trace to a file, specify the filename with an output character in front of it. TSetup('4 SQL', ">$fileName"); To trace to the standard output and a file at the same time, put a C<+> in front of the angle bracket. TSetup('3 *', "+>$fileName"); The flexibility of tracing makes it superior to simple use of directives like C and C. Tracer calls can be left in the code with minimal overhead and then turned on only when needed. Thus, debugging information is available and easily retrieved even when the application is being used out in the field. =head3 Trace Levels There is no hard and fast rule on how to use trace levels. The following is therefore only a suggestion. =over 4 =item Error 0 Message indicates an error that may lead to incorrect results or that has stopped the application entirely. =item Warning 1 Message indicates something that is unexpected but that probably did not interfere with program execution. =item Notice 2 Message indicates the beginning or end of a major task. =item Information 3 Message indicates a subtask. In the FIG system, a subtask generally relates to a single genome. This would be a big loop that is not expected to execute more than 500 times or so. =item Detail 4 Message indicates a low-level loop iteration. =back The format of trace messages is important because some utilities analyze trace files. There are three fields-- the time stamp, the category name, and the text. The time stamp is between square brackets and the category name between angle brackets. After the category name there is a colon (C<:>) followed by the message text. If the square brackets or angle brackets are missing, then the trace management utilities assume that they are encountering a set of pre-formatted lines. Note, however, that this formatting is done automatically by the tracing functions. You only need to know about it if you want to parse a trace file. =head3 Emergency Tracing Sometimes, you need a way for tracing to happen automatically without putting parameters in a form or on the command line. Emergency tracing does this. You invoke emergency tracing from the debug form, which is accessed from the [[DebugConsole]]. Emergency tracing requires that you specify a tracing key. For command-line tools, the key is taken from the C environment variable. For web services, the key is taken from a cookie. Either way, the key tells the tracing facility who you are, so that you control the tracing in your environment without stepping on other users. The key can be anything you want. If you don't have a key, the C page will generate one for you. You can activate and de-activate emergency tracing from the debugging control panel, as well as display the trace file itself. To enable emergency tracing in your code, call ETracing($cgi) from a web script and ETracing() from a command-line script. The web script will look for the tracing key in the cookies, and the command-line script will look for it in the C environment variable. If you are using the L method or a [[WebApplication]], emergency tracing will be configured automatically. =cut # Declare the configuration variables. my $Destination = "WARN"; # Description of where to send the trace output. my $TeeFlag = 0; # TRUE if output is going to a file and to the # standard output my %Categories = ( main => 1 ); # hash of active category names my @LevelNames = qw(error warn notice info detail); my $TraceLevel = 0; # trace level; a higher trace level produces more # messages my @Queue = (); # queued list of trace messages. my $LastCategory = "main"; # name of the last category interrogated my $LastLevel = 0; # level of the last test call my $SetupCount = 0; # number of times TSetup called my $AllTrace = 0; # TRUE if we are tracing all categories. my $SavedCGI; # CGI object passed to ETracing my $CommandLine; # Command line passed to StandardSetup umask 2; # Fix the damn umask so everything is group-writable. =head2 Tracing Methods =head3 Setups my $count = Tracer::Setups(); Return the number of times L has been called. This method allows for the creation of conditional tracing setups where, for example, we may want to set up tracing if nobody else has done it before us. =cut sub Setups { return $SetupCount; } =head3 TSetup TSetup($categoryList, $target); This method is used to specify the trace options. The options are stored as package data and interrogated by the L and L methods. =over 4 =item categoryList A string specifying the trace level and the categories to be traced, separated by spaces. The trace level must come first. =item target The destination for the trace output. To send the trace output to a file, specify the file name preceded by a ">" symbol. If a double symbol is used (">>"), then the data is appended to the file. Otherwise the file is cleared before tracing begins. Precede the first ">" symbol with a C<+> to echo output to a file AND to the standard output. In addition to sending the trace messages to a file, you can specify a special destination. C will cause tracing to the standard output with each line formatted as an HTML paragraph. C will cause tracing to the standard output as ordinary text. C will cause trace messages to be sent to the standard error output as ordinary text. C will cause trace messages to be stored in a queue for later retrieval by the L method. C will cause trace messages to be emitted as warnings using the B directive. C will cause tracing to be suppressed. =back =cut sub TSetup { # Get the parameters. my ($categoryList, $target) = @_; # Parse the category list. my @categoryData = split /\s+/, $categoryList; # Extract the trace level. $TraceLevel = shift @categoryData; # Presume category-based tracing until we learn otherwise. $AllTrace = 0; # Build the category hash. Note that if we find a "*", we turn on non-category # tracing. We must also clear away any pre-existing data. %Categories = ( main => 1 ); for my $category (@categoryData) { if ($category eq '*') { $AllTrace = 1; } else { $Categories{lc $category} = 1; } } # Now we need to process the destination information. The most important special # case is when we're writing to a file. This is indicated by ">" (overwrite) and # ">>" (append). A leading "+" for either indicates that we are also writing to # the standard output (tee mode). if ($target =~ m/^\+?>>?/) { if ($target =~ m/^\+/) { $TeeFlag = 1; $target = substr($target, 1); } if ($target =~ m/^>[^>]/) { # We need to initialize the file (which clears it). open TRACEFILE, $target; print TRACEFILE "[" . Now() . "] [notice] [Tracer] Tracing initialized.\n"; close TRACEFILE; # Set to append mode now that the file has been cleared. $Destination = ">$target"; } else { $Destination = $target; } } else { $Destination = uc($target); } # Increment the setup counter. $SetupCount++; } =head3 SetLevel Tracer::SetLevel($newLevel); Modify the trace level. A higher trace level will cause more messages to appear. =over 4 =item newLevel Proposed new trace level. =back =cut sub SetLevel { $TraceLevel = $_[0]; } =head3 ParseDate my $time = Tracer::ParseDate($dateString); Convert a date into a PERL time number. This method expects a date-like string and parses it into a number. The string must be vaguely date-like or it will return an undefined value. Our requirement is that a month and day be present and that three pieces of the date string (time of day, month and day, year) be separated by likely delimiters, such as spaces, commas, and such-like. If a time of day is present, it must be in military time with two digits for everything but the hour. The year must be exactly four digits. Additional stuff can be in the string. We presume it's time zones or weekdays or something equally innocuous. This means, however, that a sufficiently long sentence with date-like parts in it may be interpreted as a date. Hopefully this will not be a problem. It should be guaranteed that this method will parse the output of the L function. The parameters are as follows. =over 4 =item dateString The date string to convert. =item RETURN Returns a PERL time, that is, a number of seconds since the epoch, or C if the date string is invalid. A valid date string must contain a month and day. =back =cut # Universal month conversion table. use constant MONTHS => { Jan => 0, January => 0, '01' => 0, '1' => 0, Feb => 1, February => 1, '02' => 1, '2' => 1, Mar => 2, March => 2, '03' => 2, '3' => 2, Apr => 3, April => 3, '04' => 3, '4' => 3, May => 4, May => 4, '05' => 4, '5' => 4, Jun => 5, June => 5, '06' => 5, '6' => 5, Jul => 6, July => 6, '07' => 6, '7' => 6, Aug => 7, August => 7, '08' => 7, '8' => 7, Sep => 8, September => 8, '09' => 8, '9' => 8, Oct => 9, October => 9, '10' => 9, Nov => 10, November => 10, '11' => 10, Dec => 11, December => 11, '12' => 11 }; sub ParseDate { # Get the parameters. my ($dateString) = @_; # Declare the return variable. my $retVal; # Find the month and day of month. There are two ways that can happen. We check for the # numeric style first. That way, if the user's done something like "Sun 12/22", then we # won't be fooled into thinking the month is Sunday. if ($dateString =~ m#\b(\d{1,2})/(\d{1,2})\b# || $dateString =~ m#\b(\w+)\s(\d{1,2})\b#) { my ($mon, $mday) = (MONTHS->{$1}, $2); # Insist that the month and day are valid. if (defined($mon) && $2 >= 1 && $2 <= 31) { # Find the time. my ($hour, $min, $sec) = (0, 0, 0); if ($dateString =~ /\b(\d{1,2}):(\d{2}):(\d{2})\b/) { ($hour, $min, $sec) = ($1, $2, $3); } # Find the year. my $year; if ($dateString =~ /\b(\d{4})\b/) { $year = $1; } else { # Get the default year, which is this one. Note we must convert it to # the four-digit value expected by "timelocal". (undef, undef, undef, undef, undef, $year) = localtime(); $year += 1900; } $retVal = timelocal($sec, $min, $hour, $mday, $mon, $year); } } # Return the result. return $retVal; } =head3 LogErrors Tracer::LogErrors($fileName); Route the standard error output to a log file. =over 4 =item fileName Name of the file to receive the error output. =back =cut sub LogErrors { # Get the file name. my ($fileName) = @_; # Open the file as the standard error output. open STDERR, '>', $fileName; } =head3 Trace Trace($message); Write a trace message to the target location specified in L. If there has not been any prior call to B. =over 4 =item message Message to write. =back =cut sub Trace { # Get the parameters. my ($message) = @_; # Strip off any line terminators at the end of the message. We will add # new-line stuff ourselves. my $stripped = Strip($message); # Compute the caller information. my ($callPackage, $callFile, $callLine) = caller(); my $callFileTitle = basename($callFile); # Check the caller. my $callerInfo = ($callFileTitle ne "Tracer.pm" ? " [$callFileTitle $callLine]" : ""); # Get the timestamp. my $timeStamp = Now(); # Build the prefix. my $level = $LevelNames[$LastLevel] || "($LastLevel)"; my $prefix = "[$timeStamp] [$level] [$LastCategory]$callerInfo"; # Format the message. my $formatted = "$prefix $stripped"; # Process according to the destination. if ($Destination eq "TEXT") { # Write the message to the standard output. print "$formatted\n"; } elsif ($Destination eq "ERROR") { # Write the message to the error output. Here, we want our prefix fields. print STDERR "$formatted\n"; } elsif ($Destination eq "WARN") { # Emit the message to the standard error output. It is presumed that the # error logger will add its own prefix fields, the notable exception being # the caller info. print STDERR "$callerInfo$stripped\n"; } elsif ($Destination eq "QUEUE") { # Push the message into the queue. push @Queue, "$formatted"; } elsif ($Destination eq "HTML") { # Convert the message to HTML and write it to the standard output. my $escapedMessage = CGI::escapeHTML($stripped); print "

$timeStamp $LastCategory $LastLevel: $escapedMessage

\n"; } elsif ($Destination =~ m/^>>/) { # Write the trace message to an output file. open(TRACING, $Destination) || die "Tracing open for \"$Destination\" failed: $!"; print TRACING "$formatted\n"; close TRACING; # If the Tee flag is on, echo it to the standard output. if ($TeeFlag) { print "$formatted\n"; } } } =head3 T my $switch = T($category, $traceLevel); or my $switch = T($traceLevel); Return TRUE if the trace level is at or above a specified value and the specified category is active, else FALSE. If no category is specified, the caller's package name is used. =over 4 =item category Category to which the message belongs. If not specified, the caller's package name is used. =item traceLevel Relevant tracing level. =item RETURN TRUE if a message at the specified trace level would appear in the trace, else FALSE. =back =cut sub T { # Declare the return variable. my $retVal = 0; # Only proceed if tracing is turned on. if ($Destination ne "NONE") { # Get the parameters. my ($category, $traceLevel) = @_; if (!defined $traceLevel) { # Here we have no category, so we need to get the calling package. # The calling package is normally the first parameter. If it is # omitted, the first parameter will be the tracelevel. So, the # first thing we do is shift the so-called category into the # $traceLevel variable where it belongs. $traceLevel = $category; my ($package, $fileName, $line) = caller; # If there is no calling package, we default to "main". if (!$package) { $category = "main"; } else { my @cats = split /::/, $package; $category = $cats[$#cats]; } } # Save the category name and level. $LastCategory = $category; $LastLevel = $traceLevel; # Convert it to lower case before we hash it. $category = lc $category; # Validate the trace level. if (ref $traceLevel) { Confess("Bad trace level."); } elsif (ref $TraceLevel) { Confess("Bad trace config."); } # Make the check. Note that level 0 shows even if the category is turned off. $retVal = ($traceLevel <= $TraceLevel && ($traceLevel == 0 || $AllTrace || exists $Categories{$category})); } # Return the computed result. return $retVal; } =head3 QTrace my $data = QTrace($format); Return the queued trace data in the specified format. =over 4 =item format C to format the data as an HTML list, C to format it as straight text. =back =cut sub QTrace { # Get the parameter. my ($format) = @_; # Create the return variable. my $retVal = ""; # Only proceed if there is an actual queue. if (@Queue) { # Process according to the format. if ($format =~ m/^HTML$/i) { # Convert the queue into an HTML list. $retVal = "
    \n"; for my $line (@Queue) { my $escapedLine = CGI::escapeHTML($line); $retVal .= "
  • $escapedLine
  • \n"; } $retVal .= "
\n"; } elsif ($format =~ m/^TEXT$/i) { # Convert the queue into a list of text lines. $retVal = join("\n", @Queue) . "\n"; } # Clear the queue. @Queue = (); } # Return the formatted list. return $retVal; } =head3 Confess Confess($message); Trace the call stack and abort the program with the specified message. When used with the OR operator and the L method, B can function as a debugging assert. So, for example Assert($recNum >= 0) || Confess("Invalid record number $recNum."); Will abort the program with a stack trace if the value of C<$recNum> is negative. =over 4 =item message Message to include in the trace. =back =cut sub Confess { # Get the parameters. my ($message) = @_; # Set up the category and level. $LastCategory = "(confess)"; $LastLevel = 0; if (! defined($FIG_Config::no_tool_hdr)) { # Here we have a tool header. Display its length so that the user can adjust the line numbers. my $toolHeaderFile = "$FIG_Config::fig_disk/dist/releases/current/$FIG_Config::arch/tool_hdr"; # Only proceed if the tool header file is actually present. if (-f $toolHeaderFile) { my $fh; if (open $fh, "<$toolHeaderFile") { my @lines = <$fh>; Trace("Tool header has " . scalar(@lines) . " lines."); } } } # Trace the call stack. Cluck($message); # Abort the program. croak(">>> $message"); } =head3 SaveCGI Tracer::SaveCGI($cgi); This method saves the CGI object but does not activate emergency tracing. It is used to allow L
to work in situations where emergency tracing is contra-indicated (e.g. the wiki). =over 4 =item cgi Active CGI query object. =back =cut sub SaveCGI { $SavedCGI = $_[0]; } =head3 Warn Warn($message, @options); This method traces an important message. If an RSS feed is configured (via I) and the tracing destination is C, then the message will be echoed to the feed. In general, a tracing destination of C indicates that the caller is running as a web service in a production environment; however, this is not a requirement. To force warnings into the RSS feed even when the tracing destination is not C, simply specify the C tracing module. This can be configured automatically when L is used. The L method calls this one for its final message. Since L calls L, this means that any error which is caught and confessed will put something in the feed. This insures that someone will be alerted relatively quickly when a failure occurs. =over 4 =item message Message to be traced. =item options A list containing zero or more options. =back The permissible options are as follows. =over 4 =item noStack If specified, then the stack trace is not included in the output. =back =cut sub Warn { # Get the parameters. my $message = shift @_; my %options = map { $_ => 1 } @_; # Trace the message. Trace($message); # This will contain the lock handle. If it's defined, it means we need to unlock. my $lock; # Check for feed forcing. my $forceFeed = exists $Categories{feed}; # An error here would be disastrous. Note that if debug mode is specified, # we do this stuff even in a test environment. eval { # Do we need to put this in the RSS feed? if ($FIG_Config::error_feed && ($Destination eq 'WARN' || $forceFeed)) { # Yes. We now need to compute the date, the link, and the title. # First, the date, in a very specific format. my $date = strftime("%a, %02e %b %H:%M:%S %Y ", localtime) . (tz_local_offset() / 30); # Environment data goes in here. We start with the date. my $environment = "$date. "; # If we need to recap the message (because it's too long to be a title), we'll # put it in here. my $recap; # Copy the message and remove excess space. my $title = $message; $title =~ s/\s+/ /gs; # If it's too long, we have to split it up. if (length $title > 60) { # Put the full message in the environment string. $recap = $title; # Excerpt it as the title. $title = substr($title, 0, 50) . "..."; } # If we have a CGI object, then this is a web error. Otherwise, it's # command-line. if (defined $SavedCGI) { # We're in a web service. The environment is the user's IP, and the link # is the URL that got us here. my $key = $ENV{HTTP_X_FORWARDED_FOR} || $ENV{REMOTE_ADDR}; $environment .= "Event Reported at IP address $key process $$."; my $url = $SavedCGI->self_url(); # We need the user agent string and (if available) the referrer. # The referrer will be the link. $environment .= " User Agent $ENV{HTTP_USER_AGENT}"; if ($ENV{HTTP_REFERER}) { my $link = $ENV{HTTP_REFERER}; $environment .= " referred from $link."; } else { $environment .= " referrer unknown."; } # Close off the sentence with the original link. $environment .= " URL of event is $url."; } else { # No CGI object, so we're a command-line tool. Use the tracing # key and the PID as the user identifier, and add the command. my $key = EmergencyKey(); $environment .= "Event Reported by $key process $$."; if ($CommandLine) { # We're in a StandardSetup script, so we have the real command line. $environment .= "\n
" . CGI::escapeHTML($CommandLine) . "
\n"; } elsif ($ENV{_}) { # We're in a BASH script, so the command has been stored in the _ variable. $environment .= " Command = " . CGI::escapeHTML($ENV{_}) . "\n"; } } # Build a GUID. We use the current time, the title, and the process ID, # then digest the result. my $guid = Digest::MD5::md5_base64(gettimeofday(), $title, $$); # Finally, the description. This is a stack trace plus various environmental stuff. # The trace is optional. my $stackTrace; if ($options{noStack}) { $stackTrace = ""; } else { my @trace = LongMess(); # Only proceed if we got something back. if (scalar(@trace) > 0) { $trace[0] =~ s/Tracer::Warn.+?called/Event occurred/; $stackTrace = "Stack trace:
" . join("\n", @trace, "
"); } } # We got the stack trace. Now it's time to put it all together. # We have a goofy thing here in that we need to HTML-escape some sections of the description # twice. They will be escaped once here, and then once when written by XML::Simple. They are # unescaped once when processed by the RSS reader, and stuff in the description is treated as # HTML. So, anything escaped here is treated as a literal when viewed in the RSS reader, but # our
s and
s are used to format the description.
            $recap = (defined $recap ? "" . CGI::escapeHTML($recap) . "

" : ""); my $description = "$recap$environment $stackTrace"; # Okay, we have all the pieces. Create a hash of the new event. my $newItem = { title => $title, description => $description, category => $LastCategory, pubDate => $date, guid => $guid, }; # We need XML capability for this. require XML::Simple; # The RSS document goes in here. my $rss; # Get the name of the RSS file. It's in the FIG temporary directory. my $fileName = "$FIG_Config::temp/$FIG_Config::error_feed"; # Open the config file and lock it. $lock = Open(undef, "<$FIG_Config::fig_disk/config/FIG_Config.pm"); flock $lock, LOCK_EX; # Does it exist? if (-s $fileName) { # Slurp it in. $rss = XML::Simple::XMLin($fileName, ForceArray => ['item']); } else { my $size = -s $fileName; # Create an empty channel. $rss = { channel => { title => 'NMPDR Warning Feed', link => "$FIG_Config::temp_url/$FIG_Config::error_feed", description => "Important messages regarding the status of the NMPDR.", generator => "NMPDR Trace Facility", docs => "http://blogs.law.harvard.edu/tech/rss", item => [] }, }; } # Get the channel object. my $channel = $rss->{channel}; # Update the last-build date. $channel->{lastBuildDate} = $date; # Get the item array. my $items = $channel->{item}; # Insure it has only 100 entries. while (scalar @{$items} > 100) { pop @{$items}; } # Add our new item at the front. unshift @{$items}, $newItem; # Create the XML. Note we do not include the root or the declaration. XML Simple can't handle # the requirements for those. my $xml = XML::Simple::XMLout($channel, NoAttr => 1, RootName => 'channel', XmlDecl => ''); # Here we put in the root and declaration. The problem is that the root has to have the version attribute # in it. So, we suppress the root and do it by hand, and that requires suppressing the declaration, too. $xml = "\n$xml\n"; # We don't use Open here because we can't afford an error. if (open XMLOUT, ">$fileName") { print XMLOUT $xml; close XMLOUT; } } }; if ($@) { # If the feed failed, we need to know why. The error will be traced, but this method will not be involved # (which is a good thing). my $error = $@; Trace("Feed Error: $error") if T(Feed => 0); } # Be sure to unlock. if ($lock) { flock $lock, LOCK_UN; undef $lock; } } =head3 Assert Assert($condition1, $condition2, ... $conditionN); Return TRUE if all the conditions are true. This method can be used in conjunction with the OR operator and the L method as a debugging assert. So, for example Assert($recNum >= 0) || Confess("Invalid record number $recNum."); Will abort the program with a stack trace if the value of C<$recNum> is negative. =cut sub Assert { my $retVal = 1; LOOP: for my $condition (@_) { if (! $condition) { $retVal = 0; last LOOP; } } return $retVal; } =head3 Cluck Cluck($message); Trace the call stack. Note that for best results, you should qualify the call with a trace condition. For example, Cluck("Starting record parse.") if T(3); will only trace the stack if the trace level for the package is 3 or more. =over 4 =item message Message to include in the trace. =back =cut sub Cluck { # Get the parameters. my ($message) = @_; # Trace what's happening. Trace("Stack trace for event: $message"); # Get the stack trace. my @trace = LongMess(); # Convert the trace to a series of messages. for my $line (@trace) { # Replace the tab at the beginning with spaces. $line =~ s/^\t/ /; # Trace the line. Trace($line); } # Issue a warning. This displays the event message and inserts it into the RSS error feed. Warn($message); } =head3 LongMess my @lines = Tracer::LongMess(); Return a stack trace with all tracing methods removed. The return will be in the form of a list of message strings. =cut sub LongMess { # Declare the return variable. my @retVal = (); my $confession = longmess(""); for my $line (split /\s*\n/, $confession) { unless ($line =~ /Tracer\.pm/) { # Here we have a line worth keeping. Push it onto the result list. push @retVal, $line; } } # Return the result. return @retVal; } =head3 ETracing ETracing($parameter); Set up emergency tracing. Emergency tracing is tracing that is turned on automatically for any program that calls this method. The emergency tracing parameters are stored in a a file identified by a tracing key. If this method is called with a CGI object, then the tracing key is taken from a cookie. If it is called with no parameters, then the tracing key is taken from an environment variable. If it is called with a string, the tracing key is that string. =over 4 =item parameter A parameter from which the tracing key is computed. If it is a scalar, that scalar is used as the tracing key. If it is a CGI object, the tracing key is taken from the C cookie. If it is omitted, the tracing key is taken from the C environment variable. If it is a CGI object and emergency tracing is not on, the C and C parameters will be used to determine the type of tracing. =back =cut sub ETracing { # Get the parameter. my ($parameter) = @_; # Check for CGI mode. if (defined $parameter && ref $parameter eq 'CGI') { $SavedCGI = $parameter; } else { $SavedCGI = undef; } # Default to no tracing except errors. my ($tracing, $dest) = ("0", "WARN"); # Check for emergency tracing. my $tkey = EmergencyKey($parameter); my $emergencyFile = EmergencyFileName($tkey); if (-e $emergencyFile) { # We have the file. Read in the data. my @tracing = GetFile($emergencyFile); # Pull off the time limit. my $expire = shift @tracing; # Convert it to seconds. $expire *= 3600; # Check the file data. my $stat = stat($emergencyFile); my ($now) = gettimeofday; if ($now - $stat->mtime > $expire) { # Delete the expired file. unlink $emergencyFile; } else { # Emergency tracing is on. Pull off the destination and # the trace level; $dest = shift @tracing; my $level = shift @tracing; # Convert the destination to a real tracing destination. # temp directory. $dest = EmergencyTracingDest($tkey, $dest); # Insure Tracer is specified. my %moduleHash = map { $_ => 1 } @tracing; $moduleHash{Tracer} = 1; # Set the trace parameter. $tracing = join(" ", $level, sort keys %moduleHash); } } elsif (defined $SavedCGI) { # There's no emergency tracing, but we have a CGI object, so check # for tracing from the form parameters. if ($SavedCGI->param('Trace')) { # Here the user has requested tracing via a form. $dest = ($SavedCGI->param('TF') ? ">$FIG_Config::temp/Trace$$.log" : "QUEUE"); $tracing = $SavedCGI->param('Trace') . " Tracer"; } } # Setup the tracing we've determined from all the stuff above. TSetup($tracing, $dest); # Check to see if we're a web script. if (defined $SavedCGI) { # Yes we are. Trace the form and environment data. TraceParms($SavedCGI); # Check for RAW mode. In raw mode, we print a fake header so that we see everything # emitted by the script in its raw form. if (T(Raw => 3)) { print CGI::header(-type => 'text/plain', -tracing => 'Raw'); } } } =head3 EmergencyFileName my $fileName = Tracer::EmergencyFileName($tkey); Return the emergency tracing file name. This is the file that specifies the tracing information. =over 4 =item tkey Tracing key for the current program. =item RETURN Returns the name of the file to contain the emergency tracing information. =back =cut sub EmergencyFileName { # Get the parameters. my ($tkey) = @_; # Compute the emergency tracing file name. return "$FIG_Config::temp/Emergency$tkey.txt"; } =head3 EmergencyFileTarget my $fileName = Tracer::EmergencyFileTarget($tkey); Return the emergency tracing target file name. This is the file that receives the tracing output for file-based tracing. =over 4 =item tkey Tracing key for the current program. =item RETURN Returns the name of the file to contain the trace output. =back =cut sub EmergencyFileTarget { # Get the parameters. my ($tkey) = @_; # Compute the emergency tracing file name. return "$FIG_Config::temp/trace$tkey.log"; } =head3 EmergencyTracingDest my $dest = Tracer::EmergencyTracingDest($tkey, $myDest); This method converts an emergency tracing destination to a real tracing destination. The main difference is that if the destination is C or C, we convert it to file output. If the destination is C, we convert it to file and standard output. =over 4 =item tkey Tracing key for this environment. =item myDest Destination from the emergency tracing file. =item RETURN Returns a destination that can be passed into L. =back =cut sub EmergencyTracingDest { # Get the parameters. my ($tkey, $myDest) = @_; # Declare the return variable. my $retVal = $myDest; # Process according to the destination value. if ($myDest eq 'FILE') { $retVal = ">" . EmergencyFileTarget($tkey); } elsif ($myDest eq 'APPEND') { $retVal = ">>" . EmergencyFileTarget($tkey); } elsif ($myDest eq 'DUAL') { $retVal = "+>" . EmergencyFileTarget($tkey); } elsif ($myDest eq 'WARN') { $retVal = "WARN"; } # Return the result. return $retVal; } =head3 Emergency Emergency($key, $hours, $dest, $level, @modules); Turn on emergency tracing. This method is normally invoked over the web from a debugging console, but it can also be called by the C script. The caller specifies the duration of the emergency in hours, the desired tracing destination, the trace level, and a list of the trace modules to activate. For the length of the duration, when a program in an environment with the specified tracing key active invokes a Sprout CGI script, tracing will be turned on automatically. See L for more about tracing setup and L for more about emergency tracing. =over 4 =item tkey The tracing key. This is used to identify the control file and the trace file. =item hours Number of hours to keep emergency tracing alive. =item dest Tracing destination. If no path information is specified for a file destination, it is put in the FIG temporary directory. =item level Tracing level. A higher level means more trace messages. =item modules A list of the tracing modules to activate. =back =cut sub Emergency { # Get the parameters. my ($tkey, $hours, $dest, $level, @modules) = @_; # Create the emergency file. my $specFile = EmergencyFileName($tkey); my $outHandle = Open(undef, ">$specFile"); print $outHandle join("\n", $hours, $dest, $level, @modules, ""); } =head3 EmergencyKey my $tkey = EmergencyKey($parameter); Return the Key to be used for emergency tracing. This could be an IP address, a session ID, or a user name, depending on the environment. =over 4 =item parameter Parameter defining the method for finding the tracing key. If it is a scalar, then it is presumed to be the tracing key itself. If it is a CGI object, then the tracing key is taken from the C cookie. Otherwise, the tracing key is taken from the C environment variable. =item RETURN Returns the key to be used for labels in emergency tracing. =back =cut sub EmergencyKey { # Get the parameters. my ($parameter) = @_; # Declare the return variable. my $retVal; # Determine the parameter type. if (! defined $parameter) { # Here we're supposed to check the environment. If that fails, we # get the effective login ID. $retVal = $ENV{TRACING} || scalar getpwuid($<); } else { my $ptype = ref $parameter; if ($ptype eq 'CGI') { # Here we were invoked from a web page. Look for a cookie. $retVal = $parameter->cookie('IP'); } elsif (! $ptype) { # Here the key was passed in. $retVal = $parameter; } } # If no luck finding a key, use the PID. if (! defined $retVal) { $retVal = $$; } # Return the result. return $retVal; } =head3 TraceParms Tracer::TraceParms($cgi); Trace the CGI parameters at trace level CGI => 3 and the environment variables at level CGI => 4. A self-referencing URL is traced at level CGI => 2. =over 4 =item cgi CGI query object containing the parameters to trace. =back =cut sub TraceParms { # Get the parameters. my ($cgi) = @_; if (T(CGI => 2)) { # Here we trace the GET-style URL for the script. Trace("[URL] " . $cgi->url(-relative => 1, -query => 1)); } if (T(CGI => 3)) { # Here we want to trace the parameter data. my @names = $cgi->param; for my $parmName (sort @names) { # Note we skip the Trace parameters, which are for our use only. if ($parmName ne 'Trace' && $parmName ne 'TF') { my @values = $cgi->param($parmName); Trace("[CGI] $parmName = " . join(", ", @values)); } } # Display the request method. my $method = $cgi->request_method(); Trace("Method: $method"); } if (T(CGI => 4)) { # Here we want the environment data too. for my $envName (sort keys %ENV) { Trace("[ENV] $envName = $ENV{$envName}"); } } } =head3 TraceImages Tracer::TraceImages($htmlString); Trace information about all of an html document's images. The tracing will be for type "IMG" at level 3. The image's source string will be displayed. This is generally either the URL of the image or raw data for the image itself. If the source is too long, only the first 300 characters will be shown at trace level 3. The entire source will be shown, however, at trace level 4. This method is not very smart, and might catch Javascript code, but it is still useful when debugging the arcane behavior of images in multiple browser environments. =over 4 =item htmlString HTML text for an outgoing web page. =back =cut sub TraceImages { # Only proceed if we're at the proper trace level. if (T(IMG => 3)) { # For performance reasons we're manipulating $_[0] instead of retrieving the string # into a variable called "$htmlString". This is because we expect html strings to be # long, and don't want to copy them any more than we have to. Trace(length($_[0]) . " characters in web page."); # Loop through the HTML, culling image tags. while ($_[0] =~ /]+?src="([^"]+)"/sgi) { # Extract the source string and determine whether or not it's too long. my $srcString = $1; my $pos = pos($_[0]) - length($srcString); my $excess = length($srcString) - 300; # We'll put the display string in here. my $srcDisplay = $srcString; # If it's a data string, split it at the comma. $srcDisplay =~ s/^(data[^,]+,)/$1\n/; # If there's no excess or we're at trace level 4, we're done. At level 3 with # a long string, however, we only show the first 300 characters. if ($excess > 0 && ! T(IMG => 4)) { $srcDisplay = substr($srcDisplay,0,300) . "\nplus $excess characters."; } # Output the trace message. Trace("Image tag at position $pos:\n$srcDisplay"); } } } =head2 Command-Line Utility Methods =head3 SendSMS my $msgID = Tracer::SendSMS($phoneNumber, $msg); Send a text message to a phone number using Clickatell. The FIG_Config file must contain the user name, password, and API ID for the relevant account in the hash reference variable I<$FIG_Config::phone>, using the keys C, C, and C. For example, if the user name is C, the password is C, and the API ID is C<2561022>, then the FIG_Config file must contain $phone = { user => 'BruceTheHumanPet', password => 'silly', api_id => '2561022' }; The original purpose of this method was to insure Bruce would be notified immediately when the Sprout Load terminates. Care should be taken if you do not wish Bruce to be notified immediately when you call this method. The message ID will be returned if successful, and C if an error occurs. =over 4 =item phoneNumber Phone number to receive the message, in international format. A United States phone number would be prefixed by "1". A British phone number would be prefixed by "44". =item msg Message to send to the specified phone. =item RETURN Returns the message ID if successful, and C if the message could not be sent. =back =cut sub SendSMS { # Get the parameters. my ($phoneNumber, $msg) = @_; # Declare the return variable. If we do not change it, C will be returned. my $retVal; # Only proceed if we have phone support. if (! defined $FIG_Config::phone) { Trace("Phone support not present in FIG_Config.") if T(1); } else { # Get the phone data. my $parms = $FIG_Config::phone; # Get the Clickatell URL. my $url = "http://api.clickatell.com/http/"; # Create the user agent. my $ua = LWP::UserAgent->new; # Request a Clickatell session. my $resp = $ua->post("$url/sendmsg", { user => $parms->{user}, password => $parms->{password}, api_id => $parms->{api_id}, to => $phoneNumber, text => $msg}); # Check for an error. if (! $resp->is_success) { Trace("Alert failed.") if T(1); } else { # Get the message ID. my $rstring = $resp->content; if ($rstring =~ /^ID:\s+(.*)$/) { $retVal = $1; } else { Trace("Phone attempt failed with $rstring") if T(1); } } } # Return the result. return $retVal; } =head3 StandardSetup my ($options, @parameters) = StandardSetup(\@categories, \%options, $parmHelp, @ARGV); This method performs standard command-line parsing and tracing setup. The return values are a hash of the command-line options and a list of the positional parameters. Tracing is automatically set up and the command-line options are validated. This is a complex method that does a lot of grunt work. The parameters can be more easily understood, however, once they are examined individually. The I parameter is the most obtuse. It is a reference to a list of special-purpose tracing categories. Most tracing categories are PERL package names. So, for example, if you wanted to turn on tracing inside the B, B, and B packages, you would specify the categories ["Sprout", "SproutLoad", "ERDB"] This would cause trace messages in the specified three packages to appear in the output. There are two special tracing categories that are automatically handled by this method. In other words, if you used L you would need to include these categories manually, but if you use this method they are turned on automatically. =over 4 =item SQL Traces SQL commands and activity. =item Tracer Traces error messages and call stacks. =back C is only turned on if the C<-sql> option is specified in the command line. The trace level is specified using the C<-trace> command-line option. For example, the following command line for C turns on SQL tracing and runs all tracing at level 3. TransactFeatures -trace=3 -sql register ../xacts IDs.tbl Standard tracing is output to the standard output and echoed to the file CI<$$>C<.log> in the FIG temporary directory, where I<$$> is the process ID. You can also specify the C parameter to put a user ID instead of a process ID in the trace file name. So, for example The default trace level is 2. To get all messages, specify a trace level of 4. For a genome-by-genome update, use 3. TransactFeatures -trace=3 -sql -user=Bruce register ../xacts IDs.tbl would send the trace output to C in the temporary directory. The I parameter is a reference to a hash containing the command-line options, their default values, and an explanation of what they mean. Command-line options may be in the form of switches or keywords. In the case of a switch, the option value is 1 if it is specified and 0 if it is not specified. In the case of a keyword, the value is separated from the option name by an equal sign. You can see this last in the command-line example above. You can specify a different default trace level by setting C<$options->{trace}> prior to calling this method. An example at this point would help. Consider, for example, the command-line utility C. It accepts a list of positional parameters plus the options C, C, C, and C. To start up this command, we execute the following code. my ($options, @parameters) = Tracer::StandardSetup(["DocUtils"], { safe => [0, "use database transactions"], noAlias => [0, "do not expect aliases in CHANGE transactions"], start => [' ', "start with this genome"], tblFiles => [0, "output TBL files containing the corrected IDs"] }, " ", @ARGV); The call to C specifies the default values for the options and stores the actual options in a hash that is returned as C<$options>. The positional parameters are returned in C<@parameters>. The following is a sample command line for C. TransactFeatures -trace=2 -noAlias register ../xacts IDs.tbl Single and double hyphens are equivalent. So, you could also code the above command as TransactFeatures --trace=2 --noAlias register ../xacts IDs.tbl In this case, C, C<../xacts>, and C are the positional parameters, and would find themselves in I<@parameters> after executing the above code fragment. The tracing would be set to level 2, and the categories would be C, and . C is standard, and C was included because it came in within the first parameter to this method. The I<$options> hash would be { trace => 2, sql => 0, safe => 0, noAlias => 1, start => ' ', tblFiles => 0 } Use of C in this way provides a simple way of performing standard tracing setup and command-line parsing. Note that the caller is not even aware of the command-line switches C<-trace> and C<-sql>, which are used by this method to control the tracing. If additional tracing features need to be added in the future, they can be processed by this method without upsetting the command-line utilities. If the C option is specified on the command line, then the standard and error outputs will be directed to files in the temporary directory, using the same suffix as the trace file. So, if the command line specified -user=Bruce -background then the trace output would go to C, the standard output to C, and the error output to C. This is designed to simplify starting a command in the background. The user name is also used as the tracing key for L. Specifying a value of C for the trace level causes emergency tracing to be used instead of custom tracing. If the user name is not specified, the tracing key is taken from the C environment variable. If there is no value for that variable, the tracing key will be computed from the active login ID. Since the default situation in StandardSetup is to trace to the standard output, errors that occur in command-line scripts will not generate RSS events. To force the events, use the C option. TransactFeatures -background -warn register ../xacts IDs.tbl Finally, if the special option C<-help> is specified, the option names will be traced at level 0 and the program will exit without processing. This provides a limited help capability. For example, if the user enters TransactFeatures -help he would see the following output. TransactFeatures [options] -trace tracing level (default E) -sql trace SQL commands -safe use database transactions -noAlias do not expect aliases in CHANGE transactions -start start with this genome -tblFiles output TBL files containing the corrected IDs The caller has the option of modifying the tracing scheme by placing a value for C in the incoming options hash. The default value can be overridden, or the tracing to the standard output can be turned off by suffixing a minus sign to the trace level. So, for example, { trace => [0, "tracing level (default 0)"], ... would set the default trace level to 0 instead of E, while { trace => ["2-", "tracing level (default 2)"], ... would set the default to 2, but trace only to the log file, not to the standard output. The parameters to this method are as follows. =over 4 =item categories Reference to a list of tracing category names. These should be names of packages whose internal workings will need to be debugged to get the command working. =item options Reference to a hash containing the legal options for the current command mapped to their default values and descriptions. The user can override the defaults by specifying the options as command-line switches prefixed by a hyphen. Tracing-related options may be added to this hash. If the C<-h> option is specified on the command line, the option descriptions will be used to explain the options. To turn off tracing to the standard output, add a minus sign to the value for C (see above). =item parmHelp A string that vaguely describes the positional parameters. This is used if the user specifies the C<-h> option. =item argv List of command line parameters, including the option switches, which must precede the positional parameters and be prefixed by a hyphen. =item RETURN Returns a list. The first element of the list is the reference to a hash that maps the command-line option switches to their values. These will either be the default values or overrides specified on the command line. The remaining elements of the list are the position parameters, in order. =back =cut sub StandardSetup { # Get the parameters. my ($categories, $options, $parmHelp, @argv) = @_; # Get the default tracing key. my $tkey = EmergencyKey(); # Save the command line. $CommandLine = join(" ", $0, map { $_ =~ /\s/ ? "\"$_\"" : $_ } @argv); # Add the tracing options. if (! exists $options->{trace}) { $options->{trace} = ['2', "tracing level (E for emergency tracing)"]; } $options->{sql} = [0, "turn on SQL tracing"]; $options->{help} = [0, "display command-line options"]; $options->{user} = [$tkey, "tracing key"]; $options->{background} = [0, "spool standard and error output"]; $options->{warn} = [0, "send errors to RSS feed"]; # Create a parsing hash from the options hash. The parsing hash # contains the default values rather than the default value # and the description. While we're at it, we'll memorize the # length of the longest option name. my $longestName = 0; my %parseOptions = (); for my $key (keys %{$options}) { if (length $key > $longestName) { $longestName = length $key; } $parseOptions{$key} = $options->{$key}->[0]; } # Parse the command line. my ($retOptions, @retParameters) = ParseCommand(\%parseOptions, @argv); # Get the logfile suffix. my $suffix = $retOptions->{user}; # Check for background mode. if ($retOptions->{background}) { my $outFileName = "$FIG_Config::temp/out$suffix.log"; my $errFileName = "$FIG_Config::temp/err$suffix.log"; open STDOUT, ">$outFileName"; open STDERR, ">$errFileName"; # Check for phone support. If we have phone support and a phone number, # we want to turn it on. if ($ENV{PHONE} && defined($FIG_Config::phone)) { $retOptions->{phone} = $ENV{PHONE}; } } # Now we want to set up tracing. First, we need to know if the user # wants emergency tracing. if ($retOptions->{trace} eq 'E') { ETracing($retOptions->{user}); } else { # Here the tracing is controlled from the command line. my @cats = @{$categories}; if ($retOptions->{sql}) { push @cats, "SQL"; } if ($retOptions->{warn}) { push @cats, "Feed"; } # Add the default categories. push @cats, "Tracer"; # Next, we create the category string by joining the categories. my $cats = join(" ", @cats); # Check to determine whether or not the caller wants to turn off tracing # to the standard output. my $traceLevel = $retOptions->{trace}; my $textOKFlag = 1; if ($traceLevel =~ /^(.)-/) { $traceLevel = $1; $textOKFlag = 0; } # Now we set up the trace mode. my $traceMode; # Verify that we can open a file in the FIG temporary directory. my $traceFileName = "$FIG_Config::temp/trace$suffix.log"; if (open TESTTRACE, ">$traceFileName") { # Here we can trace to a file. $traceMode = ">$traceFileName"; if ($textOKFlag) { # Echo to standard output if the text-OK flag is set. $traceMode = "+$traceMode"; } # Close the test file. close TESTTRACE; } else { # Here we can't trace to a file. Complain about this. warn "Could not open trace file $traceFileName: $!\n"; # We trace to the standard output if it's # okay, and the error log otherwise. if ($textOKFlag) { $traceMode = "TEXT"; } else { $traceMode = "WARN"; } } # Now set up the tracing. TSetup("$traceLevel $cats", $traceMode); } # Check for the "help" option. If it is specified, dump the command-line # options and exit the program. if ($retOptions->{help}) { $0 =~ m#[/\\](\w+)(\.pl)?$#i; print "$1 [options] $parmHelp\n"; for my $key (sort keys %{$options}) { my $name = Pad($key, $longestName, 0, ' '); my $desc = $options->{$key}->[1]; if ($options->{$key}->[0]) { $desc .= " (default " . $options->{$key}->[0] . ")"; } print " $name $desc\n"; } exit(0); } # Trace the options, if applicable. if (T(3)) { my @parms = grep { $retOptions->{$_} } keys %{$retOptions}; Trace("Selected options: " . join(", ", sort @parms) . "."); } # Return the parsed parameters. return ($retOptions, @retParameters); } =head3 ReadOptions my %options = Tracer::ReadOptions($fileName); Read a set of options from a file. Each option is encoded in a line of text that has the format IC<=>IC<; >I The option name must consist entirely of letters, digits, and the punctuation characters C<.> and C<_>, and is case sensitive. Blank lines and lines in which the first nonblank character is a semi-colon will be ignored. The return hash will map each option name to the corresponding option value. =over 4 =item fileName Name of the file containing the option data. =item RETURN Returns a hash mapping the option names specified in the file to their corresponding option value. =back =cut sub ReadOptions { # Get the parameters. my ($fileName) = @_; # Open the file. (open CONFIGFILE, "<$fileName") || Confess("Could not open option file $fileName."); # Count the number of records read. my ($records, $comments) = 0; # Create the return hash. my %retVal = (); # Loop through the file, accumulating key-value pairs. while (my $line = ) { # Denote we've read a line. $records++; # Determine the line type. if ($line =~ /^\s*[\n\r]/) { # A blank line is a comment. $comments++; } elsif ($line =~ /^\s*([A-Za-z0-9_\.]+)=([^;]*);/) { # Here we have an option assignment. retVal{$1} = $2; } elsif ($line =~ /^\s*;/) { # Here we have a text comment. $comments++; } else { # Here we have an invalid line. Trace("Invalid option statement in record $records.") if T(0); } } # Return the hash created. return %retVal; } =head3 GetOptions Tracer::GetOptions(\%defaults, \%options); Merge a specified set of options into a table of defaults. This method takes two hash references as input and uses the data from the second to update the first. If the second does not exist, there will be no effect. An error will be thrown if one of the entries in the second hash does not exist in the first. Consider the following example. my $optionTable = GetOptions({ dbType => 'mySQL', trace => 0 }, $options); In this example, the variable B<$options> is expected to contain at most two options-- B and B. The default database type is C and the default trace level is C<0>. If the value of B<$options> is C<< {dbType => 'Oracle'} >>, then the database type will be changed to C and the trace level will remain at 0. If B<$options> is undefined, then the database type and trace level will remain C and C<0>. If, on the other hand, B<$options> is defined as {databaseType => 'Oracle'} an error will occur because the B option does not exist. =over 4 =item defaults Table of default option values. =item options Table of overrides, if any. =item RETURN Returns a reference to the default table passed in as the first parameter. =back =cut sub GetOptions { # Get the parameters. my ($defaults, $options) = @_; # Check for overrides. if ($options) { # Loop through the overrides. while (my ($option, $setting) = each %{$options}) { # Insure this override exists. if (!exists $defaults->{$option}) { croak "Unrecognized option $option encountered."; } else { # Apply the override. $defaults->{$option} = $setting; } } } # Return the merged table. return $defaults; } =head3 MergeOptions Tracer::MergeOptions(\%table, \%defaults); Merge default values into a hash table. This method looks at the key-value pairs in the second (default) hash, and if a matching key is not found in the first hash, the default pair is copied in. The process is similar to L, but there is no error- checking and no return value. =over 4 =item table Hash table to be updated with the default values. =item defaults Default values to be merged into the first hash table if they are not already present. =back =cut sub MergeOptions { # Get the parameters. my ($table, $defaults) = @_; # Loop through the defaults. while (my ($key, $value) = each %{$defaults}) { if (!exists $table->{$key}) { $table->{$key} = $value; } } } =head3 ParseCommand my ($options, @arguments) = Tracer::ParseCommand(\%optionTable, @inputList); Parse a command line consisting of a list of parameters. The initial parameters may be option specifiers of the form C<->I. =over 4 =item noTrace (optional) If specified, tracing will be suppressed. This is useful if the script wants to set up tracing manually. =item RETURN Returns a two-element list consisting of a CGI query object and a variable hash for the output page. =back =cut sub ScriptSetup { # Get the parameters. my ($noTrace) = @_; # Get the CGI query object. my $cgi = CGI->new(); # Set up tracing if it's not suppressed. ETracing($cgi) unless $noTrace; # Create the variable hash. my $varHash = { results => '' }; # Return the query object and variable hash. return ($cgi, $varHash); } =head3 ScriptFinish (deprecated) ScriptFinish($webData, $varHash); Output a web page at the end of a script. Either the string to be output or the name of a template file can be specified. If the second parameter is omitted, it is assumed we have a string to be output; otherwise, it is assumed we have the name of a template file. The template should have the variable C specified in any form that invokes a standard script. If debugging mode is turned on, a form field will be put in that allows the user to enter tracing data. Trace messages will be placed immediately before the terminal C tag in the output, formatted as a list. A typical standard script would loook like the following. BEGIN { # Print the HTML header. print "CONTENT-TYPE: text/html\n\n"; } use Tracer; use CGI; use FIG; # ... more uses ... my ($cgi, $varHash) = ScriptSetup(); eval { # ... get data from $cgi, put it in $varHash ... }; if ($@) { Trace("Script Error: $@") if T(0); } ScriptFinish("Html/MyTemplate.html", $varHash); The idea here is that even if the script fails, you'll see trace messages and useful output. =over 4 =item webData A string containing either the full web page to be written to the output or the name of a template file from which the page is to be constructed. If the name of a template file is specified, then the second parameter must be present; otherwise, it must be absent. =item varHash (optional) If specified, then a reference to a hash mapping variable names for a template to their values. The template file will be read into memory, and variable markers will be replaced by data in this hash reference. =back =cut sub ScriptFinish { # Get the parameters. my ($webData, $varHash) = @_; # Check for a template file situation. my $outputString; if (defined $varHash) { # Here we have a template file. We need to determine the template type. my $template; if ($FIG_Config::template_url && $webData =~ /\.php$/) { $template = "$FIG_Config::template_url/$webData"; } else { $template = "<<$webData"; } $outputString = PageBuilder::Build($template, $varHash, "Html"); } else { # Here the user gave us a raw string. $outputString = $webData; } # Check for trace messages. if ($Destination ne "NONE" && $TraceLevel > 0) { # We have trace messages, so we want to put them at the end of the body. This # is either at the end of the whole string or at the beginning of the BODY # end-tag. my $pos = length $outputString; if ($outputString =~ m##gi) { $pos = (pos $outputString) - 7; } # If the trace messages were queued, we unroll them. Otherwise, we display the # destination. my $traceHtml; if ($Destination eq "QUEUE") { $traceHtml = QTrace('Html'); } elsif ($Destination =~ /^>>(.+)$/) { # Here the tracing output it to a file. We code it as a hyperlink so the user # can copy the file name into the clipboard easily. my $actualDest = $1; $traceHtml = "

Tracing output to $actualDest.

\n"; } else { # Here we have one of the special destinations. $traceHtml = "

Tracing output type is $Destination.

\n"; } substr $outputString, $pos, 0, $traceHtml; } # Write the output string. print $outputString; } =head3 GenerateURL my $queryUrl = Tracer::GenerateURL($page, %parameters); Generate a GET-style URL for the specified page with the specified parameter names and values. The values will be URL-escaped automatically. So, for example Tracer::GenerateURL("form.cgi", type => 1, string => "\"high pass\" or highway") would return form.cgi?type=1;string=%22high%20pass%22%20or%20highway =over 4 =item page Page URL. =item parameters Hash mapping parameter names to parameter values. =item RETURN Returns a GET-style URL that goes to the specified page and passes in the specified parameters and values. =back =cut sub GenerateURL { # Get the parameters. my ($page, %parameters) = @_; # Prime the return variable with the page URL. my $retVal = $page; # Loop through the parameters, creating parameter elements in a list. my @parmList = map { "$_=" . uri_escape($parameters{$_}) } keys %parameters; # If the list is nonempty, tack it on. if (@parmList) { $retVal .= "?" . join(";", @parmList); } # Return the result. return $retVal; } =head3 ApplyURL Tracer::ApplyURL($table, $target, $url); Run through a two-dimensional table (or more accurately, a list of lists), converting the I<$target> column to HTML text having a hyperlink to a URL in the I<$url> column. The URL column will be deleted by this process and the target column will be HTML-escaped. This provides a simple way to process the results of a database query into something displayable by combining a URL with text. =over 4 =item table Reference to a list of lists. The elements in the containing list will be updated by this method. =item target The index of the column to be converted into HTML. =item url The index of the column containing the URL. Note that the URL must have a recognizable C at the beginning. =back =cut sub ApplyURL { # Get the parameters. my ($table, $target, $url) = @_; # Loop through the table. for my $row (@{$table}) { # Apply the URL to the target cell. $row->[$target] = CombineURL($row->[$target], $row->[$url]); # Delete the URL from the row. delete $row->[$url]; } } =head3 CombineURL my $combinedHtml = Tracer::CombineURL($text, $url); This method will convert the specified text into HTML hyperlinked to the specified URL. The hyperlinking will only take place if the URL looks legitimate: that is, it is defined and begins with an C header. =over 4 =item text Text to return. This will be HTML-escaped automatically. =item url A URL to be hyperlinked to the text. If it does not look like a URL, then the text will be returned without any hyperlinking. =item RETURN Returns the original text, HTML-escaped, with the URL hyperlinked to it. If the URL doesn't look right, the HTML-escaped text will be returned without any further modification. =back =cut sub CombineURL { # Get the parameters. my ($text, $url) = @_; # Declare the return variable. my $retVal = CGI::escapeHTML($text); # Verify the URL. if (defined($url) && $url =~ m!http://!i) { # It's good, so we apply it to the text. $retVal = "$retVal"; } # Return the result. return $retVal; } =head3 TrackingCode my $html = Tracer::TrackingCode(); Returns the HTML code for doing web page traffic monitoring. If the current environment is a test system, then it returns a null string; otherwise, it returns a bunch of javascript containing code for turning on SiteMeter and Google Analytics. =cut sub TrackingCode { # Declare the return variable. my $retVal = ""; # Determine if we're in production. if ($FIG_Config::site_meter) { $retVal = < END_HTML } return $retVal; } =head3 Clean my $cleaned = Tracer::Clean($string); Clean up a string for HTML display. This not only converts special characters to HTML entity names, it also removes control characters. =over 4 =item string String to convert. =item RETURN Returns the input string with anything that might disrupt an HTML literal removed. An undefined value will be converted to an empty string. =back =cut sub Clean { # Get the parameters. my ($string) = @_; # Declare the return variable. my $retVal = ""; # Only proceed if the value exists. if (defined $string) { # Get the string. $retVal = $string; # Clean the control characters. $retVal =~ tr/\x00-\x1F/?/; # Escape the rest. $retVal = CGI::escapeHTML($retVal); } # Return the result. return $retVal; } 1;