Error-Checking C APIs

Embed Size (px)

Citation preview

  • 7/27/2019 Error-Checking C APIs

    1/5

    HOMEPUBLICATIONSNEWSEVENTSBUYER'S GUIDEFORUMSVIDEOSPOPULARARCHIVESTORE

    Remember me Forgot Password? | Register

    AnalysisApp SoftwareCareerDatabaseInternetNetworking

    OP SystemsPrintingProgrammingSecuritySystem AdminTechTipsWebSphere

    Analysis of News EventsCommentary

    Business IntelligenceBusiness Management

    CollaborationContent ManagementCustomer RelationshipERP/FinancialGeneralHigh AvailabilityIBMManaged ServicesMicrosoft

    General

    Data Warehousing

    DB2JDBCMicrosoft AccessMicrosoft ODBCMySQLOracleSQL

    GeneralPortals

  • 7/27/2019 Error-Checking C APIs

    2/5

    ProtocolsTelephonyWeb Conferencing

    EmulationGeneralWireless/WiFi

    i5/OSLinux/Open SourceMicrosoftUNIX/AIX

    General

    APIsChange ManagementCLGeneralJavaRPGScriptingSQLVisual Basic

    Web Languages

    Compliance/PrivacyGenerali5/OSMicrosoft

    GeneralPerformance Monitoring & Tuning

    APIsCareerCL

    CollaborationDatabaseHA/DRi5/OSInternetJavaLinuxMSNetworkingPrintingProgrammingRPGScripting

    SecuritySQLSys AdminWeb LanguagesWebSphere

    GeneralSystems Management

  • 7/27/2019 Error-Checking C APIs

    3/5

    Error-Checking C APIsWritten by Robert CozziTuesday, 06 February 2007

    Retrieving the error message text isn't too complex.

    Using APIs is always an exciting opportunity with RPG IV. Apparently, IBM believes that providing prototypes and accurate data structures with meaningful namesis something that only Windows or Linux developers are worthy of; and yet, lifegoes 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 makeit easier for C programs to use MI. Since the MI instructions are provided as Cruntime 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 aC 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 adozen 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')

    /freenRtn = open64('/home/cozzi/notfound.txt':O_TEXTDATA);if (nRtn = -1);

    pErrNo = c_errno();endif;

    /end-freeFor 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:

  • 7/27/2019 Error-Checking C APIs

    4/5

    /freenRtn =

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

    Last Updated ( Tuesday, 06 February 2007 )No Comments Have Been Posted.

    User Rating: / 0

    PoorBestRelated ArticlesIs There a Rich Client in Your Future? (08/27/2008)Picking the Right Partner for RPG (08/20/2008)The API Corner: Finding All *SRVPGMs on the System (08/20/2008)Book Review: JavaScript for the Business Developer (08/15/2008)The System Integration Challenge: Eliminating Project Breakdowns (08/11/2008)< Prev Next >

    [ Back ]MOST POPULARARTICLES BOOKS FORUMS SEARCHESPicking the Right Partner for RPG

    Is There a Rich Client in Your Future?TechTip: Simplify Report Development with DB2 Web Query Business ViewsBook Review: JavaScript for the Business DeveloperThe API Corner: Finding All *SRVPGMs on the SystemAs IBM Reaches Out to Business Partners, Will They Reach Back to IBM?Best Practices for Selecting Application Development ToolsLaptop Technology Comes of AgeWill Google's Android Cure iPhone-Envy?Boost Efficiency in the Real World with Electronic Forms and DocumentsTop 10 Best-Selling Titles for August 2008

  • 7/27/2019 Error-Checking C APIs

    5/5

    System i Disaster Recovery PlanningHTML for the Business DeveloperThe Modern RPG IV Language, Fourth EditionFree-Format RPG IVIBM System i APIs at Work, Second EditionSQL for eServer i5 and iSeriesSubfiles in RPG IVJavaScript for the Business DeveloperQshell for iSeriesDB2 9 for Linux, UNIX, and Windows Database Administration Certification Study GuideHow to display many subfile columns (461 views)Picking the Right Partner for RPG (302 views)Printing Bar Codes in an internal output spec's (167 views)DB2 Web query vs SEQUEL (69 views)ANSI to UTF-8 on IFS (63 views)Schedule Announced for Conference & Workshops on SOA, SaaS, Virtualisation & ECM(49 views)Schedule Announced for Conference & Workshops on SOA, SaaS, Virtualisation & ECM(31 views)1. DB2 web query2. display PDF3. seiden

    4. pdf5. web services6. Subfiles7. subfile8. spooled files and pdf9. Chris Smith10. green

    MC-STORE.COM

    Home | Publications | News | Events | Buyer's Guide | Forums | Videos| Popular | Archive | Store

    Copyright 2008 MC Press Online, LP | Privacy Policy | Search | RSS | FAQ| Contact Us | Write For Us | Advertise | Site Map