Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re^3: Perl archeology: Need help in refactoring of old Perl code that does not use strict (hurry up and wait)

by eyepopslikeamosquito (Archbishop)
on Nov 14, 2017 at 23:46 UTC ( [id://1203440]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Perl archeology: Need help in refactoring of old Perl code that does not use strict (hurry up and wait)
in thread Perl archeology: Need help in refactoring of old Perl code that does not use strict

unhealthy fascination with OO (inspired by the desire to complete with Python) which I consider counterproductive
Python? Really? Do you mean Ruby? Quoting Matz from An Interview with the Creator of Ruby: "Then I came across Python. It was an interpretive, object-oriented language. But I didn't feel like it was a "scripting" language. In addition, it was a hybrid language of procedural programming and object-oriented programming. I wanted a scripting language that was more powerful than Perl, and more object-oriented than Python."

When I see bless statement in simple scripts I suspect fraud
That's an extreme position to take. Though an obsession with OO is unhealthy, your apparent anti-OO obsession is just as unhealthy IMHO. Don't want to use Moose? Fine. But don't blindly reject sound principles of design - which include using OO when appropriate. As for whether and when to use OO, there is no substitute for judgement and taste. A simple rule of thumb is to ask "do I need more than one?": if the answer is yes, an object is indicated; if the answer is no, then a module.

High-level Design Checklist (derived from On Coding Standards and Code Reviews)

  • Coupling and Cohesion. Systems should be designed as a set of cohesive modules as loosely coupled as is reasonably feasible.
  • Testability. Systems should be designed so that components can be easily tested in isolation.
  • Data hiding. Minimize the exposure of implementation details. Minimize global data.
  • Interfaces matter. Once an interface becomes widely used, changing it becomes practically impossible (just about anything else can be fixed in a later release).
  • Design the module's interface first.
  • Design interfaces that are: consistent; easy to use correctly; hard to use incorrectly; easy to read, maintain and extend; clearly documented; appropriate to your audience. Be sufficient, not complete; it is easier to add a new feature than to remove a mis-feature.
  • Use descriptive, explanatory, consistent and regular names.
  • Correctness, simplicity and clarity come first. Avoid unnecessary cleverness. If you must rely on cleverness, encapsulate and comment it.
  • DRY (Don't repeat yourself).
  • Establish a rational error handling policy and follow it strictly.

Some Related Perl Monks Nodes

  • Comment on Re^3: Perl archeology: Need help in refactoring of old Perl code that does not use strict (hurry up and wait)

Replies are listed 'Best First'.
Re^4: Perl archeology: Need help in refactoring of old Perl code that does not use strict (hurry up and wait)
by likbez (Sexton) on Nov 15, 2017 at 04:38 UTC
    Python? Really? Do you mean Ruby?
    IMHO in large enterprise environment Ruby is almost not visible. At the same time Python is gaining ground as universities both in the USA and Europe now teach Python in intoductory classes and people come "knowing some Python". That's alone is a huge factor. Python is also now installed on all Linux distributions by default (like Perl) and there are some system programs written in Python (yum, Anaconda, etc) which implicitly suggest that Python has Red Hat mark of adoption too.

    To say nothing about the list of IDE available. Perl does not even ship with the "Standard IDE" although Padre, which is somewhat competitive with Komodo is available for free, but the latest binary distribution suitable for beginners is from 2012. This IMHO is highly detrimental to the language adoption. My feeling is that for Perl to remain competitive IDE should be maintained and shipped along with Perl interpreter. May be at the expense of some esoteric modules included.

    Also compare number of books per year devoted to Python and available via Amazon for 2017 with the number of books devoted to Perl for the same period(quality issues aside). All this creates a real pressure to use Python everywhere, the pressure that I as a person who uses Perl (and will continue to use it, as I prefer Perl to Python) feel.

    In other words "It's like deja-vu, all over again": looks to me like "Java story" on new level (and with a better language then Java).

    Even in such "Perlish" domain as bioinformatics/genome decoding, Python gradually gains ground at the expense of Perl. The same is true in some "numeric computations" domains (via Numpy). There might be other factors at play as well. That's sad, because IMHO Perl is a great scripting language which can be used on many different levels, starting from AWK/SED replacement tool.

    The list of references to related Perl Monk posts is really helpful. Thanks a lot !

    Especially the first one Strategies for maintenance of horrible code? by converter (Jul 12, 2006). It contains several additional useful references posted by eyepopslikeamosquito

    I would also add Analyzing large Perl code base. by Dmitry (Apr 14, 2005). Among others it contains the following post:

    Re: Analyzing large Perl code base. 
    by dave0 on Apr 15, 2005 at 15:32 UTC  
    ====================================
    
    Having recently done this on a fairly large codebase that grew organically (no design, no refactoring) over the course of four years, I feel your pain.

    Writing a testsuite, on any level, is nearly essential for this. If you're rewriting an existing module, you'll need to ensure it's compatible with the old one, and the only sane way to do that is to test. If the old code is monolithic, it might be difficult to test individual units, but don't let that stop you from testing at a higher level.

    B::Xref helped me make sense of the interactions in the old codebase. I didn't bother with any visualization tools or graph-creation, though. I just took the output of perl -MO=Xref filename for each file, removed some of the cruft with a text editor, ran it through mpage -4 to print, and spent a day with coffee and pencil, figuring out how things worked. <p. Pretty much the same tactic was used on the actual code. Print it out, annotate it away from the computer, and then sit down with the notes to implement the refactoring. If your codebase is huge (mine was about 4-5k lines in several .pl and .pm files, and was still manageable) you might not want to do this, though.

    In any case, attempts to create a relevant to this topic list of Permonks threads is a more constructive approach then yet another semi-religious discussion about proper use of OO in Perl. Your mileage may vary.

      To clarify my original surprise that you mentioned Python, I was not disputing that Python is gaining ground, I was challenging you on your reason, namely "OO (inspired by the desire to compete with Python)" because I found it hard to believe that Perl's OO enhancements were in any way inspired by Python's (rather pedestrian and uninspirational) OO features! Far more plausible to me, was for Perl to seek OO inspiration from a stronger OO language, such as Ruby or Smalltalk or CLOS, rather than pragmatic Python. Do you have any citations to support your claim?

      From the Moose manual in the "Justification" section:

      For Moose, we have "borrowed" features from Perl 6, CLOS (LISP), Smalltalk, Java, BETA, OCaml, Ruby and more, and the bits we didn't like (cause they sucked) we tossed aside. So for this reason (and a few others) Stevan has re-dubbed Moose a postmodern object system.
      An academic paper Super and Inner - Together at Last is also cited. No mention of Python. Similarly, in Class::MOP (SEE ALSO section), The Art of the Meta Object Protocol (CLOS), Smalltalk, and many other influences are given. Again, no mention of Python.

      Finally, in the original Apocalypse 12, Larry explicitly gave only one reference, namely "Traits: Composable Units of Behavior. European Conference on Object-Oriented Programming (ECOOP), July 2003. Springer LNCS 2743, Ed. Luca Cardelli. by Nathanael Schärli, Stéphane Ducasse, Oscar Nierstrasz and Andrew Black". The only mention of Python is this Larry quote: "Python's attributes suffer from the same misdesign as Perl 5's attributes. (My fault for copying Python's object model. :-)"

      In summary then, I'm not aware of any significant Python influence on Perl OO or Moose design. If anyone knows different, please let us know.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1203440]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (2)
As of 2024-04-20 04:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found