World: r3wp
[!REBOL3]
older newer | first last |
Maxim 21-Apr-2010 [2328] | IMHO: after the host, I think the whole device model will be last thing to get itself fixed, finalized and done. when that occurs, we'll have a beta. |
Pekr 21-Apr-2010 [2329] | http://www.rebol.net/r3blogs/0294.html http://www.rebol.net/r3blogs/0127.html |
BrianH 21-Apr-2010 [2330x2] | Thank, I was about to look for those. |
I've been waiting for READ/as and WRITE/as for a while now, to apply to the clipboard:// scheme. | |
Steeve 21-Apr-2010 [2332] | what i got currently, is this: p: open etcp://my-ip:my-port ;immediate, does not connect write p [verbose debug timeout 20] ; pass a block of commands to change the config of the port write p "echo toto" ; the connection is established then data are sent read p ; one packet is waited and a binary is returned. read/string p ; one packet is waited and a string is returned read/part p crlf ; one or more packets are waited until the breaking rule is matched |
Pekr 21-Apr-2010 [2333] | read/write/as solve just encoding, no? Still not abstracted encoder/decoder solution anyway .... old discussion :-) |
BrianH 21-Apr-2010 [2334] | READ or WRITE /as just solves the encoding problem. Which for the clipboard:// scheme means chosing which one of several encodings is already strored in the clipboard, at least for most modern OSes. |
Pekr 21-Apr-2010 [2335x3] | ah, what? /string and /lines were added? Well, we can't keep to original ideas, probably ... |
IIRC originally we had following specs: read file /part size /skip len | |
In such case, maybe it was better to still have read-io, write-io, and make read and write more higher level. What is the reason to first "prune down" function, and later on give-up, and add other refinements, because the practical merits push us to do so? | |
BrianH 21-Apr-2010 [2338] | I like READ and WRITE being lower-level - it makes the semantic model of ports simpler. R2 tripped over that all the time. |
Steeve 21-Apr-2010 [2339] | That would not be a problem, if we were allowed to add our own parameters and refinement. Because the meaninfulness of a refinement in write or read is depending of the scheme where it's used. We can change the code but not the interface. |
Pekr 21-Apr-2010 [2340x2] | but why /lines and /string were added? |
it does not make them low level anymore. those functions were about reading stream of bytes, not strings ... | |
Steeve 21-Apr-2010 [2342] | because of some complaints with file operations |
BrianH 21-Apr-2010 [2343] | Because they were needed for the main uses of READ and WRITE: Text processing. |
Pekr 21-Apr-2010 [2344x2] | hahaha :-) |
so you talk x hours to me, trying to explain, that R3 broke with R2 almost-everything-is-string attitude, to later on admit, that we gave up on strictly deviding, what 'read/write are supposed to do | |
BrianH 21-Apr-2010 [2346] | Hey, we added support for Unicode text processing right into the language, even including two datatypes specificly for that purpose: string! and char!. |
Pekr 21-Apr-2010 [2347x2] | when was /lines added? I even did not notice it ... even the blog which was supposed to resolve it did not mention anything like that ... |
I thought we got 'split to simulate read/lines? | |
Steeve 21-Apr-2010 [2349] | It's not an exception Pekr, there were changes made in the past without any commercials |
BrianH 21-Apr-2010 [2350] | Alpha 78. |
Pekr 21-Apr-2010 [2351x2] | I think this is all under-engineered - not finished in design. There was never any resolution posted to the topic. And the topic is deep. It reaches even continuous reading and parsing (streaming) and codecs ... |
Current codecs are totally unusable | |
BrianH 21-Apr-2010 [2353] | Agreed. |
Pekr 21-Apr-2010 [2354x2] | I think that Carl will have to think about this single topic for quite some time, to get the design right ... |
The truth is, that while I prefer things being conceptually correct/consistent, I also miss, if we miss on easiness of use of R2 (read/lines, simple tcp open/insert/copy/close sync mode) | |
Steeve 21-Apr-2010 [2356] | probably we need a new FSM dialect, parse is not suited to do that job. We have to do too much hack to simulate a fast and clean state machine. |
BrianH 21-Apr-2010 [2357] | Sounds like a good community project. |
Pekr 21-Apr-2010 [2358x2] | wasn't DELECT meant to be that? Maybe not ... |
btw - will DELECT have any use, when commands will replace it? | |
Henrik 21-Apr-2010 [2360] | could use an FSM dialect. in fact we could use a library of various dialects. |
BrianH 21-Apr-2010 [2361] | You will need to have some way for a block of dialect to be passed to a command-based dialect processor. So some function to take the place of DELECT will be required, even though it won't be compatible with DELECT. |
Pekr 21-Apr-2010 [2362] | so DELECT will become mostly useless, correct? |
BrianH 21-Apr-2010 [2363] | No, fully replaced by something completely different. Which doesn't yet have a name, but might be called DELECT. The existing DELECT will be gone. |
Pekr 21-Apr-2010 [2364] | OK, thanks ... |
Maxim 21-Apr-2010 [2365] | sometimes you have to do stuff to think about even better stuff ;-) |
Gregg 22-Apr-2010 [2366] | Steeve, Gabriele and I (and perhaps others) have written FSM dialects. I think it's a great idea. |
Pekr 26-Apr-2010 [2367] | First bugfixes appearing in CureCode for A98 .... |
Pekr 27-Apr-2010 [2368x2] | Self reflection - http://www.rebol.net/r3blogs/0312.html |
I wonder how the 'self discussion resolves. Brian - Carl just pointed, that the description to #1549 ticket is not clear to him .... there is also new Doc page to it - http://www.rebol.com/r3/docs/concepts/objects-self.html | |
BrianH 27-Apr-2010 [2370] | I'm reading the page. So far it reflects the surface behavior of my proposal, but is less detailed so I can't say for sure. |
Maxim 27-Apr-2010 [2371] | it seems pretty straight forward to me. |
Pekr 28-Apr-2010 [2372] | I would like to more understand the 'self topic :-) (well, maybe I will never be able, but ...) .... what is the difference between: - field - flag (eventually) - and - keyword? Is that the field is a real variable (word), flag would require some internal storage, but is not an user level value/attribute of the context, and keyword is just something like flag known in runtime during execution? But 'self, being a keyword, has to be somewhere stored too, no? :-) |
BrianH 28-Apr-2010 [2373x2] | The word 'self, when a keyword, only has the storage for the word value itself; it doesn't have any associated value slot in the object. A field of an obhect has a value slot in the object. And a flag is internal, probably just one bit somewhere. |
So a keyword only takes up as much space as an unbound word. | |
Pekr 28-Apr-2010 [2375] | so the word 'self keeps pointer to context it is bound to? |
BrianH 28-Apr-2010 [2376x2] | Yeah, but it's a special binding, with just a reference to the context, not to a field. The object doesn't have a 'self field. The 'self keyword is currently just a side-effect of the BIND and IN functions, not something that is really in the object. |
That's why the previous debate about this was so confused - that info wasn't known back then. | |
older newer | first last |