× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



It is perfectly possible to have subprocedures with local files. OIn fact it is the only way yo get true recursion in a file handling subproc.

The problem is the overhead of the open/close that will occur with each invocation level. Can shared open reduce the load and still allow individual cursors for each invocation level? I don't recall and haven't time to play. Last time I worried about this was in about 1998!

Anything else though is going to require you to manually reposition the cursor upon each return. Just like in the "good old days" of MDT programs and non-persistent CGI programs.

Depending on the performance profile you need you may be able to get away with local files - they certainly offer the "cleanest" most obvious solution.

Just a note on the use of a STATIC file - this works fine but you do need the cursor repositioning logic and may need to have a special call to close the file if you cannot rely on the end of the AG to achieve this,


Just a few thoughts


Jon Paris




On Oct 10, 2021, at 5:18 AM, Roger Harman <roger.harman@xxxxxxxxxxx> wrote:

I use it this way for some service programs.

I typically also use USROPN. I call it with *LOVAL in the first parm (regardless of its intended usage) to initiate the open and any setup I need.
Then it gets called with parms as needed during processing.
At the end, the first parm gets passed as *HIVAL to initiate a graceful close and cleanup processing if needed.

It's a methodology that has worked well for me.


-----Original Message-----
From: RPG400-L <rpg400-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of Vern Hamberg
Sent: Friday, October 8, 2021 9:03 PM
To: rpg400-l@xxxxxxxxxxxxxxxxxx
Subject: Re: Can files be opened local to a "subprocedure"?

Thanks, Roger, I'd forgot that - have never needed to use it, so,
brain-drain, perhaps!

Vern

On 10/8/2021 9:56 PM, Roger Harman wrote:
Unless you use the STATIC keyword....



-----Original Message-----
From: RPG400-L <rpg400-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of Vern Hamberg
Sent: Friday, October 8, 2021 6:00 PM
To: rpg400-l@xxxxxxxxxxxxxxxxxx
Subject: Re: Can files be opened local to a "subprocedure"?

Well, so far as I know, when a file is defined in a subprocedure,
basically you have a fresh open when the SP is called, and a close when
it exits - nothing is maintained between calls.

USROPN gets the same behavior - again, so far as I know.

Vern

On 10/8/2021 7:38 PM, James H. H. Lampert via RPG400-L wrote:
On 10/8/21 5:27 PM, Vern Hamberg wrote:
Now are maybe there issues of maintaining the position where you left
off in one of the files?
Of course there are. The record contents can be thrown out (the
recursion is very close to strict tail-recursion), but the position
and the EOF state can't. That is the whole point of the question, and
why opening it locally to the procedure invocation appears to be the
only way, short of caching the entire contents of the file.

And performance is not an issue. The file to be opened locally has an
absolute maximum of 55 records, and an absolute maximum of 49 records
that would satisfy the key conditions.

So far, in my tests, it appears that (at least at V6), simply moving
the F-spec to procedure level requires me to treat the file as
program-described, and define a structure to receive the record, but
treating externally-described files as program-described is old hat
around here. Apparently scatter-gather doesn't work for files declared
at procedure level?

--
JHHL

--
This is the RPG programming on IBM i (RPG400-L) mailing list
To post a message email: RPG400-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.midrange.com%2Fmailman%2Flistinfo%2Frpg400-l&amp;data=04%7C01%7C%7Cb859619c73ee4b8d206e08d98ad9c6f9%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637693490216888012%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=gHZYJdLaNac8e6s5Wqr%2BmwcDS2afCHM%2Bb71oFWeb%2FqA%3D&amp;reserved=0
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Farchive.midrange.com%2Frpg400-l&amp;data=04%7C01%7C%7Cb859619c73ee4b8d206e08d98ad9c6f9%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637693490216888012%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=K%2FauTmS24aenQkWi9qSI9VdvRqq%2BYIXFkKFAStdttcQ%3D&amp;reserved=0.

Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related questions.

Help support midrange.com by shopping at amazon.com with our affiliate link: https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Famazon.midrange.com%2F&amp;data=04%7C01%7C%7Cb859619c73ee4b8d206e08d98ad9c6f9%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637693490216897981%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=WD7wouI2y56pc1a6SAMwUrAAuwUJb3g4g3pCc8q8%2FlQ%3D&amp;reserved=0
--
This is the RPG programming on IBM i (RPG400-L) mailing list
To post a message email: RPG400-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/rpg400-l.

Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related questions.

Help support midrange.com by shopping at amazon.com with our affiliate link: https://amazon.midrange.com


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.