Difference between revisions of "Version Migration"

From Developer Documents
Jump to navigation Jump to search
m
 
(24 intermediate revisions by 4 users not shown)
Line 1: Line 1:
This document addresses the issue how simantics application migrates from one version to the next. The scope includes software and ontology development.
+
This document addresses the issue of how simantics application migrates from one version to the next. The scope includes software and ontology development.
  
 
==Ontology Migration==
 
==Ontology Migration==
An ontology is a compilation of ''concepts'' (=types and relations).  
+
An ontology is a compilation of shared ''concepts'' (=types, relations and instances).  
     http://Layer0-1.0
+
     <nowiki>http://www.simantics.org/Layer0-1.0</nowiki>
        http://Layer0-1.0/ConsistOf
+
         <nowiki>http://www.simantics.org/Layer0-1.0/ConsistOf</nowiki>
         http://Layer0-1.0/DependsOn
+
         <nowiki>http://www.simantics.org/Layer0-1.0/Library</nowiki>
         http://Layer0-1.0/Project
 
        http://Layer0-1.0/Library
 
  
Ontology, Type and Relations are versioned. The version number is visible in the URI.
+
Ontologies are versioned according to the following scheme
    http://Layer0-2.0
 
        http://Layer0-2.0/Collection              <small>(1)</small>
 
        http://Layer0-1.0/ConsistOf                <small>(3)</small>
 
        http://Layer0-1.0/DependsOn                <small>(3)</small>
 
        http://Layer0-2.0/Project                  <small>(2b)</small>
 
        http://Layer0-2.0/Library                  <small>(2a)</small>
 
            Inherits http://Layer0-1.0/Library
 
  
A new version of an ontology is a publication. It is a compilation of new concepts <small>(1)</small>, revisions of concepts from previous ontology version <small>(2)</small>, and a subset of old concepts with old assumptions and old version number <small>(3)</small>. Unused concepts of previous ontology are NOT included in the new.
+
    <nowiki><Ontology URI>-<major version>.<minor version></nowiki>  
  
# New concepts that have never been published before. The first version number is same as the ontology version number.
+
For example
# Old concept is revisioned, it has new assumptions. The version number of concept is the same as the new ontology. There are two types of modifications:
 
#* '''Incremental Modification'''  <small>(2a)</small> It adds restriction and inherits the previous version. Example, new property is added to a type.
 
#* '''Assumption Overriding Modification'''  <small>(2b)</small> An incompatible change to the assumptions. Other than name, there is no retention to the old version. Old and new version do not co-exist in the same publication.
 
# Old concepts that are re-published unmodified. Version number is the number of first publication.
 
  
===Rules:===
+
    <nowiki>http://www.simantics.org/Layer0-1.0</nowiki>
# A new ontology version cannot modify any previously puhlished statement. A new type must be introduced. It inherits old type if it is backwards compatible <small>(2a)</small>.
 
# Dependencies to ontologies from plugins and features should never be open ended. Instead use requirement that is limited to one major version.  
 
  Require-Bundle: org.simantics.layer0;bundle-version="[1.0.0,2.0.0)"
 
  
 +
All shared concepts contained in the ontology are accordingly versioned along with the ontology and the version number is visible in the URI. For ontological concepts we define
 +
 +
* '''versioned URI''' as the proper URI of the resource e.g.  <nowiki>http://www.simantics.org/Layer0-1.0/ConsistsOf</nowiki>
 +
* '''unversioned URI''' where version information is omitted e.g.  <nowiki>http://www.simantics.org/Layer0-0.0/ConsistsOf</nowiki>
 +
 +
Ontologies are deployed as OSGi bundles. Declarations in Simantics software may use the unversioned URI to refer to concepts in the ''latest'' version on an ontology (or the version found from OSGi dependencies). An utility class for converting between '''versioned URI''' and '''unversioned URI''' is defined in class '''org.simantics.scl.reflection.OntologyVersions'''.
 +
 +
Additionally we define
 +
 +
* '''working ontology''' as an ontology bundle which contains the '''latest''' version of the ontology e.g. ''org.simantics.simulation.ontology''
 +
* '''released ontology''' as an ontology bundle which is frozen, renamed and never again changed e.g. ''org.simantics.simulation.ontology-1.1''
 +
 +
The following simple rules for ontology development are defined to enable version migration
 +
 +
===Modelling rules===
 +
 +
# All ontology versions shall be completely self-contained. All concepts are declared in all versions of an ontology.
 +
# There shall be exactly one ontology (L0.Ontology) defined in each ontology bundle.
 +
# The '''Bundle-Name''' of an ontology shall be the unversioned URI of the ontology without the '-0.0' suffix e.g. <nowiki>http://www.simantics.org/Simulation</nowiki>
 +
# The first two digits of the '''Bundle-Version''' of an ontology shall be the ontology version as specified in the ontology URI e.g. '1.2'
 +
# The '''Bundle-SymbolicName''' (bundle id) of a working ontology is unchanged when versions grow (e.g. org.simantics.simulation.ontology)
 +
# The '''Bundle-SymbolicName''' (bundle id) of a frozen ontology is a version-dependent derivative of the id from the working ontology (e.g. org.simantics.simulation.ontology-1.1)
  
 
==Model Migration==
 
==Model Migration==
A project in a database contains models of different features and versions. When a feature is migrated to new version, the software is updated first and then the models (if required).
 
  
'''An example scenario.''' A project was created with DEVS-1.0 feature. Users had installed the project, had used DEVS-1.0 application, and had created DEVS-1.0 models. Now, the project is decided to be updated to the new version DEVS-2.0. Using project management tool, the project admin sets up the database for DEVS-2.0 by installing the new features and ontologies. Then he updates the software to DEVS-2.0 and starts the application. At this point the application and the database are incompatible, as the software demands instances of http://DEVS-2.0/DevsModel and database has http://DEVS-1.0/DevsModels. For each model the admin selects ''Migrate to 2.0''. An action that makes migration modifications to the models. When required the user is consulted.
+
A project in a database contains models of different versions created with different versions of software features.
 +
 
 +
The database can host multiple versions of ontologies which enables old models to exist and to be imported in the database. A typical software feature can only manipulate models defined with the latest versions of some ontologies.
 +
 
 +
Software features can make model migration from models created with previous versions of the software. Each model is ''associated in the database with a single software feature version'', which then can be used to determine the actions needed for migrating models to the latest ontological definitions. The version modelling is defined in '''org.simantics.softwareconfiguration.ontology'''.
 +
 
 +
The user can browse the old and new models contained in the database and perform model migration at will.
 +
 
 +
==Making software releases==
 +
 
 +
A released Simantics feature uses a set of ontologies with specified version numbers. All models associated with a specific software version need access to these ontology versions even after the ontologies have evolved. Thus it is necessary to release and freeze all versions of used ontologies whenever a software is released. Thus the procedure for making a software release includes
  
DEVS-2.0 feature presents an adapter for http://DEVS-1.0/DevsModel that implements ModelMigration interface.
+
===The release process===
<source lang="java">
 
public interface ModelMigration {
 
  
/**
+
* '''Before the build'''
* Migrate old models to newer version. The operation is a atomic,
+
*# Make usual tagging and branching of all released plugins in Subversion
* if it fails no modifications are done and MigrationException is thrown.
+
* '''Right after the build'''
* <p>
+
*# For all working ontologies which do not correspond to a frozen version : freeze ontology plugin and store as a tag
* Optionally a shell may be provided for wizards and user input.
+
*# Increment the software version number of models
* If shell is not provided the migration tool must work without input and
+
* '''During modelling when ontology is first modified''' (before this the working ontology was exactly some frozen ontology)
* make best guesses.
+
*# Increment ontology version number. (Include the corresponding frozen ontology into product dependencies to enable migration).
*
 
* @param session database session
 
* @param models models to be migrated
 
* @param shellForInteraction optional shell for user input
 
* @throws MigrationException
 
*/
 
void migrateModel(Session session, Resource[] models, Shell shellForInteraction)
 
throws MigrationException;
 
  
/**
+
[[Category: Ontology Development]]
* Get the version number of the outcome model.
+
[[Category: Database Development]]
*
 
* @return version number
 
*/
 
String getResultVersion();
 
 
/**
 
* Get a list of source versions supported by this Model Migration class.
 
 
* @return a list of versions. Do not modify.
 
*/
 
Collection<String> getSupportedVersions();
 
}
 
</source>
 

Latest revision as of 05:19, 3 November 2011

This document addresses the issue of how simantics application migrates from one version to the next. The scope includes software and ontology development.

Ontology Migration

An ontology is a compilation of shared concepts (=types, relations and instances).

   http://www.simantics.org/Layer0-1.0 
       http://www.simantics.org/Layer0-1.0/ConsistOf
       http://www.simantics.org/Layer0-1.0/Library

Ontologies are versioned according to the following scheme

   <Ontology URI>-<major version>.<minor version> 

For example

   http://www.simantics.org/Layer0-1.0 

All shared concepts contained in the ontology are accordingly versioned along with the ontology and the version number is visible in the URI. For ontological concepts we define

  • versioned URI as the proper URI of the resource e.g. http://www.simantics.org/Layer0-1.0/ConsistsOf
  • unversioned URI where version information is omitted e.g. http://www.simantics.org/Layer0-0.0/ConsistsOf

Ontologies are deployed as OSGi bundles. Declarations in Simantics software may use the unversioned URI to refer to concepts in the latest version on an ontology (or the version found from OSGi dependencies). An utility class for converting between versioned URI and unversioned URI is defined in class org.simantics.scl.reflection.OntologyVersions.

Additionally we define

  • working ontology as an ontology bundle which contains the latest version of the ontology e.g. org.simantics.simulation.ontology
  • released ontology as an ontology bundle which is frozen, renamed and never again changed e.g. org.simantics.simulation.ontology-1.1

The following simple rules for ontology development are defined to enable version migration

Modelling rules

  1. All ontology versions shall be completely self-contained. All concepts are declared in all versions of an ontology.
  2. There shall be exactly one ontology (L0.Ontology) defined in each ontology bundle.
  3. The Bundle-Name of an ontology shall be the unversioned URI of the ontology without the '-0.0' suffix e.g. http://www.simantics.org/Simulation
  4. The first two digits of the Bundle-Version of an ontology shall be the ontology version as specified in the ontology URI e.g. '1.2'
  5. The Bundle-SymbolicName (bundle id) of a working ontology is unchanged when versions grow (e.g. org.simantics.simulation.ontology)
  6. The Bundle-SymbolicName (bundle id) of a frozen ontology is a version-dependent derivative of the id from the working ontology (e.g. org.simantics.simulation.ontology-1.1)

Model Migration

A project in a database contains models of different versions created with different versions of software features.

The database can host multiple versions of ontologies which enables old models to exist and to be imported in the database. A typical software feature can only manipulate models defined with the latest versions of some ontologies.

Software features can make model migration from models created with previous versions of the software. Each model is associated in the database with a single software feature version, which then can be used to determine the actions needed for migrating models to the latest ontological definitions. The version modelling is defined in org.simantics.softwareconfiguration.ontology.

The user can browse the old and new models contained in the database and perform model migration at will.

Making software releases

A released Simantics feature uses a set of ontologies with specified version numbers. All models associated with a specific software version need access to these ontology versions even after the ontologies have evolved. Thus it is necessary to release and freeze all versions of used ontologies whenever a software is released. Thus the procedure for making a software release includes

The release process

  • Before the build
    1. Make usual tagging and branching of all released plugins in Subversion
  • Right after the build
    1. For all working ontologies which do not correspond to a frozen version : freeze ontology plugin and store as a tag
    2. Increment the software version number of models
  • During modelling when ontology is first modified (before this the working ontology was exactly some frozen ontology)
    1. Increment ontology version number. (Include the corresponding frozen ontology into product dependencies to enable migration).