TechTalk: Checking the Program Stack

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

Program A can call program B and at the same time pass data as parameters. While program B is running, it can call program C. At this point, there are three programs in your program stack: A, B and C. This process can continue indefinitely, calling program after program and never returning to the caller.

There is a problem, however. In some HLLs such as RPG, program C cannot call program B or A (which is already in the program stack) because doing so would create a recursion and an infinite loop of programs calling one another. Adding insult to injury, OS/400 has no built-in function that will let you determine, before calling program X, whether program X is already in the stack. You must call the program and hope for the best.

Enter the Check Program Stack command (CHKPGMSTK). This command (Figures 2a and 2b) accepts a program name as a parameter and returns a character value 'Y' if the program is in your program stack, or 'N' if it isn't.

This is accomplished with the SNDPGMMSG command. Because the SNDPGMMSG command attempts to send a message to the program that you named, SNDPGMMSG will fail if the program is not in your program stack. If SNDPGMMSG is successful, the message just sent is removed, "just in case."

To solve your problem, therefore, you could call the processing program for CHKPGMSTK (program PGM001CL) from your RPG program, as follows:

 CALL 'PGM001CL' PARM 'PGMX' PGMNAM 10 PARM RTNCDE 1 

If RTNCDE has 'Y,' you can't call program PGMX from your RPG program.


TechTalk: Checking the Program Stack

Figure 2A Command CHKPGMSTK

 CHKPGMSTK: CMD PROMPT('Check Program Stack') PARM KWD(PGM) TYPE(*SNAME) LEN(10) MIN(1) + PROMPT('Program name') PARM KWD(RTNCDE) TYPE(*CHAR) LEN(1) RTNVAL(*YES) + CHOICE('''Y'' or ''N''') PROMPT('Return + code (CHAR(1))') 
TechTalk: Checking the Program Stack

Figure 2B CL program PGM001CL

 PGM001CL: + PGM PARM(&PGM &RTNCDE) DCL VAR(&PGM) TYPE(*CHAR) LEN(10) DCL VAR(&RTNCDE) TYPE(*CHAR) LEN(1) DCL VAR(&MSGKEY) TYPE(*CHAR) LEN(4) CHGVAR VAR(&RTNCDE) VALUE('Y') SNDPGMMSG MSG(TEST) TOPGMQ(*SAME &PGM) MSGTYPE(*INFO) + KEYVAR(&MSGKEY) MONMSG MSGID(CPF2479 CPF2469) EXEC(DO) CHGVAR VAR(&RTNCDE) VALUE('N') ENDDO IF COND(&RTNCDE) THEN(DO) RMVMSG PGMQ(*SAME &PGM) MSGKEY(&MSGKEY) CLEAR(*BYKEY) ENDDO ENDPGM 
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: