New Developments in Store
After a few interesting hiccups with his slides, Alan proceeded to talk about Store futures:

The topics: Shadow Compilation, updated Merge Tool, Glorp as a Store back end, Projects and Streams, and Internationalization (for Store).
Shadow Compiling: motivated by partial code loading - i.e., errors that occur while the code is loading from Store. Source loading involves filing in code from the repository, which can lead to file-in load ordering issues. For instance: you are loading a new version of the Oracle Database Connect while using the Oracle Database Connect as your repository connection.
Parcels obviate these issues by installing code after all the code has been read. Parcels also supports the loading of code that cannot be fully installed (but will be if/when the pre-requisites for it are loaded). Store loading works in one of two ways: Source (like file-in), Binary (like parcel loading). Source loading does handle unloadable definitions better than filing in. Binary loading does not.
So Shadow Compilation: like file-in, compiles source. Like binary, defers installation (loads into a shadow namespace). From the user's point of view, it's an atomic load. This stuff will be included in 7.5, but will not be turned on by default. It's essentially preview (beta). To turn it on:
Store.Bundle useShadowLoader: true.
There will be an option in settings for that.
This next part is mostly demo, of the new merge tool that's been done. It's a much nicer tool now - you'll just have to look at it when 7.5 ships.
Store For Glorp: a Glorp back end for Store. It adds an actual object model to Store. In the process it improves performance, makes for better queries, and supports schema modifications (at present, this is hard). This is in preview now, but a number of people are using it (including Cincom engineers). Features:
- Replication/Auti-Replication
- Publish
- Load
- Compare
- Merge
- Repository Crawler
- Browse Class Versions
- Store Worksbook - a workspace of useful Store expressions
- Auto-reconcile
Projects and Streams: Addresses "configuration management" issues in Store. Very early stage, design level work. We do want feedback.
Projects:
- Higher level code organization
- Tools aspect of that
- Code management aspect of that
We want projects to be partially loadable, aware of deployment and non-Smalltalk artifacts. We also want to support explicit branching. Streams more or less means a series of versions with branching supported. To do that now, you have to go by naming convention. Streams will allow something akin to Envy "open editions".
Technorati Tags: smalltalk, cincom smalltalk, users conference


Comments
Handling of Dependencies
[Runar Jordahl] December 7, 2006 2:18:36.152
It’s great to hear you are improving Store. Especially configuration management would be very useful. Right now every project seems to have their own method to do this.At the same time, I miss plans for improving handling of dependencies between components. As a start, I would like to see some definition of what makes up a reusable component. Is it a package or a bundle? When this is decided, the code Cincom ships should be partitioned into of such components. VisualAge had this from day one. "Application" isthe component, and all applications eventually end up referring (depending on) application Kernel. We also need tools in Store to handle the dependencies. One example from the Java world is CodePro AnalytiX (http://www.instantiations.com/codepro/feature/dependencies.html).