Skip to content

Commit

Permalink
check for old butler parents that are not nested
Browse files Browse the repository at this point in the history
we started nesting Old Butler parent RepositoryCfgs to preserve
implicit arguments like what calib was used to load them. Some
repositoryCfg.yaml files exist where the Old Butler parent
repository is indicated only by path. This fix internally
converts that path to a RepositoryCfg and the root repository's
mapperArgs are also applied to the internal RepositoryCfg.
  • Loading branch information
n8pease committed Nov 28, 2017
1 parent 383e141 commit ffa867f
Show file tree
Hide file tree
Showing 3 changed files with 145 additions and 0 deletions.
22 changes: 22 additions & 0 deletions python/lsst/daf/persistence/butler.py
Original file line number Diff line number Diff line change
Expand Up @@ -791,6 +791,28 @@ def cfgMatchesArgs(args, cfg):
root=repoData.repoArgs.cfgRoot,
isV1Repository=isOldButlerRepository)
else:

# This is a hack fix for an issue introduced by DM-11284; Old Butler parent repositories used
# to be stored as a path to the repository in the parents list and it was changed so that the
# whole RepositoryCfg, that described the Old Butler repository (including the mapperArgs that
# were used with it), was recorded as a "nested" repository cfg. That checkin did not account
# for the fact that there were repositoryCfg.yaml files in the world with only the path to
# Old Butler repositories in the parents list.
if cfg.parents:
for i, parent in enumerate(cfg.parents):
if isinstance(parent, RepositoryCfg):
continue
parentCfg, parentIsOldButlerRepository = self._getRepositoryCfg(parent)
if parentIsOldButlerRepository:
parentCfg.mapperArgs = cfg.mapperArgs
self.log.info(("Butler is replacing an Old Butler parent repository path '{}' "
"found in the parents list of a New Butler repositoryCfg: {} "
"with a repositoryCfg that includes the child repository's "
"mapperArgs: {}. This affects the instantiated RepositoryCfg "
"but does not change the persisted child repositoryCfg.yaml file."
).format(parent, cfg, parentCfg))
cfg._parents[i] = cfg._normalizeParents(cfg.root, [parentCfg])[0]

if 'w' in repoData.repoArgs.mode:
# if it's an output repository, the RepositoryArgs must match the existing cfg.
if not cfgMatchesArgs(repoData.repoArgs, cfg):
Expand Down
1 change: 1 addition & 0 deletions python/lsst/daf/persistence/test/testMapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class EmptyTestMapper(Mapper):
"""Class that can be used as a stub for a mapper."""

def __init__(self, root=None, parentRegistry=None, repositoryCfg=None, **kwargs):
self.root = root
self.kwargs = kwargs
pass

Expand Down
122 changes: 122 additions & 0 deletions tests/test_DM-12117.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
# -*- coding: UTF-8 -*-

#
# LSST Data Management System
# Copyright 2016 LSST Corporation.
#
# This product includes software developed by the
# LSST Project (http://www.lsst.org/).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the LSST License Statement and
# the GNU General Public License along with this program. If not,
# see <http://www.lsstcorp.org/LegalNotices/>.
#

import unittest
import lsst.daf.persistence as dp
import lsst.utils.tests
import os
import shutil
import tempfile

ROOT = os.path.abspath(os.path.dirname(__file__))


def setup_module(module):
lsst.utils.tests.init()


class MyTestMapper(dp.Mapper):

def __init__(self, root, *args, **kwargs):
self.root = root
self.args = args
self.kwargs = kwargs


class TestDM12117(unittest.TestCase):
"""Test case for basic Butler operations."""

def setUp(self):
self.testDir = tempfile.mkdtemp(dir=ROOT, prefix='test_DM-12117-')

def tearDown(self):
if os.path.exists(self.testDir):
shutil.rmtree(self.testDir)

@staticmethod
def repoBYaml(mapperArgs):
return """!RepositoryCfg_v1
_mapper: 'lsst.daf.persistence.test.EmptyTestMapper'
_mapperArgs: {}
_parents: ['../repoA']
_policy: null
_root: null
dirty: true
""".format(mapperArgs)

def _verifyOldButlerParentWithArgs(self, mapperArgs):
"""Test that an Old Butler parent repo that is can be loaded by a New
Butler output repo and that the output repo's mapper args are used by
the OldButler repo.
1. create an Old Butler repo
2. create a New Butler repo with passed-in mapper args (which may be
an empty dict)
3. reload that New Butler repo without naming its parent as an input
4. verify that the parent is loaded as an input
5. verify that that the passed-in mapper args are passed to the parent
as well as the root repo.
Parameters
----------
mapperArgs : dict or None
Arguments to be passed to
"""
repoAPath = os.path.join(self.testDir, 'repoA')
repoBPath = os.path.join(self.testDir, 'repoB')
os.makedirs(repoAPath)
with open(os.path.join(repoAPath, '_mapper'), 'w') as f:
f.write('lsst.daf.persistence.test.EmptyTestMapper')
os.makedirs(repoBPath)
with open(os.path.join(repoBPath, 'repositoryCfg.yaml'), 'w') as f:
f.write(self.repoBYaml(mapperArgs))
butler = dp.Butler(repoBPath)
self.assertEqual(butler._repos.inputs()[0].repo._mapper.root, repoBPath)
self.assertEqual(butler._repos.inputs()[1].repo._mapper.root, repoAPath)
self.assertEqual(butler._repos.outputs()[0].repo._mapper.root, repoBPath)
self.assertEqual(butler._repos.inputs()[0].repo._mapper.kwargs, mapperArgs)
self.assertEqual(butler._repos.inputs()[1].repo._mapper.kwargs, mapperArgs)

def testOldButlerParentWithoutMapperArgs(self):
"""Test that an Old Butler parent repo that is can be loaded by a New
Butler output repo and that the output repo's mapper args are used by
the OldButler repo.
"""
self._verifyOldButlerParentWithArgs({})

def testOldButlerParentWithMapperArgs(self):
"""Test that an Old Butler parent repo that is can be loaded by a New
Butler output repo and that the output repo's mapper args are used by
the OldButler repo.
"""
self._verifyOldButlerParentWithArgs({'calib': 'foo'})


class MemoryTester(lsst.utils.tests.MemoryTestCase):
pass


if __name__ == '__main__':
lsst.utils.tests.init()
unittest.main()

0 comments on commit ffa867f

Please sign in to comment.