Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Re:Problem returning from WGET from within an assembler prog

22 views
Skip to first unread message

Steve Drain

unread,
Apr 8, 2022, 8:08:46 AM4/8/22
to
Bob Latham <b...@sick-of-spam.invalid> Wrote in message:r
> Hi,I've written a program that works as two separate chunks but I cannotfind a way to add the chunks together.My little program (assembler and not wimp) firstly uses WGET to download a file from the interweb. This is done in a subroutine where SWI"OS_CLI" R0 points at a string with WGET in it and the file downloadsno problem. When it returns from the subroutine, the program then*should* use the downloaded data to produce another angle on the data.The two parts work fine apart but I can't join them together. It'sthat the cpu isn't returning from the subroutine in the way Iexpected and seems determined to stop the whole thing with "pressspace bar" etc. it will not carry on with my program. I know there is something I'm not understanding here, could someoneenlighten me please.Thanks.Bob.

I woud guess Wimp_StartTask rather OS_CLI to avoid overwriting
your application space.


----Android NewsGroup Reader----
https://piaohong.s3-us-west-2.amazonaws.com/usenet/index.html

Harriet Bazley

unread,
Apr 8, 2022, 1:14:35 PM4/8/22
to
On 8 Apr 2022 as I do recall,
Bob Latham wrote:

> In article <t2p8ka$1db3$1...@gioia.aioe.org>,
> Steve Drain <st...@kappa.me.uk> wrote:
>
> > I woud guess Wimp_StartTask rather OS_CLI to avoid overwriting
> > your application space.
>
> Thanks Steve. That gives me something to read up about.
>
> I don't understand what overwrites the application space though.

As I understand it, when you use OSCLI to start a new application
directly then control never returns to the original program - you are
executing the equivalent of a GOTO rather than a PROC.

(Unless, apparently, you have a 'quit handler':
http://www.verycomputer.com/24_f48d3602910d170e_1.htm )

Wimp_StartTask launches it as an independent task with its own Wimpslot,
etc (although it also means that your program won't wait for this new
task to return before continuing on with its own next instruction - and
in the case of a wget command, I imagine that the result might
potentially take quite a while).

--
Harriet Bazley == Loyaulte me lie ==

Abstinence makes the heart grow fonder.

Steve Fryatt

unread,
Apr 8, 2022, 2:35:05 PM4/8/22
to
On 8 Apr, Bob Latham wrote in message
<59d600...@sick-of-spam.invalid>:

> In article <t2p8ka$1db3$1...@gioia.aioe.org>,
> Steve Drain <st...@kappa.me.uk> wrote:
>
> > I woud guess Wimp_StartTask rather OS_CLI to avoid overwriting
> > your application space.
>
> Thanks Steve. That gives me something to read up about.
>
> I don't understand what overwrites the application space though.

WGet, which is an application that you've just started in application space.

RISC OS is a single tasking operating system with a thin veneer of fake
multi-tasking applied on top by the Wimp. As far as all of the non-Wimp bits
of the OS are concerned, applications reside at 0x8000. Since there can only
be one application at 0x8000 at a time, the act of launching WGet overwrites
and completely obliterates your application. This is why the subroutine can
never return: by that point, your application doesn't exist any more.

As Harriet notes, there are some messy work-arounds: either the old
Arthur-era one of shifting memory around, or the RISC OS-era one of passing
the problem to the Wimp.

--
Steve Fryatt - Leeds, England

http://www.stevefryatt.org.uk/

Steve Fryatt

unread,
Apr 9, 2022, 9:15:05 AM4/9/22
to
On 9 Apr, Bob Latham wrote in message
<59d667...@sick-of-spam.invalid>:

> 'Invalid Wimp operation in this context.'

Ah. Wimp_StartTask must be called from a Wimp application which is already
calling Wimp_Poll.

I think your options are either to look at the Arthur way of doing stuff
(fiddle with the environment and shift things around in memory) or do
without WGet.

If you're using RISC OS 5, could you use the built-in HTTP fetcher? As a
module called by SWIs, that might run as part of your application (I don't
know; I've not looked at how it works, so I'm not sure if it expects to be
called from a polling application or not). If so, that would sidestep the
problem of launching a separate task to do the fetching.

Theo

unread,
Apr 9, 2022, 9:15:52 AM4/9/22
to
Bob Latham <b...@sick-of-spam.invalid> wrote:
> In article <6a8503d65...@bazleyfamily.co.uk>,
> Harriet Bazley <har...@bazleyfamily.co.uk> wrote:
>
> > Wimp_StartTask launches it as an independent task with its own
> > Wimpslot, etc (although it also means that your program won't wait
> > for this new task to return before continuing on with its own next
> > instruction - and in the case of a wget command, I imagine that the
> > result might potentially take quite a while).
>
> Naively I tried this with fingers crossed.
>
> I get an error..
>
> 'Invalid Wimp operation in this context.'
>
>
> Clearly this is way beyond my understanding.

Wimp_StartTask only works if you're already in a Wimp task. That might be a
desktop app, or a command line app running in a TaskWindow. If you are
outside the desktop the Wimp isn't running so you can't launch other tasks.

Try your code in a Taskwindow?

Theo

Kevin Wells

unread,
Apr 9, 2022, 5:07:18 PM4/9/22
to
In message <59d686...@sick-of-spam.invalid>
Bob Latham <b...@sick-of-spam.invalid> wrote:

>In article <mpro.ra2pxr01...@stevefryatt.org.uk>,
>Thanks Steve.
>
>I did look into that but quickly realised this is beyond my baby
>steps.
>
>Must admit, it surprises me that fetching a file from the net is so
>difficult to do.

From BASIC wget is easy to fetch files from the internet I use the
followiong:

SYS "Wimp_StartTask", "wget ...

Whilst fetching the computer is single tasking,
>
>Thanks again.
>
>Bob.
>


--
Kev Wells
http://kevsoft.co.uk/ https://ko-fi.com/kevsoft
carpe cervisium
24 hours in a day and 24 beers in a case. Hmmm..

David Higton

unread,
Apr 9, 2022, 5:29:30 PM4/9/22
to
In message <13d593d659.Kevin@Kevsoft>
Similarly, my UpdCaCert app launches curl by means of Wimp_StartTask,
and the resukt single-tasks for a few seconds.

So it's not difficult, really, but you do need to know some important
bits of information. One is that you can't do Wimp operations except
from a registered Wimp task; another is that, in most cases, you can't
just do *OSCLI for an app because the new app will wipe out the app that
launched it.

David

Harriet Bazley

unread,
Apr 10, 2022, 8:02:00 AM4/10/22
to
On 9 Apr 2022 as I do recall,
Bob Latham wrote:

[snip]


> Must admit, it surprises me that fetching a file from the net is so
> difficult to do.
>
Doesn't surprise me - fetching a file across the Internet is an order of
complexity above fetching a file from the local hard disc, and in
addition you're launching an external application in order to do it,
which is quite a lot for a small assembler routine to handle....

You originally said that you had two separate working routines but
simply couldn't seem to paste them together - would it not be possible
to have a 'parent' BASIC file that could call them both in succession?

(Registering yourself as a WIMP task is not in fact that complicated,
and I don't think your program actually needs to implement a Wimp_Poll
loop if it is single-tasking and not attempting to interact with the
desktop in any way - I seem to remember writing some pretty crude
software that just called Wimp_Initialise claiming to be a RISC OS 2
application, executed a few lines of BASIC and then quit.)

--
Harriet Bazley == Loyaulte me lie ==

We prefer to speak evil of ourselves than not speak of ourselves at all.

Kevin Wells

unread,
Apr 10, 2022, 9:07:19 AM4/10/22
to
In message <59d6dc...@sick-of-spam.invalid>
Bob Latham <b...@sick-of-spam.invalid> wrote:

>In article <13d593d659.Kevin@Kevsoft>,
> Kevin Wells <k...@kevsoft.co.uk> wrote:
>
>> >In article <mpro.ra2pxr01...@stevefryatt.org.uk>,
>> > Steve Fryatt <ne...@stevefryatt.org.uk> wrote:
>
>> >> Ah. Wimp_StartTask must be called from a Wimp application which
>> >> is already calling Wimp_Poll.
>
>> From BASIC wget is easy to fetch files from the internet I use the
>> followiong:
>
>> SYS "Wimp_StartTask", "wget ...
>
>> Whilst fetching the computer is single tasking,
>
>When you say "Basic", I'm starting to think you mean a full wimp
>application written in Basic?

Yes under DR Wimp

Another method I used in my QrCode application is to create an Obey file
with just wget ... in it file typed as FEB so that I can have more than
256 characters in it. If going down that route then anything with a % in
it will need %%
>
>Thanks.
>
>Bob.
>


--
Kev Wells
http://kevsoft.co.uk/ https://ko-fi.com/kevsoft
carpe cervisium
O it's Tommy this, an' Tommy that, an' " Tommy, go away " ;

druck

unread,
Apr 11, 2022, 8:59:23 AM4/11/22
to
On 10/04/2022 13:01, Harriet Bazley wrote:
> Doesn't surprise me - fetching a file across the Internet is an order of
> complexity above fetching a file from the local hard disc, and in
> addition you're launching an external application in order to do it,
> which is quite a lot for a small assembler routine to handle....

Classic wrong tool for the job. It Python it is one line of code using
the requests module. But of course we just need the requests module in
the RISC OS version of Python3 <arrrrh>.

---druck

Kevin Wells

unread,
Apr 11, 2022, 3:07:20 PM4/11/22
to
In message <ad97efd659.Kevin@Kevsoft>
Kevin Wells <k...@kevsoft.co.uk> wrote:

>In message <59d6dc...@sick-of-spam.invalid>
> Bob Latham <b...@sick-of-spam.invalid> wrote:
>
>>In article <13d593d659.Kevin@Kevsoft>,
>> Kevin Wells <k...@kevsoft.co.uk> wrote:
>>
>>> >In article <mpro.ra2pxr01...@stevefryatt.org.uk>,
>>> > Steve Fryatt <ne...@stevefryatt.org.uk> wrote:
>>
>>> >> Ah. Wimp_StartTask must be called from a Wimp application which
>>> >> is already calling Wimp_Poll.
>>
>>> From BASIC wget is easy to fetch files from the internet I use the
>>> followiong:
>>
>>> SYS "Wimp_StartTask", "wget ...
>>
>>> Whilst fetching the computer is single tasking,
>>
>>When you say "Basic", I'm starting to think you mean a full wimp
>>application written in Basic?
>
>Yes under DR Wimp
>
>Another method I used in my QrCode application is to create an Obey file
>with just wget ... in it file typed as FEB so that I can have more than
>256 characters in it. If going down that route then anything with a % in
>it will need %%

After a few pints of insperation juice (beer) I think I have a plan for
multitaksing the the above.

There is an an obey file that returns to the computer very quickly I
can't remember which one at the top of my head.

So you select the logging switch to save the log info to file scrap
would be the best place, and in the polling loop check to see if that
file is there and when it is carry on.
>>
>>Thanks.
>>
>>Bob.
>>
>
>


--
Kev Wells
http://kevsoft.co.uk/ https://ko-fi.com/kevsoft
carpe cervisium
Bring me my bow of burning gold!
0 new messages