Source code for smv.datasetresolver

#
# This file is licensed under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License.  You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from datetime import datetime
from smv.error import SmvRuntimeError

[docs]class DataSetResolver: """DataSetResolver (DSR) is the entrypoint through which the DataSetMgr acquires SmvGenericModules. A DSR object represent a single transaction. Each DSR creates a set of DataSetRepos at instantiation. When asked for an SmvGenericModules, DSR queries the repos for that SmvGenericModule and resolves it. The SmvGenericModule is responsible for resolving itself, given access to the DSR to load/resolve the SmvGenericModule's dependencies. DSR caches the SmvGenericModule it has already resolved to ensure that any SmvGenericModule is only resolved once. """ def __init__(self, repo): self.repo = repo # FQN to resolved SmvGenericModule self.fqn2res = {} # Track which SmvGenericModules is currently being resolved. Used to check for # dependency cycles. Note: we no longer have to worry about corruption of # resolve stack because a new stack is created per transaction. self.resolveStack = [] #Timestamp which will be injected into the resolved SmvGenericModules self.transaction_time = datetime.now()
[docs] def loadDataSet(self, fqns): """Given a list of FQNs, return cached resolved version SmvGenericModules if exists, or otherwise load unresolved version from source and resolve them. """ res = [] for fqn in fqns: # Caller need to check whether the fqn is in a stage of the SmvConfig stages if (fqn in self.fqn2res): ds = self.fqn2res.get(fqn) else: mod = self.repo.loadDataSet(fqn) if (mod is None): raise SmvRuntimeError("Module {} does not exist".format(fqn)) ds = self.resolveDataSet(mod) res.append(ds) return res
[docs] def resolveDataSet(self, ds): """Return cached resolved version of given SmvGenericModule if it exists, or resolve it otherwise. """ if (ds.fqn() in self.resolveStack): raise SmvRuntimeError("Cycle found while resolving {}: {}".format(ds.fqn(), ", ".join(self.resolveStack))) else: if (ds.fqn() in self.fqn2res): return self.fqn2res.get(ds.fqn()) else: self.resolveStack.append(ds.fqn()) resolvedDs = ds._resolve(self) resolvedDs._setTimestamp(self.transaction_time) self.fqn2res.update({ds.fqn(): resolvedDs}) self.resolveStack.pop() return resolvedDs