Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I came across a piece of cobol program which got me confused, this is the page containing the code, it try to demonstrate how bad ALTER is but at the same I don't understand the program flow.

     PERFORM 2100-PROCESS-RECORD THRU 2199-EXIT.
...
 2100-PROCESS-RECORD. 
     GO TO 2110-PROCESS-HEADER.
*
 2110-PROCESS-HEADER.
* code to process a file header
     ALTER 2100-PROCESS-RECORD TO 2120-PROCESS-DETAIL.
     GO TO 2199-EXIT.
*
 2120-PROCESS-DETAIL.
* code to process a detail record 
     GO TO 2199-EXIT.
...
*
 2199-EXIT.
     EXIT.

In my mind, the flow is like this:

     PERFORM 2100-PROCESS-RECORD THRU 2199-EXIT.
...
 2100-PROCESS-RECORD. 
     GO TO 2110-PROCESS-HEADER.
*
 2110-PROCESS-HEADER.
* code to process a file header
     ALTER 2100-PROCESS-RECORD TO 2120-PROCESS-DETAIL.
     GO TO 2199-EXIT.

 2199-EXIT.
     EXIT.

If ALTER is to change the destination of a GO-TO, how can it be useful if the GO-TO was already executed and the program exited?

share|improve this question
did you Google "cobol exit"? I've updated my answer. – jcomeau_ictx Jun 14 '11 at 14:08
1  
ALTER was depreciated with the COBOL 85 standard (someting over 25 years ago). If you ever come across ALTER in "the wild" you are looking at some very old code. ALTER only had a "life" during the 50's and early 60's, I would not spend a lot of time studying it. – NealB Jun 15 '11 at 1:54

1 Answer

http://home.swbell.net/mck9/cobol/style/alter.html explains it. you're correct for the first execution, but on subsequent runs the behavior is changed:

"The first time we execute the PERFORM, control passes through 2110-PROCESS-HEADER. However, the ALTER at the end of that paragraph changes the destination of the GO TO in 2100-PROCESS-RECORD. As a result, on all subsequent executions of the PERFORM, control does not pass through 2110-PROCESS-HEADER. It passes through 2120-PROCESS-DETAIL instead.

"The potential for confusion is obvious. The altered GO TO does not go where it claims to go -- instead, it goes to a place specified in some remote piece of code. To understand how the code works you need to know that the ALTER is present, and you need to know all the circumstances which execute the ALTER."

it's called self-modifying code, and it's very hard to understand and debug. for some light reading before bed, I recommend http://www.pbm.com/~lindahl/mel.html the story of Mel.

in Cobol, the EXIT statement does not mean "exit the program": http://publib.boulder.ibm.com/infocenter/iadthelp/v6r0/index.jsp?topic=/com.ibm.etools.iseries.langref.doc/evfeb4ls124.htm

share|improve this answer
PERFORM 2100-PROCESS-RECORD THRU 2199-EXIT Only execute once, doesn't it? – lamwaiman1988 Jun 14 '11 at 8:18
if it does, no problem. but chances are there are many records, and all will need processing. – jcomeau_ictx Jun 14 '11 at 8:20
are you just learning COBOL? the EXIT statement doesn't mean what it does in many other languages. – jcomeau_ictx Jun 14 '11 at 8:23
1  
+1 for the story of Mel. Worth reading indeed. – belisarius Jun 14 '11 at 13:58
@belisarius thanks but somehow the +1 didn't stick? – jcomeau_ictx Jun 14 '11 at 14:09
show 5 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.