REBOL 3.0

Comments on: Interesting insights from PROTECT

Carl Sassenrath, CTO
REBOL Technologies
4-Apr-2009 18:39 GMT

Article #0187
Main page || Index || Prior Article [0186] || Next Article [0188] || 1 Comments || Send feedback

Here's an interesting topic to chat about with your close friends around the fireplace this evening... (does anyone still do that, or is it just Facebook now?)

As I mentioned in my last blog, the protect function has been enhanced to allow it to make any series or object read-only. It's part of R3-A43. (The details are in protect function in the R3 Doc wiki.)

Now, things can get interesting if you do these lines:

protect 'system
protect system
protect/deep system

The first line just protects the system word itself. No big deal.

system: none
** Script error: protected variable - cannot modify: system

So, that's a good thing.

The second line protects the variables of the system object:

system/version: 1.2.3
** Script error: protected variable - cannot modify: version

Now things are getting interesting. Kind of useful, no?

However, it does create this interesting situation:

chat
Fetching chat...
** Script error: protected variable - cannot modify: script

This happens because the system/script object is updated by do when the chat program is downloaded from the remote web site.

So, we still have some work to do... mainly, to define the true meanings of fields and access policies of the system object.

Now, for that last line...

protect/deep system

In theory, this write-protects every series in the system. I say "in theory" because yet to be fully tested.

At first I figured the system would crash. But, I was pleased to discover it still worked fairly well:

do load %hello.r  ; work around system/script issue
hello world!

But, we know that any mezzanine function that holds writable statically defined local data will be a problem. I'm sure it wouldn't take you long to find a function that blows out with a protection error.

But, there's quite a positive side to this experiment... the better we get it working (the fewer the errors) the closer we are to being able to share these definitions between multiple tasks. It's a necessary pre-qualifier for multitasking (or "threading", if you want to call it that, but not really, more like lean-tasks.)

Ok, so tonight, enjoy the fire, your friends, and the lively conversation starter I've given you here, in this blog.

1 Comments

Comments:

Paul
5-Apr-2009 8:01:11
Hopefully, it will be possible to get a return off all protected values. Maybe get-all-protected function.

Post a Comment:

You can post a comment here. Keep it on-topic.

Name:

Blog id:

R3-0187


Comment:


 Note: HTML tags allowed for: b i u li ol ul font span div a p br pre tt blockquote
 
 

This is a technical blog related to the above topic. We reserve the right to remove comments that are off-topic, irrelevant links, advertisements, spams, personal attacks, politics, religion, etc.

REBOL 3.0
Updated 23-Apr-2024 - Edit - Copyright REBOL Technologies - REBOL.net