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

World: r3wp

[Core] Discuss core issues

ChristianE
20-Jan-2010
[15499]
Everytime I'm writing (slow, but short) code like 

	>> unique append series 'value

or (very fast, but wordy)
 
	>> any [find series value insert series value]
	>> unless find changes 'weight [insert changes 'weight]


I'm wondering whether there's a nicer way to insert a value into 
a series only if it isn't in there yet. Something in the same line 
as ALTER.

This just reeks like the perfect situation for some Guru O'Brian 
or Gabriele D'Enciclopedia to point out that there's already a REBOL 
native which provides exactly that functionality ;-)


On a unrelated side note, I'm wondering if ALTER is missing an /ONLY 
refinement, too:

	>> alter series: [] [1 2] series
	== [1 2]
	>> alter/only series: [] [1 2] series
	** Script Error: alter has no refinement called only
	** Near: alter/only series: [] [1 2] series


Would that be worth adding to R3, I'm thinking about ticketing it 
as a wish in CureCode?
Pekr
20-Jan-2010
[15500]
insert/not-found would be nice :-)
Maxim
20-Jan-2010
[15501]
I've written such a function often.  its much more usefull than ALTER 
in my use... I'
ChristianE
20-Jan-2010
[15502]
I guess additional refinements to a function as fundamental as INSERT 
are a no-go for performance reasons. Probably ALTER/INSERT or ALTER/ONCE 
though:

	>> alter/once [] flag
	== [flag]
	>> alter/once [flag] flag
	== [flag]


See the dance REBOL/View's FLAG-FACE is doing to achieve something 
like that (and a little bit more):

	flag-face: func [
	    "Sets a flag in a VID face."
	    face [object!]
	    'flag
	][
	    if none? face/flags [face/flags: copy [flags]]

     if not find face/flags 'flags [face/flags: copy face/flags insert 
     face/flags 'flags]
	    append face/flags flag
	]
Steeve
20-Jan-2010
[15503]
Agree, ALTER is definitivly useless.

Not the first time someone is asking to change ALTER in a better 
usefull behavior.
Maxim
20-Jan-2010
[15504]
Carl uses ALTER in a few scenarios, for as a toggle mechanism.
Steeve
20-Jan-2010
[15505]
Only him uses that, I guess...
ChristianE
20-Jan-2010
[15506]
Yes, from a logical perspective ALTER behaves like XOR, where often 
one only really needs an equivalent of OR.
Maxim
20-Jan-2010
[15507]
I'd call the function include... and it could work on strings too, 
doing a find
Steeve
20-Jan-2010
[15508]
once
 is good too, it's short, I like shorties
ChristianE
20-Jan-2010
[15509]
INCLUDE in R3 is not a global word, in the code im currently writing

	>> include package/changes 'weight


reads very nice. Sadly, it's signature wouldn't be compatible with 
EXCLUDE, which only allows series and sets as it's second argument. 

The two refinements /INCLUDE and /EXCLUDE though would make ALTER 
more usefull.
Steeve
20-Jan-2010
[15510]
I am more in favor of finding a short name, it's a very common idiom.
ChristianE
20-Jan-2010
[15511]
Yeah, it is a common idiom. But some symmetry to REMOVE FIND FLAGS 
FLAG would be nice, and I don't expect Carl or anyone to be willing 
to replace REMOVE FIND by another native or mezzanine. That wouldn't 
be worth it.

For now, I've decided to go with 

	>> union package/changes [weight]
	>> exclude package/changes [address]

since speed is really nothing to worry about in my case now.
Gregg
21-Jan-2010
[15512x2]
I thought ALTER was going to go away in R3, because nobody uses it. 


As an example of a func that operates conditionally, it's nice, but 
I can't remember ever *needing* it.
I would still like to set up metrics to see what funcs are used most, 
for both development and production (i.e. profiling), and set up 
a rating system. There have been some ad hoc analyzers in the past, 
but no reference system.

Yes, Graham, I know. I should just do it. :-)
Graham
21-Jan-2010
[15514]
I wasn't going to say anything ...  my interest in r3 development 
is rapidly waning ...
Pekr
21-Jan-2010
[15515]
Graham - we should stick it into REBOL3 channels and post to Carl 
via all possible channels. R3 "developments" once again completly 
sucks...
Graham
21-Jan-2010
[15516]
The lack of carry thru from Carl just totally sucks ... and is extremely 
disincentivizing
Henrik
21-Jan-2010
[15517]
Carl posted a bug in curecode today, so I guess he's back to R3 coding.
Janko
21-Jan-2010
[15518x2]
---

ok.. moving here from !REBOL3 talking about a sandoxed execution 
option and option to somehow separate native Rebol pure and unpure 
functions
for example you know join will just "calculate" result and you can't 
screw up anything existing with it... where append can , or set can 
even more
Graham
21-Jan-2010
[15520x2]
well, you can scan the incoming function and disallow 'set
or create a safe dialect that looks like rebol ...
Janko
21-Jan-2010
[15522x2]
I will give another example where I claim doing a dialect for it 
all is useless option. So you have a rebol server that holds a big 
block of users in ram you send it 2 functions a filter >> function 
[ U ] [ all [ greater? U/age 20 lesser U/age 30 equal? U/gender 'female 
] << and a mapping function >> function [ U ] [ uppercase rejoin 
[ U/name " " U/surname ] ] << server will accept the code and collect 
items where first returns true then process them vith mapping function 
join them with reducing >> function [ U ACC ] [ rejoin [ ACC ", " 
U ]<<  function and return the result.
- the point here being that all functions used rejoin greater? equal? 
lesser? uppercase? are pure functions and can't screw up anything 
whatsoever

- second point is that to do this via dialect you would have to recreate 
whole rebol in rebol which is very very suboptimal (why do we have 
an interpreted lang then??)

- so if you could sandbox execution of functions , for example by 
only allowing pure rebol functions this would be solved
Graham
21-Jan-2010
[15524]
No you don't ... only one person has to do it and shares it with 
everyone else.  Thank you very much.
BrianH
21-Jan-2010
[15525]
You can't really sandbox R2, but R3 was designed with that in mind 
so it should be easier.
Janko
21-Jan-2010
[15526x3]
somehow specifying pure functions or limiting their side effects 
is not only good for security but for writing more bug free code. 
If I could say, raise an error if this function that I wrote to just 
calculate something does anything else would be good for writing 
less bugs.
BrianH: yes, I am throwing this into discussion for R3 ..
Graham: I don't know what you meant with that scentence. If I came 
out as arrogant or attacking you in my writing above, I can say I 
*really* didn't mean it. I am just trying to get my message accross, 
which I am not so good at since english is not my native lang, it's 
1:25 in the night here and I am a little nerwous since I told someone 
I will finish something before tomorrow and I am chatting here instead 
of doing it :)
BrianH
21-Jan-2010
[15529x2]
You don't have to limit to pure functions if you limit access to 
data. Even modifying functions are OK if they only work on legit 
data.
That's the difference between sandboxing and going side-effect-free.
Janko
21-Jan-2010
[15531x2]
yes, that would be even 10x better :) if runtime could wrap something 
and not allow it mess anything whaterver it calls!
so you are saying something like this could be possible in R3.. well 
you have my and Sunanda's vote for that :) (we talked in !REBOL3 
earlyer)
Graham
21-Jan-2010
[15533]
I'm saying that if you create a safe dialect that people can use 
for sending functions across the network in r2 .. well, great ... 
we can all use it.
Janko
21-Jan-2010
[15534x2]
aha, but wouldn't that be recreating rebol in rebol. and chance is 
that that rebol will behave a little different than normal rebol 
in some edge cases
I understand you otherwise, if runtime doesn't allow 100% safe execution 
then this is the only way, I am just saying it would be cool if it 
would allow it
BrianH
21-Jan-2010
[15536]
Well, in R3 we don't have pointers or pointer arithmetic, you can't 
just reference arbitrary memory, all data has to be either literal 
or returned from a function. Words aren't bound by default, they 
are bound by the LOAD and DO mezzanine code, which can easily be 
replaced for your sandboxed code. The code can run in an isolated 
module with careful control of its imports.
Graham
21-Jan-2010
[15537x3]
I'd like users to construct their own sql as well and send it to 
the server ... but I don't
If I new enough about sql .. I could scan their query and check for 
safety
new = knew
BrianH
21-Jan-2010
[15540]
We also have execution limits in R3 (which will be improved). There 
are no such limits in R2, so your sandboxed dialect would need to 
be staticly determinable if you want to avoid endless loops.
Graham
21-Jan-2010
[15541x2]
There's a web demo of R3 ... .
I think he checks for execution time before killing endless loops 
...
BrianH
21-Jan-2010
[15543]
A sandboxed dialect in R2 would be slower because of the overloaded 
ordinals.
Janko
21-Jan-2010
[15544]
sql can't redefine itself so you could with analysis somewhat surelly 
test if select is really just select, but there are some border cases 
with string escaping specific to certain databases that's why it's 
really hard to prevent sql injections manually (or so they say)
BrianH
21-Jan-2010
[15545]
You would have to replace them with mezzanine code.
Janko
21-Jan-2010
[15546]
BrianH: yes, I saw that .. that is very nice also in such cases
BrianH
21-Jan-2010
[15547]
2.7.7 would be easier to sandbox since R2/Forward did half the work.
Janko
21-Jan-2010
[15548]
Maybe something related .. why google is using Lua : 

http://google-opensource.blogspot.com/2010/01/love-for-luajit.html
http://article.gmane.org/gmane.comp.lang.lua.general/62321

>>Our Lua usage isn't too widespread at the moment; it's really one
infrastructure project in particular that uses Lua to allow

user-defined functions to run within a tightly controlled container.

Lua was the best choice, because of its low overhead, fast execution,
and the ability to set limits on execution time.<<