summaryrefslogtreecommitdiff
path: root/morphlib/plugins
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2013-09-16 17:41:27 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2013-09-16 17:41:27 +0000
commit86209e1f346fd24119f31872b589a70533523585 (patch)
treeff5ca25e6309efb00a95c34dbee4b53c29ee0c96 /morphlib/plugins
parent86d3f0110602fb8eea1d00e65abb3025760c6232 (diff)
parent1bedfa7749300da167808b837d2a8968df43eeb3 (diff)
downloadmorph-86209e1f346fd24119f31872b589a70533523585.tar.gz
Merge branch 'baserock/richardmaw/S8717/refactor-petrify-v4'
Reviewed-by: Lars Wirzenius Reviewed-by: Daniel Silverstone Daniel gave his +1 with the caveat that he would like tests for petrifying a system branch other than master.
Diffstat (limited to 'morphlib/plugins')
-rw-r--r--morphlib/plugins/branch_and_merge_new_plugin.py137
-rw-r--r--morphlib/plugins/branch_and_merge_plugin.py4
2 files changed, 139 insertions, 2 deletions
diff --git a/morphlib/plugins/branch_and_merge_new_plugin.py b/morphlib/plugins/branch_and_merge_new_plugin.py
index 61cd40c0..66231de9 100644
--- a/morphlib/plugins/branch_and_merge_new_plugin.py
+++ b/morphlib/plugins/branch_and_merge_new_plugin.py
@@ -44,6 +44,10 @@ class SimpleBranchAndMergePlugin(cliapp.Plugin):
self.app.add_subcommand(
'edit', self.edit, arg_synopsis='SYSTEM STRATUM [CHUNK]')
self.app.add_subcommand(
+ 'petrify', self.petrify, arg_synopsis='')
+ self.app.add_subcommand(
+ 'unpetrify', self.unpetrify, arg_synopsis='')
+ self.app.add_subcommand(
'show-system-branch', self.show_system_branch, arg_synopsis='')
self.app.add_subcommand(
'show-branch-root', self.show_branch_root, arg_synopsis='')
@@ -604,3 +608,136 @@ class SimpleBranchAndMergePlugin(cliapp.Plugin):
% (repo, pretty_command))
self.app.output.write('\n')
self.app.output.flush()
+
+ def _load_all_sysbranch_morphologies(self, sb, loader):
+ '''Read in all the morphologies in the root repository.'''
+ self.app.status(msg='Loading in all morphologies')
+ morphs = morphlib.morphset.MorphologySet()
+ mf = morphlib.morphologyfinder.MorphologyFinder(
+ morphlib.gitdir.GitDirectory(
+ sb.get_git_directory_name(sb.root_repository_url)))
+ for morph in mf.list_morphologies():
+ text, filename = mf.read_morphology(morph)
+ m = loader.load_from_string(text, filename=filename)
+ m.repo_url = sb.root_repository_url
+ m.ref = sb.system_branch_name
+ morphs.add_morphology(m)
+ return morphs
+
+ def petrify(self, args):
+ '''Convert all chunk refs in a system branch to be fixed SHA1s.
+
+ This modifies all git commit references in system and stratum
+ morphologies, in the current system branch, to be fixed SHA
+ commit identifiers, rather than symbolic branch or tag names.
+ This is useful for making sure none of the components in a system
+ branch change accidentally.
+
+ Consider the following scenario:
+
+ * The `master` system branch refers to `gcc` using the
+ `baserock/morph` ref. This is appropriate, since the main line
+ of development should use the latest curated code.
+
+ * You create a system branch to prepare for a release, called
+ `TROVE_ID/release/2.0`. The reference to `gcc` is still
+ `baserock/morph`.
+
+ * You test everything, and make a release. You deploy the release
+ images onto devices, which get shipped to your customers.
+
+ * A new version GCC is committed to the `baserock/morph` branch.
+
+ * Your release branch suddenly uses a new compiler, which may
+ or may not work for your particular system at that release.
+
+ To avoid this, you need to _petrify_ all git references
+ so that they do not change accidentally. If you've tested
+ your release with the GCC release that is stored in commit
+ `94c50665324a7aeb32f3096393ec54b2e63bfb28`, then you should
+ continue to use that version of GCC, regardless of what might
+ happen in the master system branch. If, and only if, you decide
+ that a new compiler would be good for your release should you
+ include it in your release branch. This way, only the things
+ that you change intentionally change in your release branch.
+
+ '''
+
+ if args:
+ raise cliapp.AppException('morph petrify takes no arguments')
+
+ ws = morphlib.workspace.open('.')
+ sb = morphlib.sysbranchdir.open_from_within('.')
+ loader = morphlib.morphloader.MorphologyLoader()
+ lrc, rrc = morphlib.util.new_repo_caches(self.app)
+ update_repos = not self.app.settings['no-git-update']
+ done = set()
+
+ morphs = self._load_all_sysbranch_morphologies(sb, loader)
+
+ # Petrify the ref to each stratum and chunk.
+ def petrify_specs(specs):
+ for spec in specs:
+ ref = spec['ref']
+ # Do not double petrify refs
+ if morphlib.git.is_valid_sha1(ref):
+ continue
+ commit_sha1, tree_sha1 = self.app.resolve_ref(
+ lrc, rrc, spec['repo'], ref, update=update_repos)
+ assert 'name' in spec or 'morph' in spec
+ filename = '%s.morph' % spec.get('morph', spec.get('name'))
+ morphs.change_ref(spec['repo'], ref, filename, commit_sha1)
+
+ for m in morphs.morphologies:
+ if m['kind'] == 'system':
+ petrify_specs(m['strata'])
+ elif m['kind'] == 'stratum':
+ petrify_specs(m['build-depends'])
+ petrify_specs(m['chunks'])
+
+ # Write morphologies back out again.
+ self._save_dirty_morphologies(loader, sb, morphs.morphologies)
+
+ def unpetrify(self, args):
+ '''Reverse the process of petrification.
+
+ This undoes the changes `morph petrify` did.
+
+ '''
+
+ if args:
+ raise cliapp.AppException('morph petrify takes no arguments')
+
+ ws = morphlib.workspace.open('.')
+ sb = morphlib.sysbranchdir.open_from_within('.')
+ loader = morphlib.morphloader.MorphologyLoader()
+ lrc, rrc = morphlib.util.new_repo_caches(self.app)
+ update_repos = not self.app.settings['no-git-update']
+ done = set()
+
+ morphs = self._load_all_sysbranch_morphologies(sb, loader)
+
+ # Restore the ref for each stratum and chunk
+ def unpetrify_specs(specs):
+ dirty = False
+ for spec in specs:
+ ref = spec['ref']
+ # Don't attempt to unpetrify refs which aren't petrified
+ if not ('unpetrify-ref' in spec
+ and morphlib.git.is_valid_sha1(ref)):
+ continue
+ spec['ref'] = spec.pop('unpetrify-ref')
+ dirty = True
+ return dirty
+
+ for m in morphs.morphologies:
+ dirty = False
+ if m['kind'] == 'system':
+ dirty = dirty or unpetrify_specs(m['strata'])
+ elif m['kind'] == 'stratum':
+ dirty = dirty or unpetrify_specs(m['build-depends'])
+ dirty = dirty or unpetrify_specs(m['chunks'])
+ m.dirty = True
+
+ # Write morphologies back out again.
+ self._save_dirty_morphologies(loader, sb, morphs.morphologies)
diff --git a/morphlib/plugins/branch_and_merge_plugin.py b/morphlib/plugins/branch_and_merge_plugin.py
index c1549a5d..671071b6 100644
--- a/morphlib/plugins/branch_and_merge_plugin.py
+++ b/morphlib/plugins/branch_and_merge_plugin.py
@@ -61,8 +61,8 @@ class BranchAndMergePlugin(cliapp.Plugin):
arg_synopsis='BRANCH')
# self.app.add_subcommand('edit', self.edit,
# arg_synopsis='SYSTEM STRATUM [CHUNK]')
- self.app.add_subcommand('petrify', self.petrify)
- self.app.add_subcommand('unpetrify', self.unpetrify)
+ self.app.add_subcommand('old-petrify', self.petrify)
+ self.app.add_subcommand('old-unpetrify', self.unpetrify)
self.app.add_subcommand(
'tag', self.tag, arg_synopsis='TAG-NAME -- [GIT-COMMIT-ARG...]')
self.app.add_subcommand('build', self.build,