r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[All] except covered in other channels

Maxim
9-Jan-2009
[3289]
for me the key point lies not in the fact that we can already make 
mezz func which simulates the foreign! handling with a function such 
as ASSIMILATE.


the difference lies in the fact that if the native function can load 
invalid data, then it should simply because of the the fantastical 
speed its able to convert string data into rebol literal values of 
a variety of types.


hooking up interpreter driven code within the handling of that will 
slow it down.  using the parse with next refinement works... but 
its nowhere near as fast, for loading, say 300MB of scientific data. 
 which is an actual case I had to deal with.  just doing a replace/all 
on that file took 30Minutes.  assimilate with foreign! handling  
would have taken about 5-10 seconds, and the code would have also 
been easier to write over all.
Dockimbel
9-Jan-2009
[3290]
Brian and Pekr, you can easily define where your foreign! value (garbage) 
would start, but you cannot define in a *general* way where it should 
end. You can only define that on specific cases and with specific 
rules. That's Gabriele's point. 


For example, let's see how an invalid input could be parsed using 
a theoretical foreign! type (represented below as quoted string for 
easier reading).

Test input string to parse: "123 abc 4c5.6"

Possible alternative outputs from a relaxed LOAD:

[123 abc "4c5.6"]
[123 abc 4 "c5.6"]
[123 abc 4 c5.6]
[123 abc 4 c 5.6]
[123 abc "4c" 5.6]
...

Question: which one is the correct output that LOAD should produce?

Answer: you can't know until you ask me what I wanted to express.


You cannot expect from LOAD to know how to handle invalid data (and 
to determine where it ends), the best thing LOAD can do is to stop 
on syntax error. If you have hints or rules on how should foreign 
be parsed, then write some parse rules and use string! parsing.


LOAD/else is a nice REP, but again it can only work on specific data. 
You cannot feed it with *any* data and expect it to work.
Maxim
9-Jan-2009
[3291x2]
usuall rebol separators is the ovbious reply... spaces.  we all agree 
that we don't expect the system to behave magically.
for my part I just know how many times, this would have simplified 
parsing of mechanically generated data.
Steeve
9-Jan-2009
[3293x4]
oh my... it could be simple, just load as junk! until you found a 
valid separator (blank, newline or tab) then continue to load.
What's the problem ????

Those who are saying endless that it's better to throw an error have 
never been in that case...
And if it can not be included in core as a new datatype! (constructed 
by to block!) then it's useless. I don't want it as a mezzanine because 
it would be slow.
at least junked tokens could be formated as a string! it would be 
more usefull than thorwing an error and stoping
to block! could return a false status if there are junks but we don't 
want useless errors anymore...
BrianH
9-Jan-2009
[3297x2]
Doc, the point to LOAD/else is that it requires a parameter that 
is the answer to the question of what the calling code wants to happen 
at that point. This solves your concern, and is the major difference 
relative to all of the foreign! proposals.,
I don't know whether /else is the right name for that option, but 
at least it's short.
Steeve
9-Jan-2009
[3299]
Load/foreign ?
BrianH
9-Jan-2009
[3300x4]
More like load/on-error.
It would require you to provide a handler, or perhaps a word that 
denotes a stock handling strategy.
Like load/on-error "10,000,000.00" 'string.
Or 'skip.
Steeve
9-Jan-2009
[3304]
by defaut it  should be a string conversion with a charset or a string 
with delimiters
BrianH
9-Jan-2009
[3305x2]
By default, it will be an error. The default will be when the /on-error 
option is not used.
Otherwise you will be *required* to specify a strategy for dealing 
with the data, perhaps as a function or code block if you like.
Steeve
9-Jan-2009
[3307]
you know what i mean, i'm talking about a default conversion when 
the option is selected
BrianH
9-Jan-2009
[3308x2]
There will be no default - the parameter will be required.
It's either specify the option or don't.
Steeve
9-Jan-2009
[3310]
like for parse.
default use: parse data none
with specific separators: parse date "..."
BrianH
9-Jan-2009
[3311x2]
You are passing a parameter there - it's not the same thing. If we 
allow a none parameter (which we shouldn't), it should mean 'skip.
However, there should be a 'local parameter for localized numbers 
and dates.
Steeve
9-Jan-2009
[3313x2]
we don't need to skeep, the only skiped chararcters are the separators
*skip
BrianH
9-Jan-2009
[3315x2]
Yeah, you should definitely skip separators. Use load/on-error data 
'skip if you are expecting separators, as REBOL doesn't have them.
Except for whitespace, of course.
Steeve
9-Jan-2009
[3317x2]
see the sqlab code, it's exactly how it should behave
his load-all, we don't need more fonctionnalities
BrianH
9-Jan-2009
[3319x3]
No, that won't work. It will break on nested structures.
The whole point oif LOAD is handling the whole data syntax of REBOL.
oif -> of
Steeve
9-Jan-2009
[3322]
i  talking about the functionnalities not about his implementation
BrianH
9-Jan-2009
[3323]
So am I. That functionality won't work, for reasons Doc most recently 
explained.
Steeve
9-Jan-2009
[3324x2]
we just need a list of separators when a wrong loadable value is 
encountered to continue the loading
reasons Doc exposed are false
BrianH
9-Jan-2009
[3326]
We have a list of separators: Whitespace. Anything else requires 
special handling that will need to be specified. The only problem 
with Doc's comment is not getting that part of the LOAD/else proposal.
Steeve
9-Jan-2009
[3327]
anyway if your objective is to build a mezzanine it's useless, it 
will be slow, i will continue with my own pre-parsing process
BrianH
9-Jan-2009
[3328x2]
LOAD is a mezzanine, but it calls natives. My goal is to make LOAD 
useful.
Please contine to do your preparsing. I was doing this on btiffin's 
suggestion, and he seems to be afraid of PARSE :)
btiffin
9-Jan-2009
[3330]
Umm, yes and no on the fear.  Yes fear kept me from holding a lecture 
on the subject, but I usually PARSE from reading the pretty print 
code.  That's how my locate utility works.  But I'm not concerned 
with us.  I'm concerned with construction bosses and non-tech professors 
having access to a programming language and learning maybe one or 
two tricks a week.  I'm also on the side of the gurus in terms of 
correctness and concise coding, but I'd like to see REBOL ,the system, 
that out of the box would be a robust battle tank.


Add taint to the fuel, it would still function; perhaps not gracefully, 
but the big guns would still fire.  Today, the slighest spoonful 
of sugar and our tank dies on the field, no movement, no guns.


foreign! and Steeve's suggestion of scan till whitespace (and yes, 
some source code would load as almost all completely foreign! gibberish 
if a quote was out of place, but so, we can take that and fix it). 
 But at least REBOL wouldn't die; the data/code would be loaded and 
inspectable.  And yes, this could lead to the odd rare catastrophic 
failure, but we get that potential with "clean" datatype! scripts 
too.  I think the slight increased risk is worth the new group of 
users this could attract.
BrianH
9-Jan-2009
[3331]
Sorry if I misrepresented your position Brian, I was trying to be 
humorous. I've just put in a request to tweak TRANSCODE's handling 
of commas. If that request goes through, I will be able to add the 
/else option to LOAD. With a few more tweaks I can increase the speed, 
make more of the process native, etc. This is not preventing REBOL 
from dying - it is just allowing you to provide a defibrillator :)
[unknown: 5]
9-Jan-2009
[3332x2]
In case you wondered about the origin of CTRL-ALT-DELETE - this is 
actually kinda funny http://www.flixxy.com/computer-history-ctrl-alt-del.htm
There will be everywhere soon - the revolution of the TIRE http://www.flixxy.com/car-tire-technology.htm
btiffin
9-Jan-2009
[3334]
Oh Brian.   I take few thingsseriously ... well, except my belief 
systems.  ;)   Me too, I forgot the smiley after ... pretty print 
code.


And Yayy.   Now if this can be out-of-the-box REBOL for linguistic 
profs and science types  ... woohoo!
Pekr
9-Jan-2009
[3335]
btiffin - did you read R3 'transcode description? It seems to have 
relaxed execution, returning error as an arror. Not sure it would 
be what you want, but maybe? http://www.rebol.net/wiki/Transcode
BrianH
9-Jan-2009
[3336x3]
Actually, that is exactly what we need. One problem though:

>> transcode "a,"
== [make error! [
        code: 200
        type: 'Syntax
        id: 'invalid
        arg1: "word"
        arg2: "a,"
        arg3: none
        near: "(line 1) a,"
        where: [transcode]
    ] ""]

I've requested that this be changed to:
>> transcode "a ,"
== [a ","]

putting off the error until the next call. That change would be enough 
to do LOAD/else.
All it would require is to make "," a delimiter in the scanner - 
a trivial change for Carl.
Sorry, two messages back: "a ," -> "a,"