LSSTApplications  18.1.0
LSSTDataManagementBasePackage
schemaMapperContinued.py
Go to the documentation of this file.
1 #
2 # LSST Data Management System
3 # Copyright 2017 LSST/AURA.
4 #
5 # This product includes software developed by the
6 # LSST Project (http://www.lsst.org/).
7 #
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the LSST License Statement and
19 # the GNU General Public License along with this program. If not,
20 # see <http://www.lsstcorp.org/LegalNotices/>.
21 #
22 
23 __all__ = [] # import only for the side effects
24 
26 from lsst.utils import continueClass
27 
28 from ..schema import Field, Schema
29 from .schemaMapper import SchemaMapper
30 
31 
32 @continueClass # noqa: F811
34 
35  def addOutputField(self, field, type=None, doc=None, units="", size=None,
36  doReplace=False, parse_strict="raise"):
37  """Add an un-mapped field to the output Schema.
38 
39  Parameters
40  ----------
41  field : str,Field
42  The string name of the Field, or a fully-constructed Field object.
43  If the latter, all other arguments besides doReplace are ignored.
44  type\n : str,type
45  The type of field to create. Valid types are the keys of the
46  afw.table.Field dictionary.
47  doc : str
48  Documentation for the field.
49  unit : str
50  Units for the field, or an empty string if unitless.
51  size : int
52  Size of the field; valid for string and array fields only.
53  doReplace : bool
54  If a field with this name already exists, replace it instead of
55  raising pex.exceptions.InvalidParameterError.
56  parse_strict : str
57  One of 'raise' (default), 'warn', or 'strict', indicating how to
58  handle unrecognized unit strings. See also astropy.units.Unit.
59  """
60  if isinstance(field, str):
61  field = Field[type](field, doc=doc, units=units,
62  size=size, parse_strict=parse_strict)
63  return field._addTo(self.editOutputSchema(), doReplace)
64 
65  def addMapping(self, input, output=None, doReplace=True):
66  """Add a mapped field to the output schema.
67 
68  Parameters
69  ----------
70  input : Key
71  A Key from the input schema whose values will be mapped to the new
72  field.
73  output : str,Field
74  A Field object that describes the new field to be added to the
75  output schema, or the name of the field (with documentation and
76  units copied from the input schema). May be None to copy everything
77  from the input schema.
78  doReplace : bool
79  If a field with this name already exists in the output schema,
80  replace it instead of raising pex.exceptions.InvalidParameterError.
81  """
82  # Workaround for calling positional arguments; avoids an API change during pybind11 conversion,
83  # but we should just make that change and encourage using kwargs in the
84  # future.
85  if output is True or output is False:
86  doReplace = output
87  output = None
88  return input._addMappingTo(self, output, doReplace)
89 
90  def __eq__(self, other):
91  """SchemaMappers are equal if their respective input and output
92  schemas are identical, and they have the same mappings defined.
93 
94  Note: It was simpler to implement equality in python than in C++.
95  """
96  iSchema = self.getInputSchema()
97  oSchema = self.getOutputSchema()
98  if (not (iSchema.compare(other.getInputSchema(), Schema.IDENTICAL) == Schema.IDENTICAL and
99  oSchema.compare(other.getOutputSchema(), Schema.IDENTICAL) == Schema.IDENTICAL)):
100  return False
101 
102  for item in iSchema:
103  if self.isMapped(item.key) and other.isMapped(item.key):
104  if (self.getMapping(item.key) == other.getMapping(item.key)):
105  continue
106  else:
107  return False
108  elif (not self.isMapped(item.key)) and (not other.isMapped(item.key)):
109  continue
110  else:
111  return False
112 
113  return True
114 
115  def __reduce__(self):
116  """To support pickle."""
117  mappings = {}
118  for item in self.getInputSchema():
119  try:
120  key = self.getMapping(item.key)
122  # Not all fields may be mapped, so just continue if a mapping is not found.
123  continue
124  mappings[item.key] = self.getOutputSchema().find(key).field
125  return (makeSchemaMapper, (self.getInputSchema(), self.getOutputSchema(), mappings))
126 
127 
128 def makeSchemaMapper(input, output, mappings):
129  """Build a mapper from two Schemas and the mapping between them.
130  For pickle support.
131 
132  Parameters
133  ----------
134  input : `lsst.afw.table.Schema`
135  The input schema for the mapper.
136  output : `lsst.afw.table.Schema`
137  The output schema for the mapper.
138  mappings : `dict` [`lsst.afw.table.Key`, `lsst.afw.table.Key`]
139  The mappings to define between the input and output schema.
140 
141  Returns
142  -------
143  mapper : `lsst.afw.table.SchemaMapper`
144  The constructed SchemaMapper.
145  """
146  mapper = SchemaMapper(input, output)
147  for key, value in mappings.items():
148  mapper.addMapping(key, value)
149  return mapper
Reports attempts to access elements using an invalid key.
Definition: Runtime.h:151
def addOutputField(self, field, type=None, doc=None, units="", size=None, doReplace=False, parse_strict="raise")
def addMapping(self, input, output=None, doReplace=True)