| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| """Schemas for BigQuery tables / queries.""" |
|
|
| import collections |
| import enum |
| from typing import Any, Dict, Iterable, Optional, Union, cast |
|
|
| from google.cloud.bigquery import standard_sql |
| from google.cloud.bigquery.enums import StandardSqlTypeNames |
|
|
|
|
| _STRUCT_TYPES = ("RECORD", "STRUCT") |
|
|
| |
| |
| |
| LEGACY_TO_STANDARD_TYPES = { |
| "STRING": StandardSqlTypeNames.STRING, |
| "BYTES": StandardSqlTypeNames.BYTES, |
| "INTEGER": StandardSqlTypeNames.INT64, |
| "INT64": StandardSqlTypeNames.INT64, |
| "FLOAT": StandardSqlTypeNames.FLOAT64, |
| "FLOAT64": StandardSqlTypeNames.FLOAT64, |
| "NUMERIC": StandardSqlTypeNames.NUMERIC, |
| "BIGNUMERIC": StandardSqlTypeNames.BIGNUMERIC, |
| "BOOLEAN": StandardSqlTypeNames.BOOL, |
| "BOOL": StandardSqlTypeNames.BOOL, |
| "GEOGRAPHY": StandardSqlTypeNames.GEOGRAPHY, |
| "RECORD": StandardSqlTypeNames.STRUCT, |
| "STRUCT": StandardSqlTypeNames.STRUCT, |
| "TIMESTAMP": StandardSqlTypeNames.TIMESTAMP, |
| "DATE": StandardSqlTypeNames.DATE, |
| "TIME": StandardSqlTypeNames.TIME, |
| "DATETIME": StandardSqlTypeNames.DATETIME, |
| |
| } |
| """String names of the legacy SQL types to integer codes of Standard SQL standard_sql.""" |
|
|
|
|
| class _DefaultSentinel(enum.Enum): |
| """Object used as 'sentinel' indicating default value should be used. |
| |
| Uses enum so that pytype/mypy knows that this is the only possible value. |
| https://stackoverflow.com/a/60605919/101923 |
| |
| Literal[_DEFAULT_VALUE] is an alternative, but only added in Python 3.8. |
| https://docs.python.org/3/library/typing.html#typing.Literal |
| """ |
|
|
| DEFAULT_VALUE = object() |
|
|
|
|
| _DEFAULT_VALUE = _DefaultSentinel.DEFAULT_VALUE |
|
|
|
|
| class FieldElementType(object): |
| """Represents the type of a field element. |
| |
| Args: |
| element_type (str): The type of a field element. |
| """ |
|
|
| def __init__(self, element_type: str): |
| self._properties = {} |
| self._properties["type"] = element_type.upper() |
|
|
| @property |
| def element_type(self): |
| return self._properties.get("type") |
|
|
| @classmethod |
| def from_api_repr(cls, api_repr: Optional[dict]) -> Optional["FieldElementType"]: |
| """Factory: construct a FieldElementType given its API representation. |
| |
| Args: |
| api_repr (Dict[str, str]): field element type as returned from |
| the API. |
| |
| Returns: |
| google.cloud.bigquery.FieldElementType: |
| Python object, as parsed from ``api_repr``. |
| """ |
| if not api_repr: |
| return None |
| return cls(api_repr["type"].upper()) |
|
|
| def to_api_repr(self) -> dict: |
| """Construct the API resource representation of this field element type. |
| |
| Returns: |
| Dict[str, str]: Field element type represented as an API resource. |
| """ |
| return self._properties |
|
|
|
|
| class SchemaField(object): |
| """Describe a single field within a table schema. |
| |
| Args: |
| name: The name of the field. |
| |
| field_type: |
| The type of the field. See |
| https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#TableFieldSchema.FIELDS.type |
| |
| mode: |
| Defaults to ``'NULLABLE'``. The mode of the field. See |
| https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#TableFieldSchema.FIELDS.mode |
| |
| description: Description for the field. |
| |
| fields: Subfields (requires ``field_type`` of 'RECORD'). |
| |
| policy_tags: The policy tag list for the field. |
| |
| precision: |
| Precison (number of digits) of fields with NUMERIC or BIGNUMERIC type. |
| |
| scale: |
| Scale (digits after decimal) of fields with NUMERIC or BIGNUMERIC type. |
| |
| max_length: Maximum length of fields with STRING or BYTES type. |
| |
| default_value_expression: str, Optional |
| Used to specify the default value of a field using a SQL expression. It can only be set for |
| top level fields (columns). |
| |
| You can use a struct or array expression to specify default value for the entire struct or |
| array. The valid SQL expressions are: |
| |
| - Literals for all data types, including STRUCT and ARRAY. |
| |
| - The following functions: |
| |
| `CURRENT_TIMESTAMP` |
| `CURRENT_TIME` |
| `CURRENT_DATE` |
| `CURRENT_DATETIME` |
| `GENERATE_UUID` |
| `RAND` |
| `SESSION_USER` |
| `ST_GEOPOINT` |
| |
| - Struct or array composed with the above allowed functions, for example: |
| |
| "[CURRENT_DATE(), DATE '2020-01-01'"] |
| |
| range_element_type: FieldElementType, str, Optional |
| The subtype of the RANGE, if the type of this field is RANGE. If |
| the type is RANGE, this field is required. Possible values for the |
| field element type of a RANGE include `DATE`, `DATETIME` and |
| `TIMESTAMP`. |
| """ |
|
|
| def __init__( |
| self, |
| name: str, |
| field_type: str, |
| mode: str = "NULLABLE", |
| default_value_expression: Optional[str] = None, |
| description: Union[str, _DefaultSentinel] = _DEFAULT_VALUE, |
| fields: Iterable["SchemaField"] = (), |
| policy_tags: Union["PolicyTagList", None, _DefaultSentinel] = _DEFAULT_VALUE, |
| precision: Union[int, _DefaultSentinel] = _DEFAULT_VALUE, |
| scale: Union[int, _DefaultSentinel] = _DEFAULT_VALUE, |
| max_length: Union[int, _DefaultSentinel] = _DEFAULT_VALUE, |
| range_element_type: Union[FieldElementType, str, None] = None, |
| ): |
| self._properties: Dict[str, Any] = { |
| "name": name, |
| "type": field_type, |
| } |
| if mode is not None: |
| self._properties["mode"] = mode.upper() |
| if description is not _DEFAULT_VALUE: |
| self._properties["description"] = description |
| if default_value_expression is not None: |
| self._properties["defaultValueExpression"] = default_value_expression |
| if precision is not _DEFAULT_VALUE: |
| self._properties["precision"] = precision |
| if scale is not _DEFAULT_VALUE: |
| self._properties["scale"] = scale |
| if max_length is not _DEFAULT_VALUE: |
| self._properties["maxLength"] = max_length |
| if policy_tags is not _DEFAULT_VALUE: |
| self._properties["policyTags"] = ( |
| policy_tags.to_api_repr() if policy_tags is not None else None |
| ) |
| if isinstance(range_element_type, str): |
| self._properties["rangeElementType"] = {"type": range_element_type} |
| if isinstance(range_element_type, FieldElementType): |
| self._properties["rangeElementType"] = range_element_type.to_api_repr() |
|
|
| self._fields = tuple(fields) |
|
|
| @staticmethod |
| def __get_int(api_repr, name): |
| v = api_repr.get(name, _DEFAULT_VALUE) |
| if v is not _DEFAULT_VALUE: |
| v = int(v) |
| return v |
|
|
| @classmethod |
| def from_api_repr(cls, api_repr: dict) -> "SchemaField": |
| """Return a ``SchemaField`` object deserialized from a dictionary. |
| |
| Args: |
| api_repr (Mapping[str, str]): The serialized representation |
| of the SchemaField, such as what is output by |
| :meth:`to_api_repr`. |
| |
| Returns: |
| google.cloud.bigquery.schema.SchemaField: The ``SchemaField`` object. |
| """ |
| field_type = api_repr["type"].upper() |
|
|
| |
| mode = api_repr.get("mode", "NULLABLE") |
| description = api_repr.get("description", _DEFAULT_VALUE) |
| fields = api_repr.get("fields", ()) |
| policy_tags = api_repr.get("policyTags", _DEFAULT_VALUE) |
|
|
| default_value_expression = api_repr.get("defaultValueExpression", None) |
|
|
| if policy_tags is not None and policy_tags is not _DEFAULT_VALUE: |
| policy_tags = PolicyTagList.from_api_repr(policy_tags) |
|
|
| if api_repr.get("rangeElementType"): |
| range_element_type = cast(dict, api_repr.get("rangeElementType")) |
| element_type = range_element_type.get("type") |
| else: |
| element_type = None |
|
|
| return cls( |
| field_type=field_type, |
| fields=[cls.from_api_repr(f) for f in fields], |
| mode=mode.upper(), |
| default_value_expression=default_value_expression, |
| description=description, |
| name=api_repr["name"], |
| policy_tags=policy_tags, |
| precision=cls.__get_int(api_repr, "precision"), |
| scale=cls.__get_int(api_repr, "scale"), |
| max_length=cls.__get_int(api_repr, "maxLength"), |
| range_element_type=element_type, |
| ) |
|
|
| @property |
| def name(self): |
| """str: The name of the field.""" |
| return self._properties["name"] |
|
|
| @property |
| def field_type(self): |
| """str: The type of the field. |
| |
| See: |
| https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#TableFieldSchema.FIELDS.type |
| """ |
| return self._properties["type"] |
|
|
| @property |
| def mode(self): |
| """Optional[str]: The mode of the field. |
| |
| See: |
| https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#TableFieldSchema.FIELDS.mode |
| """ |
| return self._properties.get("mode") |
|
|
| @property |
| def is_nullable(self): |
| """bool: whether 'mode' is 'nullable'.""" |
| return self.mode == "NULLABLE" |
|
|
| @property |
| def default_value_expression(self): |
| """Optional[str] default value of a field, using an SQL expression""" |
| return self._properties.get("defaultValueExpression") |
|
|
| @property |
| def description(self): |
| """Optional[str]: description for the field.""" |
| return self._properties.get("description") |
|
|
| @property |
| def precision(self): |
| """Optional[int]: Precision (number of digits) for the NUMERIC field.""" |
| return self._properties.get("precision") |
|
|
| @property |
| def scale(self): |
| """Optional[int]: Scale (digits after decimal) for the NUMERIC field.""" |
| return self._properties.get("scale") |
|
|
| @property |
| def max_length(self): |
| """Optional[int]: Maximum length for the STRING or BYTES field.""" |
| return self._properties.get("maxLength") |
|
|
| @property |
| def range_element_type(self): |
| """Optional[FieldElementType]: The subtype of the RANGE, if the |
| type of this field is RANGE. |
| |
| Must be set when ``type`` is `"RANGE"`. Must be one of `"DATE"`, |
| `"DATETIME"` or `"TIMESTAMP"`. |
| """ |
| if self._properties.get("rangeElementType"): |
| ret = self._properties.get("rangeElementType") |
| return FieldElementType.from_api_repr(ret) |
|
|
| @property |
| def fields(self): |
| """Optional[tuple]: Subfields contained in this field. |
| |
| Must be empty unset if ``field_type`` is not 'RECORD'. |
| """ |
| return self._fields |
|
|
| @property |
| def policy_tags(self): |
| """Optional[google.cloud.bigquery.schema.PolicyTagList]: Policy tag list |
| definition for this field. |
| """ |
| resource = self._properties.get("policyTags") |
| return PolicyTagList.from_api_repr(resource) if resource is not None else None |
|
|
| def to_api_repr(self) -> dict: |
| """Return a dictionary representing this schema field. |
| |
| Returns: |
| Dict: A dictionary representing the SchemaField in a serialized form. |
| """ |
| answer = self._properties.copy() |
|
|
| |
| |
| if self.field_type.upper() in _STRUCT_TYPES: |
| answer["fields"] = [f.to_api_repr() for f in self.fields] |
|
|
| |
| return answer |
|
|
| def _key(self): |
| """A tuple key that uniquely describes this field. |
| |
| Used to compute this instance's hashcode and evaluate equality. |
| |
| Returns: |
| Tuple: The contents of this :class:`~google.cloud.bigquery.schema.SchemaField`. |
| """ |
| field_type = self.field_type.upper() if self.field_type is not None else None |
|
|
| |
| |
| if field_type is not None: |
| if field_type == "STRING" or field_type == "BYTES": |
| if self.max_length is not None: |
| field_type = f"{field_type}({self.max_length})" |
| elif field_type.endswith("NUMERIC"): |
| if self.precision is not None: |
| if self.scale is not None: |
| field_type = f"{field_type}({self.precision}, {self.scale})" |
| else: |
| field_type = f"{field_type}({self.precision})" |
|
|
| policy_tags = ( |
| None if self.policy_tags is None else tuple(sorted(self.policy_tags.names)) |
| ) |
|
|
| return ( |
| self.name, |
| field_type, |
| |
| self.mode.upper(), |
| self.default_value_expression, |
| self.description, |
| self._fields, |
| policy_tags, |
| ) |
|
|
| def to_standard_sql(self) -> standard_sql.StandardSqlField: |
| """Return the field as the standard SQL field representation object.""" |
| sql_type = standard_sql.StandardSqlDataType() |
|
|
| if self.mode == "REPEATED": |
| sql_type.type_kind = StandardSqlTypeNames.ARRAY |
| else: |
| sql_type.type_kind = LEGACY_TO_STANDARD_TYPES.get( |
| self.field_type, |
| StandardSqlTypeNames.TYPE_KIND_UNSPECIFIED, |
| ) |
|
|
| if sql_type.type_kind == StandardSqlTypeNames.ARRAY: |
| array_element_type = LEGACY_TO_STANDARD_TYPES.get( |
| self.field_type, |
| StandardSqlTypeNames.TYPE_KIND_UNSPECIFIED, |
| ) |
| sql_type.array_element_type = standard_sql.StandardSqlDataType( |
| type_kind=array_element_type |
| ) |
|
|
| |
| |
| if array_element_type == StandardSqlTypeNames.STRUCT: |
| sql_type.array_element_type.struct_type = ( |
| standard_sql.StandardSqlStructType( |
| fields=(field.to_standard_sql() for field in self.fields) |
| ) |
| ) |
| elif sql_type.type_kind == StandardSqlTypeNames.STRUCT: |
| sql_type.struct_type = standard_sql.StandardSqlStructType( |
| fields=(field.to_standard_sql() for field in self.fields) |
| ) |
|
|
| return standard_sql.StandardSqlField(name=self.name, type=sql_type) |
|
|
| def __eq__(self, other): |
| if not isinstance(other, SchemaField): |
| return NotImplemented |
| return self._key() == other._key() |
|
|
| def __ne__(self, other): |
| return not self == other |
|
|
| def __hash__(self): |
| return hash(self._key()) |
|
|
| def __repr__(self): |
| key = self._key() |
| policy_tags = key[-1] |
| policy_tags_inst = None if policy_tags is None else PolicyTagList(policy_tags) |
| adjusted_key = key[:-1] + (policy_tags_inst,) |
| return f"{self.__class__.__name__}{adjusted_key}" |
|
|
|
|
| def _parse_schema_resource(info): |
| """Parse a resource fragment into a schema field. |
| |
| Args: |
| info: (Mapping[str, Dict]): should contain a "fields" key to be parsed |
| |
| Returns: |
| Optional[Sequence[google.cloud.bigquery.schema.SchemaField`]: |
| A list of parsed fields, or ``None`` if no "fields" key found. |
| """ |
| return [SchemaField.from_api_repr(f) for f in info.get("fields", ())] |
|
|
|
|
| def _build_schema_resource(fields): |
| """Generate a resource fragment for a schema. |
| |
| Args: |
| fields (Sequence[google.cloud.bigquery.schema.SchemaField): schema to be dumped. |
| |
| Returns: |
| Sequence[Dict]: Mappings describing the schema of the supplied fields. |
| """ |
| return [field.to_api_repr() for field in fields] |
|
|
|
|
| def _to_schema_fields(schema): |
| """Coerce `schema` to a list of schema field instances. |
| |
| Args: |
| schema(Sequence[Union[ \ |
| :class:`~google.cloud.bigquery.schema.SchemaField`, \ |
| Mapping[str, Any] \ |
| ]]): |
| Table schema to convert. If some items are passed as mappings, |
| their content must be compatible with |
| :meth:`~google.cloud.bigquery.schema.SchemaField.from_api_repr`. |
| |
| Returns: |
| Sequence[:class:`~google.cloud.bigquery.schema.SchemaField`] |
| |
| Raises: |
| Exception: If ``schema`` is not a sequence, or if any item in the |
| sequence is not a :class:`~google.cloud.bigquery.schema.SchemaField` |
| instance or a compatible mapping representation of the field. |
| """ |
| for field in schema: |
| if not isinstance(field, (SchemaField, collections.abc.Mapping)): |
| raise ValueError( |
| "Schema items must either be fields or compatible " |
| "mapping representations." |
| ) |
|
|
| return [ |
| field if isinstance(field, SchemaField) else SchemaField.from_api_repr(field) |
| for field in schema |
| ] |
|
|
|
|
| class PolicyTagList(object): |
| """Define Policy Tags for a column. |
| |
| Args: |
| names ( |
| Optional[Tuple[str]]): list of policy tags to associate with |
| the column. Policy tag identifiers are of the form |
| `projects/*/locations/*/taxonomies/*/policyTags/*`. |
| """ |
|
|
| def __init__(self, names: Iterable[str] = ()): |
| self._properties = {} |
| self._properties["names"] = tuple(names) |
|
|
| @property |
| def names(self): |
| """Tuple[str]: Policy tags associated with this definition.""" |
| return self._properties.get("names", ()) |
|
|
| def _key(self): |
| """A tuple key that uniquely describes this PolicyTagList. |
| |
| Used to compute this instance's hashcode and evaluate equality. |
| |
| Returns: |
| Tuple: The contents of this :class:`~google.cloud.bigquery.schema.PolicyTagList`. |
| """ |
| return tuple(sorted(self._properties.get("names", ()))) |
|
|
| def __eq__(self, other): |
| if not isinstance(other, PolicyTagList): |
| return NotImplemented |
| return self._key() == other._key() |
|
|
| def __ne__(self, other): |
| return not self == other |
|
|
| def __hash__(self): |
| return hash(self._key()) |
|
|
| def __repr__(self): |
| return f"{self.__class__.__name__}(names={self._key()})" |
|
|
| @classmethod |
| def from_api_repr(cls, api_repr: dict) -> "PolicyTagList": |
| """Return a :class:`PolicyTagList` object deserialized from a dict. |
| |
| This method creates a new ``PolicyTagList`` instance that points to |
| the ``api_repr`` parameter as its internal properties dict. This means |
| that when a ``PolicyTagList`` instance is stored as a property of |
| another object, any changes made at the higher level will also appear |
| here. |
| |
| Args: |
| api_repr (Mapping[str, str]): |
| The serialized representation of the PolicyTagList, such as |
| what is output by :meth:`to_api_repr`. |
| |
| Returns: |
| Optional[google.cloud.bigquery.schema.PolicyTagList]: |
| The ``PolicyTagList`` object or None. |
| """ |
| if api_repr is None: |
| return None |
| names = api_repr.get("names", ()) |
| return cls(names=names) |
|
|
| def to_api_repr(self) -> dict: |
| """Return a dictionary representing this object. |
| |
| This method returns the properties dict of the ``PolicyTagList`` |
| instance rather than making a copy. This means that when a |
| ``PolicyTagList`` instance is stored as a property of another |
| object, any changes made at the higher level will also appear here. |
| |
| Returns: |
| dict: |
| A dictionary representing the PolicyTagList object in |
| serialized form. |
| """ |
| answer = {"names": list(self.names)} |
| return answer |
|
|