Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 3.10 style imports not resolving correctly #594

Merged
merged 7 commits into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 23 additions & 16 deletions src/betterproto/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,13 @@
SupportsWrite,
)

if sys.version_info >= (3, 10):
from types import UnionType as _types_UnionType
else:

class _types_UnionType:
...


# Proto 3 data types
TYPE_ENUM = "enum"
Expand Down Expand Up @@ -148,6 +155,7 @@ def datetime_default_gen() -> datetime:

DATETIME_ZERO = datetime_default_gen()


# Special protobuf json doubles
INFINITY = "Infinity"
NEG_INFINITY = "-Infinity"
Expand Down Expand Up @@ -1166,30 +1174,29 @@ def _get_field_default(self, field_name: str) -> Any:
def _get_field_default_gen(cls, field: dataclasses.Field) -> Any:
t = cls._type_hint(field.name)

if hasattr(t, "__origin__"):
if t.__origin__ is dict:
# This is some kind of map (dict in Python).
return dict
elif t.__origin__ is list:
# This is some kind of list (repeated) field.
return list
elif t.__origin__ is Union and t.__args__[1] is type(None):
is_310_union = isinstance(t, _types_UnionType)
if hasattr(t, "__origin__") or is_310_union:
if is_310_union or t.__origin__ is Union:
# This is an optional field (either wrapped, or using proto3
# field presence). For setting the default we really don't care
# what kind of field it is.
return type(None)
else:
return t
elif issubclass(t, Enum):
if t.__origin__ is list:
# This is some kind of list (repeated) field.
return list
if t.__origin__ is dict:
# This is some kind of map (dict in Python).
return dict
return t
if issubclass(t, Enum):
# Enums always default to zero.
return t.try_value
elif t is datetime:
if t is datetime:
# Offsets are relative to 1970-01-01T00:00:00Z
return datetime_default_gen
else:
# This is either a primitive scalar or another message type. Calling
# it should result in its zero value.
return t
# This is either a primitive scalar or another message type. Calling
# it should result in its zero value.
return t

def _postprocess_single(
self, wire_type: int, meta: FieldMetadata, field_name: str, value: Any
Expand Down
8 changes: 7 additions & 1 deletion src/betterproto/compile/importing.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
from __future__ import annotations

import os
import re
from typing import (
TYPE_CHECKING,
Dict,
List,
Set,
Expand All @@ -13,6 +16,9 @@
from .naming import pythonize_class_name


if TYPE_CHECKING:
from ..plugin.typing_compiler import TypingCompiler

WRAPPER_TYPES: Dict[str, Type] = {
".google.protobuf.DoubleValue": google_protobuf.DoubleValue,
".google.protobuf.FloatValue": google_protobuf.FloatValue,
Expand Down Expand Up @@ -47,7 +53,7 @@ def get_type_reference(
package: str,
imports: set,
source_type: str,
typing_compiler: "TypingCompiler",
typing_compiler: TypingCompiler,
unwrap: bool = True,
pydantic: bool = False,
) -> str:
Expand Down
18 changes: 11 additions & 7 deletions src/betterproto/plugin/typing_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,28 +139,32 @@ def imports(self) -> Dict[str, Optional[Set[str]]]:
class NoTyping310TypingCompiler(TypingCompiler):
_imports: Dict[str, Set[str]] = field(default_factory=lambda: defaultdict(set))

@staticmethod
def _fmt(type: str) -> str: # for now this is necessary till 3.14
return type.removeprefix('"').removesuffix('"')

def optional(self, type: str) -> str:
return f"{type} | None"
return f'"{self._fmt(type)} | None"'
Gobot1234 marked this conversation as resolved.
Show resolved Hide resolved

def list(self, type: str) -> str:
return f"list[{type}]"
return f'"list[{self._fmt(type)}]"'

def dict(self, key: str, value: str) -> str:
return f"dict[{key}, {value}]"
return f'"dict[{key}, {self._fmt(value)}]"'

def union(self, *types: str) -> str:
return " | ".join(types)
return f'"{" | ".join(map(self._fmt, types))}"'

def iterable(self, type: str) -> str:
self._imports["typing"].add("Iterable")
self._imports["collections.abc"].add("Iterable")
return f"Iterable[{type}]"

def async_iterable(self, type: str) -> str:
self._imports["typing"].add("AsyncIterable")
self._imports["collections.abc"].add("AsyncIterable")
return f"AsyncIterable[{type}]"

def async_iterator(self, type: str) -> str:
self._imports["typing"].add("AsyncIterator")
self._imports["collections.abc"].add("AsyncIterator")
return f"AsyncIterator[{type}]"

def imports(self) -> Dict[str, Optional[Set[str]]]:
Expand Down
Loading