20
Mon, May
7 New Articles

More Thoughts on Modernization

General
Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

If it's not all about new tools and GUI screens, then what is it about? Here's a hint. It doesn't use nuclear power or fuel cells, but it is pretty modern.

 

Last month, we started looking at the idea of modernization and what it meant. And I thought that would pretty much do it. But, as it turned out, it took the entire article to talk about how the current way of thinking about modernization (as a technical task that involves changing the tool set we use to develop apps and its fixation on SQL and GUI) was not necessarily the whole story on what modernization really is all about. So I'm extending this topic a bit today (and maybe even once more later) so that we can discuss this topic in detail. I hope you're not disappointed.

So What Is Modernization About?

So if modernization is not solely (or even primarily) about changing your tools or redesigning your screens, then what is it about?

 

Modernization is about making the application "more modern." But what does that mean? Isn't transferring the screens over to GUI or making a prettier GUI using flat design or some new CSS functionality a way of making them more modern? And the answer is yes, of course, but going to GUI screens from something else is like deciding you are going to shower and comb your hair before going to a bar. You may attract a higher class of guy (or girl), but in the morning you're still going to be the same old person and they're going to have to deal with it. Hmmm, maybe my wife is right; maybe I'm watching way too much of The Big Bang Theory.

 

What you really need is a more basic makeover than that.

 

The first thing you could do (and the one I want to deal with this month) is remake yourself surgically. Let's face it; you're not going to attract anyone top-notch with that nose. And you definitely need to do something about how tall you are. And a little lipo might be a real smart move.

 

What's the programming equivalent of this kind of makeover? One word. Modularization. You need to go in and surgically cut your program up into modules, which is from the Latin moduli, meaning "from one comes many" (or something to that effect).

 

What's the matter? Chicken? Afraid to cut your 20,000-line program up into a bunch of pieces? Whatsamatta, baby? Afraid you won't be able to put Humpty Dumpty back together again?

 

Valid fear. I can dig it.

Modularization

But if you really want to modernize a program (and another word for modernize should be strengthen or improve), you have to go the modularization route. After all, what could be more dangerous than marching into the future with a program that is, in places, almost indecipherable? If you're an experienced programmer and there are parts of a program that you hope you will never have to go into, then you have a problem with that program. Besides, we have no idea what the future will hold. Know any kids in high school? Ever think about what it will be like when they hit the job market? Want one of them to be fooling around with this program? I thought not.

 

But busting a program up into pieces is not an easy task. How do you go about it?

 

There are probably many approaches to this, and it does depend somewhat on how complex the program is, but there's one thing you can count on: you are not going to be able to go in and just copy segments of code from the Big Ol' Program (BOP) to a clean, new module.

 

Most BOPs are too intertwined to do that. There is too much coupling of the data elements between the different segments of the code to allow that to happen. So what you have to do is, rather than splitting the BOP apart, use it as a guide to build up your new modules almost from scratch.

First Step: Analysis

The first thing you have to do is develop a solid, high-level description of what the BOP is doing. Is it displaying a screen, what files does it use, what basic processing is it doing, what field values does it validate, etc? What you're trying to do is determine what modules you are going to need. If we assume you do everything in the Model-View-Controller (MVC) format, then we'll be looking at developing a control module, a view module (whether that be in PHP, or some other web language, or just DDS), and multiple model modules where we will keep the essential logic.

 

Let's assume you are modularizing an online application.

 

The starting point is the screen analysis, just like we talked about last month. Do the fields on the screen make sense (that is, is someone actually using them?), is there anything missing, how is the positioning, how often do you have to stop keying and do something else, how often is your concentration broken as you fill this out, are their multiple pages, etc.? Once you have improved your screen through a thorough analysis, then you can develop the code (either DDS or, if you're going GUI, something in an appropriate language) that is required to present this page.

Second Step: Control Module

The next step is to develop a control module. If you're doing a GUI screen, I suggest using RPG. The first step in the testing can be to ensure that your new control module passes control to and from the screen just as it should. In addition, for those branches that involve actual processing, you'll need to add in slots for calling the appropriate model modules (see below). The control module is the nerve center for your program.

 

If you're doing a batch program and there's no screen involvement, then the control module will be similar to a main program. Its primary purpose is not to react to command keys but rather to pass control to the various modules that have the program logic.

Step Three: Model Modules

I would have named this differently if they had asked me. I would have called it logic modules or something like that. Model really doesn't convey anything to me, but they (whoever they are) thought up the name, they passed on running it by me, and the rest is history.

 

The last stepand this is the one that will take the longestis to build the model modules. These are the modules that will contain the program logic that's used to accomplish whatever this application is doing.

 

Like I said above, the logical thought is to start looking through the BOP and trying to copy code segments over to the new module. And this may be possible for some of the subprocedures, but even then I would be very careful as many of the old routines that I have seen do multiple things and often are more a section of code that was done at one point in time rather than an encapsulation of a logical idea.

 

And that is the essence of modularizationlooking through the BOP, understanding what it's doing, and defining that action as a series of single logical ideas. Each one of those logical ideas then becomes a module.

The EndGet Out!

And that's it, a very short description of how to go modular. It sounds easy and it can be (well, more or less) as long as you're willing to think things through before you start to code. Frankly, that's hard for us in the procedural world because it seems that you can think and code simultaneously. I don't think that's as much of a problem in the OO web world, where you have to define things (classes, functions) up front before you can really do much.

 

But the most important thing to remember is that modularization is not just for big, scary programs. It's the way things should be done, and it should become a way of life for your career.

 

What's next? Well, there's one more thing to modernization, and as soon as I think of it, I'll let you know. Hopefully, that will occur to me before next month.

David Shirey

David Shirey is president of Shirey Consulting Services, providing technical and business consulting services for the IBM i world. Among the services provided are IBM i technical support, including application design and programming services, ERP installation and support, and EDI setup and maintenance. With experience in a wide range of industries (food and beverage to electronics to hard manufacturing to drugs--the legal kind--to medical devices to fulfillment houses) and a wide range of business sizes served (from very large, like Fresh Express, to much smaller, like Labconco), SCS has the knowledge and experience to assist with your technical or business issues. You may contact Dave by email at This email address is being protected from spambots. You need JavaScript enabled to view it. or by phone at (616) 304-2466.


MC Press books written by David Shirey available now on the MC Press Bookstore.

21st Century RPG: /Free, ILE, and MVC 21st Century RPG: /Free, ILE, and MVC
Boost your productivity, modernize your applications, and upgrade your skills with these powerful coding methods.
List Price $69.95

Now On Sale

BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$0.00 Raised:
$

Book Reviews

Resource Center

  • SB Profound WC 5536 Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application. You can find Part 1 here. In Part 2 of our free Node.js Webinar Series, Brian May teaches you the different tooling options available for writing code, debugging, and using Git for version control. Brian will briefly discuss the different tools available, and demonstrate his preferred setup for Node development on IBM i or any platform. Attend this webinar to learn:

  • SB Profound WP 5539More than ever, there is a demand for IT to deliver innovation. Your IBM i has been an essential part of your business operations for years. However, your organization may struggle to maintain the current system and implement new projects. The thousands of customers we've worked with and surveyed state that expectations regarding the digital footprint and vision of the company are not aligned with the current IT environment.

  • SB HelpSystems ROBOT Generic IBM announced the E1080 servers using the latest Power10 processor in September 2021. The most powerful processor from IBM to date, Power10 is designed to handle the demands of doing business in today’s high-tech atmosphere, including running cloud applications, supporting big data, and managing AI workloads. But what does Power10 mean for your data center? In this recorded webinar, IBMers Dan Sundt and Dylan Boday join IBM Power Champion Tom Huntington for a discussion on why Power10 technology is the right strategic investment if you run IBM i, AIX, or Linux. In this action-packed hour, Tom will share trends from the IBM i and AIX user communities while Dan and Dylan dive into the tech specs for key hardware, including:

  • Magic MarkTRY the one package that solves all your document design and printing challenges on all your platforms. Produce bar code labels, electronic forms, ad hoc reports, and RFID tags – without programming! MarkMagic is the only document design and print solution that combines report writing, WYSIWYG label and forms design, and conditional printing in one integrated product. Make sure your data survives when catastrophe hits. Request your trial now!  Request Now.

  • SB HelpSystems ROBOT GenericForms of ransomware has been around for over 30 years, and with more and more organizations suffering attacks each year, it continues to endure. What has made ransomware such a durable threat and what is the best way to combat it? In order to prevent ransomware, organizations must first understand how it works.

  • SB HelpSystems ROBOT GenericIT security is a top priority for businesses around the world, but most IBM i pros don’t know where to begin—and most cybersecurity experts don’t know IBM i. In this session, Robin Tatam explores the business impact of lax IBM i security, the top vulnerabilities putting IBM i at risk, and the steps you can take to protect your organization. If you’re looking to avoid unexpected downtime or corrupted data, you don’t want to miss this session.

  • SB HelpSystems ROBOT GenericCan you trust all of your users all of the time? A typical end user receives 16 malicious emails each month, but only 17 percent of these phishing campaigns are reported to IT. Once an attack is underway, most organizations won’t discover the breach until six months later. A staggering amount of damage can occur in that time. Despite these risks, 93 percent of organizations are leaving their IBM i systems vulnerable to cybercrime. In this on-demand webinar, IBM i security experts Robin Tatam and Sandi Moore will reveal:

  • FORTRA Disaster protection is vital to every business. Yet, it often consists of patched together procedures that are prone to error. From automatic backups to data encryption to media management, Robot automates the routine (yet often complex) tasks of iSeries backup and recovery, saving you time and money and making the process safer and more reliable. Automate your backups with the Robot Backup and Recovery Solution. Key features include:

  • FORTRAManaging messages on your IBM i can be more than a full-time job if you have to do it manually. Messages need a response and resources must be monitored—often over multiple systems and across platforms. How can you be sure you won’t miss important system events? Automate your message center with the Robot Message Management Solution. Key features include:

  • FORTRAThe thought of printing, distributing, and storing iSeries reports manually may reduce you to tears. Paper and labor costs associated with report generation can spiral out of control. Mountains of paper threaten to swamp your files. Robot automates report bursting, distribution, bundling, and archiving, and offers secure, selective online report viewing. Manage your reports with the Robot Report Management Solution. Key features include:

  • FORTRAFor over 30 years, Robot has been a leader in systems management for IBM i. With batch job creation and scheduling at its core, the Robot Job Scheduling Solution reduces the opportunity for human error and helps you maintain service levels, automating even the biggest, most complex runbooks. Manage your job schedule with the Robot Job Scheduling Solution. Key features include:

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • LANSAWhen it comes to creating your business applications, there are hundreds of coding platforms and programming languages to choose from. These options range from very complex traditional programming languages to Low-Code platforms where sometimes no traditional coding experience is needed. Download our whitepaper, The Power of Writing Code in a Low-Code Solution, and:

  • LANSASupply Chain is becoming increasingly complex and unpredictable. From raw materials for manufacturing to food supply chains, the journey from source to production to delivery to consumers is marred with inefficiencies, manual processes, shortages, recalls, counterfeits, and scandals. In this webinar, we discuss how:

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • Profound Logic Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application.

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: