diff options
author | Gregory Becker <becker33@llnl.gov> | 2015-08-21 13:04:27 -0700 |
---|---|---|
committer | Gregory Becker <becker33@llnl.gov> | 2015-08-21 13:04:27 -0700 |
commit | 55f68bb2b05322297c3fc4d9fe265870b9385d4c (patch) | |
tree | acf886ef50ac02bb84ebd01aac833a23a27603f7 /lib | |
parent | 1da56e5290ba7272ea4bd0f18cdf5cae2b83f093 (diff) | |
download | spack-55f68bb2b05322297c3fc4d9fe265870b9385d4c.tar.gz spack-55f68bb2b05322297c3fc4d9fe265870b9385d4c.tar.bz2 spack-55f68bb2b05322297c3fc4d9fe265870b9385d4c.tar.xz spack-55f68bb2b05322297c3fc4d9fe265870b9385d4c.zip |
Added hashes to the database
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/database.py | 31 |
1 files changed, 19 insertions, 12 deletions
diff --git a/lib/spack/spack/database.py b/lib/spack/spack/database.py index 8ae71a4385..4646530d52 100644 --- a/lib/spack/spack/database.py +++ b/lib/spack/spack/database.py @@ -48,11 +48,15 @@ class Database(object): """ Create an empty Database Location defaults to root/specDB.yaml + The individual data are dicts containing + spec: the top level spec of a package + path: the path to the install of that package + dep_hash: a hash of the dependence DAG for that package """ self.file_name = file_name self.data = [] - + def from_yaml(self,stream): """ Fill database from YAML @@ -69,10 +73,11 @@ class Database(object): for sp in file['database']: spec = Spec.from_node_dict(sp['spec']) path = sp['path'] - db_entry = {'spec': spec, 'path': path} + dep_hash = sp['hash'] + db_entry = {'spec': spec, 'path': path, 'hash':dep_hash} self.data.append(db_entry) - + @staticmethod def read_database(root): """Create a Database from the data in the standard location""" @@ -87,7 +92,7 @@ class Database(object): return database - + def write_database_to_yaml(self,stream): """ Replace each spec with its dict-node form @@ -97,7 +102,8 @@ class Database(object): for sp in self.data: node = {} node['spec']=Spec.to_node_dict(sp['spec']) - node['spec'][sp['spec'].name]['hash']=sp['spec'].dag_hash() +# node['spec'][sp['spec'].name]['hash']=sp['spec'].dag_hash() + node['hash']=sp['hash'] node['path']=sp['path'] node_list.append(node) return yaml.dump({ 'database' : node_list}, @@ -121,13 +127,14 @@ class Database(object): TODO: Caching databases """ database = Database.read_database(root) - - spec_and_path = {} - spec_and_path['spec']=spec - spec_and_path['path']=path - - database.data.append(spec_and_path) - + + sph = {} + sph['spec']=spec + sph['path']=path + sph['hash']=spec.dag_hash() + + database.data.append(sph) + database.write(root) |