Author Topic: REXX tutorials -- start developing applets under ArcaOS out-of-the-box  (Read 6601 times)

Alfredo Fernández Díaz

  • Jr. Member
  • **
  • Posts: 76
  • Karma: +4/-0
    • View Profile
Re: REXX tutorials -- start developing applets under ArcaOS out-of-the-box
« Reply #15 on: February 27, 2025, 07:59:20 am »
Thanks for the better formatting.
; )

Quote
I tried running the above snippet after saving it as time.cmd and got,
Code: [Select]
K:\work\dooble\obj>time.cmd make clean
SYS1044: The system cannot accept the time entered.

Enter the new time:

Same with quoting the make clean.
Sounds like you're getting some other "time" invoked instead (see "help 1044"). Save as something else and retry, to make sure?

Dave Yeo

  • Hero Member
  • *****
  • Posts: 5307
  • Karma: +124/-1
    • View Profile
Re: REXX tutorials -- start developing applets under ArcaOS out-of-the-box
« Reply #16 on: February 27, 2025, 08:16:20 am »
You're correct,
rexxtime.cmd make clean
...
Code: [Select]
Command: "make clean", started at 23:06:44, ended at 23:06:44. Elapsed: 0.50s.
Interesting, I thought that invoking as time.cmd instead of time would run the script.

Jan-Erik Lärka

  • Global Moderator
  • Sr. Member
  • *****
  • Posts: 320
  • Karma: +7/-0
    • View Profile
Re: REXX tutorials -- start developing applets under ArcaOS out-of-the-box
« Reply #17 on: February 27, 2025, 09:09:03 am »
Ohh, nice output like a container tree view!

   IF dir < dir.0 THEN leader = D2C(195)
                  ELSE leader = D2C(192)
can be shortened to
Code: [Select]
leader = D2C( 192 + 3 * ( dir < dir.0 ) )
« Last Edit: February 27, 2025, 09:13:38 am by Jan-Erik Lärka »

Alfredo Fernández Díaz

  • Jr. Member
  • **
  • Posts: 76
  • Karma: +4/-0
    • View Profile
Re: REXX tutorials -- start developing applets under ArcaOS out-of-the-box
« Reply #18 on: February 27, 2025, 08:40:43 pm »
I thought that invoking as time.cmd instead of time would run the script.
So did I, but I seemed to recall there was some reason why it was best not to do that kind of thing. I can't imagine what kind of bright mind would consider that behavior "working as designed", but I tried under 4os2 and I got the same result, so I won't call it a bug...

It seems that at least CMD and 4OS2 (haven't JdeBP's 32-bit cmd installed to test right now) will ignore batch or rexx .cmd files that you call the same as some internal command, and ".cmd" plus the rest of your command line will be fed as parameters to the internal command.

Rather than debating the wisdom of said course of action, I'd insist on the question:

What if I want to replace internal commands with my own stuff anyway?

And fortunately the answer may seem slightly awkward, but at least it works:

To launch your own rexx replacements instead of internal commands just put them in double quotes, e.g. "time.cmd". If you needed to quote your arguments, quote them again for this: "time.cmd" "make clean > report.txt".
« Last Edit: February 27, 2025, 08:45:28 pm by Alfredo Fernández Díaz »

Dan Eicher

  • Newbie
  • *
  • Posts: 2
  • Karma: +0/-0
    • View Profile
Re: REXX tutorials -- start developing applets under ArcaOS out-of-the-box
« Reply #19 on: February 28, 2025, 12:13:15 am »
 
  Did someone build a wget script to pull in extra bits and pieces and write a tutorial, because we seem to have gotten to code fairly quickly?

Alfredo Fernández Díaz

  • Jr. Member
  • **
  • Posts: 76
  • Karma: +4/-0
    • View Profile
Re: REXX tutorials -- start developing applets under ArcaOS out-of-the-box
« Reply #20 on: March 02, 2025, 09:12:19 pm »
Hi Dan, given the thread subject, "out of the box", I'm not sure what you mean by "fairly quickly" -- shouldn't that be the point? Unless... are you absolutely new to OS/2 / ArcaOS? If that's the case,

perhaps the first thing ArcaOS needs to have in its Development folder (REXX Folder?) is simply a 'Hello world' Rexx program object to be run, another program object specifically to show how it's done ("Edit Hello World!"), and the shortest readme / intro ("What is REXX?"):
----8<--------8<--------8<--------8<--------8<--------8<--------8<--------8<----
REXX is the default scripting language in ArcaOS. To start creating REXX programs, you just need a plain text editor and the ability to read the simplest English (click on Edit "Hello World!").

Once you save your REXX scripts you can run them simply double-clicking on them, or typing their name at the command line from the folders where you have created them.

ArcaOS comes with <this and that>, please see <X, Y, Z, under ... > (pointers to a selection of the included materials best suitable for new users).

Jan-Erik Lärka

  • Global Moderator
  • Sr. Member
  • *****
  • Posts: 320
  • Karma: +7/-0
    • View Profile
Re: REXX tutorials -- start developing applets under ArcaOS out-of-the-box
« Reply #21 on: March 02, 2025, 10:22:35 pm »
Hi Dan,
you're quite right.

We need to discuss and make plans from 'Hello world' and beyond, bridging the gap from an intro to writing something useful.
How about a combination of scripts to choose what to retrieve and install of help, reference, guides, editors etc.

Introductions that hold the hand all the way is key and what I would say help one over the initial hurdles how to get used to what can be done.

Rexx is great as "glue" to explore and control various tools, techniques and system resources.
Code: [Select]
/* Retrieve help/tutorial/guide/intro to REXX */
'@yum -y install wget' /* ensure wget is available so we can retrieve/tools/packages/... from the web */
The above code would use the external tool and run yum. @ ensure that the command yum -y install wget doesn't appear on screen, while the output from the command do.

Or should all come as wpi or rpm packages? A problem is the hosting and location after a few years.

A first version could list the various titles, file format and internet location (url)?
Let the user choose and then do some magic, add short cuts as suggested etc.

Next list text editors and their benefits in writing rexx code

Why not guide the user through the code that do all of that as well.
How to read, interpret and follow the execution, 'dry execution', as learning from existing code should be easier.
Perhaps donate a number of functions that can be reused, instead of asking everyone to reinvent the wheel over and over again

I have a recursive function I call RxMkDir that is quite useful. One specify the path and it create it all levels down if it doesn't exist, and/or jump to it.

Someone else have a function that create shortcuts on the desktop from a stem/array, etc.
« Last Edit: March 02, 2025, 10:24:10 pm by Jan-Erik Lärka »

Jan-Erik Lärka

  • Global Moderator
  • Sr. Member
  • *****
  • Posts: 320
  • Karma: +7/-0
    • View Profile
Re: REXX tutorials -- start developing applets under ArcaOS out-of-the-box
« Reply #22 on: March 02, 2025, 10:39:37 pm »
List info related to programming in REXX
TitleType (Help/Tutorial/Reference/Guide/Examples/...)LocationFormat (pdf/inf/html/...)License (free/gpl 3/restricted/commercial/...)Interpreter (CRexx/ORexx/ooRexx/ARexx/BRexx/Regina/Roo)

Dave Yeo

  • Hero Member
  • *****
  • Posts: 5307
  • Karma: +124/-1
    • View Profile
Re: REXX tutorials -- start developing applets under ArcaOS out-of-the-box
« Reply #23 on: March 02, 2025, 11:02:49 pm »
Seems the simplest starting point is found at, Computer-->Help Centre-->Information-->Program Development-->Rexx Information which gives a nice introduction including a Hello.cmd in the Getting Started in Rexx section.
Along side is the Rexx Scripting Language folder with more advanced stuff.

Jan-Erik Lärka

  • Global Moderator
  • Sr. Member
  • *****
  • Posts: 320
  • Karma: +7/-0
    • View Profile
Re: REXX tutorials -- start developing applets under ArcaOS out-of-the-box
« Reply #24 on: March 08, 2025, 01:16:38 pm »
It is the start to look at that is a good starting point, with a need for more, so let's keep this thread alive.

So what do we need/want?

Should we aim to support a specific version of OS/2 and newer? ¹)
A list of handbooks related to REXX. The list that Dariusz Piatkowski showed should be a good starting point, where can the files be downloaded from?
There should also be a dedicated section about "Object REXX" ²) and "ooRexx" ²).
PDF and/or INF/HLP format?

What would you like to see/need? Dan and Lewis
Is it a broader discussion about what REXX can do and how, a list of functions one can copy/paste into own projects, or...?

____
¹) Various libraries has been introduced and removed in versions of eComStation and ArcaOS. The proper way would be to assume that there is only Classic REXX in Warp 4 installed with the limitations and bugs found there and provide functions that check and test the system and then work from there. It may require rather large functions to be complete, but may be what we should aim for?
Example 1: To get the boot drive of the system currently in use one can call the function SysBootDrive, but it is only available with later versions of RexxUtil, so to write scripts that work with any version of the OS, one has to expand it somewhat (see code).
Example 2: The useful rexx library to unpack files "unzip32.dll" may (not) be available, but unzip.exe of various versions may (not) also be available, and/or unpack200.exe with OpenJDK. A wrapper function to unzip should be written to use whatever is available as we can't assume a baseline.

²) With Object REXX and ooRexx one can create a reusable "text library" to reference (compare to "include" in C/C++) with methods that can explore all possebilities and provide a unified way to unpack archives.

Code: [Select]
/* Purpose: Get information about the drive where the OS has been installed to */
/* Somewhat extended (and renamed) version of the one found in Rexx Tips & Tricks v3.60 */
/* Note the use of OS2ENVIRONMENT instead of just ENVIRONMENT as one can't assume a certain baseline version without forcing that one on others */
RxBootDrive: PROCEDURE EXPOSE (exposeList)

/* install a local error handler                  */
  SIGNAL ON SYNTAX NAME BootDrive

  boot_drive = ''
  boot_drive = SysBootDrive()

BootDrive:
/* boot_drive is still empty if SysBootDrive() failed */
/* SysBootDrive() is only available in the newer versions of REXXUTIL! */
    IF boot_drive = '' THEN
    DO
        /* Do further tests to ensure that the result of this method is correct! */
        PARSE UPPER VALUE VALUE( "PATH",, prog.__env ) WITH "\OS2\SYSTEM" -2 boot_drive +2
        boot_drive = STRIP( boot_drive )
        os_dir = STRIP( LEFT( VALUE( 'OSDIR',, 'OS2ENVIRONMENT' ), 2 ) )
        sys_cmd = STRIP( LEFT( VALUE( 'COMSPEC',, 'OS2ENVIRONMENT' ), 2 ) )
        IF LENGTH( os_dir ) = 2 & LENGTH( sys_cmd ) = 2 THEN
            IF os_dir = sys_cmd THEN RETURN os_dir
        IF LENGTH( os_dir ) = 2 THEN
            IF boot_drive = os_dir THEN RETURN boot_drive
        IF LENGTH( sys_cmd ) = 2 THEN
            IF boot_drive = sys_cmd THEN RETURN boot_drive
    END
RETURN boot_drive
« Last Edit: March 11, 2025, 03:15:09 pm by Jan-Erik Lärka »

Jan-Erik Lärka

  • Global Moderator
  • Sr. Member
  • *****
  • Posts: 320
  • Karma: +7/-0
    • View Profile
Re: REXX tutorials -- start developing applets under ArcaOS out-of-the-box
« Reply #25 on: March 15, 2025, 09:54:01 am »
First of all we need a function that can check if an executable can run or if the library/file exist or not.

Since we don't have a list of the files nor their types yet, our function can only be prepared to:
  • Support obvious file types such as .exe, .hlp/.inf, .pdf and .cmd
  • Take one parameter by default, the file to check and return 0 if all is well or another number depending on the problem.
  • Be extendable and allow for more files types and at least one more parameter or stem/array later.

Try to write a function and post it here, that can test if for example wget.exe (without path*) is present or not on the system.
Hints:
  • rc = 1041 not available
  • rc <> 0 missing support libraries
  • other problem and rc = 0 ok

*The function should try determine the path if needed, but not provided, with for example SysSearchPath(...).

Jan-Erik Lärka

  • Global Moderator
  • Sr. Member
  • *****
  • Posts: 320
  • Karma: +7/-0
    • View Profile
Re: REXX tutorials -- start developing applets under ArcaOS out-of-the-box
« Reply #26 on: March 19, 2025, 07:35:31 pm »
Hello,

Here's a script I've just completed to download and install information about REXX.
You have 10 titles to choose from and enjoy.

Beware that the script has not been tested that much and may cause problems, especially when sites such as hobbesarchive.com complain or is down.
I leave testing and extending the script to you, to enhance it further.


 REXX tutorials under ArcaOS out-of-the-box
 ==========================================
 1. REXX for the absolute beginner: Installed
 2. Rexx Reference Summary Handbook: Installed
 3. REXX Tips & Tricks v3.60: Installed
 4. Learning REXX Programming in 56,479 Steps: Installed
 5. OS/2 REXX. From Bark to Byte: Installed
 6. REXX Programmers Reference 2nd Edition: Installed
 7. REXX Tutorial: Installed
 8. A Practical Approach to Programming: Installed
 9. OS/2 2.1 Rexx Handbook (Warning! 321MB): Installed
10. Extending the Workplace Shell with Object Rexx: Installed

 Install <A>ll or 1, 2 ... ( ? for additional Info, 0 to Exit ):


Regards,
//Jan-Erik
« Last Edit: March 20, 2025, 07:14:54 am by Jan-Erik Lärka »