Training, Open Source computer languages

PerlPythonMySQLTclRubyC & C++LuaJavaTomcatPHPhttpdLinux

Search our site for:
Home Accessibility Courses Diary The Mouth Forum Resources Site Map About Us Contact
Factory method example - Perl
Utility methods (factorys) are often used to create objects which may be of any of one of a series of different classes, depending on the data passed in. Have a look at this Perl program which reads in data from a log file and creates a list of web site visit objects:

use visit;
 
open (FH,"ac_20080527");
 
while ($line = <FH>) {
  $current = make visit($line);
  push @samples,$current;
}


make visit is actually creating objects of type robot or human - which happen to be subclasses of visit though they don't have to be. Here is the code:

package visit;
sub make {
package visit;
sub make {
  $stuff = $_[1];
  if ($stuff =~ /slurp|crawl|spider|bot/i) {
    return (new robot($stuff));
  } else {
    return (new human($stuff));
  }
}


The result is that the list in the main code ends up containing a list of objects of various types, and using polymorphic methods on those objects, very need code can be used to call in different features of each.

If you want to have a look at the complete source code of both the main application and the visit.pm module, you can open each of them in a separate window here and here. If you want to learn all about OO in Perl (it's great for larger scripting tasks) look at our Perl for Larger Projects Course ... you've just missed one, I'm afraid ... but there will be another one along later this year!
(written 2008-06-04 20:47:37)

 
Associated topics are indexed under
P218 - Perl - More Objects

Back to
Example of OO in Perl
Previous and next
or
Horse's mouth home
Forward to
Slow boot and terminal start on Linux boxes

Some other Articles
What are Unions (C programming)
Talk on TransWilts train service to Green Party
Checking server performance for PHP generated pages
Slow boot and terminal start on Linux boxes
Factory method example - Perl
Example of OO in Perl
Python in an afternoon - a lecture for experienced programmers
Westonbirt Arboretum Postcode
Equality, sameness and identity - Python
Korn shell - some nuggets
1771 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36 at 50 posts per page


This is a page archived from The Horse's Mouth at http://www.wellho.net/horse/ - the diary and writings of Graham Ellis. Every attempt was made to provide current information at the time the page was written, but things do move forward in our business - new software releases, price changes, new techniques. Please check back via our main site for current courses, prices, versions, etc - any mention of a price in "The Horse's Mouth" cannot be taken as an offer to supply at that price.

Link to Ezine home page (for reading).
Link to Blogging home page (to add comments).

© WELL HOUSE CONSULTANTS LTD., 2008: Well House Manor • 48 Spa Road • Melksham, Wiltshire • United Kingdom • SN12 7NY
PH: 0800 043 8225 or 01225 708225 • FAX: 0845 8382 405 or 01225 707126 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho