19
Fri, Apr
5 New Articles

Practical RPG: Converting to Free-Form RPG, Part 1

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

 

Free-format RPG is the future, but getting there is still an adventure.

Even the best conversion tools only get you part of the way to free-format RPG; here is the first step of the rest of the journey.

I no longer write programs with fixed-format specifications. In fact, when I do occasionally have to work on an older machine, I confess that I find myself stumbling around a bit with F-specs for files. The other day I had to remind myself how to define a data area. It took a while to get to the point where I was comfortable writing all my code in free-form RPG, especially when it came to display files. But the longest journey starts with a single step, and this article is intended to start you on that path.

Use Your Tools

This set of articles is intended to provide you with the finishing work: those things that require manual intervention even after an initial conversion. But you do have to get to that initial point of working with free-form code (note that we now use the term free-form as opposed to /free, since the /free directive is no longer required). To start any conversion, you have to remember to use your tools. There are two basic paths you can use: IBM or HelpSystems.

The IBM path consists of using CVTRPGSRC to convert your RPG III code to fixed-format RPG IV and then using the Convert Selection to Free-Form option in Rational Developer for the i. At this point, that will only get your C-specs into free-form syntax; IBM's tools don't handle converting H-, D-, or F-specs.

Another option is to use a third-party utility. Linoma has such a conversion tool. Recently acquired by HelpSystems, Linoma has been providing various tools in the IBM midrange space for a very long time, and their RPGWIZ conversion tool can convert RPG III code almost completely into reasonably well-structured free-form RPG. Over the years, I've fine-tuned my use of the many options the tool provides to get me to a near total conversion. The result doesn't follow exactly the same standards I use for my brand-new programs, but it's close enough to coexist (you can't always say that about IBM's conversion).

IBM also partners with another company, Arcad, that has a conversion tool. I haven't used it, so I can't tell you how well it does the conversion, but I do know that it is priced by the number of conversions.

What's Left: The CALL Opcode

Whether you use a procedural approach or a conversion utility, you may still have some remaining pieces to convert. One of the most common is a program call. There are two basic flavors of the CALL opcode in RPG: one that uses PARMs after the CALL opcode and the other that uses a PLIST. I'm not telling you anything you don't already know when it comes to PLISTs, but for completeness let's just say that a PLIST is a way of encapsulating the PARMs for a program call. It's a relative of the KLIST, which we'll be dealing with in a subequent article. The same PLIST can be used for different programs, and you can use different PLISTs for the same program. I think this flexibility is the big reason that tools have problems with program calls.

What this article will do is provide you with a technique for handling the simplest conversion along with guidance on how to address the more complicated situations. Let's start with the simple case: a CALL opcode followed by one or more PARM opcodes.

     C                  CALL      'PROGRAM'

     C                  PARM                    PARM1

     C                  PARM                    PARM2

This is the most pared-down syntax. Converting it to free-form is a two-step process. First, you must use a procedure declaration to identify this as a call to an external program. Then you replace the fixed-format CALL opcode with a free-form CALLP. The procedure declaration in this case is very simple:

       dcl-pr PROGRAM extpgm;

         *n like(PARM1);

         *n like(PARM2);

       end-pr;

Thanks to RDi's syntax coloring, you can see that, other than keywords, all of the changeable names come directly from the original code. Now this is a very abridged version of the procedure declaration, and it only works because of a few assumptions I've made:

  1. The name of the procedure is the same as the name of the program.
  2. I don't use name placeholders for the parameters.
  3. Parameters are bidirectional.

 For the first assumption, I personally favor naming my prototypes the same as the name of the program. This of course means that you're restricted to the IBM i limit of 10 characters, and you have to use whatever naming convention applies to the program object. Some people prefer a longer, more descriptive name and that's fine, but that allows you to call the same program by different names in different calling programs. I get confused when the same program is called different things, but that's just me; I'm a simple guy.

The second thing is the use of *N for the parameter names. This simply means that I'm not naming the parameters, and once again, I'm opting for simplicity. You can name those parameters whatever you want, but it's a little strange to me, because those names aren't actually defined in the program. Names in procedures are really no more than comments, and I prefer my comments to be preceded by slashes (which also turns them turqoise). You may also notice that I'm using the LIKE parameter, which in turn means that I'm assuming that PARM1 and PARM2 are defined. Well, if they're in PARM opcodes, they must be defined. The only wrinkle would be if they were defined in the PARM opcode itself, which you can do:

     C                  PARM                    PARM1            10

You'd have to change this code to instead define PARM1 in a D-spec somewhere in order for my technique to work. The better conversion utilities will do that for you.

Finally, as I noted, this assumes bidirectional parameters. That really comes into play more on the call, so let's see what the converted call looks like:

       PROGRAM( PARM1: PARM2);

It doesn't get much simpler than that. No matter how many parameters in your original PARMs, just keep adding them to the list here. Since a free-form specification can span multiple lines, just keep adding until you're done.

Additional Notes

I said there were potential complications. For example, what about when you have a constant? You may have something like this:

     C                  CALL      'IOCUST'

     C                  PARM      'G'           OPCODE

     C                  PARM                    CUSTNO

     C                  PARM                    RECORD

This isn't intended to be a real example, but hopefully it will suffice to show the fundamental change that can best handle this case. The prototype would be more like this:

       dcl-pr IOCUST extpgm;

         *n like(OPCODE) const;

         *n like(CUSTNO);

         *n like(RECORD);

       end-pr;

The parameters are defined the same way, the difference being that first parameter, which has the keyword CONST added. CONST says that the value being passed to the program will not be changed in the calling program, which in turn allows you to specify a literal and have the compiler create a temporary variable with that literal to pass to the program. The call then looks like this:

       IOCUST( 'G': CUSTNO: RECORD);

A temporary variable of the same type as OPCODE will be created and initialized to the value ‘G’ before being passed to IOCUST. This won't handle every possible nuance of the PARM opcode. If you expected to get a value back in the OPCODE variable, then obviously it won't happen here.

Other issues come into play. What if you call the same program with different lists of parameters or different PLISTs? Then you have to start making some decisions on how you want to set up your procedure declaration. Though daunting, it's not as impossible as it might seem at first glance. For example, even if you don't always pass the same paramters (or even the same number), in all but the most unusual program designs you always pass the same kind of paramters. In that case, using *NOPASS on your parameters can handle different numbers of parameters, and you can pass any variable you'd like by just naming it in the procedure call.

If you're using the same PLIST for multiple programs, you'll probably want to create separate procedural declarations for each. There are some slick ways around that, which we'll cover in another article.

Just the Beginning

The topics in this article should get you started on your way to complete free-form RPG programming. Look for other topics, including KLISTs and BIFs, in subsequent articles.

Joe Pluta

Joe Pluta is the founder and chief architect of Pluta Brothers Design, Inc. He has been extending the IBM midrange since the days of the IBM System/3. Joe uses WebSphere extensively, especially as the base for PSC/400, the only product that can move your legacy systems to the Web using simple green-screen commands. He has written several books, including Developing Web 2.0 Applications with EGL for IBM i, E-Deployment: The Fastest Path to the Web, Eclipse: Step by Step, and WDSC: Step by Step. Joe performs onsite mentoring and speaks at user groups around the country. You can reach him at This email address is being protected from spambots. You need JavaScript enabled to view it..


MC Press books written by Joe Pluta available now on the MC Press Bookstore.

Developing Web 2.0 Applications with EGL for IBM i Developing Web 2.0 Applications with EGL for IBM i
Joe Pluta introduces you to EGL Rich UI and IBM’s Rational Developer for the IBM i platform.
List Price $39.95

Now On Sale

WDSC: Step by Step WDSC: Step by Step
Discover incredibly powerful WDSC with this easy-to-understand yet thorough introduction.
List Price $74.95

Now On Sale

Eclipse: Step by Step Eclipse: Step by Step
Quickly get up to speed and productivity using Eclipse.
List Price $59.00

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: