Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
One way to handle this is to use a Factory pattern, where the product of the Factory is an object whose type depends on the packet content.

You can use polymorphism to get the varying behavior of these objects.

One simple way to do it is this:

package Packet; my %patterns; # could add some in declaration sub addType { my $regex = shift; my $className = shift; $patterns{$className} = $regex; } sub removeType { my $className = shift; delete $patterns{$className}; } sub makeOnePacket { # get a packet my $packet = getAPacket(); return undef unless $packet; my $newObject; my ( $className, $regex ); while ( ( $className, $regex ) = each(%patterns) ) { my @fields; if ( @fields = ( $packet =~ $regex ) ) { $newObject = $className->new( $packet, @fields ); last; } } $newObject; } # These two must be defined by classes that want # to work with this system. sub newFromPacket { my $class = shift; my $packet = shift; my @fields = @_; # initialize as needed, return object. bless { packet => $packet, fields => \@fields }, $class; } sub process { my $self = shift; # now do whatever is necessary } package main; Packet::addType( qr/^(abc)(.*)/, 'SomeType' ); Packet::addType( qr/^(def)(.*)/, 'SomeOtherType' ); while ( my $newPacket = makeOnePacket() ) { $newPacket->process(); }

Note that now you can add new packages that work with this system by just including them. Stick the following in NewPacket.pm:

package NewPacket; use Packet; # Could have inherited from Packet, but no # reason to. Luckily, this isn't Java or C++. sub newFromPacket { my $class = shift; my $packet = shift; my @fields = @_; # initialize as needed, return object. bless { packet => $packet, fields => \@fields }, $class; } sub process { my $self = shift; } # you could also use __PACKAGE__ here: Packet::addType( qr/^(something)(.*)/, 'NewPacket' ); Packet::addType( qr/^(somethingElse)(.*)/, 'NewPacket' ); # returns + true

Then a simple use NewPacket; in your main will add the new functionality.

update: added explanation about adding new types.


In reply to Re: A Not-as-Clumsy OOP Implementation? by bikeNomad
in thread A Not-as-Clumsy OOP Implementation? by billyak

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (7)
As of 2024-04-19 09:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found