<div dir="ltr"><div dir="ltr">Hi Levente,<br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, Mar 31, 2020 at 7:38 PM Levente Uzonyi <<a href="mailto:leves@caesar.elte.hu">leves@caesar.elte.hu</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">Hi Eliot,<br>
<br>
On Tue, 31 Mar 2020, Eliot Miranda wrote:<br>
<br>
> Hi Levente,<br>
> <br>
> On Tue, Mar 31, 2020 at 3:33 PM Levente Uzonyi <<a href="mailto:leves@caesar.elte.hu" target="_blank">leves@caesar.elte.hu</a>> wrote:<br>
>       Hi Eliot,<br>
><br>
>       On Mon, 30 Mar 2020, Eliot Miranda wrote:<br>
><br>
>       > Hi Levente,<br>
>       ><br>
>       >> On Mar 30, 2020, at 2:21 PM, Levente Uzonyi <<a href="mailto:leves@caesar.elte.hu" target="_blank">leves@caesar.elte.hu</a>> wrote:<br>
>       >><br>
>       >> Hi Eliot,<br>
>       >><br>
>       >>> On Mon, 30 Mar 2020, Eliot Miranda wrote:<br>
>       >>><br>
>       >>> Well, that's not what I meant by a search.  However, as Levente pointed out, textual searches should be surrounded with CurrentReadOlySouceFiles cacheDuring:.  I think this is an awful implementation and would<br>
>       implement it<br>
>       >>> very differently but that's the work-around we have in place now,<br>
>       >><br>
>       >> How would you implement it?<br>
>       >><br>
>       >> <history><br>
>       >> When I introduced CurrentReadOnlySourceFiles, I wanted to solve the issue of concurrent access to the source files.<br>
>       >> I had the following options:<br>
>       >> 1) controlled access to a shared resource (a single read-only copy of the SourceFiles array) with e.g. a Monitor<br>
>       >> 2) same as 1) but with multiple copies pooled<br>
>       >> 3) exceptions to define the scope and lifetime of the resources (the read-only copies) within a process<br>
>       >><br>
>       >> I chose the third option because it was possible to introduce it without exploring and rewriting existing users: you could leave all code as-is<br>
>       >> and sprinke CurrentReadOnlySourceFiles cacheDuring: [ ... ] around code that needed better performance.<br>
>       >> It's obviously not a perfect solution, but I still think it was the best available at the time.<br>
>       >><br>
>       >> Later ProcessLocalVariables were added to Trunk. Which could be used to solve the concurrent access issue by using process-local copies of the source files. The only challenge is to release them after they are<br>
>       not needed any more. Perhaps a high priority process could do that after a few minutes of inactivity. Or we could just let them linger and see if they cause any problems.<br>
>       >> </history><br>
>       ><br>
>       > I think the key issue (& this from a discussion here with Bert) is access time source in the debugger while one is debugging file access.  As the debugger asks for source so the file pointer is moved and hence<br>
>       screws up the access one is trying to debug.<br>
><br>
>       I don't think that's the only issue. Have a look at the senders of<br>
>       #readOnlyCopy. Many of them were added 10+ years ago, well before<br>
>       CurrentReadOnlySourceFiles was introduced. Most of those could use<br>
>       CurrentReadOnlySourceFiles too but are unrelated to the debugger.<br>
> <br>
> <br>
> Yes, but IIRC that issue was to separate the writable file from the read-only file.  I remember dealing with this when working on Newspeak in 2007/2008. So SourceFiles can easily maintain a writable file and a read-only copy<br>
> of the file for both sources and changes and do writes through the writable one.<br>
> <br>
><br>
>       ><br>
>       > So I would provide something like<br>
>       >   SourceFiles withSubstituteCopiesWhile: aBlock<br>
>       > which would install either copies of the files or read-only copies of the files for the duration of the block, and have the debugger use the method around its access to method source.<br>
>       ><br>
>       > The IDE is essentially single threaded as far as code modification goes, even if this isn’t enforced. There is no serialization on adding/removing methods and concurrent access can corrupt method dictionaries,<br>
>       and that limitation is fine in practice.  So having the same restriction on source file access is fine too (and in fact I think the restriction already applies; if one were to fork compiles then source update to<br>
>       the changes file could get corrupted too).<br>
>       ><br>
>       > So I think not using read-only copies to read source, and having the debugger use copies for its access would be a good lightweight solution.<br>
><br>
>       I agree with what you wrote about method changes, but reading the sources<br>
>       concurrently is still a possibility, especially when multiple UI processes<br>
>       can exist at the same time (e.g. that's what opening a debugger does,<br>
>       right?).<br>
> <br>
> <br>
> My assertion is that the IDE is essentially single0-threaded and this doesn't;t have to be supported.  In any case, concurrent access will work if processes of the same priority level are cooperating.  But I just answered the<br>
> debugger issue.  I'm assuming that the debugger guards all its source access by substituting a different file.  So it, and only it, accesses the sources files through copies, and it, and only it pays the cost for substituting<br>
> the copies.  Normal queries can use a single read-only copy.  That gives us the functionality of cacheDuring: without having to invoke it.<br>
<br>
The IDE is single-threaded but source files may be read outside the <br>
context of the IDE.<br></blockquote><div><br></div><div>Can you give me a for instance.  I simply don't believe you.  And even its it's true I don't see that it has to be supported.  Please don't be vague.  This is important.</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">> <br>
> <br>
> So let me reiterate.<br>
> <br>
> SourceFiles is modified to have a single writable version of the changes file and a single read-only version of sources nd changes files.  Source code is read through the readable copy and new source written through the<br>
> writable copy.  Whenever the debugger accesses source it does so through a method that first saves the files, substitutes copies in SourcesFiles, evaluates its block (that will access source through the copies), and then<br>
> ensures that the original files are restored.  There can be error checking for writing to the changes file in the debugger while writes are in progress to the original writable changes file, although I'm not sure this is<br>
> necessary; folks debugging source file access usually know what they're doing.<br>
> <br>
> The result is that<br>
> - normal source reading does not require creating a read-only copy; it already exists.<br>
<br>
Do you mean that the existence of #readOnlyCopy is satisfactory?.<br></blockquote><div><br></div><div>Yes.</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">
Creating a copy for every single file access is painfully slow.<br></blockquote><div><br></div><div>Exactly.</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">
CurrentReadOnlySourceFiles only exists to remedy that by reusing the same <br>
read-only copy.<br></blockquote><div><br></div><div>I feel like you're not understanding my proposal.  Apologies if I'm presuming.  With my proposal the only time a new copy is created is when the debugger wants to access the source of a method.  That happens on the order of seconds, not microseconds as happens when scanning for source.</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">
<br>
> - the debugger does not interfere with source access because it is careful to use copies and leave the originals undisturbed<br>
<br>
That's exactly what I tried to imply by stating there being no problem <br>
with the debugger before the mass use of read-only copies were introduced.<br></blockquote><div><br></div><div>Can you not see that in any scheme there is the potential for chaos if the debugger is accessing the source as one steps through code of methods that themselves are in the process of accessing source?  And so it is key that the debugger not* perturb the system when it itself accesses source?</div><div><br></div><div>I'm confused.  We seem to be talking past each other.  I feel like you're blocking a reasonable proposal but I don't really understand what your objections are.  I apologize.  I'm not trying to be confrontational, but I do think my proposal is important and has merit and I feel frustrated by you because I can't quite understand why you're against it.  If you can identify a serious flaw I'll happily abandon it.  But I need to understand the flaw first.</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">
<br>
<br>
Levente<br>
<br>
> - CurrentReadOnlySourceFiles and cacheDuring: can be discarded<br>
> <br>
> <br>
> <br>
> <br>
><br>
>       Levente<br>
><br>
>       ><br>
>       >> Levente<br>
>       ><br>
>       > Eliot<br>
> <br>
> <br>
> <br>
> --<br>
> _,,,^..^,,,_<br>
> best, Eliot<br>
> <br>
><br>
</blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="gmail_signature"><div dir="ltr"><div><span style="font-size:small;border-collapse:separate"><div>_,,,^..^,,,_<br></div><div>best, Eliot</div></span></div></div></div></div>