File size: 6,564 Bytes
f0f4f2b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 |
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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.
"""
Classes for building the Writer tree.
Constructing a writer tree from the schema makes it easy
to decouple the writing implementation from the schema.
"""
from __future__ import annotations
from abc import abstractmethod
from dataclasses import dataclass
from dataclasses import field as dataclassfield
from typing import (
Any,
Dict,
List,
Optional,
Tuple,
)
from uuid import UUID
from pyiceberg.avro.encoder import BinaryEncoder
from pyiceberg.typedef import Record
from pyiceberg.utils.decimal import decimal_required_bytes, decimal_to_bytes
from pyiceberg.utils.singleton import Singleton
@dataclass(frozen=True)
class Writer(Singleton):
@abstractmethod
def write(self, encoder: BinaryEncoder, val: Any) -> Any: ...
def __repr__(self) -> str:
"""Return string representation of this object."""
return f"{self.__class__.__name__}()"
@dataclass(frozen=True)
class BooleanWriter(Writer):
def write(self, encoder: BinaryEncoder, val: bool) -> None:
encoder.write_boolean(val)
@dataclass(frozen=True)
class IntegerWriter(Writer):
"""Longs and ints are encoded the same way, and there is no long in Python."""
def write(self, encoder: BinaryEncoder, val: int) -> None:
encoder.write_int(val)
@dataclass(frozen=True)
class FloatWriter(Writer):
def write(self, encoder: BinaryEncoder, val: float) -> None:
encoder.write_float(val)
@dataclass(frozen=True)
class DoubleWriter(Writer):
def write(self, encoder: BinaryEncoder, val: float) -> None:
encoder.write_double(val)
@dataclass(frozen=True)
class DateWriter(Writer):
def write(self, encoder: BinaryEncoder, val: int) -> None:
encoder.write_int(val)
@dataclass(frozen=True)
class TimeWriter(Writer):
def write(self, encoder: BinaryEncoder, val: int) -> None:
encoder.write_int(val)
@dataclass(frozen=True)
class TimestampWriter(Writer):
def write(self, encoder: BinaryEncoder, val: int) -> None:
encoder.write_int(val)
@dataclass(frozen=True)
class TimestamptzWriter(Writer):
def write(self, encoder: BinaryEncoder, val: int) -> None:
encoder.write_int(val)
@dataclass(frozen=True)
class StringWriter(Writer):
def write(self, encoder: BinaryEncoder, val: Any) -> None:
encoder.write_utf8(val)
@dataclass(frozen=True)
class UUIDWriter(Writer):
def write(self, encoder: BinaryEncoder, val: UUID) -> None:
encoder.write(val.bytes)
@dataclass(frozen=True)
class FixedWriter(Writer):
_len: int = dataclassfield()
def write(self, encoder: BinaryEncoder, val: bytes) -> None:
if len(val) != self._len:
raise ValueError(f"Expected {self._len} bytes, got {len(val)}")
encoder.write(val)
def __len__(self) -> int:
"""Return the length of this object."""
return self._len
def __repr__(self) -> str:
"""Return string representation of this object."""
return f"FixedWriter({self._len})"
@dataclass(frozen=True)
class BinaryWriter(Writer):
"""Variable byte length writer."""
def write(self, encoder: BinaryEncoder, val: Any) -> None:
encoder.write_bytes(val)
@dataclass(frozen=True)
class DecimalWriter(Writer):
precision: int = dataclassfield()
scale: int = dataclassfield()
def write(self, encoder: BinaryEncoder, val: Any) -> None:
return encoder.write(decimal_to_bytes(val, byte_length=decimal_required_bytes(self.precision)))
def __repr__(self) -> str:
"""Return string representation of this object."""
return f"DecimalWriter({self.precision}, {self.scale})"
@dataclass(frozen=True)
class OptionWriter(Writer):
option: Writer = dataclassfield()
def write(self, encoder: BinaryEncoder, val: Any) -> None:
if val is not None:
encoder.write_int(1)
self.option.write(encoder, val)
else:
encoder.write_int(0)
@dataclass(frozen=True)
class StructWriter(Writer):
field_writers: Tuple[Tuple[Optional[int], Writer], ...] = dataclassfield()
def write(self, encoder: BinaryEncoder, val: Record) -> None:
for pos, writer in self.field_writers:
# When pos is None, then it is a default value
writer.write(encoder, val[pos] if pos is not None else None)
def __eq__(self, other: Any) -> bool:
"""Implement the equality operator for this object."""
return self.field_writers == other.field_writers if isinstance(other, StructWriter) else False
def __repr__(self) -> str:
"""Return string representation of this object."""
return f"StructWriter(tuple(({','.join(repr(field) for field in self.field_writers)})))"
def __hash__(self) -> int:
"""Return the hash of the writer as hash of this object."""
return hash(self.field_writers)
@dataclass(frozen=True)
class ListWriter(Writer):
element_writer: Writer
def write(self, encoder: BinaryEncoder, val: List[Any]) -> None:
encoder.write_int(len(val))
for v in val:
self.element_writer.write(encoder, v)
if len(val) > 0:
encoder.write_int(0)
@dataclass(frozen=True)
class MapWriter(Writer):
key_writer: Writer
value_writer: Writer
def write(self, encoder: BinaryEncoder, val: Dict[Any, Any]) -> None:
encoder.write_int(len(val))
for k, v in val.items():
self.key_writer.write(encoder, k)
self.value_writer.write(encoder, v)
if len(val) > 0:
encoder.write_int(0)
@dataclass(frozen=True)
class DefaultWriter(Writer):
writer: Writer
value: Any
def write(self, encoder: BinaryEncoder, _: Any) -> None:
self.writer.write(encoder, self.value)
|