RPG Academy: Write Better Code – Naming Variables Guidelines, Part 1

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

This subseries of RPG Academy focus on ways to improve your code’s efficiency, readability, and maintainability. In other words, it will help you write better code.

 

While there’s no “magic bullet,” it’s possible to enhance your code with proper naming conventions, organization, and documentation strategies. It’s true that some of these strategies are little more than common sense, but others will require changing a few (I dare say ages-old) habits. One good example is the way we write—or don’t write—documentation. As you’ll see on this and the next TechTips, there are many areas of improvement when the objective is writing clean, crisp code that’s easy on the eyes and easy for you or your successors to maintain.

 

Instead of going straight to the documentation topic, which I’m sure everybody is curious about, let me start with something else that makes code easier to read: naming conventions.

 

When the Name Says It All: The Importance of Naming Conventions

Picking names for the “things” in our code is too often based on external factors such as approaching deadlines, old habits, and bad company standards (or lack of standards), just to name a few. This turns code that should read almost like a story into something cryptic and time-consuming. That’s why proper naming conventions must be applicable to everything with a name, from variables to functions, modules, and service programs.

 

Naming Variables Guidelines: Procedure and Work Variable Prefixes

Let’s start with variables. You certainly agree that X, Y, and Z are not ideal names for variables, right? Even if variables are simply going to be used for a specific, contained task, it’s important to give their names meaning. Using prefixes that identify the variable’s purpose is a good way to start. Personally, I like to use short prefixes directly related to the purpose of the variable. This TechTip and the next one present the prefixes I strongly recommend, with an example for each of them.

 

Apply P_ to procedure/function parameters, not only in the procedure interfaces, but also on the calls to the procedures/functions. If defined and used correctly, this also prevents overriding a variable’s contents.

 

Consider function Cvt_USD_to_EUR, shown below, which converts U.S. dollars to euros, as the name implies. Let’s say the P_USD_Amt input parameter is not defined with VALUE or CONST in the prototype definition:

 

*-----------------------------------------------------------------------*

*   Convert USD to Eur at the current exchange rate    

*-----------------------------------------------------------------------*

P Cvt_USD_to_Eur...

P                 B                   EXPORT                      

D                 PI           11p 2                          

D P_USD_Amt                   11p 2

 

Now, imagine that the currency conversion process inside the function is using P_Usd_Amt as a work variable, thus changing its value. When the function ends and control returns to the calling program, the input parameter value (in the calling program) might be different!

 

It’s important to isolate the parameters in separate variables, as well as to create proper interfaces in your functions (by correctly defining input parameters, to use proper names, and so on). This is how the procedure interface should be defined:

 

*-----------------------------------------------------------------------*

*   Convert USD to Eur at the current exchange rate    

*-----------------------------------------------------------------------*

P Cvt_USD_to_Eur...

P                 B                   EXPORT                      

D                 PI           11p 2                          

D P_USD_Amt                   11p 2 Value

 

It’s also important to use work variablesnot parameter variablesfor intermediate steps or calculations, which brings us to the next prefix on the list.

 

Use W_ for work variables. This prefix signals that the variable is an intermediate step or temporary storage for something. It’s important to use a few of these in more complex pieces of code to facilitate debugging and improve readability, because function nesting can get very cryptic and hard to follow.

 

Let’s keep using the currency conversion function as an example. You’d call it like this:

 

W_Eur_Amt = Cvt_USD_to_Eur(P_USD_Amt);

 

Note that I’m using a P_ variable for the parameter, but I’m using a W_ variable to store the result of the call. I mentioned that function nesting can become cryptic, remember? Here’s a “light” example that could easily be found in many applications:

 

IP = Cost(Cvt_USD_to_Eur(P_USD_Amt): Cvt_Lb_to_Kg(P_Lb) : DF);

 

I tried not to complicate things too much here, but even this simple example would be very hard to follow if it weren’t for the function names. It would be even harder to debug because of all the function nesting and cryptic variable names.

 

Now, let’s apply the simple principles I’ve explained so far (and a few others I’ll explain later) to our example:

 

W_Eur_Amt = Cvt_USD_to_Eur(P_USD_Amt);

W_Converted_Weight = Cvt_Lb_to_Kg(P_Lb);

// Calculate Item shipment price, based on weight and delivery fee

W_Item_Shipmnt_Price = Clc_Shpmnt_Cost(W_Eur_Amt         :

                                       W_Converted_Weight:

                                       W_Delivery_Fee   );

 

Isn’t it clearer like this? In addition to proper variable names and prefixes, I threw in a few other things, like commenting and indentation. The code immediately becomes more readable and maintainable, albeit a bit longer.

 

The next TechTip will continue to discuss variable prefixes, and it will also cover a technique I mentioned in a previous article: named indicators. Until then, feel free to ask questions or share your own prefix scheme in the comments section below!

 

Rafael Victoria-Pereira

Rafael Victória-Pereira has more than 20 years of IBM i experience as a programmer, analyst, and manager. Over that period, he has been an active voice in the IBM i community, encouraging and helping programmers transition to ILE and free-format RPG. Rafael has written more than 100 technical articles about topics ranging from interfaces (the topic for his first book, Flexible Input, Dazzling Output with IBM i) to modern RPG and SQL in his popular RPG Academy and SQL 101 series on mcpressonline.com and in his books Evolve Your RPG Coding and SQL for IBM i: A Database Modernization Guide. Rafael writes in an easy-to-read, practical style that is highly popular with his audience of IBM technology professionals.

Rafael is the Deputy IT Director - Infrastructures and Services at the Luis Simões Group in Portugal. His areas of expertise include programming in the IBM i native languages (RPG, CL, and DB2 SQL) and in "modern" programming languages, such as Java, C#, and Python, as well as project management and consultancy.


MC Press books written by Rafael Victória-Pereira available now on the MC Press Bookstore.

Evolve Your RPG Coding: Move from OPM to ILE...and Beyond Evolve Your RPG Coding: Move from OPM to ILE...and Beyond
Transition to modern RPG programming with this step-by-step guide through ILE and free-format RPG, SQL, and modernization techniques.
List Price $79.95

Now On Sale

Flexible Input, Dazzling Output with IBM i Flexible Input, Dazzling Output with IBM i
Uncover easier, more flexible ways to get data into your system, plus some methods for exporting and presenting the vital business data it contains.
List Price $79.95

Now On Sale

SQL for IBM i: A Database Modernization Guide SQL for IBM i: A Database Modernization Guide
Learn how to use SQL’s capabilities to modernize and enhance your IBM i database.
List Price $79.95

Now On Sale

BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$

Book Reviews

Resource Center

  •  

  • 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.

  • 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

  • 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: