Training, Open Source Programming Languages

This is page http://www.wellho.net/resources/ex.php4

Our email: info@wellho.net • Phone: 01144 1225 708225

 
For 2023 (and 2024 ...) - we are now fully retired from IT training.
We have made many, many friends over 25 years of teaching about Python, Tcl, Perl, PHP, Lua, Java, C and C++ - and MySQL, Linux and Solaris/SunOS too. Our training notes are now very much out of date, but due to upward compatability most of our examples remain operational and even relevant ad you are welcome to make us if them "as seen" and at your own risk.

Lisa and I (Graham) now live in what was our training centre in Melksham - happy to meet with former delegates here - but do check ahead before coming round. We are far from inactive - rather, enjoying the times that we are retired but still healthy enough in mind and body to be active!

I am also active in many other area and still look after a lot of web sites - you can find an index ((here))
Full cgi example - log file analysis
Perl on the Web example from a Well House Consultants training course
More on Perl on the Web [link]

This example is described in the following article(s):
   • Answering ALL the delegate's Perl questions - [link]

This example references the following resources:
http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&q=text+file+and+php

Source code: loganal.pl Module: P221
#!/usr/bin/env perl

# Full cgi example - log file analysis

use Time::Local;

# Version 0.2 - Analysis of log files

initvars();
%form = collect_form();
$limitrecs = 500; $nrec = 0;

open (FH,$source);

# Search through all records in the data file that's being analysed

while ($line = <FH>) {
        %info = get_ncsaparts($line);
        next unless ($info{status}) ;

# If a selection form has been completed, look for records we need

        if ($form{select} or $form{host}) {
                $selected = 1;
                foreach $field (@names) {
                        $form{$field} and
                                $info{$field} !~ /$form{$field}/i and
                                        $selected = 0;
                        }
                if ($selected) {
                        $nrec++;
                        if ($nrec <= $limitrecs) {
                                my $thisline;
                                $nexttime = $info{when};
                                $info{when} = $info{when} - $previoustime;
                                $previoustime = $nexttime;
                                foreach $field("when",@names) {
                                        ($form{"_$field"} or ! $form{select})
                                                 and $thisline .= $info{$field}." ";
                                        }
                                $stuff .= "$thisline<br>";
                        }
                        $visitors{$info{host}}++;
                }

# If no selection form has been completed, summarise all hosts

        } else {
                $summaryhost = $info{host};
                if ($summaryhost =~ /[a-z]$/) {
                        $summaryhost =~ s/^[^.]+/xxx/;
                } else {
                        $summaryhost =~ s/\.\d+$/.xxx/;
                }
                $nrec++;
                $visitors{$summaryhost}++;
                }
        }

# All records read. Report on the number of matches and any truncation

$stuff .= ($nrec>=$limitrecs and ($form{select} or $form{host})) ?
        "REPORT TRUNCATED TO $limitrecs out of $nrec<br>":
        "Reported on $nrec records<br>";

# Set fields for display on next form if necessary

unless ($form{select}) {
        foreach $field(@show) {
                $form{"_$field"} = 1;
        }
}

($me) = ($0 =~ m!.*/(.*)!);
$fill{myname} = $me;
$fill{source} = $source;

# Make up a table of all hosts in case user wants to select by host

$stuff .= "<table>";
foreach $v (sort {reverse($a) cmp reverse($b)} keys %visitors) {
        $v1 = $v;
        $v1 =~ s/xxx//;
        $stuff .= "<tr><td><a href=$me?host=$v1>$v</a></td>".
                "<td>$visitors{$v}</td></tr>";
        }
$fill{stuff} = "$stuff</table>";

# Make up form through which to offer the user next options

foreach $field (@names,"when") {
        $checked = $form{"_$field"} ? " CHECKED" : "";
        $fill{formbody} .= "<tr><td>limit $field to</td><td>".
                        "<input name=$field value=\"$form{$field}\"></td>".
                        "<td><input name=_$field type=checkbox$checked> display</td>".
                        "</tr>";
        }

# Read and complete template, send it out to browser

open (FH,"nice.htp");
read (FH,$html,-s "nice.htp");
$html =~ s/%(\w+)%/$fill{$1}/g;

print ("content-type: text/html\n\n$html");

##################################################################

sub get_ncsaparts {
        my ($inline) = @_;
        my %record;
# Extract parts from an NCSA extended log file record (format is next 4 lines)
# 202.187.80.126 - - [09/Feb/2003:00:37:31 -0800]
# "GET /forum/3935408201.html HTTP/1.1" 200 7250
# "http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&q=text+file+and+php"
# "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"
        if (my @parts = ($inline =~
                /^(\S+) # IP Address or host name
                \s+\S+\s+\S+\s+ # Ignore rarely used security flds
                \[(\d+)\/(\w+)\/(\d+): # Date
                (\d+):(\d+):(\d+) # Time
                \s+([-+]?\d\d)\d\d\]\s+ # time offset
                "(\w+)\s+(\S+) # method and URL
                \s+\S+"\s+ # Ignore HTTP level
                (\d+)\s+([-0-9]+)\s+ # Status and size
                "(\S+)"\s+ # Referer
                "(.+)"\s*$ # Browser
                /x)) {
        for (my $k=0; $k<@names; $k++) {
                $record{$names[$k]} = $parts[$k];
                }
                $record{when} = timegm($record{second},
                        $record{minute},$record{hour},
                        $record{day},$mnames{$record{month}},
                        $record{year}%100) - $record{houroff} * 3600;
        } else {
                $record{status} = 0;
        }
        return %record;
        }

sub collect_form {
        my %ret;
        if ($ENV{REQUEST_METHOD} eq "POST") {
                read (STDIN,$qs,$ENV{CONTENT_LENGTH});
                $ret{rqm} = "POST";
        } else {
                $qs = $ENV{QUERY_STRING};
                $ret{rqm} = "GET";
                }
        my @els = split(/&/,$qs);
        foreach (@els) {
                my ($nam,$val) = split(/=/);
                $val =~ tr/+/ /;
                $val =~ s/%(..)/pack("C",hex($1))/ge;
                $ret{$nam} = $val;
                }
        return %ret;
        }

sub initvars {
        $source = "access_log_15feb" ;
        @names = ("host","day","month","year","hour","minute",
                        "second","houroff","method","url"
                        ,"status","size", "referer","browser");
        @show = ("when","host","url","status","size", "referer");
        %mnames = (Jan => 0, Feb => 1, Mar => 2, Apr => 3,
                May => 4, Jun => 5, Jul => 6, Aug => 7,
                Sep => 8, Oct => 9, Nov => 10, Dec => 11);
        }

Learn about this subject
This module and example are covered on the following public courses:
 * Perl Extra
 * Perl bootcamp
Also available on on site courses for larger groups

Books covering this topic
Yes. We have over 700 books in our library. Books covering Perl are listed here and when you've selected a relevant book we'll link you on to Amazon to order.

Other Examples
This example comes from our "Perl on the Web" training module. You'll find a description of the topic and some other closely related examples on the "Perl on the Web" module index page.

Full description of the source code
You can learn more about this example on the training courses listed on this page, on which you'll be given a full set of training notes.

Many other training modules are available for download (for limited use) from our download centre under an Open Training Notes License.

Other resources
• Our Solutions centre provides a number of longer technical articles.
• Our Opentalk forum archive provides a question and answer centre.
The Horse's mouth provides a daily tip or thought.
• Further resources are available via the resources centre.
• All of these resources can be searched through through our search engine
• And there's a global index here.

Purpose of this website
This is a sample program, class demonstration or answer from a training course. It's main purpose is to provide an after-course service to customers who have attended our public private or on site courses, but the examples are made generally available under conditions described below.

Web site author
This web site is written and maintained by Well House Consultants.

Conditions of use
Past attendees on our training courses are welcome to use individual examples in the course of their programming, but must check the examples they use to ensure that they are suitable for their job. Remember that some of our examples show you how not to do things - check in your notes. Well House Consultants take no responsibility for the suitability of these example programs to customer's needs.

This program is copyright Well House Consultants Ltd. You are forbidden from using it for running your own training courses without our prior written permission. See our page on courseware provision for more details.

Any of our images within this code may NOT be reused on a public URL without our prior permission. For Bona Fide personal use, we will often grant you permission provided that you provide a link back. Commercial use on a website will incur a license fee for each image used - details on request.

© WELL HOUSE CONSULTANTS LTD., 2024: 48 Spa Road • Melksham, Wiltshire • United Kingdom • SN12 7NY
PH: 01144 1225 708225 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho

PAGE: http://www.wellho.net/resources/ex.php4 • PAGE BUILT: Sun Oct 11 14:50:09 2020 • BUILD SYSTEM: JelliaJamb