<div class="gmail_quote">On Tue, Jun 29, 2010 at 1:00 AM, Faré <span dir="ltr"><<a href="mailto:fahree@gmail.com">fahree@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

>>: Faré<br>
>: Vsevolod Dyomkin<br>
> Dear<br>
<div class="im"><br>
>> If I may suggest a simpler, cheaper and more useful strategy for<br>
>> helping with the version management of Lisp software, it would be to<br>
>> automatically produce Debian, RPM or Nix packages from ASDF<br>
>> specifications, and let those tools do the rest of the integration.<br>
>><br>
</div>I reiterate my suggestion.<br></blockquote><div><br>Sorry, I've forgotten to address that.  I agree, that supporting full Debian/RPM style versioning is better.  I'm not currently familiar enough with that, so I will be thankful, if you point me to some good resource.<br>

 </div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="im"><br>
>> Why only three integers? While you're at it, why not accept the whole<br>
>> range of Debian or RPM version comparisons?<br>
><br>
> Actually, the number of integers is not limited, it's just that this is the<br>
> default practice and currently available predicates only take into account<br>
> the first two.  So the internal representation is a list of integers.  But<br>
> the user can specify versions in many different formats, like "1.2.3" or<br>
> even 1.2 (float number).  Moreover it's possible to build adapters for more<br>
> representations by defining methods for the generic function PROPER-VERSION.<br>
><br>
</div>Once again, it would be better if you just agreed to the de facto "standard"<br>
of either Debian or RPM versioning. But once again, I think this code should<br>
NOT be part of ASDF.<br>
<div class="im"><br>
> To clarify my point: there are cases of libraries, that use the read-eval<br>
> syntax in version definitions, most notable of which are Edi Weitz's and<br>
> Cyrus Harmon's.  I agree here with Robert Goldman, that this is a little<br>
> contrary to the declarative nature of DEFSYSTEM form.  Still it is not a<br>
> problem with neither the existing, nor the proposed variants.  It's just<br>
> that in the FIND-SYSTEM pipeline such version declarations (or rather<br>
> evaluations) won't be counted (i.e. considered equal to wildcard version).<br>
> But during the evaluation of DEFSYSTEM form itself the version would be<br>
> properly evaluated.  So this peculiarity will effect the new behavior, but<br>
> not the old, that is why I don't consider it a problem: if someone would<br>
> like to use the new behavior, he is free to adapt his code, otherwise he can<br>
> leave it as is and no problems would arise.<br>
><br>
</div>That I agree with. We should be sure to provide a simple incremental upgrade<br>
path from where we are to wherever we go.<br>
<div><br>
>> > Besides, an incompatible change is introduced to FIND-SYSTEM.  The<br>
>> > ERROR-P<br>
>> > optional argument is removed, so plain NIL is unconditionally returned,<br>
>> > when<br>
>> > system is not found, and VERSION and VERSION-P optional arguments are<br>
>> > added<br>
>> > instead.<br>
>> This sounds very bad to me. What is the use case?<br></div></blockquote><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="im">


><br>
> The use case is that we can now (oos 'load 'system :version "1.2.3") or<br>
> write in defsystem :depends-on (system "1.2.3" :above).  As all those<br>
> user-facing facilities use FIND-SYSTEM as the underlying tool.<br>
> Independently from adding VERSION and VERSION-P I would still argue to<br>
> remove ERROR-P argument, as it adds unnecessary complexity.  There's only<br>
> one place in the original ASDF code (OPERATE), where it's expected and it is<br>
> easily handled in the caller.<br>
><br>
</div>This is not a use case. What is a high-level situation in which a user or<br>
developer may want to use versioning, and why should this situation be<br>
solved using FIND-SYSTEM?<br></blockquote><div><br>Well, when the DEFSYSTEM form is traversed and dependencies are loaded the CURRENT implementation uses FIND-SYSTEM.  That is why I worked with FIND-SYSTEM and not introduced some new construct to deal specifically with versioned dependencies, because it would have duplicated the same code (in case of not versioned ones — call FIND-SYSTEM, in case of versioned — FIND-VERSIONED-SYSTEM?)<br>

 </div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="im"><br>
>> How does that affect<br>
>> the semantics of find-system? Can there now be many instances of a<br>
>> system in the source-registry?<br>
><br>
> The semantics is the following: only zero or one instance of a system with a<br>
> particular name can be in memory (in *defined-systems*) — just like before.<br>
> The current behavior is that if some system is loaded, there's no<br>
> possibility to load the new version.  The new behavior is that, if<br>
> FIND-SYSTEM is forced to load the different version of the system, a<br>
> continuable error is signaled, that informs the user of the situation and<br>
> it's possible either to abort or continue.  If the user continues, the new<br>
> definition is loaded instead of the old.<br>
><br>
</div>That sounds both complex to implement, for little value to a user.<br></blockquote><div><br>It's already implemented, and the complexity you can judge for yourself.<br>Considering the value to the user, you might be right.  At least I'm not in the position to judge.<br>

 </div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="im"><br>
>> Does find-system now have to grovel for<br>
>> *all* these instances, load the .asd files to determine the version<br>
>> and pick the most recent one by default? That's C R A Z Y.<br>
><br>
> Yeah, now SYSDEF-CENTRAL-REGISTRY-SEARCH et al. return a list of found ASD<br>
> files instead of the first one.  Then the most suitable is chosen by these<br>
> criteria:<br>
> * if no version is specified it will be either the one already in memory, or<br>
> the first one in the list<br>
> * if version is specified it will be the one in memory, if<br>
> VERSION-SATISFies, or the first from a list, for which version satisfies<br>
><br>
</div>That's both expensive and backwards incompatible with current API.<br></blockquote><div><br>Yes that's expensive, but it can be mitigated.<br>Considering backwards incompatibility: there's no current API, I mean, those functions are not part of the APIm but auxiliary functions used solely in FIND-SYSTEM.<br>

 </div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>
I propose instead that a completely different API be used, that computes and/or<br>
checks a source-registry from some specification and a database of available<br>
system versions. i.e. layer something on top of ASDF without modifying anything<br>
about ASDF proper.<br></blockquote><div><br>Yes, that is also possible.  It's just that currently ASDF has some half-baked version support and it should be either removed completely (deprecated) or improved up to usable state.  I mean, that all the versions specified in current defsystem forms are hardly used by any software, that might have wanted to utilize them, and that's because of poor current implementation, I think.<br>

 </div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="im"><br>
>> Note that the current interface of find-system seems to be copied from<br>
>> that of find-class.<br>
><br>
> Hmm, I see.  I still don't support such decision, but maybe I just not<br>
> understand something...<br>
><br>
</div>It's just a matter of backwards compatibility. If we're going to change how<br>
things work, I'd rather we provide a new API and declare the old one obsolete<br>
than break backwards compatibility gratuitously.</blockquote><div><br>Yes, I understand that. Well, actually, that is really not such a big issue, so FIND-SYSTEM can be left with the existing argument set (or, better, VERSION/VERSION-P arguments can be added to the tail of the optional list, which will be backwards compatible).  It was more a suggestion towards a more clear API (and it's possible to change it, as it seems, noone is using the current one :)  But I reiterate, that the issue is not critical at all.<br>

 </div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Also, I'm not convinced by<br>
this :VERSION interface. Version matching is not a local problem to be<br>
solved by adding :VERSION arguments to local function calls, but a global<br>
problem to be approached by collecting (in)equations about available versions,<br>
solving these inequations, and producing a source-registry (possibly pointing<br>
to a single generated link farm) as a solution.</blockquote><div><br>Your solution should also work.  But I believe (and my limited testing has confirmed that), that a local solution is also viable, because all the inequalities in our case boil down to the separate decisions, that can be taken only by the user himself to select, which of the conflicting versions of the system should be present in his image (as there can be only one simultaneously).  And, I think, that in most of the cases, the user will not take a decision actually, but just will be informed of the existing problem with dependencies.  Still, I can imagine some cases, where a decision can be taken: first of all, when it's possible to load a newer system; secondly, in a dynamic environment during experiments.<br>

 </div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="im"><br>
>> I'd rather ASDF has only one test framework, if possible one with few<br>
>> dependencies if at all.<br>
><br>
> I agree.  If there's one already chosen, I'll stick to it.  as I've said,<br>
> when I've started this work, I didn't find any tests, so I used my own<br>
> approach.  By the way MUTEST is dependency-free.<br>
><br>
</div>I haven't looked at MUTEST yet. I'll have to do it soon. If you're willing<br>
to migrate all existing tests to it -- why not.<br></blockquote><div><br>I will look at it.  I think, first of all, it depends on the question, whether I will need to do something with the current tests for versioning (i.e. will the be a need to integrate that piece of code into ASDF)...<br>

 </div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="im"><br>
[ François-René ÐVB Rideau | Reflection&Cybernethics | <a href="http://fare.tunes.org" target="_blank">http://fare.tunes.org</a> ]<br>
</div>I once dreamt that children would be taught to not accept slogans on face<br>
value, but to see through words and look for meaning or lack thereof. However,<br>
I soon realized that by the time schools teach this piece of wisdom, it may<br>
have itself become a slogan devoid of meaning, the sense of its words having<br>
drifted or been otherwise corrupted by time and vice. You need more than dead<br>
words to have people think by themselves; you need a living tradition.<br>
</blockquote></div><br><br clear="all"><br>-- <br>vsevolod<br>