[squeak-dev] Re: .mcd to .mcz (urgent)

Eliot Miranda eliot.miranda at gmail.com
Thu Oct 9 02:54:42 UTC 2014


On Wed, Oct 8, 2014 at 6:20 PM, Chris Muller <ma.chris.m at gmail.com> wrote:

> On Wed, Oct 8, 2014 at 8:05 PM, Eliot Miranda <eliot.miranda at gmail.com>
> wrote:
> >
> >
> > On Wed, Oct 8, 2014 at 5:59 PM, Chris Muller <asqueaker at gmail.com>
> wrote:
> >>
> >> Hi, I'm sure it would help to understand the broader context of why
> >> the .mcd doesn't meet your needs.  I assume you must have some
> >> external (non-Smalltalk) tool unzipping the mcz to get at the
> >> contents?  Because if you were only accessing via the MCRepository
> >> API's then mcd shouldn't matter.
> >
> >
> >  The Spur bootstrap depends on being able to generate patched files.  I
> > could, had I known the syetem better, have produced those patches as
> mcd's,
> > but have produced them as .mczs.
>
> Okay, but when you generate those patched mcd's, they are still based
> off the prior version, so I'm still having trouble understanding why
> Spur bootstrap would have any trouble reading a mcd..
>

I don't generate patches mcds.  I generate patched mczs.  The issue is that
some versions are only available as mcds and need to be cnverted into mczs
before they can be patched.  An annoying associated issue is that the query
available version interface blurs the distinction between mczs and mcds so
if you ask for an mcz and the repository has an mcd it'll tell you it has
the version but it doesn't.  It only has the mcd.  Further there's no
convenient way to get the mcz form the mcd.  Thats why I had to write the
below, that constructs the full mcz form the mcd.



>
> >IMO mcd is a premature optimization,
> > saving a littel bit
> >
> >> I think you're on the right track with the
> >>
> >>    cacheRepo storeVersion: (repo versionNamed: versionName).
> >>
> >> approach, because that lets the Repository "do its job" the way it
> >> wants or needs to, able to assume its users would only care about the
> >> objects returned, not its private, internal storage format.
> >
> > There really should be an "If I say store a version I mean it" API that
> > means that diffy versions can be stored.  It's a PITA not having this.
>
> It's an internal format that's supposed to be invisible to users of
> Repository's.  I think exposing it could create PITA's..
>

mcd is *not* an internal format.  If one interacts with repositories and
asks for mczs one gets given mcds if these are what's available.  It would
be *great* if they were an internal format but I assure you they're not.


>
> >> There is a 'alwaysStoreDiffs' option for every Repository, so it might
> >> help to make sure that's turned off on your CacheRepository.  But I
> >> know that's not what you want if the incoming is _already_ a mcd,
> >> because you want a 'alwaysStoreFull', but I'm not sure why..
> >
> >
> > Um, the cache repository's value is indeed false (actually nil, which
> > defaults to false).  But the storeVersion code doesn't pay attention to
> that
> > flag.
>
> Yes it does, it calls #prepareVersionForStorage: which checks it.  As
> I said, it won't convert a mcd to a mcz, it will only convert a mcz to
> a mcd, which Spur should be able to read just fine assuming the
> ancestor of the patched package is available in a repository...?
>

Did you see my comment below re basicStoreVersion: ?  Prepare version for
storage will arrange to store a diffy version from a full version, but it
*won't* arrange to store a full version from a diffy version.  But later on
MCCacheRepository >>basicStoreVersion: refuses to store anything anyway.  I
wouldn't have written the below if mcd's weren't a problem.  I'm not a
masochist ;-)


>> On Wed, Oct 8, 2014 at 7:37 PM, Eliot Miranda <eliot.miranda at gmail.com>
> >> wrote:
> >> > OK here's what I came up with, and it's not pretty.  But it is useful.
> >> > Should this be included in MCCacheRepository or MCFileBasedRepository
> as
> >> > a
> >> > general facility?  IMO, yes, to have some poor soul going down this
> same
> >> > route.  But I want to canvas opinion first.  Nte that one wpould think
> >> > all
> >> > one had to do was
> >> >
> >> > cacheRepo storeVersion: (repo versionNamed: versionName).
> >> >
> >> > but MCCacheRepository defeats that simple route with
> >> >
> >> > MCCacheRepository >>basicStoreVersion: aVersion
> >> > (aVersion isCacheable not or: [self allFileNames includes: aVersion
> >> > fileName])
> >> > ifFalse: [super basicStoreVersion: aVersion]
> >> >
> >> > So that leaves the brute-force:
> >> >
> >> > cachedNonDiffyVersionNamed: versionName from: repo
> >> > "Make sure that the cache contains a non-diffy version of versionName
> >> > and
> >> > answer it."
> >> > | cacheRepo |
> >> > self assert: (versionName endsWith: '.mcz').
> >> > cacheRepo := MCCacheRepository default.
> >> > "Make sure that at least the diffy (.mcd) version is present"
> >> > (cacheRepo directory includesKey: versionName) ifFalse:
> >> > [cacheRepo storeVersion: (repo versionNamed: versionName)].
> >> > "if after storeVersion there's still no .mcz we need to create one;
> >> > sigh..."
> >> > (cacheRepo directory includesKey: versionName) ifFalse:
> >> > [| baseName diffyVersionName diffyVersion file delete |
> >> > baseName := versionName allButLast: 4. "strip .mcz"
> >> > diffyVersionName := cacheRepo directory fileNames detect: [:fn| (fn
> >> > endsWith: '.mcd') and: [(fn copyUpTo: $() = baseName]].
> >> > diffyVersion := cacheRepo versionNamed: diffyVersionName.
> >> > file := cacheRepo directory newFileNamed: versionName.
> >> > delete := false.
> >> > [file binary.
> >> >  [MCMczWriter fileOut: diffyVersion on: file]
> >> > on: Error
> >> > do: [:ex|
> >> > delete := true. "don't leave half-formed .mcz files around to screw
> >> > things
> >> > up later on..."
> >> > ex pass]]
> >> > ensure:
> >> > [file close.
> >> > delete ifTrue:
> >> > [cacheRepo directory deleteFileNamed: versionName]].
> >> > "now delete the damn diffy version that caused all the pain in the
> first
> >> > place"
> >> > delete ifFalse:
> >> > [cacheRepo directory deleteFileNamed: diffyVersionName].
> >> > cacheRepo cacheAllFilenames].
> >> > ^cacheRepo versionNamed: versionName
> >> >
> >> > On Wed, Oct 8, 2014 at 4:12 PM, Eliot Miranda <
> eliot.miranda at gmail.com>
> >> > wrote:
> >> >>
> >> >> Hi All,
> >> >>
> >> >>     so *how* do I ensure I have a .mcz when there appears to only be
> a
> >> >> .mcd?  I'm talking about trying to get 'Kernel-ul.875.mcz' from trunk
> >> >> when
> >> >> Kernel-ul.875(eem.872).mcd appears to be on offer.  If I try
> >> >>
> >> >> MCCacheRepository default storeVersion: (trunk versionNamed:
> >> >> 'Kernel-ul.875.mcz') I *do not* get a 'Kernel-ul.875.mcz' in my cache
> >> >> repository.  I'm f*&^%d until I can get this working.  help, please!
> >> >>
> >> >> --
> >> >> best,
> >> >> Eliot
> >> >
> >> >
> >> >
> >> >
> >> > --
> >> > best,
> >> > Eliot
> >> >
> >> >
> >> >
> >>
> >
> >
> >
> > --
> > best,
> > Eliot
>



-- 
best,
Eliot
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.squeakfoundation.org/pipermail/squeak-dev/attachments/20141008/144ebd64/attachment.htm


More information about the Squeak-dev mailing list