Error-Checking C APIs

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

Using APIs is always an exciting opportunity with RPG IV. Apparently, IBM believes that providing prototypes and accurate data structures with meaningful names is something that only Windows or Linux developers are worthy of; and yet, life goes on.

I often use C APIs (including the so-called UNIX-style APIs) and MI APIs in my code. While the C APIs from the C runtime library aren't strictly considered APIs, they do work on all i5 systems, so I consider them APIs. MI has a set of instructions that have been interfaced with the C runtime library, presumably to make it easier for C programs to use MI. Since the MI instructions are provided as C runtime functions, they too make great APIs for RPG IV programmers.

One of the things that bothers me about the C runtime APIs is that they do not strictly produce traditional CPF exception/error messages. Instead they produce a C error code, referred to as errno.

For example, if I call the open64() API and it fails, the value of errno is normally set to either 3021 or 3408. When the open64() API returns a -1, it is considered to have failed, and the errno variable can be tested for 3021 or any of a dozen or more other errors.

But these number by themselves are primarily for developers who want to do something specific when they occur. This is similar to what we do when we use CL commands such as CHKOBJ and then test for a CPF9801 being issued.

The error number (errno) is returned to your program by calling the __errno API. This API returns a pointer to an integer, making it a bit complex for non-C programming languages. But RPG IV is pretty good at doing complex tasks today, so here's how it can be used in RPG IV:

     D nErrNo          S             10I 0 BASED(pErrNo)
     D c_ErrNo         PR              *   extProc('__errno')

      /free
          nRtn = open64('/home/cozzi/notfound.txt':O_TEXTDATA);
          if (nRtn = -1);
             pErrNo = c_errno();
         endif;
      /end-free

For the open64() API, I purposely specified a file that does not exist. In addition, I specified incorrect flags for parameter 2. Upon failing, open64() sets errno to 3021.

But again, that error number is meaningless to us RPG IV programmers. We'd really like to see the text associated with the error.

As you might expect, yet another C runtime API can be used to materialize the text associated with an error code. The strerror() API does this.

The strerror() API converts a C runtime error number into a text string that describes the message. To enhance the routine above so that it retrieves, the strerror() API is introduced, as follows:

       /free                 
         nRtn = 

open64('/home/cozzi/notfound.txt':O_TEXTDATA+O_APPEND);
         if (nRtn = -1);                  
             pErrNo = c_errno();                 
             szErrText = %str( c_strerror(nErrNo));           
             joblog('%s - %s':%char(nErrNo):%TrimR(szErrText));
         endif;  
      /end-free                                                        

The output of this change writes the following line of text to the joblog:

3021 - The value specified for the argument is not correct.

As you can see, the message text is somewhat vague, but it's certainly no more vague than some of the compiler messages we've been seeing introduced lately.

Using C and other APIs can be beneficial to RPG IV applications. As more and more Web and Web services applications are being developed, along with more-sophisticated general-purpose business applications, the need to use C functions will become standard practice in RPG IV programs.

Bob Cozzi is host of iSeriesTV.com, an audio and video podcast/netcast Web site dedicated to the iSeries/System i world. Bob is also the author of several books, including The Modern RPG IV Language and RPG TNT: 101 Tips 'n Techniques for RPG IV. He is also the producer of RPG World, an annual conference for RPG IV programmers.

BOB COZZI

Bob Cozzi is a programmer/consultant, writer/author, and software developer. His popular RPG xTools add-on subprocedure library for RPG IV is fast becoming a standard with RPG developers. His book The Modern RPG Language has been the most widely used RPG programming book for more than a decade. He, along with others, speaks at and produces the highly popular RPG World conference for RPG programmers.


MC Press books written by Robert Cozzi available now on the MC Press Bookstore.

RPG TnT RPG TnT
Get this jam-packed resource of quick, easy-to-implement RPG tips!
List Price $65.00

Now On Sale

The Modern RPG IV Language The Modern RPG IV Language
Cozzi on everything RPG! What more could you want?
List Price $99.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: